Version Description
- New: Advanced audience filters[PRO]
- Fix: Template already exists issue on some setup using Amazon SES[PRO]
=
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 5.3.15 |
Comparing to | |
See all releases |
Code changes from version 5.3.14 to 5.3.15
- email-subscribers.php +2 -2
- lite/admin/class-email-subscribers-admin.php +1 -0
- lite/admin/class-ig-es-campaign-rules.php +5 -5
- lite/admin/js/email-subscribers-admin.js +19 -0
- lite/includes/classes/class-es-contacts-table.php +57 -17
- lite/includes/classes/class-es-queue.php +2 -0
- lite/includes/classes/class-ig-es-subscriber-query.php +11 -10
- lite/includes/db/class-es-db-sending-queue.php +2 -0
- lite/includes/workflows/actions/class-es-action-send-email.php +1 -0
- lite/language.php +2 -0
- lite/languages/email-subscribers.pot +192 -176
- readme.txt +9 -7
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 5.3.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
|
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
-
define( 'ES_PLUGIN_VERSION', '5.3.
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
+
* Version: 5.3.15
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
+
define( 'ES_PLUGIN_VERSION', '5.3.15' );
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
lite/admin/class-email-subscribers-admin.php
CHANGED
@@ -677,6 +677,7 @@ class Email_Subscribers_Admin {
|
|
677 |
'lists' => $list_id,
|
678 |
'conditions' => $conditions,
|
679 |
'status' => $status,
|
|
|
680 |
'return_count' => true,
|
681 |
);
|
682 |
$query = new IG_ES_Subscribers_Query();
|
677 |
'lists' => $list_id,
|
678 |
'conditions' => $conditions,
|
679 |
'status' => $status,
|
680 |
+
'subscriber_status' => array( 'verified' ),
|
681 |
'return_count' => true,
|
682 |
);
|
683 |
$query = new IG_ES_Subscribers_Query();
|
lite/admin/class-ig-es-campaign-rules.php
CHANGED
@@ -484,7 +484,7 @@ if ( ! class_exists( 'IG_ES_Campaign_Rules' ) ) {
|
|
484 |
*
|
485 |
* @return string $operator Field operator
|
486 |
*/
|
487 |
-
|
488 |
$operator = esc_sql( stripslashes( $operator ) );
|
489 |
|
490 |
switch ( $operator ) {
|
@@ -673,7 +673,7 @@ if ( ! class_exists( 'IG_ES_Campaign_Rules' ) ) {
|
|
673 |
*
|
674 |
* @return array List of comparison operators
|
675 |
*/
|
676 |
-
|
677 |
return array(
|
678 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
679 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
@@ -696,7 +696,7 @@ if ( ! class_exists( 'IG_ES_Campaign_Rules' ) ) {
|
|
696 |
*
|
697 |
* @return array Simple operators
|
698 |
*/
|
699 |
-
|
700 |
return array(
|
701 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
702 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
@@ -713,7 +713,7 @@ if ( ! class_exists( 'IG_ES_Campaign_Rules' ) ) {
|
|
713 |
*
|
714 |
* @return array String operators
|
715 |
*/
|
716 |
-
|
717 |
return array(
|
718 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
719 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
@@ -732,7 +732,7 @@ if ( ! class_exists( 'IG_ES_Campaign_Rules' ) ) {
|
|
732 |
*
|
733 |
* @return array Boolean operator
|
734 |
*/
|
735 |
-
|
736 |
return array(
|
737 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
738 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
484 |
*
|
485 |
* @return string $operator Field operator
|
486 |
*/
|
487 |
+
public function get_field_operator( $operator ) {
|
488 |
$operator = esc_sql( stripslashes( $operator ) );
|
489 |
|
490 |
switch ( $operator ) {
|
673 |
*
|
674 |
* @return array List of comparison operators
|
675 |
*/
|
676 |
+
public function get_operators() {
|
677 |
return array(
|
678 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
679 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
696 |
*
|
697 |
* @return array Simple operators
|
698 |
*/
|
699 |
+
public function get_simple_operators() {
|
700 |
return array(
|
701 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
702 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
713 |
*
|
714 |
* @return array String operators
|
715 |
*/
|
716 |
+
public function get_string_operators() {
|
717 |
return array(
|
718 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
719 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
732 |
*
|
733 |
* @return array Boolean operator
|
734 |
*/
|
735 |
+
public function get_bool_operators() {
|
736 |
return array(
|
737 |
'is' => esc_html__( 'is', 'email-subscribers' ),
|
738 |
'is_not' => esc_html__( 'is not', 'email-subscribers' ),
|
lite/admin/js/email-subscribers-admin.js
CHANGED
@@ -215,6 +215,23 @@
|
|
215 |
var groupselect = jQuery('.groupsselect')[0].outerHTML;
|
216 |
}
|
217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
//Upsell Send confirmation email on Audience screen
|
219 |
$(".email-subscribers_page_es_subscribers #bulk-action-selector-top option[value=bulk_send_confirmation_email_upsell").attr('disabled','disabled');
|
220 |
jQuery(".es-audience-view .bulkactions #bulk-action-selector-top").after(statusselect);
|
@@ -2919,6 +2936,8 @@ function ig_es_is_valid_json( string ) {
|
|
2919 |
return true;
|
2920 |
}
|
2921 |
|
|
|
|
|
2922 |
window.ig_es_is_valid_json = ig_es_is_valid_json;
|
2923 |
|
2924 |
jQuery.fn.extend({
|
215 |
var groupselect = jQuery('.groupsselect')[0].outerHTML;
|
216 |
}
|
217 |
|
218 |
+
// Audience filter switch for Advanced filter
|
219 |
+
|
220 |
+
jQuery('.ig-es-switch.js-toggle-collapse').click(function(event){
|
221 |
+
event.preventDefault();
|
222 |
+
let $switch, state, new_state;
|
223 |
+
$switch = jQuery(this);
|
224 |
+
state = $switch.attr( 'data-ig-es-switch' );
|
225 |
+
new_state = state === 'active' ? 'inactive' : 'active';
|
226 |
+
$switch.attr( 'data-ig-es-switch', new_state );
|
227 |
+
if(new_state === 'active'){
|
228 |
+
jQuery('.es-collapsible').show();
|
229 |
+
}
|
230 |
+
else{
|
231 |
+
jQuery('.es-collapsible').hide();
|
232 |
+
}
|
233 |
+
})
|
234 |
+
|
235 |
//Upsell Send confirmation email on Audience screen
|
236 |
$(".email-subscribers_page_es_subscribers #bulk-action-selector-top option[value=bulk_send_confirmation_email_upsell").attr('disabled','disabled');
|
237 |
jQuery(".es-audience-view .bulkactions #bulk-action-selector-top").after(statusselect);
|
2936 |
return true;
|
2937 |
}
|
2938 |
|
2939 |
+
|
2940 |
+
|
2941 |
window.ig_es_is_valid_json = ig_es_is_valid_json;
|
2942 |
|
2943 |
jQuery.fn.extend({
|
lite/includes/classes/class-es-contacts-table.php
CHANGED
@@ -223,9 +223,11 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
223 |
</div>
|
224 |
<div>
|
225 |
<hr class="wp-header-end">
|
|
|
226 |
</div>
|
|
|
227 |
<?php $this->get_contacts_reports(); ?>
|
228 |
-
|
229 |
<div id="poststuff" class="es-audience-view es-items-lists">
|
230 |
<div id="post-body" class="metabox-holder column-1">
|
231 |
<div id="post-body-content">
|
@@ -235,9 +237,13 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
235 |
<?php
|
236 |
// Display search field and other available filter fields.
|
237 |
$this->prepare_items();
|
|
|
|
|
|
|
|
|
238 |
?>
|
239 |
</form>
|
240 |
-
<form method=
|
241 |
<?php
|
242 |
// Add hidden list dropdown and status dropdown fields. They will be displayed accordling to the chosen bulk action using JS.
|
243 |
$this->prepare_lists_dropdown();
|
@@ -249,11 +255,10 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
249 |
</form>
|
250 |
</div>
|
251 |
</div>
|
|
|
252 |
</div>
|
253 |
-
<br class="clear">
|
254 |
</div>
|
255 |
-
|
256 |
-
<?php
|
257 |
}
|
258 |
}
|
259 |
|
@@ -609,6 +614,10 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
609 |
$filter_by_list_id = ig_es_get_request_data( 'filter_by_list_id' );
|
610 |
$filter_by_status = ig_es_get_request_data( 'filter_by_status' );
|
611 |
|
|
|
|
|
|
|
|
|
612 |
$contacts_table = IG_CONTACTS_TABLE;
|
613 |
$lists_contacts_table = IG_LISTS_CONTACTS_TABLE;
|
614 |
|
@@ -623,6 +632,21 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
623 |
$sql = "SELECT * FROM {$contacts_table}";
|
624 |
}
|
625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
// Prepare filter by list query
|
627 |
if ( ! empty( $filter_by_list_id ) || ! empty( $filter_by_status ) ) {
|
628 |
$add_where_clause = true;
|
@@ -929,7 +953,7 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
929 |
if ( ! empty( $contact_id ) ) {
|
930 |
$list_contact_status_map = ES()->lists_contacts_db->get_list_contact_status_map( $contact_id );
|
931 |
}
|
932 |
-
|
933 |
$lists_html = "<table class='ig-es-form-list-html'><tr>";
|
934 |
|
935 |
$i = 0;
|
@@ -938,21 +962,21 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
938 |
$lists_html .= "</tr><tr class='mt-3'>";
|
939 |
}
|
940 |
|
941 |
-
|
942 |
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
|
947 |
-
|
948 |
if ( ! empty( $list_contact_status_map[ $list_id ] ) ) {
|
949 |
$status_span = '<span class="border-gray-400 focus:bg-gray-100 es_list_contact_status ' . $list_contact_status_map[ $list_id ] . '" title="' . ucwords( $list_contact_status_map[ $list_id ] ) . '">';
|
950 |
}
|
951 |
|
952 |
-
|
953 |
-
|
954 |
|
955 |
-
|
956 |
}
|
957 |
|
958 |
$lists_html .= '</tr></table>';
|
@@ -1031,7 +1055,7 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
1031 |
}
|
1032 |
|
1033 |
$title .= $item['email'];
|
1034 |
-
$title
|
1035 |
$page = ig_es_get_request_data( 'page' );
|
1036 |
|
1037 |
$actions = array(
|
@@ -1071,7 +1095,7 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
1071 |
* @since 4.0.0
|
1072 |
*/
|
1073 |
public function get_columns() {
|
1074 |
-
$columns
|
1075 |
'cb' => '<input type="checkbox"/>',
|
1076 |
'subscriber' => __( 'Contact', 'email-subscribers' ),
|
1077 |
'lists' => __( 'List(s)', 'email-subscribers' ),
|
@@ -1129,13 +1153,29 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
1129 |
* @since 4.3.4 Added esc_attr()
|
1130 |
*/
|
1131 |
public function search_box( $text = '', $input_id = '' ) {
|
1132 |
-
|
1133 |
?>
|
1134 |
<p class="search-box box-ma10">
|
1135 |
<label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo esc_attr( $text ); ?>:</label>
|
1136 |
<input type="search" id="<?php echo esc_attr( $input_id ); ?>" name="s" value="<?php _admin_search_query(); ?>"/>
|
1137 |
<?php submit_button( __( 'Search Contacts', 'email-subscribers' ), 'button', false, false, array( 'id' => 'search-submit' ) ); ?>
|
1138 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1139 |
<p class="search-box search-group-box box-ma10">
|
1140 |
<?php $filter_by_status = ig_es_get_request_data( 'filter_by_status' ); ?>
|
1141 |
<select name="filter_by_status">
|
223 |
</div>
|
224 |
<div>
|
225 |
<hr class="wp-header-end">
|
226 |
+
|
227 |
</div>
|
228 |
+
|
229 |
<?php $this->get_contacts_reports(); ?>
|
230 |
+
|
231 |
<div id="poststuff" class="es-audience-view es-items-lists">
|
232 |
<div id="post-body" class="metabox-holder column-1">
|
233 |
<div id="post-body-content">
|
237 |
<?php
|
238 |
// Display search field and other available filter fields.
|
239 |
$this->prepare_items();
|
240 |
+
|
241 |
+
// Display Advanced Filter block
|
242 |
+
do_action('ig_es_render_advanced_filter');
|
243 |
+
|
244 |
?>
|
245 |
</form>
|
246 |
+
<form method ='post'>
|
247 |
<?php
|
248 |
// Add hidden list dropdown and status dropdown fields. They will be displayed accordling to the chosen bulk action using JS.
|
249 |
$this->prepare_lists_dropdown();
|
255 |
</form>
|
256 |
</div>
|
257 |
</div>
|
258 |
+
<br class="clear">
|
259 |
</div>
|
|
|
260 |
</div>
|
261 |
+
<?php
|
|
|
262 |
}
|
263 |
}
|
264 |
|
614 |
$filter_by_list_id = ig_es_get_request_data( 'filter_by_list_id' );
|
615 |
$filter_by_status = ig_es_get_request_data( 'filter_by_status' );
|
616 |
|
617 |
+
// Advanced filters for Audience Section
|
618 |
+
$advanced_filter = ig_es_get_request_data('advanced_filter');
|
619 |
+
$advanced_filter = ( !empty($advanced_filter) ) ? $advanced_filter['conditions'] : '';
|
620 |
+
|
621 |
$contacts_table = IG_CONTACTS_TABLE;
|
622 |
$lists_contacts_table = IG_LISTS_CONTACTS_TABLE;
|
623 |
|
632 |
$sql = "SELECT * FROM {$contacts_table}";
|
633 |
}
|
634 |
|
635 |
+
// Construct proper query conditions for advanced filtering
|
636 |
+
if ( !empty ( $advanced_filter ) ) {
|
637 |
+
|
638 |
+
$query_obj = new IG_ES_Subscribers_Query();
|
639 |
+
$query_args = array(
|
640 |
+
'select' => array( 'subscribers.id' ),
|
641 |
+
'conditions'=> $advanced_filter,
|
642 |
+
'return_sql'=> true,
|
643 |
+
);
|
644 |
+
|
645 |
+
$condition = $query_obj->run($query_args);
|
646 |
+
|
647 |
+
array_push($query, 'id IN ( ' . $condition . ' )');
|
648 |
+
$add_where_clause = true;
|
649 |
+
}
|
650 |
// Prepare filter by list query
|
651 |
if ( ! empty( $filter_by_list_id ) || ! empty( $filter_by_status ) ) {
|
652 |
$add_where_clause = true;
|
953 |
if ( ! empty( $contact_id ) ) {
|
954 |
$list_contact_status_map = ES()->lists_contacts_db->get_list_contact_status_map( $contact_id );
|
955 |
}
|
956 |
+
|
957 |
$lists_html = "<table class='ig-es-form-list-html'><tr>";
|
958 |
|
959 |
$i = 0;
|
962 |
$lists_html .= "</tr><tr class='mt-3'>";
|
963 |
}
|
964 |
|
965 |
+
$selected = ! empty( $list_contact_status_map[ $list_id ] ) ? $list_contact_status_map[ $list_id ] : '';
|
966 |
|
967 |
+
$status_dropdown_html = '<select class="h-8 form-select w-40 mt-2 mr-8 shadow-sm border-gray-400 ig-es-statuses-dropdown shadow-sm sm:text-sm sm:leading-5" name="contact_data[lists][' . esc_attr( $list_id ) . ']" >';
|
968 |
+
$status_dropdown_html .= ES_Common::prepare_statuses_dropdown_options( $selected );
|
969 |
+
$status_dropdown_html .= '</select>';
|
970 |
|
971 |
+
$status_span = '';
|
972 |
if ( ! empty( $list_contact_status_map[ $list_id ] ) ) {
|
973 |
$status_span = '<span class="border-gray-400 focus:bg-gray-100 es_list_contact_status ' . $list_contact_status_map[ $list_id ] . '" title="' . ucwords( $list_contact_status_map[ $list_id ] ) . '">';
|
974 |
}
|
975 |
|
976 |
+
$list_name = strlen( $list_name ) > 15 ? substr( $list_name, 0, 15 ) . '...' : $list_name;
|
977 |
+
$lists_html .= "<td class='pr-1 pt-2 text-sm leading-5 font-normal text-gray-500'>$status_span$list_name</td><td>$status_dropdown_html</td>";
|
978 |
|
979 |
+
$i ++;
|
980 |
}
|
981 |
|
982 |
$lists_html .= '</tr></table>';
|
1055 |
}
|
1056 |
|
1057 |
$title .= $item['email'];
|
1058 |
+
$title = apply_filters( 'ig_es_contact_column_subscriber', $title, $item );
|
1059 |
$page = ig_es_get_request_data( 'page' );
|
1060 |
|
1061 |
$actions = array(
|
1095 |
* @since 4.0.0
|
1096 |
*/
|
1097 |
public function get_columns() {
|
1098 |
+
$columns = array(
|
1099 |
'cb' => '<input type="checkbox"/>',
|
1100 |
'subscriber' => __( 'Contact', 'email-subscribers' ),
|
1101 |
'lists' => __( 'List(s)', 'email-subscribers' ),
|
1153 |
* @since 4.3.4 Added esc_attr()
|
1154 |
*/
|
1155 |
public function search_box( $text = '', $input_id = '' ) {
|
1156 |
+
|
1157 |
?>
|
1158 |
<p class="search-box box-ma10">
|
1159 |
<label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo esc_attr( $text ); ?>:</label>
|
1160 |
<input type="search" id="<?php echo esc_attr( $input_id ); ?>" name="s" value="<?php _admin_search_query(); ?>"/>
|
1161 |
<?php submit_button( __( 'Search Contacts', 'email-subscribers' ), 'button', false, false, array( 'id' => 'search-submit' ) ); ?>
|
1162 |
</p>
|
1163 |
+
|
1164 |
+
<?php if ( ES()->is_pro() ) { ?>
|
1165 |
+
<p class="search-box search-group-box box-ma10">
|
1166 |
+
<span class="flex items-center pt-1">
|
1167 |
+
<span class="relative">
|
1168 |
+
<button id="advanced_filter" type="button" class="ig-es-switch js-toggle-collapse" value="no" data-ig-es-switch="inactive" ></button>
|
1169 |
+
</span>
|
1170 |
+
<span>
|
1171 |
+
<label class="mx-2" >
|
1172 |
+
<?php echo esc_html__( 'Advanced Filter', 'email-subscribers'); ?>
|
1173 |
+
</label>
|
1174 |
+
</span>
|
1175 |
+
</span>
|
1176 |
+
</p>
|
1177 |
+
<?php } ?>
|
1178 |
+
|
1179 |
<p class="search-box search-group-box box-ma10">
|
1180 |
<?php $filter_by_status = ig_es_get_request_data( 'filter_by_status' ); ?>
|
1181 |
<select name="filter_by_status">
|
lite/includes/classes/class-es-queue.php
CHANGED
@@ -310,6 +310,8 @@ if ( ! class_exists( 'ES_Queue' ) ) {
|
|
310 |
'having' => array( "timestamp <= UNIX_TIMESTAMP ( CONVERT_TZ( '$end_time', '+0:00', @@session.time_zone ) )" ),
|
311 |
'orderby' => array( 'timestamp' ),
|
312 |
'groupby' => 'lists_subscribers.contact_id',
|
|
|
|
|
313 |
);
|
314 |
|
315 |
if ( $grace_period ) {
|
310 |
'having' => array( "timestamp <= UNIX_TIMESTAMP ( CONVERT_TZ( '$end_time', '+0:00', @@session.time_zone ) )" ),
|
311 |
'orderby' => array( 'timestamp' ),
|
312 |
'groupby' => 'lists_subscribers.contact_id',
|
313 |
+
'status' => 'subscribed',
|
314 |
+
'subscriber_status' => array( 'verified' ),
|
315 |
);
|
316 |
|
317 |
if ( $grace_period ) {
|
lite/includes/classes/class-ig-es-subscriber-query.php
CHANGED
@@ -145,13 +145,7 @@ class IG_ES_Subscribers_Query {
|
|
145 |
$this->args['select'] = array();
|
146 |
}
|
147 |
|
148 |
-
if (
|
149 |
-
if ( ! $this->args['s'] ) {
|
150 |
-
$this->args['status'] = array( 1 );
|
151 |
-
}
|
152 |
-
}
|
153 |
-
|
154 |
-
if ( false !== $this->args['status'] && ! is_null( $this->args['status'] ) && ! is_array( $this->args['status'] ) ) {
|
155 |
$this->args['status'] = explode( ',', $this->args['status'] );
|
156 |
}
|
157 |
|
@@ -336,9 +330,16 @@ class IG_ES_Subscribers_Query {
|
|
336 |
$wheres[] = 'AND ( ' . implode( ' AND ', $cond ) . ' )';
|
337 |
}
|
338 |
|
339 |
-
$joins[]
|
340 |
-
|
341 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
if ( ! is_bool( $this->args['lists'] ) ) {
|
344 |
// unassigned members if NULL
|
145 |
$this->args['select'] = array();
|
146 |
}
|
147 |
|
148 |
+
if ( !empty( $this->args['status'] ) && ! is_null( $this->args['status'] ) && !is_array( $this->args['status'] ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
$this->args['status'] = explode( ',', $this->args['status'] );
|
150 |
}
|
151 |
|
330 |
$wheres[] = 'AND ( ' . implode( ' AND ', $cond ) . ' )';
|
331 |
}
|
332 |
|
333 |
+
$joins[] = "LEFT JOIN {$wpbd->prefix}ig_lists_contacts AS lists_subscribers ON subscribers.id = lists_subscribers.contact_id";
|
334 |
+
|
335 |
+
// Added where clause for including status if only sent in parameters
|
336 |
+
if ( !empty( $this->args['status']) ) {
|
337 |
+
$wheres[] = "AND lists_subscribers.status IN( '" . implode("', '", $this->args['status'] ) . "' ) ";
|
338 |
+
}
|
339 |
+
|
340 |
+
if ( ! empty( $this->args['subscriber_status'] ) ) {
|
341 |
+
$wheres[] = "AND subscribers.status IN( '" . implode("', '", $this->args['subscriber_status'] ) . "' )";
|
342 |
+
}
|
343 |
|
344 |
if ( ! is_bool( $this->args['lists'] ) ) {
|
345 |
// unassigned members if NULL
|
lite/includes/db/class-es-db-sending-queue.php
CHANGED
@@ -321,6 +321,8 @@ class ES_DB_Sending_Queue {
|
|
321 |
'lists' => $list_ids,
|
322 |
'return_sql' => true, // This flag will return the required sql query
|
323 |
'orderby' => array( 'id' ),
|
|
|
|
|
324 |
);
|
325 |
|
326 |
$schedule_base_time = current_time( 'mysql' );
|
321 |
'lists' => $list_ids,
|
322 |
'return_sql' => true, // This flag will return the required sql query
|
323 |
'orderby' => array( 'id' ),
|
324 |
+
'status' => 'subscribed',
|
325 |
+
'subscriber_status' => array( 'verified' ),
|
326 |
);
|
327 |
|
328 |
$schedule_base_time = current_time( 'mysql' );
|
lite/includes/workflows/actions/class-es-action-send-email.php
CHANGED
@@ -232,6 +232,7 @@ if ( ! class_exists( 'ES_Action_Send_Email' ) ) {
|
|
232 |
$email_content = $wc_email->style_inline( $email_content );
|
233 |
// When inlining CSS, curly braces {{UNSUBSCRIBE-LINK}} gets converted to following characters. We are reverting them back
|
234 |
$email_content = str_replace( array( '%5C%7B', '%5C%7D' ), array( '{', '}' ), $email_content );
|
|
|
235 |
}
|
236 |
}
|
237 |
|
232 |
$email_content = $wc_email->style_inline( $email_content );
|
233 |
// When inlining CSS, curly braces {{UNSUBSCRIBE-LINK}} gets converted to following characters. We are reverting them back
|
234 |
$email_content = str_replace( array( '%5C%7B', '%5C%7D' ), array( '{', '}' ), $email_content );
|
235 |
+
$email_content = str_replace( array( '%7B', '%7D' ), array( '{', '}' ), $email_content );
|
236 |
}
|
237 |
}
|
238 |
|
lite/language.php
CHANGED
@@ -539,6 +539,7 @@ __( 'Move to list', 'email-subscribers' ),
|
|
539 |
__( 'Add to list', 'email-subscribers' ),
|
540 |
__( 'Change status', 'email-subscribers' ),
|
541 |
__( 'Search Contacts', 'email-subscribers' ),
|
|
|
542 |
__( 'All Lists', 'email-subscribers' ),
|
543 |
__( 'Contact(s) deleted successfully!', 'email-subscribers' ),
|
544 |
__( 'You do not have a permission to resend email confirmation', 'email-subscribers' ),
|
@@ -1187,6 +1188,7 @@ __( 'Send email', 'email-subscribers' ),
|
|
1187 |
__( 'Score', 'email-subscribers' ),
|
1188 |
/* translators: %s: Taxonomy name */
|
1189 |
__( 'Any %s', 'email-subscribers' ),
|
|
|
1190 |
__( 'Bounce status', 'email-subscribers' ),
|
1191 |
__( 'Soft Bounced', 'email-subscribers' ),
|
1192 |
__( 'Mailjet Bounce notification URL', 'email-subscribers' ),
|
539 |
__( 'Add to list', 'email-subscribers' ),
|
540 |
__( 'Change status', 'email-subscribers' ),
|
541 |
__( 'Search Contacts', 'email-subscribers' ),
|
542 |
+
__( 'Advanced Filter', 'email-subscribers' ),
|
543 |
__( 'All Lists', 'email-subscribers' ),
|
544 |
__( 'Contact(s) deleted successfully!', 'email-subscribers' ),
|
545 |
__( 'You do not have a permission to resend email confirmation', 'email-subscribers' ),
|
1188 |
__( 'Score', 'email-subscribers' ),
|
1189 |
/* translators: %s: Taxonomy name */
|
1190 |
__( 'Any %s', 'email-subscribers' ),
|
1191 |
+
__( 'Filter Contacts', 'email-subscribers' ),
|
1192 |
__( 'Bounce status', 'email-subscribers' ),
|
1193 |
__( 'Soft Bounced', 'email-subscribers' ),
|
1194 |
__( 'Mailjet Bounce notification URL', 'email-subscribers' ),
|
lite/languages/email-subscribers.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 5.3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-05-
|
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"
|
@@ -80,7 +80,7 @@ msgid "Please add a campaign subject before saving."
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: lite/admin/class-email-subscribers-admin.php:176
|
83 |
-
#: pro/pro-class-email-subscribers.php:
|
84 |
msgid "Please add email body."
|
85 |
msgstr ""
|
86 |
|
@@ -314,15 +314,15 @@ msgid "Go To Icegram"
|
|
314 |
msgstr ""
|
315 |
|
316 |
#. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
|
317 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
318 |
msgid "<span id=\"footer-thankyou\">Thank you for creating with <a href=\"%1$s\" target=\"_blank\">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href=\"%3$s\" target=\"_blank\">Icegram</a></span>"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
322 |
msgid "Something went wrong"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
326 |
#: lite/includes/class-email-subscribers-activator.php:61
|
327 |
#: lite/includes/class-email-subscribers.php:1491
|
328 |
#: lite/includes/classes/class-es-form-widget.php:11
|
@@ -333,22 +333,22 @@ msgstr ""
|
|
333 |
msgid "Email Subscribers"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
337 |
msgid "Last 30 days"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
341 |
#: lite/includes/class-es-common.php:319
|
342 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
343 |
#: lite/includes/classes/class-es-import-subscribers.php:867
|
344 |
#: lite/includes/classes/class-es-import-subscribers.php:1356
|
345 |
#: lite/includes/classes/class-es-lists-table.php:639
|
346 |
msgid "Subscribed"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
350 |
#: lite/includes/class-es-common.php:321
|
351 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
352 |
#: lite/includes/classes/class-es-import-subscribers.php:868
|
353 |
#: lite/includes/classes/class-es-import-subscribers.php:1357
|
354 |
#: lite/includes/classes/class-es-lists-table.php:640
|
@@ -356,25 +356,25 @@ msgstr ""
|
|
356 |
msgid "Unsubscribed"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
360 |
#: lite/includes/pro-features.php:1256
|
361 |
msgid "Avg Open Rate"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
365 |
#: lite/admin/partials/dashboard.php:240
|
366 |
msgid "Messages Sent"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
370 |
msgid "Last Campaign"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
374 |
msgid "Sent to"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
378 |
#: lite/admin/partials/dashboard.php:224
|
379 |
#: lite/includes/pro-features.php:1336
|
380 |
#: lite/includes/pro-features.php:1374
|
@@ -386,15 +386,15 @@ msgstr ""
|
|
386 |
msgid "Opens"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
390 |
msgid "No campaigns sent yet"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
394 |
msgid "Latest Blog Posts from Icegram"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
398 |
msgid "Please publish it or save it as a draft."
|
399 |
msgstr ""
|
400 |
|
@@ -578,6 +578,8 @@ msgstr ""
|
|
578 |
#: lite/admin/class-ig-es-campaign-rules.php:555
|
579 |
#: lite/admin/class-ig-es-campaign-rules.php:561
|
580 |
#: lite/admin/class-ig-es-campaign-rules.php:595
|
|
|
|
|
581 |
msgid "or"
|
582 |
msgstr ""
|
583 |
|
@@ -617,10 +619,13 @@ msgstr ""
|
|
617 |
|
618 |
#: lite/admin/class-ig-es-campaign-rules.php:270
|
619 |
#: lite/admin/class-ig-es-campaign-rules.php:407
|
|
|
|
|
620 |
msgid "Add Condition"
|
621 |
msgstr ""
|
622 |
|
623 |
#: lite/admin/class-ig-es-campaign-rules.php:273
|
|
|
624 |
msgid "remove condition"
|
625 |
msgstr ""
|
626 |
|
@@ -631,15 +636,18 @@ msgstr ""
|
|
631 |
|
632 |
#: lite/admin/class-ig-es-campaign-rules.php:370
|
633 |
#: lite/admin/class-ig-es-campaign-rules.php:388
|
|
|
634 |
msgid "no title"
|
635 |
msgstr ""
|
636 |
|
637 |
#: lite/admin/class-ig-es-campaign-rules.php:383
|
638 |
#: lite/admin/class-ig-es-campaign-rules.php:779
|
|
|
639 |
msgid "Any list"
|
640 |
msgstr ""
|
641 |
|
642 |
#: lite/admin/class-ig-es-campaign-rules.php:392
|
|
|
643 |
msgid "No campaigns available"
|
644 |
msgstr ""
|
645 |
|
@@ -668,7 +676,7 @@ msgstr ""
|
|
668 |
#: lite/admin/class-ig-es-campaign-rules.php:630
|
669 |
#: lite/includes/classes/class-es-admin-settings.php:213
|
670 |
#: lite/includes/classes/class-es-campaign-report.php:189
|
671 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
672 |
#: lite/includes/classes/class-es-export-subscribers.php:339
|
673 |
#: lite/includes/classes/class-es-forms-table.php:401
|
674 |
#: lite/includes/classes/class-es-import-subscribers.php:587
|
@@ -682,7 +690,7 @@ msgstr ""
|
|
682 |
#: lite/public/partials/class-es-shortcode.php:283
|
683 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
684 |
#: pro/classes/class-es-pro-embed-form.php:193
|
685 |
-
#: pro/pro-class-email-subscribers.php:
|
686 |
msgid "Email"
|
687 |
msgstr ""
|
688 |
|
@@ -1021,7 +1029,7 @@ msgid " active contacts"
|
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: lite/admin/partials/dashboard.php:216
|
1024 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1025 |
msgid "Last 60 days"
|
1026 |
msgstr ""
|
1027 |
|
@@ -1475,7 +1483,7 @@ msgid "Value was set using constant %1$s"
|
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: lite/includes/class-es-common.php:320
|
1478 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1479 |
#: lite/includes/classes/class-es-import-subscribers.php:869
|
1480 |
#: lite/includes/classes/class-es-import-subscribers.php:1358
|
1481 |
#: lite/includes/classes/class-es-lists-table.php:641
|
@@ -1647,7 +1655,7 @@ msgstr ""
|
|
1647 |
|
1648 |
#: lite/includes/class-es-common.php:2008
|
1649 |
#: lite/includes/classes/class-es-campaigns-table.php:691
|
1650 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1651 |
msgid "All Statuses"
|
1652 |
msgstr ""
|
1653 |
|
@@ -1699,7 +1707,7 @@ msgstr ""
|
|
1699 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1700 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1701 |
#: pro/classes/class-es-campaign-admin-pro.php:196
|
1702 |
-
#: pro/pro-class-email-subscribers.php:
|
1703 |
msgid "Date"
|
1704 |
msgstr ""
|
1705 |
|
@@ -2061,7 +2069,7 @@ msgid "Viewed Date"
|
|
2061 |
msgstr ""
|
2062 |
|
2063 |
#: lite/includes/classes/class-es-campaign-report.php:245
|
2064 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2065 |
#: lite/includes/pro-features.php:1248
|
2066 |
#: pro/classes/class-es-pro-reports-data.php:247
|
2067 |
#: pro/classes/class-es-pro-reports-data.php:875
|
@@ -2154,7 +2162,7 @@ msgstr ""
|
|
2154 |
#: lite/includes/classes/class-es-campaigns-table.php:434
|
2155 |
#: lite/includes/classes/class-es-campaigns-table.php:436
|
2156 |
#: lite/includes/classes/class-es-campaigns-table.php:464
|
2157 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2158 |
#: lite/includes/classes/class-es-forms-table.php:971
|
2159 |
#: lite/includes/classes/class-es-lists-table.php:616
|
2160 |
#: lite/includes/workflows/admin/views/action.php:29
|
@@ -2164,8 +2172,8 @@ msgid "Edit"
|
|
2164 |
msgstr ""
|
2165 |
|
2166 |
#: lite/includes/classes/class-es-campaigns-table.php:488
|
2167 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2168 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2169 |
#: lite/includes/classes/class-es-forms-table.php:973
|
2170 |
#: lite/includes/classes/class-es-forms-table.php:1020
|
2171 |
#: lite/includes/classes/class-es-lists-table.php:618
|
@@ -2189,8 +2197,8 @@ msgid "Type"
|
|
2189 |
msgstr ""
|
2190 |
|
2191 |
#: lite/includes/classes/class-es-campaigns-table.php:628
|
2192 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2193 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2194 |
msgid "List(s)"
|
2195 |
msgstr ""
|
2196 |
|
@@ -2199,7 +2207,7 @@ msgid "Categories"
|
|
2199 |
msgstr ""
|
2200 |
|
2201 |
#: lite/includes/classes/class-es-campaigns-table.php:630
|
2202 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2203 |
#: lite/includes/classes/class-es-forms-table.php:992
|
2204 |
msgid "Created"
|
2205 |
msgstr ""
|
@@ -2230,7 +2238,7 @@ msgid "Please select campaign(s) to delete."
|
|
2230 |
msgstr ""
|
2231 |
|
2232 |
#: lite/includes/classes/class-es-contacts-table.php:70
|
2233 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2234 |
#: lite/includes/workflows/actions/class-es-action-delete-contact.php:31
|
2235 |
#: lite/includes/workflows/actions/class-es-action-update-contact.php:31
|
2236 |
msgid "Contact"
|
@@ -2256,25 +2264,25 @@ msgid "Export Contacts"
|
|
2256 |
msgstr ""
|
2257 |
|
2258 |
#: lite/includes/classes/class-es-contacts-table.php:162
|
2259 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2260 |
msgid "Manage Lists"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2264 |
#: lite/includes/classes/class-es-export-subscribers.php:82
|
2265 |
#: lite/includes/classes/class-es-reports-table.php:320
|
2266 |
msgid "Total contacts"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2270 |
msgid " Add New Contact"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2274 |
msgid " Edit Contact"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2278 |
#: lite/includes/classes/class-es-forms-table.php:98
|
2279 |
#: lite/includes/classes/class-es-lists-table.php:91
|
2280 |
#: lite/includes/classes/class-es-post-notifications.php:327
|
@@ -2283,30 +2291,30 @@ msgstr ""
|
|
2283 |
msgid "Add New"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2287 |
msgid "Contact already exist."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
#. translators: 1. Contact edit URL tag 2: Anchor close tag
|
2291 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2292 |
msgid "Contact added successfully. %1$sEdit contact%2$s."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2296 |
msgid "Contact updated successfully!"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2300 |
#: lite/includes/classes/class-es-export-subscribers.php:36
|
2301 |
#: lite/includes/classes/class-es-lists-table.php:772
|
2302 |
msgid "Please select list"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2306 |
msgid "Please enter valid email address"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2310 |
#: lite/includes/classes/class-es-export-subscribers.php:157
|
2311 |
#: lite/includes/classes/class-es-handle-sync-wp-user.php:216
|
2312 |
#: lite/includes/classes/class-es-import-subscribers.php:409
|
@@ -2315,44 +2323,44 @@ msgstr ""
|
|
2315 |
msgid "Audience "
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2319 |
msgid "No list found"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2323 |
msgid "First name"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2327 |
msgid "Enter first name"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2331 |
msgid "Last name"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2335 |
msgid "Enter last name"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2339 |
msgid "Enter email"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2343 |
msgid "Send welcome email?"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2347 |
#: lite/includes/classes/class-es-forms-table.php:469
|
2348 |
msgid "Contacts will be added into selected list(s)"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2352 |
msgid "Add Contact"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2356 |
#: lite/includes/classes/class-es-forms-table.php:618
|
2357 |
#: lite/includes/classes/class-es-lists-table.php:384
|
2358 |
#: lite/includes/classes/class-es-post-notifications.php:451
|
@@ -2360,7 +2368,7 @@ msgstr ""
|
|
2360 |
msgid "Save Changes"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2364 |
#: lite/includes/classes/class-es-forms-table.php:622
|
2365 |
#: lite/includes/classes/class-es-lists-table.php:388
|
2366 |
#: lite/includes/classes/class-es-post-notifications.php:454
|
@@ -2368,72 +2376,76 @@ msgstr ""
|
|
2368 |
msgid "Cancel"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2372 |
msgid "No contacts avaliable."
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2376 |
msgid "Resend Confirmation"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2380 |
#: pro/workflows/actions/class-es-action-move-to-list.php:29
|
2381 |
msgid "Move to list"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2385 |
#: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
|
2386 |
msgid "Add to list"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2390 |
msgid "Change status"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2394 |
msgid "Search Contacts"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
|
|
|
|
|
|
|
|
2398 |
msgid "All Lists"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2402 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2403 |
msgid "Contact(s) deleted successfully!"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2407 |
msgid "You do not have a permission to resend email confirmation"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2411 |
msgid "Confirmation email sent successfully!"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2415 |
msgid "Please select subscribers to update."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2419 |
msgid "Please select status."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2423 |
msgid "Contact(s) status changed successfully!"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2427 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2428 |
#: lite/includes/classes/class-es-post-notifications.php:72
|
2429 |
msgid "Please select list."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2433 |
msgid "Contact(s) moved to list successfully!"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2437 |
msgid "Contact(s) added to list successfully!"
|
2438 |
msgstr ""
|
2439 |
|
@@ -2550,7 +2562,7 @@ msgstr ""
|
|
2550 |
#: lite/includes/classes/class-es-import-subscribers.php:682
|
2551 |
#: lite/includes/classes/class-es-import-subscribers.php:1094
|
2552 |
#: lite/includes/classes/class-es-import-subscribers.php:1349
|
2553 |
-
#: pro/pro-class-email-subscribers.php:
|
2554 |
msgid "First Name"
|
2555 |
msgstr ""
|
2556 |
|
@@ -2559,7 +2571,7 @@ msgstr ""
|
|
2559 |
#: lite/includes/classes/class-es-import-subscribers.php:683
|
2560 |
#: lite/includes/classes/class-es-import-subscribers.php:1099
|
2561 |
#: lite/includes/classes/class-es-import-subscribers.php:1350
|
2562 |
-
#: pro/pro-class-email-subscribers.php:
|
2563 |
msgid "Last Name"
|
2564 |
msgstr ""
|
2565 |
|
@@ -3543,7 +3555,7 @@ msgstr ""
|
|
3543 |
|
3544 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3545 |
#: lite/includes/classes/class-es-templates-table.php:209
|
3546 |
-
#: pro/pro-class-email-subscribers.php:
|
3547 |
msgid "Duplicate"
|
3548 |
msgstr ""
|
3549 |
|
@@ -3627,7 +3639,7 @@ msgstr ""
|
|
3627 |
msgid "Contact Us"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: lite/includes/notices/class-es-admin-notices.php:
|
3631 |
msgid "Action failed. Please refresh the page and retry."
|
3632 |
msgstr ""
|
3633 |
|
@@ -3806,12 +3818,12 @@ msgid "Access Control"
|
|
3806 |
msgstr ""
|
3807 |
|
3808 |
#: lite/includes/pro-features.php:278
|
3809 |
-
#: pro/pro-class-email-subscribers.php:
|
3810 |
msgid "Track clicks"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
#: lite/includes/pro-features.php:279
|
3814 |
-
#: pro/pro-class-email-subscribers.php:
|
3815 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3816 |
msgstr ""
|
3817 |
|
@@ -3863,7 +3875,7 @@ msgid "Opt-in consent text"
|
|
3863 |
msgstr ""
|
3864 |
|
3865 |
#: lite/includes/pro-features.php:348
|
3866 |
-
#: pro/pro-class-email-subscribers.php:
|
3867 |
msgid "Weekly summary"
|
3868 |
msgstr ""
|
3869 |
|
@@ -3911,7 +3923,7 @@ msgid "Prevent bot signups even further. Set default captcha option for new subs
|
|
3911 |
msgstr ""
|
3912 |
|
3913 |
#: lite/includes/pro-features.php:428
|
3914 |
-
#: pro/pro-class-email-subscribers.php:
|
3915 |
msgid "Track IP address"
|
3916 |
msgstr ""
|
3917 |
|
@@ -4183,26 +4195,26 @@ msgstr ""
|
|
4183 |
|
4184 |
#: lite/includes/pro-features.php:1122
|
4185 |
#: pro/classes/class-es-campaign-admin-pro.php:171
|
4186 |
-
#: pro/pro-class-email-subscribers.php:
|
4187 |
msgid "Send options"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
#: lite/includes/pro-features.php:1125
|
4191 |
#: pro/classes/class-es-campaign-admin-pro.php:182
|
4192 |
-
#: pro/pro-class-email-subscribers.php:
|
4193 |
msgid "Schedule for later"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
#: lite/includes/pro-features.php:1141
|
4197 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
4198 |
#: pro/classes/class-es-campaign-admin-pro.php:210
|
4199 |
-
#: pro/pro-class-email-subscribers.php:
|
4200 |
msgid "Time"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
#: lite/includes/pro-features.php:1151
|
4204 |
#: pro/classes/class-es-campaign-admin-pro.php:225
|
4205 |
-
#: pro/pro-class-email-subscribers.php:
|
4206 |
msgid "Local Time: "
|
4207 |
msgstr ""
|
4208 |
|
@@ -4327,12 +4339,12 @@ msgid "Mobile"
|
|
4327 |
msgstr ""
|
4328 |
|
4329 |
#: lite/includes/pro-features.php:1690
|
4330 |
-
#: pro/pro-class-email-subscribers.php:
|
4331 |
msgid "Add Attachments"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
#: lite/includes/pro-features.php:1720
|
4335 |
-
#: pro/pro-class-email-subscribers.php:
|
4336 |
msgid "Import existing WordPress users"
|
4337 |
msgstr ""
|
4338 |
|
@@ -4879,7 +4891,7 @@ msgid "Send welcome email when someone subscribes"
|
|
4879 |
msgstr ""
|
4880 |
|
4881 |
#: lite/includes/workflows/db/class-es-db-workflows.php:608
|
4882 |
-
#: pro/pro-class-email-subscribers.php:
|
4883 |
msgid "Send confirmation email"
|
4884 |
msgstr ""
|
4885 |
|
@@ -5055,7 +5067,7 @@ msgstr ""
|
|
5055 |
|
5056 |
#: lite/public/partials/cron-message.php:43
|
5057 |
#: pro/classes/class-es-campaign-admin-pro.php:176
|
5058 |
-
#: pro/pro-class-email-subscribers.php:
|
5059 |
msgid "Send Now"
|
5060 |
msgstr ""
|
5061 |
|
@@ -5104,6 +5116,10 @@ msgstr ""
|
|
5104 |
msgid "Any %s"
|
5105 |
msgstr ""
|
5106 |
|
|
|
|
|
|
|
|
|
5107 |
#: pro/classes/class-es-pro-bounce-handler.php:100
|
5108 |
msgid "Bounce status"
|
5109 |
msgstr ""
|
@@ -5158,7 +5174,7 @@ msgstr ""
|
|
5158 |
|
5159 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
5160 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
5161 |
-
#: pro/pro-class-email-subscribers.php:
|
5162 |
msgid "Custom Fields"
|
5163 |
msgstr ""
|
5164 |
|
@@ -5289,7 +5305,7 @@ msgid "Recipient(s): "
|
|
5289 |
msgstr ""
|
5290 |
|
5291 |
#: pro/classes/class-es-pro-reports-data.php:261
|
5292 |
-
#: pro/pro-class-email-subscribers.php:
|
5293 |
msgid "Clicked"
|
5294 |
msgstr ""
|
5295 |
|
@@ -5425,81 +5441,81 @@ msgid "Generated by Email subscribers and Newsletters"
|
|
5425 |
msgstr ""
|
5426 |
|
5427 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
|
5428 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5429 |
msgid "Access Key ID is empty."
|
5430 |
msgstr ""
|
5431 |
|
5432 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
|
5433 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5434 |
msgid "Secret Access Key is empty."
|
5435 |
msgstr ""
|
5436 |
|
5437 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
|
5438 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5439 |
msgid "Closest region is not set."
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5443 |
msgid "US East (N. Virginia)"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5447 |
msgid "US East (Ohio)"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5451 |
msgid "US West (Oregon)"
|
5452 |
msgstr ""
|
5453 |
|
5454 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5455 |
msgid "US AWS GovCloud"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5459 |
msgid "EU (Ireland)"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5463 |
msgid "EU (London)"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5467 |
msgid "EU (Frankfurt)"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5471 |
msgid "EU (Milan)"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5475 |
msgid "Asia Pacific (Mumbai)"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5479 |
msgid "Asia Pacific (Tokyo)"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5483 |
msgid "Asia Pacific (Seoul)"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5487 |
msgid "Asia Pacific (Singapore)"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5491 |
msgid "Asia Pacific (Sydney)"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5495 |
msgid "Canada (Central)"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5499 |
msgid "South America (São Paulo)"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
5503 |
msgid "Africa (Cape Town)"
|
5504 |
msgstr ""
|
5505 |
|
@@ -5578,256 +5594,256 @@ msgstr ""
|
|
5578 |
msgid "Your cart could not be restored, it may have expired."
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: pro/pro-class-email-subscribers.php:
|
5582 |
#: pro/pro-class-post-digest.php:33
|
5583 |
msgid "Sequence"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: pro/pro-class-email-subscribers.php:
|
5587 |
msgid "Please enter an email address."
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: pro/pro-class-email-subscribers.php:
|
5591 |
msgid "Please enter the subject."
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: pro/pro-class-email-subscribers.php:
|
5595 |
msgid "Add Attachment"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
#. translators: %s: Attachmen max file size.
|
5599 |
-
#: pro/pro-class-email-subscribers.php:
|
5600 |
msgid "Please attach a file having size lower than %s."
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: pro/pro-class-email-subscribers.php:
|
5604 |
msgid "Are you sure you want to delete this?"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: pro/pro-class-email-subscribers.php:
|
5608 |
-
#: pro/pro-class-email-subscribers.php:
|
5609 |
msgid "Checking your orders..."
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: pro/pro-class-email-subscribers.php:
|
5613 |
#: pro/pro-class-sequences.php:685
|
5614 |
msgid "Send immediately"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: pro/pro-class-email-subscribers.php:
|
5618 |
msgid "Send after"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: pro/pro-class-email-subscribers.php:
|
5622 |
#: pro/pro-class-sequences.php:598
|
5623 |
msgid "hour(s)"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: pro/pro-class-email-subscribers.php:
|
5627 |
#: pro/pro-class-sequences.php:599
|
5628 |
msgid "day(s)"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: pro/pro-class-email-subscribers.php:
|
5632 |
#: pro/pro-class-sequences.php:600
|
5633 |
msgid "week(s)"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: pro/pro-class-email-subscribers.php:
|
5637 |
msgid "Clean My List"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#: pro/pro-class-email-subscribers.php:
|
5641 |
msgid "List cleanup is in progress..."
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: pro/pro-class-email-subscribers.php:
|
5645 |
msgid "List cleanup completed successfully."
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: pro/pro-class-email-subscribers.php:
|
5649 |
msgid "Email status"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#: pro/pro-class-email-subscribers.php:
|
5653 |
msgid "Last opened at"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#: pro/pro-class-email-subscribers.php:
|
5657 |
msgid "Select page"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#: pro/pro-class-email-subscribers.php:
|
5661 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: pro/pro-class-email-subscribers.php:
|
5665 |
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."
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: pro/pro-class-email-subscribers.php:
|
5669 |
msgid "Enable?"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: pro/pro-class-email-subscribers.php:
|
5673 |
msgid "When our automated weekly email should be sent out?"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: pro/pro-class-email-subscribers.php:
|
5677 |
msgid "In which time we need to send our weekly summary?"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#: pro/pro-class-email-subscribers.php:
|
5681 |
msgid "Access Key ID"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: pro/pro-class-email-subscribers.php:
|
5685 |
msgid "Secret Access Key"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: pro/pro-class-email-subscribers.php:
|
5689 |
msgid "Closest Region"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
-
#: pro/pro-class-email-subscribers.php:
|
5693 |
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."
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#: pro/pro-class-email-subscribers.php:
|
5697 |
msgid "Private API Key"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#: pro/pro-class-email-subscribers.php:
|
5701 |
msgid "Domain Name"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: pro/pro-class-email-subscribers.php:
|
5705 |
-
#: pro/pro-class-email-subscribers.php:
|
5706 |
msgid "United States"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
-
#: pro/pro-class-email-subscribers.php:
|
5710 |
-
#: pro/pro-class-email-subscribers.php:
|
5711 |
msgid "Europe"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
-
#: pro/pro-class-email-subscribers.php:
|
5715 |
-
#: pro/pro-class-email-subscribers.php:
|
5716 |
msgid "Region"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
-
#: pro/pro-class-email-subscribers.php:
|
5720 |
msgid "mailgun.com"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: pro/pro-class-email-subscribers.php:
|
5724 |
-
#: pro/pro-class-email-subscribers.php:
|
5725 |
msgid "API Key"
|
5726 |
msgstr ""
|
5727 |
|
5728 |
-
#: pro/pro-class-email-subscribers.php:
|
5729 |
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."
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: pro/pro-class-email-subscribers.php:
|
5733 |
msgid "API token"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: pro/pro-class-email-subscribers.php:
|
5737 |
msgid "API key"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: pro/pro-class-email-subscribers.php:
|
5741 |
msgid "Public key"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
-
#: pro/pro-class-email-subscribers.php:
|
5745 |
msgid "Private key"
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#: pro/pro-class-email-subscribers.php:
|
5749 |
msgid "You are not allowed to duplicate campaign."
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#: pro/pro-class-email-subscribers.php:
|
5753 |
msgid "Campaign duplicated !"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
-
#: pro/pro-class-email-subscribers.php:
|
5757 |
msgid "Import WordPress users with following roles"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: pro/pro-class-email-subscribers.php:
|
5761 |
-
#: pro/pro-class-email-subscribers.php:
|
5762 |
msgid "Proceed "
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: pro/pro-class-email-subscribers.php:
|
5766 |
msgid "Import from WooCommerce orders"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
-
#: pro/pro-class-email-subscribers.php:
|
5770 |
msgid "Select order statuses"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: pro/pro-class-email-subscribers.php:
|
5774 |
msgid "Orders should contain these products"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
-
#: pro/pro-class-email-subscribers.php:
|
5778 |
msgid "Search products..."
|
5779 |
msgstr ""
|
5780 |
|
5781 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5782 |
-
#: pro/pro-class-email-subscribers.php:
|
5783 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: pro/pro-class-email-subscribers.php:
|
5787 |
msgid "We can't find any matching orders in your store."
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: pro/pro-class-email-subscribers.php:
|
5791 |
msgid "Total Opened"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: pro/pro-class-email-subscribers.php:
|
5795 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: pro/pro-class-email-subscribers.php:
|
5799 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: pro/pro-class-email-subscribers.php:
|
5803 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
-
#: pro/pro-class-email-subscribers.php:
|
5807 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: pro/pro-class-email-subscribers.php:
|
5811 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#: pro/pro-class-email-subscribers.php:
|
5815 |
msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
-
#: pro/pro-class-email-subscribers.php:
|
5819 |
msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: pro/pro-class-email-subscribers.php:
|
5823 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5824 |
msgstr ""
|
5825 |
|
5826 |
-
#: pro/pro-class-email-subscribers.php:
|
5827 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5828 |
msgstr ""
|
5829 |
|
5830 |
-
#: pro/pro-class-email-subscribers.php:
|
5831 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5832 |
msgstr ""
|
5833 |
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 5.3.15\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-05-18T07:24:52+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"
|
80 |
msgstr ""
|
81 |
|
82 |
#: lite/admin/class-email-subscribers-admin.php:176
|
83 |
+
#: pro/pro-class-email-subscribers.php:604
|
84 |
msgid "Please add email body."
|
85 |
msgstr ""
|
86 |
|
314 |
msgstr ""
|
315 |
|
316 |
#. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
|
317 |
+
#: lite/admin/class-email-subscribers-admin.php:919
|
318 |
msgid "<span id=\"footer-thankyou\">Thank you for creating with <a href=\"%1$s\" target=\"_blank\">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href=\"%3$s\" target=\"_blank\">Icegram</a></span>"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: lite/admin/class-email-subscribers-admin.php:947
|
322 |
msgid "Something went wrong"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: lite/admin/class-email-subscribers-admin.php:1328
|
326 |
#: lite/includes/class-email-subscribers-activator.php:61
|
327 |
#: lite/includes/class-email-subscribers.php:1491
|
328 |
#: lite/includes/classes/class-es-form-widget.php:11
|
333 |
msgid "Email Subscribers"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: lite/admin/class-email-subscribers-admin.php:1370
|
337 |
msgid "Last 30 days"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: lite/admin/class-email-subscribers-admin.php:1379
|
341 |
#: lite/includes/class-es-common.php:319
|
342 |
+
#: lite/includes/classes/class-es-contacts-table.php:332
|
343 |
#: lite/includes/classes/class-es-import-subscribers.php:867
|
344 |
#: lite/includes/classes/class-es-import-subscribers.php:1356
|
345 |
#: lite/includes/classes/class-es-lists-table.php:639
|
346 |
msgid "Subscribed"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: lite/admin/class-email-subscribers-admin.php:1387
|
350 |
#: lite/includes/class-es-common.php:321
|
351 |
+
#: lite/includes/classes/class-es-contacts-table.php:340
|
352 |
#: lite/includes/classes/class-es-import-subscribers.php:868
|
353 |
#: lite/includes/classes/class-es-import-subscribers.php:1357
|
354 |
#: lite/includes/classes/class-es-lists-table.php:640
|
356 |
msgid "Unsubscribed"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: lite/admin/class-email-subscribers-admin.php:1395
|
360 |
#: lite/includes/pro-features.php:1256
|
361 |
msgid "Avg Open Rate"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: lite/admin/class-email-subscribers-admin.php:1403
|
365 |
#: lite/admin/partials/dashboard.php:240
|
366 |
msgid "Messages Sent"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: lite/admin/class-email-subscribers-admin.php:1414
|
370 |
msgid "Last Campaign"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: lite/admin/class-email-subscribers-admin.php:1450
|
374 |
msgid "Sent to"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: lite/admin/class-email-subscribers-admin.php:1462
|
378 |
#: lite/admin/partials/dashboard.php:224
|
379 |
#: lite/includes/pro-features.php:1336
|
380 |
#: lite/includes/pro-features.php:1374
|
386 |
msgid "Opens"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: lite/admin/class-email-subscribers-admin.php:1476
|
390 |
msgid "No campaigns sent yet"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: lite/admin/class-email-subscribers-admin.php:1484
|
394 |
msgid "Latest Blog Posts from Icegram"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: lite/admin/class-email-subscribers-admin.php:1588
|
398 |
msgid "Please publish it or save it as a draft."
|
399 |
msgstr ""
|
400 |
|
578 |
#: lite/admin/class-ig-es-campaign-rules.php:555
|
579 |
#: lite/admin/class-ig-es-campaign-rules.php:561
|
580 |
#: lite/admin/class-ig-es-campaign-rules.php:595
|
581 |
+
#: pro/classes/class-es-pro-advanced-filters.php:72
|
582 |
+
#: pro/classes/class-es-pro-advanced-filters.php:74
|
583 |
msgid "or"
|
584 |
msgstr ""
|
585 |
|
619 |
|
620 |
#: lite/admin/class-ig-es-campaign-rules.php:270
|
621 |
#: lite/admin/class-ig-es-campaign-rules.php:407
|
622 |
+
#: pro/classes/class-es-pro-advanced-filters.php:72
|
623 |
+
#: pro/classes/class-es-pro-advanced-filters.php:205
|
624 |
msgid "Add Condition"
|
625 |
msgstr ""
|
626 |
|
627 |
#: lite/admin/class-ig-es-campaign-rules.php:273
|
628 |
+
#: pro/classes/class-es-pro-advanced-filters.php:75
|
629 |
msgid "remove condition"
|
630 |
msgstr ""
|
631 |
|
636 |
|
637 |
#: lite/admin/class-ig-es-campaign-rules.php:370
|
638 |
#: lite/admin/class-ig-es-campaign-rules.php:388
|
639 |
+
#: pro/classes/class-es-pro-advanced-filters.php:183
|
640 |
msgid "no title"
|
641 |
msgstr ""
|
642 |
|
643 |
#: lite/admin/class-ig-es-campaign-rules.php:383
|
644 |
#: lite/admin/class-ig-es-campaign-rules.php:779
|
645 |
+
#: pro/classes/class-es-pro-advanced-filters.php:178
|
646 |
msgid "Any list"
|
647 |
msgstr ""
|
648 |
|
649 |
#: lite/admin/class-ig-es-campaign-rules.php:392
|
650 |
+
#: pro/classes/class-es-pro-advanced-filters.php:187
|
651 |
msgid "No campaigns available"
|
652 |
msgstr ""
|
653 |
|
676 |
#: lite/admin/class-ig-es-campaign-rules.php:630
|
677 |
#: lite/includes/classes/class-es-admin-settings.php:213
|
678 |
#: lite/includes/classes/class-es-campaign-report.php:189
|
679 |
+
#: lite/includes/classes/class-es-contacts-table.php:813
|
680 |
#: lite/includes/classes/class-es-export-subscribers.php:339
|
681 |
#: lite/includes/classes/class-es-forms-table.php:401
|
682 |
#: lite/includes/classes/class-es-import-subscribers.php:587
|
690 |
#: lite/public/partials/class-es-shortcode.php:283
|
691 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
692 |
#: pro/classes/class-es-pro-embed-form.php:193
|
693 |
+
#: pro/pro-class-email-subscribers.php:2270
|
694 |
msgid "Email"
|
695 |
msgstr ""
|
696 |
|
1029 |
msgstr ""
|
1030 |
|
1031 |
#: lite/admin/partials/dashboard.php:216
|
1032 |
+
#: lite/includes/classes/class-es-contacts-table.php:325
|
1033 |
msgid "Last 60 days"
|
1034 |
msgstr ""
|
1035 |
|
1483 |
msgstr ""
|
1484 |
|
1485 |
#: lite/includes/class-es-common.php:320
|
1486 |
+
#: lite/includes/classes/class-es-contacts-table.php:348
|
1487 |
#: lite/includes/classes/class-es-import-subscribers.php:869
|
1488 |
#: lite/includes/classes/class-es-import-subscribers.php:1358
|
1489 |
#: lite/includes/classes/class-es-lists-table.php:641
|
1655 |
|
1656 |
#: lite/includes/class-es-common.php:2008
|
1657 |
#: lite/includes/classes/class-es-campaigns-table.php:691
|
1658 |
+
#: lite/includes/classes/class-es-contacts-table.php:1185
|
1659 |
msgid "All Statuses"
|
1660 |
msgstr ""
|
1661 |
|
1707 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1708 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1709 |
#: pro/classes/class-es-campaign-admin-pro.php:196
|
1710 |
+
#: pro/pro-class-email-subscribers.php:869
|
1711 |
msgid "Date"
|
1712 |
msgstr ""
|
1713 |
|
2069 |
msgstr ""
|
2070 |
|
2071 |
#: lite/includes/classes/class-es-campaign-report.php:245
|
2072 |
+
#: lite/includes/classes/class-es-contacts-table.php:356
|
2073 |
#: lite/includes/pro-features.php:1248
|
2074 |
#: pro/classes/class-es-pro-reports-data.php:247
|
2075 |
#: pro/classes/class-es-pro-reports-data.php:875
|
2162 |
#: lite/includes/classes/class-es-campaigns-table.php:434
|
2163 |
#: lite/includes/classes/class-es-campaigns-table.php:436
|
2164 |
#: lite/includes/classes/class-es-campaigns-table.php:464
|
2165 |
+
#: lite/includes/classes/class-es-contacts-table.php:1062
|
2166 |
#: lite/includes/classes/class-es-forms-table.php:971
|
2167 |
#: lite/includes/classes/class-es-lists-table.php:616
|
2168 |
#: lite/includes/workflows/admin/views/action.php:29
|
2172 |
msgstr ""
|
2173 |
|
2174 |
#: lite/includes/classes/class-es-campaigns-table.php:488
|
2175 |
+
#: lite/includes/classes/class-es-contacts-table.php:1064
|
2176 |
+
#: lite/includes/classes/class-es-contacts-table.php:1135
|
2177 |
#: lite/includes/classes/class-es-forms-table.php:973
|
2178 |
#: lite/includes/classes/class-es-forms-table.php:1020
|
2179 |
#: lite/includes/classes/class-es-lists-table.php:618
|
2197 |
msgstr ""
|
2198 |
|
2199 |
#: lite/includes/classes/class-es-campaigns-table.php:628
|
2200 |
+
#: lite/includes/classes/class-es-contacts-table.php:865
|
2201 |
+
#: lite/includes/classes/class-es-contacts-table.php:1101
|
2202 |
msgid "List(s)"
|
2203 |
msgstr ""
|
2204 |
|
2207 |
msgstr ""
|
2208 |
|
2209 |
#: lite/includes/classes/class-es-campaigns-table.php:630
|
2210 |
+
#: lite/includes/classes/class-es-contacts-table.php:1102
|
2211 |
#: lite/includes/classes/class-es-forms-table.php:992
|
2212 |
msgid "Created"
|
2213 |
msgstr ""
|
2238 |
msgstr ""
|
2239 |
|
2240 |
#: lite/includes/classes/class-es-contacts-table.php:70
|
2241 |
+
#: lite/includes/classes/class-es-contacts-table.php:1100
|
2242 |
#: lite/includes/workflows/actions/class-es-action-delete-contact.php:31
|
2243 |
#: lite/includes/workflows/actions/class-es-action-update-contact.php:31
|
2244 |
msgid "Contact"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
#: lite/includes/classes/class-es-contacts-table.php:162
|
2267 |
+
#: lite/includes/classes/class-es-contacts-table.php:389
|
2268 |
msgid "Manage Lists"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: lite/includes/classes/class-es-contacts-table.php:311
|
2272 |
#: lite/includes/classes/class-es-export-subscribers.php:82
|
2273 |
#: lite/includes/classes/class-es-reports-table.php:320
|
2274 |
msgid "Total contacts"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: lite/includes/classes/class-es-contacts-table.php:388
|
2278 |
msgid " Add New Contact"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: lite/includes/classes/class-es-contacts-table.php:393
|
2282 |
msgid " Edit Contact"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: lite/includes/classes/class-es-contacts-table.php:394
|
2286 |
#: lite/includes/classes/class-es-forms-table.php:98
|
2287 |
#: lite/includes/classes/class-es-lists-table.php:91
|
2288 |
#: lite/includes/classes/class-es-post-notifications.php:327
|
2291 |
msgid "Add New"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: lite/includes/classes/class-es-contacts-table.php:447
|
2295 |
msgid "Contact already exist."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
#. translators: 1. Contact edit URL tag 2: Anchor close tag
|
2299 |
+
#: lite/includes/classes/class-es-contacts-table.php:517
|
2300 |
msgid "Contact added successfully. %1$sEdit contact%2$s."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: lite/includes/classes/class-es-contacts-table.php:528
|
2304 |
msgid "Contact updated successfully!"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: lite/includes/classes/class-es-contacts-table.php:536
|
2308 |
#: lite/includes/classes/class-es-export-subscribers.php:36
|
2309 |
#: lite/includes/classes/class-es-lists-table.php:772
|
2310 |
msgid "Please select list"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: lite/includes/classes/class-es-contacts-table.php:540
|
2314 |
msgid "Please enter valid email address"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: lite/includes/classes/class-es-contacts-table.php:567
|
2318 |
#: lite/includes/classes/class-es-export-subscribers.php:157
|
2319 |
#: lite/includes/classes/class-es-handle-sync-wp-user.php:216
|
2320 |
#: lite/includes/classes/class-es-import-subscribers.php:409
|
2323 |
msgid "Audience "
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: lite/includes/classes/class-es-contacts-table.php:762
|
2327 |
msgid "No list found"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: lite/includes/classes/class-es-contacts-table.php:771
|
2331 |
msgid "First name"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: lite/includes/classes/class-es-contacts-table.php:783
|
2335 |
msgid "Enter first name"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: lite/includes/classes/class-es-contacts-table.php:793
|
2339 |
msgid "Last name"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: lite/includes/classes/class-es-contacts-table.php:804
|
2343 |
msgid "Enter last name"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: lite/includes/classes/class-es-contacts-table.php:825
|
2347 |
msgid "Enter email"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: lite/includes/classes/class-es-contacts-table.php:835
|
2351 |
msgid "Send welcome email?"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: lite/includes/classes/class-es-contacts-table.php:866
|
2355 |
#: lite/includes/classes/class-es-forms-table.php:469
|
2356 |
msgid "Contacts will be added into selected list(s)"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: lite/includes/classes/class-es-contacts-table.php:883
|
2360 |
msgid "Add Contact"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: lite/includes/classes/class-es-contacts-table.php:883
|
2364 |
#: lite/includes/classes/class-es-forms-table.php:618
|
2365 |
#: lite/includes/classes/class-es-lists-table.php:384
|
2366 |
#: lite/includes/classes/class-es-post-notifications.php:451
|
2368 |
msgid "Save Changes"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: lite/includes/classes/class-es-contacts-table.php:890
|
2372 |
#: lite/includes/classes/class-es-forms-table.php:622
|
2373 |
#: lite/includes/classes/class-es-lists-table.php:388
|
2374 |
#: lite/includes/classes/class-es-post-notifications.php:454
|
2376 |
msgid "Cancel"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: lite/includes/classes/class-es-contacts-table.php:906
|
2380 |
msgid "No contacts avaliable."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: lite/includes/classes/class-es-contacts-table.php:1082
|
2384 |
msgid "Resend Confirmation"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: lite/includes/classes/class-es-contacts-table.php:1136
|
2388 |
#: pro/workflows/actions/class-es-action-move-to-list.php:29
|
2389 |
msgid "Move to list"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: lite/includes/classes/class-es-contacts-table.php:1137
|
2393 |
#: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
|
2394 |
msgid "Add to list"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: lite/includes/classes/class-es-contacts-table.php:1138
|
2398 |
msgid "Change status"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: lite/includes/classes/class-es-contacts-table.php:1161
|
2402 |
msgid "Search Contacts"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: lite/includes/classes/class-es-contacts-table.php:1172
|
2406 |
+
msgid "Advanced Filter"
|
2407 |
+
msgstr ""
|
2408 |
+
|
2409 |
+
#: lite/includes/classes/class-es-contacts-table.php:1194
|
2410 |
msgid "All Lists"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: lite/includes/classes/class-es-contacts-table.php:1309
|
2414 |
+
#: lite/includes/classes/class-es-contacts-table.php:1372
|
2415 |
msgid "Contact(s) deleted successfully!"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: lite/includes/classes/class-es-contacts-table.php:1322
|
2419 |
msgid "You do not have a permission to resend email confirmation"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: lite/includes/classes/class-es-contacts-table.php:1334
|
2423 |
msgid "Confirmation email sent successfully!"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: lite/includes/classes/class-es-contacts-table.php:1360
|
2427 |
msgid "Please select subscribers to update."
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: lite/includes/classes/class-es-contacts-table.php:1383
|
2431 |
msgid "Please select status."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: lite/includes/classes/class-es-contacts-table.php:1397
|
2435 |
msgid "Contact(s) status changed successfully!"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: lite/includes/classes/class-es-contacts-table.php:1408
|
2439 |
+
#: lite/includes/classes/class-es-contacts-table.php:1429
|
2440 |
#: lite/includes/classes/class-es-post-notifications.php:72
|
2441 |
msgid "Please select list."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: lite/includes/classes/class-es-contacts-table.php:1417
|
2445 |
msgid "Contact(s) moved to list successfully!"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: lite/includes/classes/class-es-contacts-table.php:1438
|
2449 |
msgid "Contact(s) added to list successfully!"
|
2450 |
msgstr ""
|
2451 |
|
2562 |
#: lite/includes/classes/class-es-import-subscribers.php:682
|
2563 |
#: lite/includes/classes/class-es-import-subscribers.php:1094
|
2564 |
#: lite/includes/classes/class-es-import-subscribers.php:1349
|
2565 |
+
#: pro/pro-class-email-subscribers.php:2271
|
2566 |
msgid "First Name"
|
2567 |
msgstr ""
|
2568 |
|
2571 |
#: lite/includes/classes/class-es-import-subscribers.php:683
|
2572 |
#: lite/includes/classes/class-es-import-subscribers.php:1099
|
2573 |
#: lite/includes/classes/class-es-import-subscribers.php:1350
|
2574 |
+
#: pro/pro-class-email-subscribers.php:2272
|
2575 |
msgid "Last Name"
|
2576 |
msgstr ""
|
2577 |
|
3555 |
|
3556 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3557 |
#: lite/includes/classes/class-es-templates-table.php:209
|
3558 |
+
#: pro/pro-class-email-subscribers.php:1594
|
3559 |
msgid "Duplicate"
|
3560 |
msgstr ""
|
3561 |
|
3639 |
msgid "Contact Us"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: lite/includes/notices/class-es-admin-notices.php:99
|
3643 |
msgid "Action failed. Please refresh the page and retry."
|
3644 |
msgstr ""
|
3645 |
|
3818 |
msgstr ""
|
3819 |
|
3820 |
#: lite/includes/pro-features.php:278
|
3821 |
+
#: pro/pro-class-email-subscribers.php:955
|
3822 |
msgid "Track clicks"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
#: lite/includes/pro-features.php:279
|
3826 |
+
#: pro/pro-class-email-subscribers.php:956
|
3827 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3828 |
msgstr ""
|
3829 |
|
3875 |
msgstr ""
|
3876 |
|
3877 |
#: lite/includes/pro-features.php:348
|
3878 |
+
#: pro/pro-class-email-subscribers.php:979
|
3879 |
msgid "Weekly summary"
|
3880 |
msgstr ""
|
3881 |
|
3923 |
msgstr ""
|
3924 |
|
3925 |
#: lite/includes/pro-features.php:428
|
3926 |
+
#: pro/pro-class-email-subscribers.php:964
|
3927 |
msgid "Track IP address"
|
3928 |
msgstr ""
|
3929 |
|
4195 |
|
4196 |
#: lite/includes/pro-features.php:1122
|
4197 |
#: pro/classes/class-es-campaign-admin-pro.php:171
|
4198 |
+
#: pro/pro-class-email-subscribers.php:850
|
4199 |
msgid "Send options"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
#: lite/includes/pro-features.php:1125
|
4203 |
#: pro/classes/class-es-campaign-admin-pro.php:182
|
4204 |
+
#: pro/pro-class-email-subscribers.php:855
|
4205 |
msgid "Schedule for later"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
#: lite/includes/pro-features.php:1141
|
4209 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
4210 |
#: pro/classes/class-es-campaign-admin-pro.php:210
|
4211 |
+
#: pro/pro-class-email-subscribers.php:883
|
4212 |
msgid "Time"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
#: lite/includes/pro-features.php:1151
|
4216 |
#: pro/classes/class-es-campaign-admin-pro.php:225
|
4217 |
+
#: pro/pro-class-email-subscribers.php:898
|
4218 |
msgid "Local Time: "
|
4219 |
msgstr ""
|
4220 |
|
4339 |
msgstr ""
|
4340 |
|
4341 |
#: lite/includes/pro-features.php:1690
|
4342 |
+
#: pro/pro-class-email-subscribers.php:1816
|
4343 |
msgid "Add Attachments"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
#: lite/includes/pro-features.php:1720
|
4347 |
+
#: pro/pro-class-email-subscribers.php:1943
|
4348 |
msgid "Import existing WordPress users"
|
4349 |
msgstr ""
|
4350 |
|
4891 |
msgstr ""
|
4892 |
|
4893 |
#: lite/includes/workflows/db/class-es-db-workflows.php:608
|
4894 |
+
#: pro/pro-class-email-subscribers.php:2670
|
4895 |
msgid "Send confirmation email"
|
4896 |
msgstr ""
|
4897 |
|
5067 |
|
5068 |
#: lite/public/partials/cron-message.php:43
|
5069 |
#: pro/classes/class-es-campaign-admin-pro.php:176
|
5070 |
+
#: pro/pro-class-email-subscribers.php:909
|
5071 |
msgid "Send Now"
|
5072 |
msgstr ""
|
5073 |
|
5116 |
msgid "Any %s"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: pro/classes/class-es-pro-advanced-filters.php:210
|
5120 |
+
msgid "Filter Contacts"
|
5121 |
+
msgstr ""
|
5122 |
+
|
5123 |
#: pro/classes/class-es-pro-bounce-handler.php:100
|
5124 |
msgid "Bounce status"
|
5125 |
msgstr ""
|
5174 |
|
5175 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
5176 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
5177 |
+
#: pro/pro-class-email-subscribers.php:444
|
5178 |
msgid "Custom Fields"
|
5179 |
msgstr ""
|
5180 |
|
5305 |
msgstr ""
|
5306 |
|
5307 |
#: pro/classes/class-es-pro-reports-data.php:261
|
5308 |
+
#: pro/pro-class-email-subscribers.php:1325
|
5309 |
msgid "Clicked"
|
5310 |
msgstr ""
|
5311 |
|
5441 |
msgstr ""
|
5442 |
|
5443 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
|
5444 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:341
|
5445 |
msgid "Access Key ID is empty."
|
5446 |
msgstr ""
|
5447 |
|
5448 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
|
5449 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:351
|
5450 |
msgid "Secret Access Key is empty."
|
5451 |
msgstr ""
|
5452 |
|
5453 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
|
5454 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:361
|
5455 |
msgid "Closest region is not set."
|
5456 |
msgstr ""
|
5457 |
|
5458 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
|
5459 |
msgid "US East (N. Virginia)"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
|
5463 |
msgid "US East (Ohio)"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
|
5467 |
msgid "US West (Oregon)"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
|
5471 |
msgid "US AWS GovCloud"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
|
5475 |
msgid "EU (Ireland)"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
|
5479 |
msgid "EU (London)"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
|
5483 |
msgid "EU (Frankfurt)"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
|
5487 |
msgid "EU (Milan)"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
|
5491 |
msgid "Asia Pacific (Mumbai)"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:424
|
5495 |
msgid "Asia Pacific (Tokyo)"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:425
|
5499 |
msgid "Asia Pacific (Seoul)"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:426
|
5503 |
msgid "Asia Pacific (Singapore)"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:427
|
5507 |
msgid "Asia Pacific (Sydney)"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:428
|
5511 |
msgid "Canada (Central)"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:429
|
5515 |
msgid "South America (São Paulo)"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:430
|
5519 |
msgid "Africa (Cape Town)"
|
5520 |
msgstr ""
|
5521 |
|
5594 |
msgid "Your cart could not be restored, it may have expired."
|
5595 |
msgstr ""
|
5596 |
|
5597 |
+
#: pro/pro-class-email-subscribers.php:437
|
5598 |
#: pro/pro-class-post-digest.php:33
|
5599 |
msgid "Sequence"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: pro/pro-class-email-subscribers.php:602
|
5603 |
msgid "Please enter an email address."
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: pro/pro-class-email-subscribers.php:603
|
5607 |
msgid "Please enter the subject."
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: pro/pro-class-email-subscribers.php:605
|
5611 |
msgid "Add Attachment"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
#. translators: %s: Attachmen max file size.
|
5615 |
+
#: pro/pro-class-email-subscribers.php:607
|
5616 |
msgid "Please attach a file having size lower than %s."
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: pro/pro-class-email-subscribers.php:608
|
5620 |
msgid "Are you sure you want to delete this?"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: pro/pro-class-email-subscribers.php:609
|
5624 |
+
#: pro/pro-class-email-subscribers.php:2153
|
5625 |
msgid "Checking your orders..."
|
5626 |
msgstr ""
|
5627 |
|
5628 |
+
#: pro/pro-class-email-subscribers.php:611
|
5629 |
#: pro/pro-class-sequences.php:685
|
5630 |
msgid "Send immediately"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: pro/pro-class-email-subscribers.php:612
|
5634 |
msgid "Send after"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: pro/pro-class-email-subscribers.php:613
|
5638 |
#: pro/pro-class-sequences.php:598
|
5639 |
msgid "hour(s)"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: pro/pro-class-email-subscribers.php:614
|
5643 |
#: pro/pro-class-sequences.php:599
|
5644 |
msgid "day(s)"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: pro/pro-class-email-subscribers.php:615
|
5648 |
#: pro/pro-class-sequences.php:600
|
5649 |
msgid "week(s)"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
+
#: pro/pro-class-email-subscribers.php:745
|
5653 |
msgid "Clean My List"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
+
#: pro/pro-class-email-subscribers.php:746
|
5657 |
msgid "List cleanup is in progress..."
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: pro/pro-class-email-subscribers.php:747
|
5661 |
msgid "List cleanup completed successfully."
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#: pro/pro-class-email-subscribers.php:765
|
5665 |
msgid "Email status"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: pro/pro-class-email-subscribers.php:766
|
5669 |
msgid "Last opened at"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: pro/pro-class-email-subscribers.php:920
|
5673 |
msgid "Select page"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: pro/pro-class-email-subscribers.php:933
|
5677 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: pro/pro-class-email-subscribers.php:946
|
5681 |
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."
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: pro/pro-class-email-subscribers.php:984
|
5685 |
msgid "Enable?"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: pro/pro-class-email-subscribers.php:991
|
5689 |
msgid "When our automated weekly email should be sent out?"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: pro/pro-class-email-subscribers.php:1000
|
5693 |
msgid "In which time we need to send our weekly summary?"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: pro/pro-class-email-subscribers.php:1026
|
5697 |
msgid "Access Key ID"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
+
#: pro/pro-class-email-subscribers.php:1039
|
5701 |
msgid "Secret Access Key"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: pro/pro-class-email-subscribers.php:1053
|
5705 |
msgid "Closest Region"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: pro/pro-class-email-subscribers.php:1055
|
5709 |
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."
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: pro/pro-class-email-subscribers.php:1082
|
5713 |
msgid "Private API Key"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: pro/pro-class-email-subscribers.php:1096
|
5717 |
msgid "Domain Name"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
+
#: pro/pro-class-email-subscribers.php:1107
|
5721 |
+
#: pro/pro-class-email-subscribers.php:1182
|
5722 |
msgid "United States"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: pro/pro-class-email-subscribers.php:1108
|
5726 |
+
#: pro/pro-class-email-subscribers.php:1183
|
5727 |
msgid "Europe"
|
5728 |
msgstr ""
|
5729 |
|
5730 |
+
#: pro/pro-class-email-subscribers.php:1114
|
5731 |
+
#: pro/pro-class-email-subscribers.php:1189
|
5732 |
msgid "Region"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: pro/pro-class-email-subscribers.php:1118
|
5736 |
msgid "mailgun.com"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: pro/pro-class-email-subscribers.php:1144
|
5740 |
+
#: pro/pro-class-email-subscribers.php:1171
|
5741 |
msgid "API Key"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: pro/pro-class-email-subscribers.php:1191
|
5745 |
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."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: pro/pro-class-email-subscribers.php:1216
|
5749 |
msgid "API token"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: pro/pro-class-email-subscribers.php:1244
|
5753 |
msgid "API key"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: pro/pro-class-email-subscribers.php:1273
|
5757 |
msgid "Public key"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: pro/pro-class-email-subscribers.php:1287
|
5761 |
msgid "Private key"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: pro/pro-class-email-subscribers.php:1616
|
5765 |
msgid "You are not allowed to duplicate campaign."
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: pro/pro-class-email-subscribers.php:1631
|
5769 |
msgid "Campaign duplicated !"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: pro/pro-class-email-subscribers.php:1962
|
5773 |
msgid "Import WordPress users with following roles"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: pro/pro-class-email-subscribers.php:2020
|
5777 |
+
#: pro/pro-class-email-subscribers.php:2160
|
5778 |
msgid "Proceed "
|
5779 |
msgstr ""
|
5780 |
|
5781 |
+
#: pro/pro-class-email-subscribers.php:2062
|
5782 |
msgid "Import from WooCommerce orders"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
+
#: pro/pro-class-email-subscribers.php:2087
|
5786 |
msgid "Select order statuses"
|
5787 |
msgstr ""
|
5788 |
|
5789 |
+
#: pro/pro-class-email-subscribers.php:2141
|
5790 |
msgid "Orders should contain these products"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
+
#: pro/pro-class-email-subscribers.php:2147
|
5794 |
msgid "Search products..."
|
5795 |
msgstr ""
|
5796 |
|
5797 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5798 |
+
#: pro/pro-class-email-subscribers.php:2379
|
5799 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5800 |
msgstr ""
|
5801 |
|
5802 |
+
#: pro/pro-class-email-subscribers.php:2390
|
5803 |
msgid "We can't find any matching orders in your store."
|
5804 |
msgstr ""
|
5805 |
|
5806 |
+
#: pro/pro-class-email-subscribers.php:2403
|
5807 |
msgid "Total Opened"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
+
#: pro/pro-class-email-subscribers.php:2456
|
5811 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
+
#: pro/pro-class-email-subscribers.php:2488
|
5815 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#: pro/pro-class-email-subscribers.php:2520
|
5819 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: pro/pro-class-email-subscribers.php:2552
|
5823 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
+
#: pro/pro-class-email-subscribers.php:2584
|
5827 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
+
#: pro/pro-class-email-subscribers.php:2616
|
5831 |
msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
+
#: pro/pro-class-email-subscribers.php:2648
|
5835 |
msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: pro/pro-class-email-subscribers.php:2685
|
5839 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: pro/pro-class-email-subscribers.php:2693
|
5843 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5844 |
msgstr ""
|
5845 |
|
5846 |
+
#: pro/pro-class-email-subscribers.php:2696
|
5847 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5848 |
msgstr ""
|
5849 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
|
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.9.3
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 5.3.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,16 +310,18 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
-
= 5.3.
|
314 |
|
315 |
-
* New:
|
316 |
-
* Fix:
|
317 |
-
* Fix: Unsubscribe link not working when WooCommerce styling is selected in workflow emails
|
318 |
-
* Fix: Issue with Drag and Drop campaign editor on some setup
|
319 |
-
* Fix: Unable to subscribe with a Hotmail email address[PRO]
|
320 |
|
321 |
== Changelog ==
|
322 |
|
|
|
|
|
|
|
|
|
|
|
323 |
**5.3.14 (11.05.2022)**
|
324 |
|
325 |
* New: Automatic email list cleanup service[PRO]
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.9.3
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 5.3.15
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 5.3.15 =
|
314 |
|
315 |
+
* New: Advanced audience filters[PRO]
|
316 |
+
* Fix: Template already exists issue on some setup using Amazon SES[PRO]
|
|
|
|
|
|
|
317 |
|
318 |
== Changelog ==
|
319 |
|
320 |
+
**5.3.15 (18.05.2022)**
|
321 |
+
|
322 |
+
* New: Advanced audience filters[PRO]
|
323 |
+
* Fix: Template already exists issue on some setup using Amazon SES[PRO]
|
324 |
+
|
325 |
**5.3.14 (11.05.2022)**
|
326 |
|
327 |
* New: Automatic email list cleanup service[PRO]
|