Version Description
- Fix: Incorrect placeholder values in emails
- Fix: Unable to send campaigns
=
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 5.0.2 |
Comparing to | |
See all releases |
Code changes from version 5.0.1 to 5.0.2
- email-subscribers.php +2 -2
- lite/admin/class-ig-es-onboarding.php +1 -0
- lite/includes/class-es-install.php +0 -5
- lite/includes/classes/class-es-admin-settings.php +0 -2
- lite/includes/classes/class-es-geolocation.php +0 -27
- lite/includes/classes/class-es-mailer.php +2 -2
- lite/includes/db/class-es-db-contacts.php +0 -1
- lite/includes/db/class-es-db-sending-queue.php +4 -10
- lite/includes/notices/views/ig-es-bfcm-offer.php +7 -7
- lite/includes/upgrade/es-update-functions.php +0 -43
- lite/includes/workflows/actions/class-es-action-send-email.php +10 -1
- lite/includes/workflows/triggers/class-es-trigger-user-unconfirmed.php +1 -1
- lite/language.php +28 -31
- lite/languages/email-subscribers.pot +349 -366
- readme.txt +9 -6
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.0.
|
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.0.
|
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.0.2
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
+
define( 'ES_PLUGIN_VERSION', '5.0.2' );
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
lite/admin/class-ig-es-onboarding.php
CHANGED
@@ -605,6 +605,7 @@ if ( ! class_exists( 'IG_ES_Onboarding' ) ) {
|
|
605 |
$main_list_id = $main_list['id'];
|
606 |
$default_workflows[] = array(
|
607 |
'trigger_name' => 'ig_es_user_registered',
|
|
|
608 |
'title' => sprintf( __( 'Add to %s list when someone registers', 'email-subscribers' ), IG_MAIN_LIST ),
|
609 |
'actions' => array(
|
610 |
array(
|
605 |
$main_list_id = $main_list['id'];
|
606 |
$default_workflows[] = array(
|
607 |
'trigger_name' => 'ig_es_user_registered',
|
608 |
+
/* translators: Main list name */
|
609 |
'title' => sprintf( __( 'Add to %s list when someone registers', 'email-subscribers' ), IG_MAIN_LIST ),
|
610 |
'actions' => array(
|
611 |
array(
|
lite/includes/class-es-install.php
CHANGED
@@ -276,9 +276,6 @@ if ( ! class_exists( 'ES_Install' ) ) {
|
|
276 |
'ig_es_update_490_db_version',
|
277 |
),
|
278 |
'5.0.1' => array(
|
279 |
-
'ig_es_update_501_alter_contacts_table',
|
280 |
-
'ig_es_update_501_alter_sending_queue_table',
|
281 |
-
'ig_es_add_timezone_to_contacts_table',
|
282 |
'ig_es_update_501_migrate_notifications_into_workflows',
|
283 |
'ig_es_update_501_db_version',
|
284 |
),
|
@@ -957,7 +954,6 @@ if ( ! class_exists( 'ES_Install' ) ) {
|
|
957 |
),
|
958 |
'ig_es_blocked_domains' => array( 'default' => 'mail.ru' ),
|
959 |
'ig_es_disable_wp_cron' => array( 'default' => 'no' ),
|
960 |
-
'ig_es_enable_sending_mails_in_customer_timezone' => array( 'default' => 'no' ),
|
961 |
'ig_es_track_email_opens' => array( 'default' => 'yes' ),
|
962 |
'ig_es_show_opt_in_consent' => array( 'default' => 'yes' ),
|
963 |
'ig_es_opt_in_consent_text' => array( 'default' => 'Subscribe to our email updates as well.' ),
|
@@ -1069,7 +1065,6 @@ if ( ! class_exists( 'ES_Install' ) ) {
|
|
1069 |
`ip_address` varchar(50) DEFAULT NULL,
|
1070 |
`country_code` varchar(50) DEFAULT NULL,
|
1071 |
`bounce_status` enum('0','1','2') NOT NULL DEFAULT '0',
|
1072 |
-
`timezone` int(11) NULL DEFAULT NULL,
|
1073 |
`form_id` int(10) NOT NULL DEFAULT '0',
|
1074 |
`status` varchar(10) DEFAULT NULL,
|
1075 |
`unsubscribed` tinyint(1) NOT NULL DEFAULT '0',
|
276 |
'ig_es_update_490_db_version',
|
277 |
),
|
278 |
'5.0.1' => array(
|
|
|
|
|
|
|
279 |
'ig_es_update_501_migrate_notifications_into_workflows',
|
280 |
'ig_es_update_501_db_version',
|
281 |
),
|
954 |
),
|
955 |
'ig_es_blocked_domains' => array( 'default' => 'mail.ru' ),
|
956 |
'ig_es_disable_wp_cron' => array( 'default' => 'no' ),
|
|
|
957 |
'ig_es_track_email_opens' => array( 'default' => 'yes' ),
|
958 |
'ig_es_show_opt_in_consent' => array( 'default' => 'yes' ),
|
959 |
'ig_es_opt_in_consent_text' => array( 'default' => 'Subscribe to our email updates as well.' ),
|
1065 |
`ip_address` varchar(50) DEFAULT NULL,
|
1066 |
`country_code` varchar(50) DEFAULT NULL,
|
1067 |
`bounce_status` enum('0','1','2') NOT NULL DEFAULT '0',
|
|
|
1068 |
`form_id` int(10) NOT NULL DEFAULT '0',
|
1069 |
`status` varchar(10) DEFAULT NULL,
|
1070 |
`unsubscribed` tinyint(1) NOT NULL DEFAULT '0',
|
lite/includes/classes/class-es-admin-settings.php
CHANGED
@@ -46,7 +46,6 @@ class ES_Admin_Settings {
|
|
46 |
$options = apply_filters( 'ig_es_before_save_settings', $options );
|
47 |
|
48 |
$options['ig_es_disable_wp_cron'] = isset( $options['ig_es_disable_wp_cron'] ) ? $options['ig_es_disable_wp_cron'] : 'no';
|
49 |
-
$options['ig_es_enable_sending_mails_in_customer_timezone'] = isset( $options['ig_es_enable_sending_mails_in_customer_timezone'] ) ? $options['ig_es_enable_sending_mails_in_customer_timezone'] : 'no';
|
50 |
$options['ig_es_track_email_opens'] = isset( $options['ig_es_track_email_opens'] ) ? $options['ig_es_track_email_opens'] : 'no';
|
51 |
$options['ig_es_enable_welcome_email'] = isset( $options['ig_es_enable_welcome_email'] ) ? $options['ig_es_enable_welcome_email'] : 'no';
|
52 |
$options['ig_es_notify_admin'] = isset( $options['ig_es_notify_admin'] ) ? $options['ig_es_notify_admin'] : 'no';
|
@@ -79,7 +78,6 @@ class ES_Admin_Settings {
|
|
79 |
'ig_es_cronurl',
|
80 |
'ig_es_hourly_email_send_limit',
|
81 |
'ig_es_disable_wp_cron',
|
82 |
-
'ig_es_enable_sending_mails_in_customer_timezone',
|
83 |
);
|
84 |
|
85 |
$textarea_fields_to_sanitize = array(
|
46 |
$options = apply_filters( 'ig_es_before_save_settings', $options );
|
47 |
|
48 |
$options['ig_es_disable_wp_cron'] = isset( $options['ig_es_disable_wp_cron'] ) ? $options['ig_es_disable_wp_cron'] : 'no';
|
|
|
49 |
$options['ig_es_track_email_opens'] = isset( $options['ig_es_track_email_opens'] ) ? $options['ig_es_track_email_opens'] : 'no';
|
50 |
$options['ig_es_enable_welcome_email'] = isset( $options['ig_es_enable_welcome_email'] ) ? $options['ig_es_enable_welcome_email'] : 'no';
|
51 |
$options['ig_es_notify_admin'] = isset( $options['ig_es_notify_admin'] ) ? $options['ig_es_notify_admin'] : 'no';
|
78 |
'ig_es_cronurl',
|
79 |
'ig_es_hourly_email_send_limit',
|
80 |
'ig_es_disable_wp_cron',
|
|
|
81 |
);
|
82 |
|
83 |
$textarea_fields_to_sanitize = array(
|
lite/includes/classes/class-es-geolocation.php
CHANGED
@@ -73,27 +73,6 @@ class ES_Geolocation {
|
|
73 |
return $geolocation;
|
74 |
}
|
75 |
|
76 |
-
/**
|
77 |
-
* Convert the String TimeZone to seconds
|
78 |
-
*
|
79 |
-
* @param $timezone
|
80 |
-
*
|
81 |
-
* @return int
|
82 |
-
*/
|
83 |
-
public static function convert_timezone_to_seconds( $timezone ) {
|
84 |
-
if ( empty( $timezone ) ) {
|
85 |
-
return 0;
|
86 |
-
}
|
87 |
-
try {
|
88 |
-
$current = timezone_open( $timezone );
|
89 |
-
$utcTime = new DateTime( 'now', new DateTimeZone( 'UTC' ) );
|
90 |
-
|
91 |
-
return intval( $current->getOffset( $utcTime ) );
|
92 |
-
} catch ( Exception $exception ) {
|
93 |
-
return 0;
|
94 |
-
}
|
95 |
-
}
|
96 |
-
|
97 |
/**
|
98 |
* Use APIs to Geolocate the user.
|
99 |
*
|
@@ -131,16 +110,13 @@ class ES_Geolocation {
|
|
131 |
case 'ipinfo.io':
|
132 |
$data = json_decode( $response['body'] );
|
133 |
$country_code = isset( $data->country ) ? $data->country : '';
|
134 |
-
$timezone = isset( $data->timezone ) ? self::convert_timezone_to_seconds( $data->timezone ) : 0;
|
135 |
break;
|
136 |
case 'ip-api.com':
|
137 |
$data = json_decode( $response['body'] );
|
138 |
$country_code = isset( $data->countryCode ) ? $data->countryCode : ''; // @codingStandardsIgnoreLine
|
139 |
-
$timezone = isset( $data->timezone ) ? self::convert_timezone_to_seconds( $data->timezone ) : 0;
|
140 |
break;
|
141 |
default:
|
142 |
$country_code = apply_filters( 'ig_es_geolocation_geoip_response_' . $service_name, '', $response['body'] );
|
143 |
-
$timezone = apply_filters( 'ig_es_geolocation_geoip_timezone_response_' . $service_name, '', $response['body'] );
|
144 |
break;
|
145 |
}
|
146 |
|
@@ -148,7 +124,6 @@ class ES_Geolocation {
|
|
148 |
|
149 |
if ( $country_code ) {
|
150 |
$geo_ip_data['country_code'] = $country_code;
|
151 |
-
$geo_ip_data['timezone'] = $timezone;
|
152 |
break;
|
153 |
}
|
154 |
}
|
@@ -165,10 +140,8 @@ class ES_Geolocation {
|
|
165 |
if ( ! is_wp_error( $response ) && $response['body'] ) {
|
166 |
$data = json_decode( $response['body'] );
|
167 |
$country_code = isset( $data->country_code ) ? $data->country_code : '';
|
168 |
-
$timezone = isset( $data->timezone ) ? self::convert_timezone_to_seconds( $data->timezone ) : 0;
|
169 |
if ( $country_code ) {
|
170 |
$geo_ip_data['country_code'] = $country_code;
|
171 |
-
$geo_ip_data['timezone'] = $timezone;
|
172 |
}
|
173 |
}
|
174 |
}
|
73 |
return $geolocation;
|
74 |
}
|
75 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
/**
|
77 |
* Use APIs to Geolocate the user.
|
78 |
*
|
110 |
case 'ipinfo.io':
|
111 |
$data = json_decode( $response['body'] );
|
112 |
$country_code = isset( $data->country ) ? $data->country : '';
|
|
|
113 |
break;
|
114 |
case 'ip-api.com':
|
115 |
$data = json_decode( $response['body'] );
|
116 |
$country_code = isset( $data->countryCode ) ? $data->countryCode : ''; // @codingStandardsIgnoreLine
|
|
|
117 |
break;
|
118 |
default:
|
119 |
$country_code = apply_filters( 'ig_es_geolocation_geoip_response_' . $service_name, '', $response['body'] );
|
|
|
120 |
break;
|
121 |
}
|
122 |
|
124 |
|
125 |
if ( $country_code ) {
|
126 |
$geo_ip_data['country_code'] = $country_code;
|
|
|
127 |
break;
|
128 |
}
|
129 |
}
|
140 |
if ( ! is_wp_error( $response ) && $response['body'] ) {
|
141 |
$data = json_decode( $response['body'] );
|
142 |
$country_code = isset( $data->country_code ) ? $data->country_code : '';
|
|
|
143 |
if ( $country_code ) {
|
144 |
$geo_ip_data['country_code'] = $country_code;
|
|
|
145 |
}
|
146 |
}
|
147 |
}
|
lite/includes/classes/class-es-mailer.php
CHANGED
@@ -747,8 +747,8 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
|
|
747 |
$contact_id = ! empty( $this->email_id_map[ $email ] ) ? $this->email_id_map[ $email ] : 0;
|
748 |
|
749 |
$merge_tags['contact_id'] = $contact_id;
|
750 |
-
|
751 |
-
$merge_tags = array_merge( $this->get_contact_merge_tags( $contact_id )
|
752 |
|
753 |
$this->link_data = array(
|
754 |
'message_id' => $message_id,
|
747 |
$contact_id = ! empty( $this->email_id_map[ $email ] ) ? $this->email_id_map[ $email ] : 0;
|
748 |
|
749 |
$merge_tags['contact_id'] = $contact_id;
|
750 |
+
|
751 |
+
$merge_tags = array_merge( $merge_tags, $this->get_contact_merge_tags( $contact_id ) );
|
752 |
|
753 |
$this->link_data = array(
|
754 |
'message_id' => $message_id,
|
lite/includes/db/class-es-db-contacts.php
CHANGED
@@ -77,7 +77,6 @@ class ES_DB_Contacts extends ES_DB {
|
|
77 |
'is_webmail' => '%d',
|
78 |
'is_deliverable' => '%d',
|
79 |
'is_sendsafely' => '%d',
|
80 |
-
'timezone' => '%d',
|
81 |
'meta' => '%s',
|
82 |
);
|
83 |
|
77 |
'is_webmail' => '%d',
|
78 |
'is_deliverable' => '%d',
|
79 |
'is_sendsafely' => '%d',
|
|
|
80 |
'meta' => '%s',
|
81 |
);
|
82 |
|
lite/includes/db/class-es-db-sending-queue.php
CHANGED
@@ -52,10 +52,10 @@ class ES_DB_Sending_Queue {
|
|
52 |
|
53 |
public static function get_emails_to_be_sent_by_hash( $guid, $limit ) {
|
54 |
global $wpdb;
|
55 |
-
|
56 |
$subscribers = $wpdb->get_results(
|
57 |
$wpdb->prepare(
|
58 |
-
"SELECT * FROM {$wpdb->prefix}ig_sending_queue WHERE status = %s AND mailing_queue_hash = %s
|
59 |
array(
|
60 |
'In Queue',
|
61 |
$guid,
|
@@ -360,8 +360,7 @@ class ES_DB_Sending_Queue {
|
|
360 |
`links`,
|
361 |
`opened`,
|
362 |
`sent_at`,
|
363 |
-
`opened_at
|
364 |
-
`send_at`
|
365 |
)
|
366 |
SELECT
|
367 |
%d AS `mailing_queue_id`,
|
@@ -374,12 +373,7 @@ class ES_DB_Sending_Queue {
|
|
374 |
%s AS `links`,
|
375 |
%d AS `opened`,
|
376 |
%s AS `sent_at`,
|
377 |
-
%s AS `opened_at
|
378 |
-
CASE
|
379 |
-
WHEN `ig_contacts`.`timezone` > 0 THEN DATE_ADD('$schedule_base_time', INTERVAL `ig_contacts`.`timezone` SECOND)
|
380 |
-
WHEN `ig_contacts`.`timezone` < 0 THEN DATE_ADD('$schedule_base_time', INTERVAL 86400 - ABS(`ig_contacts`.`timezone`) SECOND)
|
381 |
-
ELSE '$schedule_base_time'
|
382 |
-
END AS `send_at`
|
383 |
FROM `{$wpbd->prefix}ig_contacts` AS `ig_contacts`
|
384 |
WHERE id IN ( " . $sql_query . ')
|
385 |
GROUP BY `ig_contacts`.`email`',
|
52 |
|
53 |
public static function get_emails_to_be_sent_by_hash( $guid, $limit ) {
|
54 |
global $wpdb;
|
55 |
+
|
56 |
$subscribers = $wpdb->get_results(
|
57 |
$wpdb->prepare(
|
58 |
+
"SELECT * FROM {$wpdb->prefix}ig_sending_queue WHERE status = %s AND mailing_queue_hash = %s ORDER BY id LIMIT 0, %d",
|
59 |
array(
|
60 |
'In Queue',
|
61 |
$guid,
|
360 |
`links`,
|
361 |
`opened`,
|
362 |
`sent_at`,
|
363 |
+
`opened_at`
|
|
|
364 |
)
|
365 |
SELECT
|
366 |
%d AS `mailing_queue_id`,
|
373 |
%s AS `links`,
|
374 |
%d AS `opened`,
|
375 |
%s AS `sent_at`,
|
376 |
+
%s AS `opened_at`
|
|
|
|
|
|
|
|
|
|
|
377 |
FROM `{$wpbd->prefix}ig_contacts` AS `ig_contacts`
|
378 |
WHERE id IN ( " . $sql_query . ')
|
379 |
GROUP BY `ig_contacts`.`email`',
|
lite/includes/notices/views/ig-es-bfcm-offer.php
CHANGED
@@ -8,18 +8,18 @@
|
|
8 |
|
9 |
</style>
|
10 |
<?php
|
11 |
-
$plan
|
12 |
-
$img_url = esc_url( ES_PLUGIN_URL ) .'lite/admin/images/bfcm2021.png';
|
13 |
-
if( 'lite' === $plan || 'trial' === $plan ){
|
14 |
-
$img_url = esc_url( ES_PLUGIN_URL ) .'lite/admin/images/bfcm2021_lite.png';
|
15 |
-
} elseif ('starter' === $plan ){
|
16 |
-
$img_url = esc_url( ES_PLUGIN_URL ) .'lite/admin/images/bfcm2021_starter.png';
|
17 |
}
|
18 |
|
19 |
if ( ( get_option( 'ig_es_offer_bfcm_2021' ) !== 'yes' ) && ES()->is_offer_period( 'bfcm' ) ) { ?>
|
20 |
<div class="wrap">
|
21 |
<div class="ig_es_offer">
|
22 |
-
<a target="_blank" href="?es_dismiss_admin_notice=1&option_name=offer_bfcm_2021"><img style="margin:0 auto" src="<?php echo $img_url ?>"/></a>
|
23 |
</div>
|
24 |
</div>
|
25 |
|
8 |
|
9 |
</style>
|
10 |
<?php
|
11 |
+
$plan = ES()->get_plan();
|
12 |
+
$img_url = esc_url( ES_PLUGIN_URL ) . 'lite/admin/images/bfcm2021.png';
|
13 |
+
if ( 'lite' === $plan || 'trial' === $plan ) {
|
14 |
+
$img_url = esc_url( ES_PLUGIN_URL ) . 'lite/admin/images/bfcm2021_lite.png';
|
15 |
+
} elseif ('starter' === $plan ) {
|
16 |
+
$img_url = esc_url( ES_PLUGIN_URL ) . 'lite/admin/images/bfcm2021_starter.png';
|
17 |
}
|
18 |
|
19 |
if ( ( get_option( 'ig_es_offer_bfcm_2021' ) !== 'yes' ) && ES()->is_offer_period( 'bfcm' ) ) { ?>
|
20 |
<div class="wrap">
|
21 |
<div class="ig_es_offer">
|
22 |
+
<a target="_blank" href="?es_dismiss_admin_notice=1&option_name=offer_bfcm_2021"><img style="margin:0 auto" src="<?php echo esc_url( $img_url ); ?>"/></a>
|
23 |
</div>
|
24 |
</div>
|
25 |
|
lite/includes/upgrade/es-update-functions.php
CHANGED
@@ -1658,49 +1658,6 @@ function ig_es_update_490_db_version() {
|
|
1658 |
|
1659 |
/* --------------------- ES 5.0.1(Start)--------------------------- */
|
1660 |
|
1661 |
-
/**
|
1662 |
-
* Add send_at column in sending queue table
|
1663 |
-
*
|
1664 |
-
* @since 5.0.1
|
1665 |
-
*/
|
1666 |
-
function ig_es_update_501_alter_sending_queue_table() {
|
1667 |
-
global $wpdb;
|
1668 |
-
|
1669 |
-
$cols = $wpdb->get_col( "SHOW COLUMNS FROM {$wpdb->prefix}ig_sending_queue" );
|
1670 |
-
|
1671 |
-
if ( ! in_array( 'send_at', $cols, true ) ) {
|
1672 |
-
$wpdb->query(
|
1673 |
-
"ALTER TABLE {$wpdb->prefix}ig_sending_queue ADD COLUMN `send_at` DATETIME NULL DEFAULT NULL AFTER `opened`"
|
1674 |
-
);
|
1675 |
-
}
|
1676 |
-
}
|
1677 |
-
|
1678 |
-
/**
|
1679 |
-
* Add timezone column in contacts table
|
1680 |
-
*
|
1681 |
-
* @since 5.0.1
|
1682 |
-
*/
|
1683 |
-
function ig_es_update_501_alter_contacts_table() {
|
1684 |
-
global $wpdb;
|
1685 |
-
|
1686 |
-
$cols = $wpdb->get_col( "SHOW COLUMNS FROM {$wpdb->prefix}ig_contacts" );
|
1687 |
-
|
1688 |
-
if ( ! in_array( 'timezone', $cols, true ) ) {
|
1689 |
-
$wpdb->query(
|
1690 |
-
"ALTER TABLE {$wpdb->prefix}ig_contacts ADD COLUMN `timezone` INT NULL DEFAULT NULL AFTER `bounce_status`"
|
1691 |
-
);
|
1692 |
-
}
|
1693 |
-
}
|
1694 |
-
|
1695 |
-
/**
|
1696 |
-
* Add timezone based on the contacts ip_address
|
1697 |
-
*
|
1698 |
-
* @since 5.0.1
|
1699 |
-
*/
|
1700 |
-
function ig_es_add_timezone_to_contacts_table() {
|
1701 |
-
IG_ES_Background_Process_Helper::add_action_scheduler_task( 'ig_es_add_country_code_to_audience' );
|
1702 |
-
}
|
1703 |
-
|
1704 |
/**
|
1705 |
* Migrate notifications into workflows.
|
1706 |
*
|
1658 |
|
1659 |
/* --------------------- ES 5.0.1(Start)--------------------------- */
|
1660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1661 |
/**
|
1662 |
* Migrate notifications into workflows.
|
1663 |
*
|
lite/includes/workflows/actions/class-es-action-send-email.php
CHANGED
@@ -68,7 +68,8 @@ class ES_Action_Send_Email extends ES_Action_Send_Email_Abstract {
|
|
68 |
// Replace line breaks with paragraphs in email body.
|
69 |
$email_content = wpautop( $email_content );
|
70 |
|
71 |
-
$raw_data
|
|
|
72 |
if ( ! empty( $raw_data ) ) {
|
73 |
foreach ( $raw_data as $data_type_id => $data_item ) {
|
74 |
$data_type = ES_Workflow_Data_Types::get( $data_type_id );
|
@@ -79,11 +80,17 @@ class ES_Action_Send_Email extends ES_Action_Send_Email_Abstract {
|
|
79 |
$data = array();
|
80 |
if ( method_exists( $data_type, 'get_data' ) ) {
|
81 |
$data = $data_type->get_data( $data_item );
|
|
|
82 |
if ( ! empty( $data['email'] ) ) {
|
83 |
foreach ( $recipients as $index => $recipient_email ) {
|
84 |
// Replace placeholder tags with the got data from the triggerred event.
|
85 |
$recipients[$index] = str_replace( '{{EMAIL}}', $data['email'], $recipient_email );
|
86 |
}
|
|
|
|
|
|
|
|
|
|
|
87 |
}
|
88 |
|
89 |
if ( 'campaign' === $data_type_id && ! empty( $data['notification_guid'] ) ) {
|
@@ -103,6 +110,8 @@ class ES_Action_Send_Email extends ES_Action_Send_Email_Abstract {
|
|
103 |
|
104 |
}
|
105 |
|
|
|
|
|
106 |
$es_mailer = ES()->mailer;
|
107 |
|
108 |
$es_mailer->add_unsubscribe_link = false;
|
68 |
// Replace line breaks with paragraphs in email body.
|
69 |
$email_content = wpautop( $email_content );
|
70 |
|
71 |
+
$raw_data = $this->workflow->data_layer()->get_raw_data();
|
72 |
+
$trigger_name = $this->workflow->get_trigger_name();
|
73 |
if ( ! empty( $raw_data ) ) {
|
74 |
foreach ( $raw_data as $data_type_id => $data_item ) {
|
75 |
$data_type = ES_Workflow_Data_Types::get( $data_type_id );
|
80 |
$data = array();
|
81 |
if ( method_exists( $data_type, 'get_data' ) ) {
|
82 |
$data = $data_type->get_data( $data_item );
|
83 |
+
|
84 |
if ( ! empty( $data['email'] ) ) {
|
85 |
foreach ( $recipients as $index => $recipient_email ) {
|
86 |
// Replace placeholder tags with the got data from the triggerred event.
|
87 |
$recipients[$index] = str_replace( '{{EMAIL}}', $data['email'], $recipient_email );
|
88 |
}
|
89 |
+
|
90 |
+
if ( 'ig_es_user_subscribed' === $trigger_name ) {
|
91 |
+
$email_content = str_replace( '{{EMAIL}}', $data['email'], $email_content );
|
92 |
+
$email_content = str_replace( '{{NAME}}', $data['name'], $email_content );
|
93 |
+
}
|
94 |
}
|
95 |
|
96 |
if ( 'campaign' === $data_type_id && ! empty( $data['notification_guid'] ) ) {
|
110 |
|
111 |
}
|
112 |
|
113 |
+
|
114 |
+
|
115 |
$es_mailer = ES()->mailer;
|
116 |
|
117 |
$es_mailer->add_unsubscribe_link = false;
|
lite/includes/workflows/triggers/class-es-trigger-user-unconfirmed.php
CHANGED
@@ -28,7 +28,7 @@ class ES_Trigger_User_Unconfirmed extends ES_Workflow_Trigger {
|
|
28 |
*/
|
29 |
public function load_admin_details() {
|
30 |
$this->title = __( 'User Unconfirmed', 'email-subscribers' );
|
31 |
-
$this->description = __( 'Fires when someone
|
32 |
$this->group = __( 'Subscriber', 'email-subscribers' );
|
33 |
}
|
34 |
|
28 |
*/
|
29 |
public function load_admin_details() {
|
30 |
$this->title = __( 'User Unconfirmed', 'email-subscribers' );
|
31 |
+
$this->description = __( 'Fires when someone submit subscriber form.', 'email-subscribers' );
|
32 |
$this->group = __( 'Subscriber', 'email-subscribers' );
|
33 |
}
|
34 |
|
lite/language.php
CHANGED
@@ -80,6 +80,7 @@ __( 'Sent to', 'email-subscribers' ),
|
|
80 |
__( 'Opens', 'email-subscribers' ),
|
81 |
__( 'No campaigns sent yet', 'email-subscribers' ),
|
82 |
__( 'Latest Blog Posts from Icegram', 'email-subscribers' ),
|
|
|
83 |
__( 'Recipients', 'email-subscribers' ),
|
84 |
__( 'Add recipients', 'email-subscribers' ),
|
85 |
__( 'or', 'email-subscribers' ),
|
@@ -134,7 +135,8 @@ __( 'Any status', 'email-subscribers' ),
|
|
134 |
__( 'An error occured. Please try again later.', 'email-subscribers' ),
|
135 |
/* translators: 1. Main list name. 2. Default list name. */
|
136 |
__( 'Unable to create %1$s and %2$s list.', 'email-subscribers' ),
|
137 |
-
|
|
|
138 |
__( 'Please accept terms & condition', 'email-subscribers' ),
|
139 |
/* translators: Active sidebar name. */
|
140 |
__( 'Adding the form to "%s" sidebar, so you can show it on the site', 'email-subscribers' ),
|
@@ -368,29 +370,6 @@ __( 'Show this message if any error occured after clicking on unsubscribe link.'
|
|
368 |
__( 'Share Icegram', 'email-subscribers' ),
|
369 |
__( 'Delete plugin data on uninstall', 'email-subscribers' ),
|
370 |
__( 'Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin.', 'email-subscribers' ),
|
371 |
-
__( 'Welcome email', 'email-subscribers' ),
|
372 |
-
__( 'Send this text as a welcome email when new people subscribe.', 'email-subscribers' ),
|
373 |
-
__( 'Enable?', 'email-subscribers' ),
|
374 |
-
__( 'Subject', 'email-subscribers' ),
|
375 |
-
__( 'Content', 'email-subscribers' ),
|
376 |
-
/* translators: %s: List of Keywords */
|
377 |
-
__( 'Available keywords: %s', 'email-subscribers' ),
|
378 |
-
__( 'Double opt-in confirmation email', 'email-subscribers' ),
|
379 |
-
__( 'Use this text as confirmation email when opt-in type is set to "Double opt-in". Make sure to include {{SUBSCRIBE-LINK}} keyword, otherwise they won\'t be able to confirm their subscription.', 'email-subscribers' ),
|
380 |
-
/* translators: %s: List of Keywords */
|
381 |
-
__( 'Available keywords: %s ', 'email-subscribers' ),
|
382 |
-
__( 'New subscription notification to admin', 'email-subscribers' ),
|
383 |
-
__( 'Notify admin(s) everytime a new contact signups.', 'email-subscribers' ),
|
384 |
-
__( 'Notify?', 'email-subscribers' ),
|
385 |
-
__( 'Subject for the admin email whenever a new contact signs up and is confirmed', 'email-subscribers' ),
|
386 |
-
__( 'New email subscription', 'email-subscribers' ),
|
387 |
-
/* translators: %s: List of Keywords */
|
388 |
-
__( 'Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s', 'email-subscribers' ),
|
389 |
-
__( 'Campaign sent notification to admin', 'email-subscribers' ),
|
390 |
-
__( 'Notify admin(s) everytime a campaign is sent.', 'email-subscribers' ),
|
391 |
-
__( 'Campaign Sent!', 'email-subscribers' ),
|
392 |
-
/* translators: %s: List of Keywords */
|
393 |
-
__( 'Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s', 'email-subscribers' ),
|
394 |
__( ' We will take care of it. You don\'t need to visit this URL manually.', 'email-subscribers' ),
|
395 |
/* translators: %s: Link to Icegram documentation */
|
396 |
__( 'You need to visit this URL to send email notifications. Know <a href=\'%s\' target=\'_blank\'>how to run this in background</a>', 'email-subscribers' ),
|
@@ -423,6 +402,9 @@ __( 'Next Execution', 'email-subscribers' ),
|
|
423 |
__( 'In %s', 'email-subscribers' ),
|
424 |
__( 'Plugin usage tracking', 'email-subscribers' ),
|
425 |
__( 'Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data.', 'email-subscribers' ),
|
|
|
|
|
|
|
426 |
__( 'Report', 'email-subscribers' ),
|
427 |
__( 'Activity Info', 'email-subscribers' ),
|
428 |
/* translators: %s: Total items in the table */
|
@@ -674,6 +656,7 @@ __( 'List deleted successfully!', 'email-subscribers' ),
|
|
674 |
__( 'List(s) deleted successfully!', 'email-subscribers' ),
|
675 |
__( 'No lists avaliable.', 'email-subscribers' ),
|
676 |
__( 'Thanks!', 'email-subscribers' ),
|
|
|
677 |
/* translators: %s: Email address */
|
678 |
__( 'Test email to %s', 'email-subscribers' ),
|
679 |
__( 'Congrats, test email was sent successfully!', 'email-subscribers' ),
|
@@ -688,12 +671,14 @@ __( 'Please add message body or select template', 'email-subscribers' ),
|
|
688 |
__( 'Please add the subject', 'email-subscribers' ),
|
689 |
__( 'Scheduling is disabled for this broadcast since it is being sent.', 'email-subscribers' ),
|
690 |
__( 'Scheduling is disabled for this broadcast since it has been sent already.', 'email-subscribers' ),
|
|
|
691 |
__( 'Summary', 'email-subscribers' ),
|
692 |
__( 'Previous', 'email-subscribers' ),
|
693 |
__( 'Save Draft', 'email-subscribers' ),
|
694 |
__( 'Save', 'email-subscribers' ),
|
695 |
__( 'Schedule', 'email-subscribers' ),
|
696 |
__( 'Send', 'email-subscribers' ),
|
|
|
697 |
__( 'From Name', 'email-subscribers' ),
|
698 |
__( 'From Email', 'email-subscribers' ),
|
699 |
__( 'Reply To', 'email-subscribers' ),
|
@@ -758,7 +743,6 @@ __( 'for Broadcast:', 'email-subscribers' ),
|
|
758 |
__( 'for Post Digest:', 'email-subscribers' ),
|
759 |
__( 'Any keywords related Post Notification', 'email-subscribers' ),
|
760 |
__( 'Preview template', 'email-subscribers' ),
|
761 |
-
__( 'Please publish it or save it as a draft.', 'email-subscribers' ),
|
762 |
__( 'Template type', 'email-subscribers' ),
|
763 |
/* translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce */
|
764 |
__( 'Duplicate', 'email-subscribers' ),
|
@@ -956,6 +940,8 @@ __( 'E.g. {{EMAIL}}, admin@example.com', 'email-subscribers' ),
|
|
956 |
__( 'Email subject', 'email-subscribers' ),
|
957 |
__( 'Select List', 'email-subscribers' ),
|
958 |
__( 'Delete Contact', 'email-subscribers' ),
|
|
|
|
|
959 |
__( 'Update Contact', 'email-subscribers' ),
|
960 |
__( 'Variable not found.', 'email-subscribers' ),
|
961 |
__( ' Add New Workflow', 'email-subscribers' ),
|
@@ -1043,8 +1029,13 @@ __( 'activate', 'email-subscribers' ),
|
|
1043 |
__( 'deactivate', 'email-subscribers' ),
|
1044 |
/* translators: %s: Workflow action */
|
1045 |
__( 'Please select workflow(s) to %s.', 'email-subscribers' ),
|
|
|
1046 |
__( 'User deleted', 'email-subscribers' ),
|
1047 |
__( 'User updated', 'email-subscribers' ),
|
|
|
|
|
|
|
|
|
1048 |
__( 'Checkbox', 'email-subscribers' ),
|
1049 |
__( 'Select', 'email-subscribers' ),
|
1050 |
__( 'Text Input', 'email-subscribers' ),
|
@@ -1053,10 +1044,18 @@ esc_html_x( 'MM', 'time field', 'email-subscribers' ),
|
|
1053 |
__( 'WP Editor', 'email-subscribers' ),
|
1054 |
/* translators: %s: Table name */
|
1055 |
__( 'Could not insert into \'%1$s\' table. \'%1$s\' may not be present in the database.', 'email-subscribers' ),
|
|
|
|
|
|
|
1056 |
__( 'User Deleted', 'email-subscribers' ),
|
1057 |
__( 'Fires when user deleted from WordPress.', 'email-subscribers' ),
|
1058 |
__( 'User', 'email-subscribers' ),
|
1059 |
__( 'Fires when someone signup.', 'email-subscribers' ),
|
|
|
|
|
|
|
|
|
|
|
1060 |
__( 'User Updated', 'email-subscribers' ),
|
1061 |
__( 'Fires when a user is updated.', 'email-subscribers' ),
|
1062 |
__( 'Sorry, you are not allowed to access this page.', 'email-subscribers' ),
|
@@ -1190,6 +1189,10 @@ __( 'Last opened at', 'email-subscribers' ),
|
|
1190 |
__( 'Select page', 'email-subscribers' ),
|
1191 |
__( 'Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email.', 'email-subscribers' ),
|
1192 |
__( 'Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email.', 'email-subscribers' ),
|
|
|
|
|
|
|
|
|
1193 |
__( 'Access Key ID', 'email-subscribers' ),
|
1194 |
__( 'Secret Access Key', 'email-subscribers' ),
|
1195 |
__( 'Closest Region', 'email-subscribers' ),
|
@@ -1203,9 +1206,6 @@ __( 'mailgun.com', 'email-subscribers' ),
|
|
1203 |
__( 'API Key', 'email-subscribers' ),
|
1204 |
__( 'Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region.', 'email-subscribers' ),
|
1205 |
__( 'API token', 'email-subscribers' ),
|
1206 |
-
__( 'Weekly summary', 'email-subscribers' ),
|
1207 |
-
__( 'When our automated weekly email should be sent out?', 'email-subscribers' ),
|
1208 |
-
__( 'In which time we need to send our weekly summary?', 'email-subscribers' ),
|
1209 |
__( 'You are not allowed to duplicate campaign.', 'email-subscribers' ),
|
1210 |
__( 'Campaign duplicated !', 'email-subscribers' ),
|
1211 |
__( 'Import WordPress users with following roles', 'email-subscribers' ),
|
@@ -1223,7 +1223,6 @@ __( 'How to configure SendGrid to send emails in the Email Subscribers plugin?',
|
|
1223 |
__( 'How to configure Sparkpost to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1224 |
__( 'How to configure Amazon SES to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1225 |
__( 'How to configure Postmark to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1226 |
-
__( 'Send confirmation email', 'email-subscribers' ),
|
1227 |
__( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
|
1228 |
__( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
|
1229 |
__( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
|
@@ -1264,8 +1263,6 @@ __( 'View More Stats', 'email-subscribers' ),
|
|
1264 |
__( 'Boost Your Stats', 'email-subscribers' ),
|
1265 |
__( 'Visit our Guides & Tutorials to learn ', 'email-subscribers' ),
|
1266 |
__( 'Remove from list', 'email-subscribers' ),
|
1267 |
-
__( 'Send Email', 'email-subscribers' ),
|
1268 |
-
__( 'Email Content', 'email-subscribers' ),
|
1269 |
__( 'Add customer to product specific list', 'email-subscribers' ),
|
1270 |
__( 'Add customer to product variation list', 'email-subscribers' ),
|
1271 |
/* translators: %s: Cart abandoned timeout */
|
80 |
__( 'Opens', 'email-subscribers' ),
|
81 |
__( 'No campaigns sent yet', 'email-subscribers' ),
|
82 |
__( 'Latest Blog Posts from Icegram', 'email-subscribers' ),
|
83 |
+
__( 'Please publish it or save it as a draft.', 'email-subscribers' ),
|
84 |
__( 'Recipients', 'email-subscribers' ),
|
85 |
__( 'Add recipients', 'email-subscribers' ),
|
86 |
__( 'or', 'email-subscribers' ),
|
135 |
__( 'An error occured. Please try again later.', 'email-subscribers' ),
|
136 |
/* translators: 1. Main list name. 2. Default list name. */
|
137 |
__( 'Unable to create %1$s and %2$s list.', 'email-subscribers' ),
|
138 |
+
/* translators: Main list name */
|
139 |
+
__( 'Add to %s list when someone registers', 'email-subscribers' ),
|
140 |
__( 'Please accept terms & condition', 'email-subscribers' ),
|
141 |
/* translators: Active sidebar name. */
|
142 |
__( 'Adding the form to "%s" sidebar, so you can show it on the site', 'email-subscribers' ),
|
370 |
__( 'Share Icegram', 'email-subscribers' ),
|
371 |
__( 'Delete plugin data on uninstall', 'email-subscribers' ),
|
372 |
__( 'Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin.', 'email-subscribers' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
__( ' We will take care of it. You don\'t need to visit this URL manually.', 'email-subscribers' ),
|
374 |
/* translators: %s: Link to Icegram documentation */
|
375 |
__( 'You need to visit this URL to send email notifications. Know <a href=\'%s\' target=\'_blank\'>how to run this in background</a>', 'email-subscribers' ),
|
402 |
__( 'In %s', 'email-subscribers' ),
|
403 |
__( 'Plugin usage tracking', 'email-subscribers' ),
|
404 |
__( 'Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data.', 'email-subscribers' ),
|
405 |
+
__( 'Now you can control all your notifications through workflows.', 'email-subscribers' ),
|
406 |
+
/* translators: 1. Anchor start tag 2. Anchor end tag */
|
407 |
+
__( 'Click %1$shere%2$s to go to workflows.', 'email-subscribers' ),
|
408 |
__( 'Report', 'email-subscribers' ),
|
409 |
__( 'Activity Info', 'email-subscribers' ),
|
410 |
/* translators: %s: Total items in the table */
|
656 |
__( 'List(s) deleted successfully!', 'email-subscribers' ),
|
657 |
__( 'No lists avaliable.', 'email-subscribers' ),
|
658 |
__( 'Thanks!', 'email-subscribers' ),
|
659 |
+
__( 'Campaign Sent!', 'email-subscribers' ),
|
660 |
/* translators: %s: Email address */
|
661 |
__( 'Test email to %s', 'email-subscribers' ),
|
662 |
__( 'Congrats, test email was sent successfully!', 'email-subscribers' ),
|
671 |
__( 'Please add the subject', 'email-subscribers' ),
|
672 |
__( 'Scheduling is disabled for this broadcast since it is being sent.', 'email-subscribers' ),
|
673 |
__( 'Scheduling is disabled for this broadcast since it has been sent already.', 'email-subscribers' ),
|
674 |
+
__( 'Content', 'email-subscribers' ),
|
675 |
__( 'Summary', 'email-subscribers' ),
|
676 |
__( 'Previous', 'email-subscribers' ),
|
677 |
__( 'Save Draft', 'email-subscribers' ),
|
678 |
__( 'Save', 'email-subscribers' ),
|
679 |
__( 'Schedule', 'email-subscribers' ),
|
680 |
__( 'Send', 'email-subscribers' ),
|
681 |
+
__( 'Subject', 'email-subscribers' ),
|
682 |
__( 'From Name', 'email-subscribers' ),
|
683 |
__( 'From Email', 'email-subscribers' ),
|
684 |
__( 'Reply To', 'email-subscribers' ),
|
743 |
__( 'for Post Digest:', 'email-subscribers' ),
|
744 |
__( 'Any keywords related Post Notification', 'email-subscribers' ),
|
745 |
__( 'Preview template', 'email-subscribers' ),
|
|
|
746 |
__( 'Template type', 'email-subscribers' ),
|
747 |
/* translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce */
|
748 |
__( 'Duplicate', 'email-subscribers' ),
|
940 |
__( 'Email subject', 'email-subscribers' ),
|
941 |
__( 'Select List', 'email-subscribers' ),
|
942 |
__( 'Delete Contact', 'email-subscribers' ),
|
943 |
+
__( 'Send Email', 'email-subscribers' ),
|
944 |
+
__( 'Email Content', 'email-subscribers' ),
|
945 |
__( 'Update Contact', 'email-subscribers' ),
|
946 |
__( 'Variable not found.', 'email-subscribers' ),
|
947 |
__( ' Add New Workflow', 'email-subscribers' ),
|
1029 |
__( 'deactivate', 'email-subscribers' ),
|
1030 |
/* translators: %s: Workflow action */
|
1031 |
__( 'Please select workflow(s) to %s.', 'email-subscribers' ),
|
1032 |
+
__( 'User Registered', 'email-subscribers' ),
|
1033 |
__( 'User deleted', 'email-subscribers' ),
|
1034 |
__( 'User updated', 'email-subscribers' ),
|
1035 |
+
__( 'Send welcome email when someone subscribes', 'email-subscribers' ),
|
1036 |
+
__( 'Send confirmation email', 'email-subscribers' ),
|
1037 |
+
__( 'Notify admin when someone subscribes', 'email-subscribers' ),
|
1038 |
+
__( 'Notify admin when campaign is sent', 'email-subscribers' ),
|
1039 |
__( 'Checkbox', 'email-subscribers' ),
|
1040 |
__( 'Select', 'email-subscribers' ),
|
1041 |
__( 'Text Input', 'email-subscribers' ),
|
1044 |
__( 'WP Editor', 'email-subscribers' ),
|
1045 |
/* translators: %s: Table name */
|
1046 |
__( 'Could not insert into \'%1$s\' table. \'%1$s\' may not be present in the database.', 'email-subscribers' ),
|
1047 |
+
__( 'Campaign sent', 'email-subscribers' ),
|
1048 |
+
__( 'Fires when a campaign is sent successfully.', 'email-subscribers' ),
|
1049 |
+
__( 'Admin', 'email-subscribers' ),
|
1050 |
__( 'User Deleted', 'email-subscribers' ),
|
1051 |
__( 'Fires when user deleted from WordPress.', 'email-subscribers' ),
|
1052 |
__( 'User', 'email-subscribers' ),
|
1053 |
__( 'Fires when someone signup.', 'email-subscribers' ),
|
1054 |
+
__( 'User Subscribed', 'email-subscribers' ),
|
1055 |
+
__( 'Fires when someone subscribes.', 'email-subscribers' ),
|
1056 |
+
__( 'Subscriber', 'email-subscribers' ),
|
1057 |
+
__( 'User Unconfirmed', 'email-subscribers' ),
|
1058 |
+
__( 'Fires when someone submit subscriber form.', 'email-subscribers' ),
|
1059 |
__( 'User Updated', 'email-subscribers' ),
|
1060 |
__( 'Fires when a user is updated.', 'email-subscribers' ),
|
1061 |
__( 'Sorry, you are not allowed to access this page.', 'email-subscribers' ),
|
1189 |
__( 'Select page', 'email-subscribers' ),
|
1190 |
__( 'Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email.', 'email-subscribers' ),
|
1191 |
__( 'Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email.', 'email-subscribers' ),
|
1192 |
+
__( 'Weekly summary', 'email-subscribers' ),
|
1193 |
+
__( 'Enable?', 'email-subscribers' ),
|
1194 |
+
__( 'When our automated weekly email should be sent out?', 'email-subscribers' ),
|
1195 |
+
__( 'In which time we need to send our weekly summary?', 'email-subscribers' ),
|
1196 |
__( 'Access Key ID', 'email-subscribers' ),
|
1197 |
__( 'Secret Access Key', 'email-subscribers' ),
|
1198 |
__( 'Closest Region', 'email-subscribers' ),
|
1206 |
__( 'API Key', 'email-subscribers' ),
|
1207 |
__( 'Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region.', 'email-subscribers' ),
|
1208 |
__( 'API token', 'email-subscribers' ),
|
|
|
|
|
|
|
1209 |
__( 'You are not allowed to duplicate campaign.', 'email-subscribers' ),
|
1210 |
__( 'Campaign duplicated !', 'email-subscribers' ),
|
1211 |
__( 'Import WordPress users with following roles', 'email-subscribers' ),
|
1223 |
__( 'How to configure Sparkpost to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1224 |
__( 'How to configure Amazon SES to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1225 |
__( 'How to configure Postmark to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
|
|
1226 |
__( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
|
1227 |
__( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
|
1228 |
__( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
|
1263 |
__( 'Boost Your Stats', 'email-subscribers' ),
|
1264 |
__( 'Visit our Guides & Tutorials to learn ', 'email-subscribers' ),
|
1265 |
__( 'Remove from list', 'email-subscribers' ),
|
|
|
|
|
1266 |
__( 'Add customer to product specific list', 'email-subscribers' ),
|
1267 |
__( 'Add customer to product variation list', 'email-subscribers' ),
|
1268 |
/* translators: %s: Cart abandoned timeout */
|
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.0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2021-11-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: email-subscribers\n"
|
@@ -29,7 +29,7 @@ msgstr ""
|
|
29 |
|
30 |
#. Author of the plugin
|
31 |
#: lite/admin/partials/help.php:28
|
32 |
-
#: lite/includes/class-email-subscribers.php:
|
33 |
msgid "Icegram"
|
34 |
msgstr ""
|
35 |
|
@@ -51,145 +51,145 @@ msgstr ""
|
|
51 |
msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
55 |
msgid "An error has occured. Please try again later."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
59 |
msgid "Broadcast saved successfully."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
63 |
msgid "An error has occured while saving the broadcast. Please try again later."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
67 |
msgid "Please add a broadcast subject before saving."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
71 |
-
#: pro/pro-class-email-subscribers.php:
|
72 |
msgid "Please add email body."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
76 |
msgid "Do you really like to remove all conditions?"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
80 |
msgid "Please select a trigger before saving the workflow."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
84 |
msgid "Please add some actions before saving the workflow."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
88 |
msgid "Please select an action that this workflow should perform before saving the workflow."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
92 |
msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
96 |
msgid "Copied!"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
100 |
msgid "Are you sure?"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
104 |
msgid "Please select the status for the importing contacts!"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
108 |
msgid "Please select a list for importing contacts!"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
112 |
msgid "Please select the email address column!"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
116 |
msgid "Preparing Data"
|
117 |
msgstr ""
|
118 |
|
119 |
#. translators: %s: Upload progress
|
120 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
121 |
msgid "Uploading...%s"
|
122 |
msgstr ""
|
123 |
|
124 |
#. translators: %s: Import progress
|
125 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
126 |
msgid "Importing contacts...%s"
|
127 |
msgstr ""
|
128 |
|
129 |
#. translators: %s: Import failed svg icon
|
130 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
131 |
msgid "Import failed! %s"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
135 |
msgid "Please do not close this window until it completes..."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
139 |
msgid "Preparing Import..."
|
140 |
msgstr ""
|
141 |
|
142 |
#. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
|
143 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
144 |
msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
|
145 |
msgstr ""
|
146 |
|
147 |
#. translators: 1 Duplicate found email message
|
148 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
149 |
msgid "%1$s duplicate emails found."
|
150 |
msgstr ""
|
151 |
|
152 |
#. translators: %s: Time left in minutes
|
153 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
154 |
msgid "Estimate time left: %s minutes"
|
155 |
msgstr ""
|
156 |
|
157 |
#. translators: %s: Next attempt delaly time
|
158 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
159 |
msgid "Continues in %s seconds"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
163 |
msgid "There was a problem during importing contacts. Please check the error logs for more information!"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
167 |
msgid "Do you really like to import these contacts?"
|
168 |
msgstr ""
|
169 |
|
170 |
#. translators: %s: Process complete svg icon
|
171 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
172 |
msgid "Import complete! %s"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
176 |
msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
180 |
msgid "API is valid. Fetching lists..."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
184 |
msgid "Fetching contacts from MailChimp...Please do not close this window"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
188 |
#: lite/admin/partials/dashboard.php:100
|
189 |
msgid "Dashboard"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
193 |
#: lite/admin/partials/dashboard.php:107
|
194 |
#: lite/includes/classes/class-es-contacts-table.php:214
|
195 |
#: lite/includes/pro-features.php:160
|
@@ -197,14 +197,14 @@ msgstr ""
|
|
197 |
msgid "Audience"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
201 |
#: lite/includes/classes/class-es-forms-table.php:463
|
202 |
#: lite/includes/classes/class-es-lists-table.php:34
|
203 |
#: lite/includes/classes/class-es-lists-table.php:88
|
204 |
msgid "Lists"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
208 |
#: lite/includes/classes/class-es-form-widget.php:74
|
209 |
#: lite/includes/classes/class-es-forms-table.php:39
|
210 |
#: lite/includes/classes/class-es-forms-table.php:40
|
@@ -214,7 +214,7 @@ msgstr ""
|
|
214 |
msgid "Forms"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
218 |
#: lite/includes/classes/class-es-campaigns-table.php:130
|
219 |
#: lite/includes/classes/class-es-newsletters.php:239
|
220 |
#: lite/includes/classes/class-es-newsletters.php:245
|
@@ -224,29 +224,30 @@ msgstr ""
|
|
224 |
msgid "Campaigns"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
228 |
msgid "Post Notifications"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
232 |
#: lite/includes/classes/class-es-campaigns-table.php:362
|
233 |
#: lite/includes/classes/class-es-newsletters.php:254
|
234 |
#: lite/includes/classes/class-es-reports-data.php:360
|
235 |
#: lite/includes/classes/class-es-reports-table.php:161
|
236 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
237 |
#: lite/includes/pro-features.php:1146
|
238 |
-
#: lite/public/class-email-subscribers-public.php:
|
239 |
#: pro/classes/class-es-pro-reports-data.php:77
|
240 |
msgid "Broadcast"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
244 |
#: lite/includes/classes/class-es-newsletters.php:430
|
245 |
#: lite/includes/classes/class-es-reports-table.php:532
|
|
|
246 |
msgid "Template Preview"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
250 |
#: lite/includes/pro-features.php:165
|
251 |
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
|
252 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
@@ -255,7 +256,7 @@ msgstr ""
|
|
255 |
msgid "Workflows"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
259 |
#: lite/admin/partials/dashboard.php:238
|
260 |
#: lite/includes/classes/class-es-campaign-report.php:17
|
261 |
#: lite/includes/classes/class-es-reports-table.php:17
|
@@ -269,28 +270,28 @@ msgstr ""
|
|
269 |
msgid "Reports"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
273 |
#: lite/admin/partials/dashboard.php:246
|
274 |
#: lite/includes/classes/class-es-admin-settings.php:131
|
275 |
msgid "Settings"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
279 |
msgid "Go To Icegram"
|
280 |
msgstr ""
|
281 |
|
282 |
#. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
|
283 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
284 |
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>"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
288 |
msgid "Something went wrong"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
292 |
#: lite/includes/class-email-subscribers-activator.php:61
|
293 |
-
#: lite/includes/class-email-subscribers.php:
|
294 |
#: lite/includes/classes/class-es-form-widget.php:11
|
295 |
#: lite/includes/classes/class-es-old-widget.php:13
|
296 |
#: lite/includes/classes/class-es-old-widget.php:15
|
@@ -299,11 +300,11 @@ msgstr ""
|
|
299 |
msgid "Email Subscribers"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
303 |
msgid "Last 30 days"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
307 |
#: lite/includes/class-es-common.php:206
|
308 |
#: lite/includes/classes/class-es-contacts-table.php:327
|
309 |
#: lite/includes/classes/class-es-import-subscribers.php:839
|
@@ -312,7 +313,7 @@ msgstr ""
|
|
312 |
msgid "Subscribed"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
316 |
#: lite/includes/class-es-common.php:208
|
317 |
#: lite/includes/classes/class-es-contacts-table.php:335
|
318 |
#: lite/includes/classes/class-es-import-subscribers.php:840
|
@@ -322,25 +323,25 @@ msgstr ""
|
|
322 |
msgid "Unsubscribed"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
326 |
#: lite/includes/pro-features.php:1178
|
327 |
msgid "Avg Open Rate"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
331 |
#: lite/admin/partials/dashboard.php:193
|
332 |
msgid "Messages Sent"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
336 |
msgid "Last Campaign"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
340 |
msgid "Sent to"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
344 |
#: lite/admin/partials/dashboard.php:177
|
345 |
#: lite/includes/pro-features.php:1258
|
346 |
#: lite/includes/pro-features.php:1296
|
@@ -352,14 +353,18 @@ msgstr ""
|
|
352 |
msgid "Opens"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
356 |
msgid "No campaigns sent yet"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
360 |
msgid "Latest Blog Posts from Icegram"
|
361 |
msgstr ""
|
362 |
|
|
|
|
|
|
|
|
|
363 |
#: lite/admin/class-ig-es-campaign-rules.php:169
|
364 |
msgid "Recipients"
|
365 |
msgstr ""
|
@@ -473,11 +478,11 @@ msgstr ""
|
|
473 |
#: lite/includes/pro-features.php:974
|
474 |
#: lite/includes/pro-features.php:1505
|
475 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
|
|
476 |
#: lite/public/partials/class-es-shortcode.php:169
|
477 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
478 |
-
#: pro/pro-class-email-subscribers.php:
|
479 |
-
#: pro/pro-class-email-subscribers.php:
|
480 |
-
#: pro/workflows/actions/class-es-action-send-email.php:29
|
481 |
msgid "Email"
|
482 |
msgstr ""
|
483 |
|
@@ -637,41 +642,39 @@ msgstr ""
|
|
637 |
msgid "Unable to create %1$s and %2$s list."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
641 |
-
|
642 |
-
#: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
|
643 |
-
msgid "User Registered"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
647 |
msgid "Please accept terms & condition"
|
648 |
msgstr ""
|
649 |
|
650 |
#. translators: Active sidebar name.
|
651 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
652 |
msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
|
653 |
msgstr ""
|
654 |
|
655 |
#. translators: Active sidebar name.
|
656 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
657 |
msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
|
658 |
msgstr ""
|
659 |
|
660 |
#. translators: Active sidebar name.
|
661 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
662 |
msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
666 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
667 |
msgid "Welcome To Email Subscribers"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
671 |
msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: lite/admin/class-ig-es-onboarding.php:
|
675 |
msgid "New Post Published - {{POSTTITLE}}"
|
676 |
msgstr ""
|
677 |
|
@@ -1184,16 +1187,16 @@ msgid "OK, I Got it!"
|
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#. translators: 1: Error message 2: File name 3: Line number
|
1187 |
-
#: lite/includes/class-email-subscribers.php:
|
1188 |
msgid "%1$s in %2$s on line %3$s"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: lite/includes/class-email-subscribers.php:
|
1192 |
msgid "Icegram WC"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
#. translators: %1$s - constant that was used
|
1196 |
-
#: lite/includes/class-email-subscribers.php:
|
1197 |
msgid "Value was set using constant %1$s"
|
1198 |
msgstr ""
|
1199 |
|
@@ -1282,7 +1285,7 @@ msgid "Medium Size"
|
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: lite/includes/class-es-common.php:630
|
1285 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
1286 |
msgid "Thumbnail"
|
1287 |
msgstr ""
|
1288 |
|
@@ -1420,11 +1423,11 @@ msgstr ""
|
|
1420 |
#: lite/includes/pro-features.php:1066
|
1421 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1422 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1423 |
-
#: pro/pro-class-email-subscribers.php:
|
1424 |
msgid "Date"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: lite/includes/class-es-install.php:
|
1428 |
#: lite/includes/upgrade/es-update-functions.php:752
|
1429 |
msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
|
1430 |
msgstr ""
|
@@ -1610,223 +1613,138 @@ msgstr ""
|
|
1610 |
msgid "Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1614 |
-
msgid "Welcome email"
|
1615 |
-
msgstr ""
|
1616 |
-
|
1617 |
-
#: lite/includes/classes/class-es-admin-settings.php:372
|
1618 |
-
msgid "Send this text as a welcome email when new people subscribe."
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: lite/includes/classes/class-es-admin-settings.php:377
|
1622 |
-
#: pro/pro-class-email-subscribers.php:1155
|
1623 |
-
msgid "Enable?"
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: lite/includes/classes/class-es-admin-settings.php:389
|
1627 |
-
#: lite/includes/classes/class-es-admin-settings.php:419
|
1628 |
-
#: lite/includes/classes/class-es-admin-settings.php:453
|
1629 |
-
#: lite/includes/classes/class-es-admin-settings.php:491
|
1630 |
-
#: lite/includes/classes/class-es-newsletters.php:355
|
1631 |
-
#: lite/includes/classes/class-es-reports-table.php:279
|
1632 |
-
#: pro/classes/class-es-pro-sequence-report.php:299
|
1633 |
-
msgid "Subject"
|
1634 |
-
msgstr ""
|
1635 |
-
|
1636 |
-
#: lite/includes/classes/class-es-admin-settings.php:399
|
1637 |
-
#: lite/includes/classes/class-es-admin-settings.php:430
|
1638 |
-
#: lite/includes/classes/class-es-admin-settings.php:461
|
1639 |
-
#: lite/includes/classes/class-es-admin-settings.php:502
|
1640 |
-
#: lite/includes/classes/class-es-newsletters.php:260
|
1641 |
-
#: pro/pro-class-sequences.php:405
|
1642 |
-
msgid "Content"
|
1643 |
-
msgstr ""
|
1644 |
-
|
1645 |
-
#. translators: %s: List of Keywords
|
1646 |
-
#: lite/includes/classes/class-es-admin-settings.php:401
|
1647 |
-
msgid "Available keywords: %s"
|
1648 |
-
msgstr ""
|
1649 |
-
|
1650 |
-
#: lite/includes/classes/class-es-admin-settings.php:408
|
1651 |
-
msgid "Double opt-in confirmation email"
|
1652 |
-
msgstr ""
|
1653 |
-
|
1654 |
-
#: lite/includes/classes/class-es-admin-settings.php:409
|
1655 |
-
msgid "Use this text as confirmation email when opt-in type is set to \"Double opt-in\". Make sure to include {{SUBSCRIBE-LINK}} keyword, otherwise they won't be able to confirm their subscription."
|
1656 |
-
msgstr ""
|
1657 |
-
|
1658 |
-
#. translators: %s: List of Keywords
|
1659 |
-
#: lite/includes/classes/class-es-admin-settings.php:432
|
1660 |
-
msgid "Available keywords: %s "
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: lite/includes/classes/class-es-admin-settings.php:440
|
1664 |
-
msgid "New subscription notification to admin"
|
1665 |
-
msgstr ""
|
1666 |
-
|
1667 |
-
#: lite/includes/classes/class-es-admin-settings.php:441
|
1668 |
-
msgid "Notify admin(s) everytime a new contact signups."
|
1669 |
-
msgstr ""
|
1670 |
-
|
1671 |
-
#: lite/includes/classes/class-es-admin-settings.php:446
|
1672 |
-
#: lite/includes/classes/class-es-admin-settings.php:478
|
1673 |
-
msgid "Notify?"
|
1674 |
-
msgstr ""
|
1675 |
-
|
1676 |
-
#: lite/includes/classes/class-es-admin-settings.php:455
|
1677 |
-
msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
|
1678 |
-
msgstr ""
|
1679 |
-
|
1680 |
-
#: lite/includes/classes/class-es-admin-settings.php:456
|
1681 |
-
msgid "New email subscription"
|
1682 |
-
msgstr ""
|
1683 |
-
|
1684 |
-
#. translators: %s: List of Keywords
|
1685 |
-
#: lite/includes/classes/class-es-admin-settings.php:464
|
1686 |
-
msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
|
1687 |
-
msgstr ""
|
1688 |
-
|
1689 |
-
#: lite/includes/classes/class-es-admin-settings.php:472
|
1690 |
-
msgid "Campaign sent notification to admin"
|
1691 |
-
msgstr ""
|
1692 |
-
|
1693 |
-
#: lite/includes/classes/class-es-admin-settings.php:473
|
1694 |
-
msgid "Notify admin(s) everytime a campaign is sent."
|
1695 |
-
msgstr ""
|
1696 |
-
|
1697 |
-
#: lite/includes/classes/class-es-admin-settings.php:489
|
1698 |
-
#: lite/includes/classes/class-es-mailer.php:362
|
1699 |
-
msgid "Campaign Sent!"
|
1700 |
-
msgstr ""
|
1701 |
-
|
1702 |
-
#. translators: %s: List of Keywords
|
1703 |
-
#: lite/includes/classes/class-es-admin-settings.php:504
|
1704 |
-
msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
|
1705 |
-
msgstr ""
|
1706 |
-
|
1707 |
-
#: lite/includes/classes/class-es-admin-settings.php:516
|
1708 |
msgid " We will take care of it. You don't need to visit this URL manually."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
#. translators: %s: Link to Icegram documentation
|
1712 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1713 |
msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1717 |
msgid "How to configure Email Sending"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1721 |
msgid "Cron URL"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1725 |
msgid "Disable Wordpress Cron"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1729 |
msgid "Enable this option if you do not want Email Subscribers to use WP Cron to send emails."
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1733 |
msgid "Send emails at most every"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1737 |
msgid "Optional if a real cron service is used"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1741 |
msgid "Maximum emails to send in an hour"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1745 |
msgid "Total emails your host can send in an hour."
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1749 |
msgid "Maximum emails to send at once"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1753 |
msgid "Maximum emails you want to send on every cron request."
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1757 |
msgid "Send test email"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1761 |
msgid "Enter email address to send test email."
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1765 |
msgid "Select Mailer"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1769 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1770 |
msgid "Pepipost API key"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1774 |
msgid "Select a mailer to send mail"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1778 |
msgid "Blocked domain(s)"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1782 |
msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1786 |
msgid "Save Settings"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1790 |
msgid "Signup for Pepipost"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1794 |
msgid "How to find"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1798 |
msgid "Why to choose Pepipost"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1802 |
msgid "Cron Info"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1806 |
msgid "Event"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1810 |
msgid "Interval"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1814 |
msgid "Next Execution"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
#. translators: %s: Next scheduled time
|
1818 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1819 |
msgid "In %s"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1823 |
msgid "Plugin usage tracking"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1827 |
msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
|
1828 |
msgstr ""
|
1829 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1830 |
#: lite/includes/classes/class-es-campaign-report.php:16
|
1831 |
#: lite/includes/classes/class-es-campaigns-table.php:444
|
1832 |
#: lite/includes/classes/class-es-campaigns-table.php:448
|
@@ -2124,7 +2042,7 @@ msgstr ""
|
|
2124 |
|
2125 |
#: lite/includes/classes/class-es-contacts-table.php:808
|
2126 |
#: lite/includes/pro-features.php:980
|
2127 |
-
#: pro/pro-class-email-subscribers.php:
|
2128 |
msgid "Enter email"
|
2129 |
msgstr ""
|
2130 |
|
@@ -2335,7 +2253,7 @@ msgstr ""
|
|
2335 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2336 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2337 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2338 |
-
#: pro/pro-class-email-subscribers.php:
|
2339 |
msgid "First Name"
|
2340 |
msgstr ""
|
2341 |
|
@@ -2344,7 +2262,7 @@ msgstr ""
|
|
2344 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2345 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2346 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2347 |
-
#: pro/pro-class-email-subscribers.php:
|
2348 |
msgid "Last Name"
|
2349 |
msgstr ""
|
2350 |
|
@@ -2553,59 +2471,59 @@ msgstr ""
|
|
2553 |
msgid "No Forms avaliable."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2557 |
#: lite/public/class-email-subscribers-public.php:107
|
2558 |
msgid "Please enter email address"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2562 |
#: lite/public/class-email-subscribers-public.php:108
|
2563 |
msgid "You need to wait for sometime before subscribing again"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2567 |
#: lite/includes/upgrade/es-update-functions.php:752
|
2568 |
#: lite/public/class-email-subscribers-public.php:109
|
2569 |
msgid "Successfully Subscribed."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2573 |
#: lite/public/class-email-subscribers-public.php:111
|
2574 |
msgid "Email Address already exists!"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2578 |
#: lite/public/class-email-subscribers-public.php:112
|
2579 |
msgid "Oops.. Unexpected error occurred."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2583 |
#: lite/public/class-email-subscribers-public.php:113
|
2584 |
msgid "Invalid email address"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2588 |
msgid "Invalid name"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2592 |
#: lite/public/class-email-subscribers-public.php:114
|
2593 |
msgid "Please try after some time"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2597 |
msgid "Oops...unable to add subscriber"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2601 |
msgid "You do not have permission to add subscriber"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2605 |
msgid "Please select the list"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: lite/includes/classes/class-es-handle-subscription.php:
|
2609 |
msgid "Invalid Captcha"
|
2610 |
msgstr ""
|
2611 |
|
@@ -2938,6 +2856,10 @@ msgstr ""
|
|
2938 |
msgid "Thanks!"
|
2939 |
msgstr ""
|
2940 |
|
|
|
|
|
|
|
|
|
2941 |
#. translators: %s: Email address
|
2942 |
#: lite/includes/classes/class-es-mailer.php:525
|
2943 |
msgid "Test email to %s"
|
@@ -2985,6 +2907,11 @@ msgstr ""
|
|
2985 |
msgid "Scheduling is disabled for this broadcast since it has been sent already."
|
2986 |
msgstr ""
|
2987 |
|
|
|
|
|
|
|
|
|
|
|
2988 |
#: lite/includes/classes/class-es-newsletters.php:263
|
2989 |
msgid "Summary"
|
2990 |
msgstr ""
|
@@ -3013,6 +2940,12 @@ msgstr ""
|
|
3013 |
msgid "Send"
|
3014 |
msgstr ""
|
3015 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3016 |
#: lite/includes/classes/class-es-newsletters.php:359
|
3017 |
msgid "From Name"
|
3018 |
msgstr ""
|
@@ -3050,11 +2983,13 @@ msgstr ""
|
|
3050 |
|
3051 |
#: lite/includes/classes/class-es-newsletters.php:431
|
3052 |
#: lite/includes/classes/class-es-reports-table.php:533
|
|
|
3053 |
msgid "There could be a slight variation on how your customer will view the email content."
|
3054 |
msgstr ""
|
3055 |
|
3056 |
#: lite/includes/classes/class-es-newsletters.php:435
|
3057 |
#: lite/includes/classes/class-es-reports-table.php:537
|
|
|
3058 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
|
3059 |
msgid "Close"
|
3060 |
msgstr ""
|
@@ -3183,7 +3118,7 @@ msgstr ""
|
|
3183 |
|
3184 |
#: lite/includes/classes/class-es-reports-data.php:362
|
3185 |
#: lite/includes/classes/class-es-reports-table.php:157
|
3186 |
-
#: lite/public/class-email-subscribers-public.php:
|
3187 |
#: pro/classes/class-es-pro-reports-data.php:73
|
3188 |
msgid "Post Notification"
|
3189 |
msgstr ""
|
@@ -3252,48 +3187,44 @@ msgstr ""
|
|
3252 |
msgid "Completed"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3256 |
msgid "Select template type"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3260 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3261 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3262 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3263 |
msgid "Available Keywords"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3267 |
msgid "for Broadcast:"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3271 |
msgid "for Post Digest:"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3275 |
msgid "Any keywords related Post Notification"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3279 |
msgid "Preview template"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3283 |
-
msgid "Please publish it or save it as a draft."
|
3284 |
-
msgstr ""
|
3285 |
-
|
3286 |
-
#: lite/includes/classes/class-es-templates-table.php:262
|
3287 |
msgid "Template type"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3291 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3292 |
-
#: pro/pro-class-email-subscribers.php:
|
3293 |
msgid "Duplicate"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: lite/includes/classes/class-es-templates-table.php:
|
3297 |
#: lite/includes/db/class-es-db-campaigns.php:741
|
3298 |
#: lite/includes/db/class-es-db-campaigns.php:744
|
3299 |
msgid "Copy"
|
@@ -3538,12 +3469,12 @@ msgid "Access Control"
|
|
3538 |
msgstr ""
|
3539 |
|
3540 |
#: lite/includes/pro-features.php:252
|
3541 |
-
#: pro/pro-class-email-subscribers.php:
|
3542 |
msgid "Track clicks"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
#: lite/includes/pro-features.php:253
|
3546 |
-
#: pro/pro-class-email-subscribers.php:
|
3547 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3548 |
msgstr ""
|
3549 |
|
@@ -3634,7 +3565,7 @@ msgid "Prevent bot signups even further. Set default captcha option for new subs
|
|
3634 |
msgstr ""
|
3635 |
|
3636 |
#: lite/includes/pro-features.php:390
|
3637 |
-
#: pro/pro-class-email-subscribers.php:
|
3638 |
msgid "Track IP address"
|
3639 |
msgstr ""
|
3640 |
|
@@ -3892,7 +3823,7 @@ msgid "Reduce the possibility to land in spam with PRO"
|
|
3892 |
msgstr ""
|
3893 |
|
3894 |
#: lite/includes/pro-features.php:1007
|
3895 |
-
#: pro/pro-class-email-subscribers.php:
|
3896 |
msgid "Link tracking"
|
3897 |
msgstr ""
|
3898 |
|
@@ -3901,23 +3832,23 @@ msgid "Get spam score"
|
|
3901 |
msgstr ""
|
3902 |
|
3903 |
#: lite/includes/pro-features.php:1056
|
3904 |
-
#: pro/pro-class-email-subscribers.php:
|
3905 |
msgid "Send options"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
#: lite/includes/pro-features.php:1059
|
3909 |
-
#: pro/pro-class-email-subscribers.php:
|
3910 |
msgid "Schedule for later"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
#: lite/includes/pro-features.php:1075
|
3914 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
3915 |
-
#: pro/pro-class-email-subscribers.php:
|
3916 |
msgid "Time"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
#: lite/includes/pro-features.php:1085
|
3920 |
-
#: pro/pro-class-email-subscribers.php:
|
3921 |
msgid "Local Time: "
|
3922 |
msgstr ""
|
3923 |
|
@@ -4042,12 +3973,12 @@ msgid "Mobile"
|
|
4042 |
msgstr ""
|
4043 |
|
4044 |
#: lite/includes/pro-features.php:1612
|
4045 |
-
#: pro/pro-class-email-subscribers.php:
|
4046 |
msgid "Add Attachments"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
#: lite/includes/pro-features.php:1642
|
4050 |
-
#: pro/pro-class-email-subscribers.php:
|
4051 |
msgid "Import existing WordPress users"
|
4052 |
msgstr ""
|
4053 |
|
@@ -4144,6 +4075,14 @@ msgstr ""
|
|
4144 |
msgid "Delete Contact"
|
4145 |
msgstr ""
|
4146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4147 |
#: lite/includes/workflows/actions/class-es-action-update-contact.php:29
|
4148 |
msgid "Update Contact"
|
4149 |
msgstr ""
|
@@ -4248,31 +4187,31 @@ msgid "(24 hour time)"
|
|
4248 |
msgstr ""
|
4249 |
|
4250 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:22
|
4251 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4252 |
#: starter/workflows/triggers/class-es-trigger-comment-added.php:23
|
4253 |
msgid "Comment Added"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:25
|
4257 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4258 |
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
|
4259 |
msgid "Contact Form 7 Submitted"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:26
|
4263 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4264 |
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
|
4265 |
msgid "WP Form Submitted"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:27
|
4269 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4270 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
|
4271 |
msgid "Ninja Form Submitted"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:28
|
4275 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4276 |
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
|
4277 |
msgid "Gravity Form Submitted"
|
4278 |
msgstr ""
|
@@ -4283,18 +4222,18 @@ msgid "Forminator Form Submitted"
|
|
4283 |
msgstr ""
|
4284 |
|
4285 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:32
|
4286 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4287 |
#: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
|
4288 |
msgid "WooCommerce Order Completed"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:33
|
4292 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4293 |
msgid "EDD Purchase Completed"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:34
|
4297 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4298 |
msgid "Give Donation Added"
|
4299 |
msgstr ""
|
4300 |
|
@@ -4489,14 +4428,36 @@ msgstr ""
|
|
4489 |
msgid "Please select workflow(s) to %s."
|
4490 |
msgstr ""
|
4491 |
|
4492 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
|
|
|
|
|
|
|
|
|
|
4493 |
msgid "User deleted"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4497 |
msgid "User updated"
|
4498 |
msgstr ""
|
4499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4500 |
#: lite/includes/workflows/fields/class-es-checkbox.php:34
|
4501 |
msgid "Checkbox"
|
4502 |
msgstr ""
|
@@ -4530,6 +4491,18 @@ msgstr ""
|
|
4530 |
msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
|
4531 |
msgstr ""
|
4532 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4533 |
#: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
|
4534 |
msgid "User Deleted"
|
4535 |
msgstr ""
|
@@ -4549,6 +4522,24 @@ msgstr ""
|
|
4549 |
msgid "Fires when someone signup."
|
4550 |
msgstr ""
|
4551 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4552 |
#: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
|
4553 |
msgid "User Updated"
|
4554 |
msgstr ""
|
@@ -4557,36 +4548,36 @@ msgstr ""
|
|
4557 |
msgid "Fires when a user is updated."
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: lite/public/class-email-subscribers-public.php:
|
4561 |
msgid "Sorry, you are not allowed to access this page."
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: lite/public/class-email-subscribers-public.php:
|
4565 |
msgid "You are already subscribed!"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: lite/public/class-email-subscribers-public.php:
|
4569 |
msgid "You are already unsubscribed!"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: lite/public/class-email-subscribers-public.php:
|
4573 |
msgid "Sorry, we couldn't find you. Please contact admin."
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#: lite/public/class-email-subscribers-public.php:
|
4577 |
#: starter/starter-class-email-subscribers.php:904
|
4578 |
msgid "is subscribed to our mailing list(s)."
|
4579 |
msgstr ""
|
4580 |
|
4581 |
-
#: lite/public/class-email-subscribers-public.php:
|
4582 |
msgid "Unsubscribe from all list(s)"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#: lite/public/class-email-subscribers-public.php:
|
4586 |
msgid "You will be unsubscribed from receiving all future emails sent from us."
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: lite/public/class-email-subscribers-public.php:
|
4590 |
#: starter/starter-class-email-subscribers.php:928
|
4591 |
msgid "Unsubscribe"
|
4592 |
msgstr ""
|
@@ -4608,7 +4599,7 @@ msgid "Total Emails In Queue"
|
|
4608 |
msgstr ""
|
4609 |
|
4610 |
#: lite/public/partials/cron-message.php:43
|
4611 |
-
#: pro/pro-class-email-subscribers.php:
|
4612 |
msgid "Send Now"
|
4613 |
msgstr ""
|
4614 |
|
@@ -4686,7 +4677,7 @@ msgstr ""
|
|
4686 |
|
4687 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
4688 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
4689 |
-
#: pro/pro-class-email-subscribers.php:
|
4690 |
msgid "Custom Fields"
|
4691 |
msgstr ""
|
4692 |
|
@@ -4765,7 +4756,7 @@ msgid "Manage Custom Fields"
|
|
4765 |
msgstr ""
|
4766 |
|
4767 |
#: pro/classes/class-es-pro-custom-fields.php:240
|
4768 |
-
#: pro/classes/class-es-pro-custom-fields.php:
|
4769 |
msgid "Select option"
|
4770 |
msgstr ""
|
4771 |
|
@@ -4774,7 +4765,7 @@ msgid "Recipient(s): "
|
|
4774 |
msgstr ""
|
4775 |
|
4776 |
#: pro/classes/class-es-pro-reports-data.php:261
|
4777 |
-
#: pro/pro-class-email-subscribers.php:
|
4778 |
msgid "Clicked"
|
4779 |
msgstr ""
|
4780 |
|
@@ -4902,73 +4893,73 @@ msgid "Please share the reason"
|
|
4902 |
msgstr ""
|
4903 |
|
4904 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
|
4905 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4906 |
msgid "Access Key ID is empty."
|
4907 |
msgstr ""
|
4908 |
|
4909 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
|
4910 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4911 |
msgid "Secret Access Key is empty."
|
4912 |
msgstr ""
|
4913 |
|
4914 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
|
4915 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4916 |
msgid "Closest region is not set."
|
4917 |
msgstr ""
|
4918 |
|
4919 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4920 |
msgid "US East (N. Virginia)"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4924 |
msgid "US East (Ohio)"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4928 |
msgid "US West (Oregon)"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4932 |
msgid "US AWS GovCloud"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4936 |
msgid "EU (Ireland)"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4940 |
msgid "EU (London)"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4944 |
msgid "EU (Frankfurt)"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4948 |
msgid "Asia Pacific (Mumbai)"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4952 |
msgid "Asia Pacific (Tokyo)"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4956 |
msgid "Asia Pacific (Seoul)"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4960 |
msgid "Asia Pacific (Singapore)"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4964 |
msgid "Asia Pacific (Sydney)"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4968 |
msgid "Canada (Central)"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:
|
4972 |
msgid "South America (São Paulo)"
|
4973 |
msgstr ""
|
4974 |
|
@@ -5037,212 +5028,212 @@ msgstr ""
|
|
5037 |
msgid "Your cart could not be restored, it may have expired."
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#: pro/pro-class-email-subscribers.php:
|
5041 |
#: pro/pro-class-post-digest.php:25
|
5042 |
msgid "Sequence"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: pro/pro-class-email-subscribers.php:
|
5046 |
msgid "Please enter an email address."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: pro/pro-class-email-subscribers.php:
|
5050 |
msgid "Add Attachment"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
#. translators: %s: Attachmen max file size.
|
5054 |
-
#: pro/pro-class-email-subscribers.php:
|
5055 |
msgid "Please attach a file having size lower than %s."
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: pro/pro-class-email-subscribers.php:
|
5059 |
msgid "Are you sure you want to delete this?"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: pro/pro-class-email-subscribers.php:
|
5063 |
-
#: pro/pro-class-email-subscribers.php:
|
5064 |
msgid "Checking your orders..."
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: pro/pro-class-email-subscribers.php:
|
5068 |
msgid "Clean My List"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: pro/pro-class-email-subscribers.php:
|
5072 |
msgid "List cleanup is in progress..."
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: pro/pro-class-email-subscribers.php:
|
5076 |
msgid "List cleanup completed successfully."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: pro/pro-class-email-subscribers.php:
|
5080 |
msgid "Email status"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: pro/pro-class-email-subscribers.php:
|
5084 |
msgid "Last opened at"
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: pro/pro-class-email-subscribers.php:
|
5088 |
msgid "Select page"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: pro/pro-class-email-subscribers.php:
|
5092 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: pro/pro-class-email-subscribers.php:
|
5096 |
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."
|
5097 |
msgstr ""
|
5098 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5099 |
#: pro/pro-class-email-subscribers.php:940
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5100 |
msgid "Access Key ID"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: pro/pro-class-email-subscribers.php:
|
5104 |
msgid "Secret Access Key"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: pro/pro-class-email-subscribers.php:
|
5108 |
msgid "Closest Region"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: pro/pro-class-email-subscribers.php:
|
5112 |
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."
|
5113 |
msgstr ""
|
5114 |
|
5115 |
-
#: pro/pro-class-email-subscribers.php:
|
5116 |
msgid "Private API Key"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
-
#: pro/pro-class-email-subscribers.php:
|
5120 |
msgid "Domain Name"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
-
#: pro/pro-class-email-subscribers.php:
|
5124 |
-
#: pro/pro-class-email-subscribers.php:
|
5125 |
msgid "United States"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
-
#: pro/pro-class-email-subscribers.php:
|
5129 |
-
#: pro/pro-class-email-subscribers.php:
|
5130 |
msgid "Europe"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
-
#: pro/pro-class-email-subscribers.php:
|
5134 |
-
#: pro/pro-class-email-subscribers.php:
|
5135 |
msgid "Region"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
-
#: pro/pro-class-email-subscribers.php:
|
5139 |
msgid "mailgun.com"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: pro/pro-class-email-subscribers.php:
|
5143 |
-
#: pro/pro-class-email-subscribers.php:
|
5144 |
msgid "API Key"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#: pro/pro-class-email-subscribers.php:
|
5148 |
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."
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#: pro/pro-class-email-subscribers.php:
|
5152 |
msgid "API token"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: pro/pro-class-email-subscribers.php:
|
5156 |
-
msgid "Weekly summary"
|
5157 |
-
msgstr ""
|
5158 |
-
|
5159 |
-
#: pro/pro-class-email-subscribers.php:1162
|
5160 |
-
msgid "When our automated weekly email should be sent out?"
|
5161 |
-
msgstr ""
|
5162 |
-
|
5163 |
-
#: pro/pro-class-email-subscribers.php:1171
|
5164 |
-
msgid "In which time we need to send our weekly summary?"
|
5165 |
-
msgstr ""
|
5166 |
-
|
5167 |
-
#: pro/pro-class-email-subscribers.php:1519
|
5168 |
msgid "You are not allowed to duplicate campaign."
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: pro/pro-class-email-subscribers.php:
|
5172 |
msgid "Campaign duplicated !"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: pro/pro-class-email-subscribers.php:
|
5176 |
msgid "Import WordPress users with following roles"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: pro/pro-class-email-subscribers.php:
|
5180 |
-
#: pro/pro-class-email-subscribers.php:
|
5181 |
msgid "Proceed "
|
5182 |
msgstr ""
|
5183 |
|
5184 |
-
#: pro/pro-class-email-subscribers.php:
|
5185 |
msgid "Import from WooCommerce orders"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: pro/pro-class-email-subscribers.php:
|
5189 |
msgid "Select order statuses"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: pro/pro-class-email-subscribers.php:
|
5193 |
msgid "Orders should contain these products"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
-
#: pro/pro-class-email-subscribers.php:
|
5197 |
msgid "Search products..."
|
5198 |
msgstr ""
|
5199 |
|
5200 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5201 |
-
#: pro/pro-class-email-subscribers.php:
|
5202 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: pro/pro-class-email-subscribers.php:
|
5206 |
msgid "We can't find any matching orders in your store."
|
5207 |
msgstr ""
|
5208 |
|
5209 |
-
#: pro/pro-class-email-subscribers.php:
|
5210 |
msgid "Total Opened"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
-
#: pro/pro-class-email-subscribers.php:
|
5214 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
-
#: pro/pro-class-email-subscribers.php:
|
5218 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#: pro/pro-class-email-subscribers.php:
|
5222 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: pro/pro-class-email-subscribers.php:
|
5226 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: pro/pro-class-email-subscribers.php:
|
5230 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: pro/pro-class-email-subscribers.php:
|
5234 |
-
msgid "Send confirmation email"
|
5235 |
-
msgstr ""
|
5236 |
-
|
5237 |
-
#: pro/pro-class-email-subscribers.php:2426
|
5238 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: pro/pro-class-email-subscribers.php:
|
5242 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: pro/pro-class-email-subscribers.php:
|
5246 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5247 |
msgstr ""
|
5248 |
|
@@ -5400,14 +5391,6 @@ msgstr ""
|
|
5400 |
msgid "Remove from list"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: pro/workflows/actions/class-es-action-send-email.php:30
|
5404 |
-
msgid "Send Email"
|
5405 |
-
msgstr ""
|
5406 |
-
|
5407 |
-
#: pro/workflows/actions/class-es-action-send-email.php:43
|
5408 |
-
msgid "Email Content"
|
5409 |
-
msgstr ""
|
5410 |
-
|
5411 |
#: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
|
5412 |
msgid "Add customer to product specific list"
|
5413 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 5.0.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: 2021-11-19T12:40:10+01:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: email-subscribers\n"
|
29 |
|
30 |
#. Author of the plugin
|
31 |
#: lite/admin/partials/help.php:28
|
32 |
+
#: lite/includes/class-email-subscribers.php:1557
|
33 |
msgid "Icegram"
|
34 |
msgstr ""
|
35 |
|
51 |
msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: lite/admin/class-email-subscribers-admin.php:167
|
55 |
msgid "An error has occured. Please try again later."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: lite/admin/class-email-subscribers-admin.php:168
|
59 |
msgid "Broadcast saved successfully."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: lite/admin/class-email-subscribers-admin.php:169
|
63 |
msgid "An error has occured while saving the broadcast. Please try again later."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: lite/admin/class-email-subscribers-admin.php:170
|
67 |
msgid "Please add a broadcast subject before saving."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: lite/admin/class-email-subscribers-admin.php:171
|
71 |
+
#: pro/pro-class-email-subscribers.php:524
|
72 |
msgid "Please add email body."
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: lite/admin/class-email-subscribers-admin.php:172
|
76 |
msgid "Do you really like to remove all conditions?"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: lite/admin/class-email-subscribers-admin.php:175
|
80 |
msgid "Please select a trigger before saving the workflow."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: lite/admin/class-email-subscribers-admin.php:176
|
84 |
msgid "Please add some actions before saving the workflow."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: lite/admin/class-email-subscribers-admin.php:177
|
88 |
msgid "Please select an action that this workflow should perform before saving the workflow."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: lite/admin/class-email-subscribers-admin.php:178
|
92 |
msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: lite/admin/class-email-subscribers-admin.php:179
|
96 |
msgid "Copied!"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: lite/admin/class-email-subscribers-admin.php:180
|
100 |
msgid "Are you sure?"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: lite/admin/class-email-subscribers-admin.php:183
|
104 |
msgid "Please select the status for the importing contacts!"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lite/admin/class-email-subscribers-admin.php:184
|
108 |
msgid "Please select a list for importing contacts!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: lite/admin/class-email-subscribers-admin.php:185
|
112 |
msgid "Please select the email address column!"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: lite/admin/class-email-subscribers-admin.php:186
|
116 |
msgid "Preparing Data"
|
117 |
msgstr ""
|
118 |
|
119 |
#. translators: %s: Upload progress
|
120 |
+
#: lite/admin/class-email-subscribers-admin.php:188
|
121 |
msgid "Uploading...%s"
|
122 |
msgstr ""
|
123 |
|
124 |
#. translators: %s: Import progress
|
125 |
+
#: lite/admin/class-email-subscribers-admin.php:190
|
126 |
msgid "Importing contacts...%s"
|
127 |
msgstr ""
|
128 |
|
129 |
#. translators: %s: Import failed svg icon
|
130 |
+
#: lite/admin/class-email-subscribers-admin.php:192
|
131 |
msgid "Import failed! %s"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: lite/admin/class-email-subscribers-admin.php:193
|
135 |
msgid "Please do not close this window until it completes..."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: lite/admin/class-email-subscribers-admin.php:194
|
139 |
msgid "Preparing Import..."
|
140 |
msgstr ""
|
141 |
|
142 |
#. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
|
143 |
+
#: lite/admin/class-email-subscribers-admin.php:196
|
144 |
msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
|
145 |
msgstr ""
|
146 |
|
147 |
#. translators: 1 Duplicate found email message
|
148 |
+
#: lite/admin/class-email-subscribers-admin.php:198
|
149 |
msgid "%1$s duplicate emails found."
|
150 |
msgstr ""
|
151 |
|
152 |
#. translators: %s: Time left in minutes
|
153 |
+
#: lite/admin/class-email-subscribers-admin.php:200
|
154 |
msgid "Estimate time left: %s minutes"
|
155 |
msgstr ""
|
156 |
|
157 |
#. translators: %s: Next attempt delaly time
|
158 |
+
#: lite/admin/class-email-subscribers-admin.php:202
|
159 |
msgid "Continues in %s seconds"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: lite/admin/class-email-subscribers-admin.php:203
|
163 |
msgid "There was a problem during importing contacts. Please check the error logs for more information!"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: lite/admin/class-email-subscribers-admin.php:204
|
167 |
msgid "Do you really like to import these contacts?"
|
168 |
msgstr ""
|
169 |
|
170 |
#. translators: %s: Process complete svg icon
|
171 |
+
#: lite/admin/class-email-subscribers-admin.php:206
|
172 |
msgid "Import complete! %s"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: lite/admin/class-email-subscribers-admin.php:207
|
176 |
msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: lite/admin/class-email-subscribers-admin.php:208
|
180 |
msgid "API is valid. Fetching lists..."
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: lite/admin/class-email-subscribers-admin.php:209
|
184 |
msgid "Fetching contacts from MailChimp...Please do not close this window"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: lite/admin/class-email-subscribers-admin.php:287
|
188 |
#: lite/admin/partials/dashboard.php:100
|
189 |
msgid "Dashboard"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: lite/admin/class-email-subscribers-admin.php:292
|
193 |
#: lite/admin/partials/dashboard.php:107
|
194 |
#: lite/includes/classes/class-es-contacts-table.php:214
|
195 |
#: lite/includes/pro-features.php:160
|
197 |
msgid "Audience"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: lite/admin/class-email-subscribers-admin.php:296
|
201 |
#: lite/includes/classes/class-es-forms-table.php:463
|
202 |
#: lite/includes/classes/class-es-lists-table.php:34
|
203 |
#: lite/includes/classes/class-es-lists-table.php:88
|
204 |
msgid "Lists"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: lite/admin/class-email-subscribers-admin.php:302
|
208 |
#: lite/includes/classes/class-es-form-widget.php:74
|
209 |
#: lite/includes/classes/class-es-forms-table.php:39
|
210 |
#: lite/includes/classes/class-es-forms-table.php:40
|
214 |
msgid "Forms"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: lite/admin/class-email-subscribers-admin.php:308
|
218 |
#: lite/includes/classes/class-es-campaigns-table.php:130
|
219 |
#: lite/includes/classes/class-es-newsletters.php:239
|
220 |
#: lite/includes/classes/class-es-newsletters.php:245
|
224 |
msgid "Campaigns"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: lite/admin/class-email-subscribers-admin.php:312
|
228 |
msgid "Post Notifications"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: lite/admin/class-email-subscribers-admin.php:314
|
232 |
#: lite/includes/classes/class-es-campaigns-table.php:362
|
233 |
#: lite/includes/classes/class-es-newsletters.php:254
|
234 |
#: lite/includes/classes/class-es-reports-data.php:360
|
235 |
#: lite/includes/classes/class-es-reports-table.php:161
|
236 |
+
#: lite/includes/classes/class-es-templates-table.php:185
|
237 |
#: lite/includes/pro-features.php:1146
|
238 |
+
#: lite/public/class-email-subscribers-public.php:471
|
239 |
#: pro/classes/class-es-pro-reports-data.php:77
|
240 |
msgid "Broadcast"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: lite/admin/class-email-subscribers-admin.php:315
|
244 |
#: lite/includes/classes/class-es-newsletters.php:430
|
245 |
#: lite/includes/classes/class-es-reports-table.php:532
|
246 |
+
#: lite/includes/classes/class-es-templates-table.php:147
|
247 |
msgid "Template Preview"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: lite/admin/class-email-subscribers-admin.php:322
|
251 |
#: lite/includes/pro-features.php:165
|
252 |
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
|
253 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
256 |
msgid "Workflows"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: lite/admin/class-email-subscribers-admin.php:331
|
260 |
#: lite/admin/partials/dashboard.php:238
|
261 |
#: lite/includes/classes/class-es-campaign-report.php:17
|
262 |
#: lite/includes/classes/class-es-reports-table.php:17
|
270 |
msgid "Reports"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: lite/admin/class-email-subscribers-admin.php:335
|
274 |
#: lite/admin/partials/dashboard.php:246
|
275 |
#: lite/includes/classes/class-es-admin-settings.php:131
|
276 |
msgid "Settings"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: lite/admin/class-email-subscribers-admin.php:340
|
280 |
msgid "Go To Icegram"
|
281 |
msgstr ""
|
282 |
|
283 |
#. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
|
284 |
+
#: lite/admin/class-email-subscribers-admin.php:890
|
285 |
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>"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: lite/admin/class-email-subscribers-admin.php:918
|
289 |
msgid "Something went wrong"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: lite/admin/class-email-subscribers-admin.php:1292
|
293 |
#: lite/includes/class-email-subscribers-activator.php:61
|
294 |
+
#: lite/includes/class-email-subscribers.php:1554
|
295 |
#: lite/includes/classes/class-es-form-widget.php:11
|
296 |
#: lite/includes/classes/class-es-old-widget.php:13
|
297 |
#: lite/includes/classes/class-es-old-widget.php:15
|
300 |
msgid "Email Subscribers"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: lite/admin/class-email-subscribers-admin.php:1334
|
304 |
msgid "Last 30 days"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: lite/admin/class-email-subscribers-admin.php:1343
|
308 |
#: lite/includes/class-es-common.php:206
|
309 |
#: lite/includes/classes/class-es-contacts-table.php:327
|
310 |
#: lite/includes/classes/class-es-import-subscribers.php:839
|
313 |
msgid "Subscribed"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: lite/admin/class-email-subscribers-admin.php:1351
|
317 |
#: lite/includes/class-es-common.php:208
|
318 |
#: lite/includes/classes/class-es-contacts-table.php:335
|
319 |
#: lite/includes/classes/class-es-import-subscribers.php:840
|
323 |
msgid "Unsubscribed"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: lite/admin/class-email-subscribers-admin.php:1359
|
327 |
#: lite/includes/pro-features.php:1178
|
328 |
msgid "Avg Open Rate"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: lite/admin/class-email-subscribers-admin.php:1367
|
332 |
#: lite/admin/partials/dashboard.php:193
|
333 |
msgid "Messages Sent"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: lite/admin/class-email-subscribers-admin.php:1378
|
337 |
msgid "Last Campaign"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: lite/admin/class-email-subscribers-admin.php:1414
|
341 |
msgid "Sent to"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: lite/admin/class-email-subscribers-admin.php:1426
|
345 |
#: lite/admin/partials/dashboard.php:177
|
346 |
#: lite/includes/pro-features.php:1258
|
347 |
#: lite/includes/pro-features.php:1296
|
353 |
msgid "Opens"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: lite/admin/class-email-subscribers-admin.php:1440
|
357 |
msgid "No campaigns sent yet"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: lite/admin/class-email-subscribers-admin.php:1448
|
361 |
msgid "Latest Blog Posts from Icegram"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: lite/admin/class-email-subscribers-admin.php:1550
|
365 |
+
msgid "Please publish it or save it as a draft."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
#: lite/admin/class-ig-es-campaign-rules.php:169
|
369 |
msgid "Recipients"
|
370 |
msgstr ""
|
478 |
#: lite/includes/pro-features.php:974
|
479 |
#: lite/includes/pro-features.php:1505
|
480 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
481 |
+
#: lite/includes/workflows/actions/class-es-action-send-email.php:29
|
482 |
#: lite/public/partials/class-es-shortcode.php:169
|
483 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
484 |
+
#: pro/pro-class-email-subscribers.php:853
|
485 |
+
#: pro/pro-class-email-subscribers.php:2090
|
|
|
486 |
msgid "Email"
|
487 |
msgstr ""
|
488 |
|
642 |
msgid "Unable to create %1$s and %2$s list."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: lite/admin/class-ig-es-onboarding.php:608
|
646 |
+
msgid "Add to %s list when someone registers"
|
|
|
|
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: lite/admin/class-ig-es-onboarding.php:730
|
650 |
msgid "Please accept terms & condition"
|
651 |
msgstr ""
|
652 |
|
653 |
#. translators: Active sidebar name.
|
654 |
+
#: lite/admin/class-ig-es-onboarding.php:788
|
655 |
msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
|
656 |
msgstr ""
|
657 |
|
658 |
#. translators: Active sidebar name.
|
659 |
+
#: lite/admin/class-ig-es-onboarding.php:791
|
660 |
msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
|
661 |
msgstr ""
|
662 |
|
663 |
#. translators: Active sidebar name.
|
664 |
+
#: lite/admin/class-ig-es-onboarding.php:796
|
665 |
msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: lite/admin/class-ig-es-onboarding.php:848
|
669 |
+
#: lite/admin/class-ig-es-onboarding.php:849
|
670 |
msgid "Welcome To Email Subscribers"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: lite/admin/class-ig-es-onboarding.php:1027
|
674 |
msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: lite/admin/class-ig-es-onboarding.php:1153
|
678 |
msgid "New Post Published - {{POSTTITLE}}"
|
679 |
msgstr ""
|
680 |
|
1187 |
msgstr ""
|
1188 |
|
1189 |
#. translators: 1: Error message 2: File name 3: Line number
|
1190 |
+
#: lite/includes/class-email-subscribers.php:1305
|
1191 |
msgid "%1$s in %2$s on line %3$s"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: lite/includes/class-email-subscribers.php:1567
|
1195 |
msgid "Icegram WC"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
#. translators: %1$s - constant that was used
|
1199 |
+
#: lite/includes/class-email-subscribers.php:1976
|
1200 |
msgid "Value was set using constant %1$s"
|
1201 |
msgstr ""
|
1202 |
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: lite/includes/class-es-common.php:630
|
1288 |
+
#: lite/includes/classes/class-es-templates-table.php:166
|
1289 |
msgid "Thumbnail"
|
1290 |
msgstr ""
|
1291 |
|
1423 |
#: lite/includes/pro-features.php:1066
|
1424 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1425 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1426 |
+
#: pro/pro-class-email-subscribers.php:801
|
1427 |
msgid "Date"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: lite/includes/class-es-install.php:965
|
1431 |
#: lite/includes/upgrade/es-update-functions.php:752
|
1432 |
msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
|
1433 |
msgstr ""
|
1613 |
msgid "Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin."
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: lite/includes/classes/class-es-admin-settings.php:381
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1617 |
msgid " We will take care of it. You don't need to visit this URL manually."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
#. translators: %s: Link to Icegram documentation
|
1621 |
+
#: lite/includes/classes/class-es-admin-settings.php:384
|
1622 |
msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: lite/includes/classes/class-es-admin-settings.php:387
|
1626 |
msgid "How to configure Email Sending"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: lite/includes/classes/class-es-admin-settings.php:399
|
1630 |
msgid "Cron URL"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: lite/includes/classes/class-es-admin-settings.php:408
|
1634 |
msgid "Disable Wordpress Cron"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: lite/includes/classes/class-es-admin-settings.php:409
|
1638 |
msgid "Enable this option if you do not want Email Subscribers to use WP Cron to send emails."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: lite/includes/classes/class-es-admin-settings.php:414
|
1642 |
msgid "Send emails at most every"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: lite/includes/classes/class-es-admin-settings.php:417
|
1646 |
msgid "Optional if a real cron service is used"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: lite/includes/classes/class-es-admin-settings.php:427
|
1650 |
msgid "Maximum emails to send in an hour"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: lite/includes/classes/class-es-admin-settings.php:428
|
1654 |
msgid "Total emails your host can send in an hour."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: lite/includes/classes/class-es-admin-settings.php:437
|
1658 |
msgid "Maximum emails to send at once"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: lite/includes/classes/class-es-admin-settings.php:438
|
1662 |
msgid "Maximum emails you want to send on every cron request."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: lite/includes/classes/class-es-admin-settings.php:449
|
1666 |
msgid "Send test email"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: lite/includes/classes/class-es-admin-settings.php:450
|
1670 |
msgid "Enter email address to send test email."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: lite/includes/classes/class-es-admin-settings.php:458
|
1674 |
msgid "Select Mailer"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: lite/includes/classes/class-es-admin-settings.php:470
|
1678 |
+
#: lite/includes/classes/class-es-admin-settings.php:816
|
1679 |
msgid "Pepipost API key"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: lite/includes/classes/class-es-admin-settings.php:487
|
1683 |
msgid "Select a mailer to send mail"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: lite/includes/classes/class-es-admin-settings.php:497
|
1687 |
msgid "Blocked domain(s)"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: lite/includes/classes/class-es-admin-settings.php:499
|
1691 |
msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: lite/includes/classes/class-es-admin-settings.php:711
|
1695 |
msgid "Save Settings"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: lite/includes/classes/class-es-admin-settings.php:815
|
1699 |
msgid "Signup for Pepipost"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: lite/includes/classes/class-es-admin-settings.php:816
|
1703 |
msgid "How to find"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: lite/includes/classes/class-es-admin-settings.php:817
|
1707 |
msgid "Why to choose Pepipost"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: lite/includes/classes/class-es-admin-settings.php:841
|
1711 |
msgid "Cron Info"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: lite/includes/classes/class-es-admin-settings.php:908
|
1715 |
msgid "Event"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: lite/includes/classes/class-es-admin-settings.php:909
|
1719 |
msgid "Interval"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: lite/includes/classes/class-es-admin-settings.php:910
|
1723 |
msgid "Next Execution"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
#. translators: %s: Next scheduled time
|
1727 |
+
#: lite/includes/classes/class-es-admin-settings.php:956
|
1728 |
msgid "In %s"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: lite/includes/classes/class-es-admin-settings.php:991
|
1732 |
msgid "Plugin usage tracking"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: lite/includes/classes/class-es-admin-settings.php:994
|
1736 |
msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: lite/includes/classes/class-es-admin-settings.php:1025
|
1740 |
+
msgid "Now you can control all your notifications through workflows."
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#. translators: 1. Anchor start tag 2. Anchor end tag
|
1744 |
+
#: lite/includes/classes/class-es-admin-settings.php:1028
|
1745 |
+
msgid "Click %1$shere%2$s to go to workflows."
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
#: lite/includes/classes/class-es-campaign-report.php:16
|
1749 |
#: lite/includes/classes/class-es-campaigns-table.php:444
|
1750 |
#: lite/includes/classes/class-es-campaigns-table.php:448
|
2042 |
|
2043 |
#: lite/includes/classes/class-es-contacts-table.php:808
|
2044 |
#: lite/includes/pro-features.php:980
|
2045 |
+
#: pro/pro-class-email-subscribers.php:857
|
2046 |
msgid "Enter email"
|
2047 |
msgstr ""
|
2048 |
|
2253 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2254 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2255 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2256 |
+
#: pro/pro-class-email-subscribers.php:2091
|
2257 |
msgid "First Name"
|
2258 |
msgstr ""
|
2259 |
|
2262 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2263 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2264 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2265 |
+
#: pro/pro-class-email-subscribers.php:2092
|
2266 |
msgid "Last Name"
|
2267 |
msgstr ""
|
2268 |
|
2471 |
msgid "No Forms avaliable."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: lite/includes/classes/class-es-handle-subscription.php:571
|
2475 |
#: lite/public/class-email-subscribers-public.php:107
|
2476 |
msgid "Please enter email address"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: lite/includes/classes/class-es-handle-subscription.php:572
|
2480 |
#: lite/public/class-email-subscribers-public.php:108
|
2481 |
msgid "You need to wait for sometime before subscribing again"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: lite/includes/classes/class-es-handle-subscription.php:573
|
2485 |
#: lite/includes/upgrade/es-update-functions.php:752
|
2486 |
#: lite/public/class-email-subscribers-public.php:109
|
2487 |
msgid "Successfully Subscribed."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: lite/includes/classes/class-es-handle-subscription.php:574
|
2491 |
#: lite/public/class-email-subscribers-public.php:111
|
2492 |
msgid "Email Address already exists!"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: lite/includes/classes/class-es-handle-subscription.php:575
|
2496 |
#: lite/public/class-email-subscribers-public.php:112
|
2497 |
msgid "Oops.. Unexpected error occurred."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: lite/includes/classes/class-es-handle-subscription.php:576
|
2501 |
#: lite/public/class-email-subscribers-public.php:113
|
2502 |
msgid "Invalid email address"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: lite/includes/classes/class-es-handle-subscription.php:577
|
2506 |
msgid "Invalid name"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: lite/includes/classes/class-es-handle-subscription.php:578
|
2510 |
#: lite/public/class-email-subscribers-public.php:114
|
2511 |
msgid "Please try after some time"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: lite/includes/classes/class-es-handle-subscription.php:579
|
2515 |
msgid "Oops...unable to add subscriber"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: lite/includes/classes/class-es-handle-subscription.php:580
|
2519 |
msgid "You do not have permission to add subscriber"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: lite/includes/classes/class-es-handle-subscription.php:581
|
2523 |
msgid "Please select the list"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: lite/includes/classes/class-es-handle-subscription.php:582
|
2527 |
msgid "Invalid Captcha"
|
2528 |
msgstr ""
|
2529 |
|
2856 |
msgid "Thanks!"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: lite/includes/classes/class-es-mailer.php:362
|
2860 |
+
msgid "Campaign Sent!"
|
2861 |
+
msgstr ""
|
2862 |
+
|
2863 |
#. translators: %s: Email address
|
2864 |
#: lite/includes/classes/class-es-mailer.php:525
|
2865 |
msgid "Test email to %s"
|
2907 |
msgid "Scheduling is disabled for this broadcast since it has been sent already."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: lite/includes/classes/class-es-newsletters.php:260
|
2911 |
+
#: pro/pro-class-sequences.php:405
|
2912 |
+
msgid "Content"
|
2913 |
+
msgstr ""
|
2914 |
+
|
2915 |
#: lite/includes/classes/class-es-newsletters.php:263
|
2916 |
msgid "Summary"
|
2917 |
msgstr ""
|
2940 |
msgid "Send"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: lite/includes/classes/class-es-newsletters.php:355
|
2944 |
+
#: lite/includes/classes/class-es-reports-table.php:279
|
2945 |
+
#: pro/classes/class-es-pro-sequence-report.php:299
|
2946 |
+
msgid "Subject"
|
2947 |
+
msgstr ""
|
2948 |
+
|
2949 |
#: lite/includes/classes/class-es-newsletters.php:359
|
2950 |
msgid "From Name"
|
2951 |
msgstr ""
|
2983 |
|
2984 |
#: lite/includes/classes/class-es-newsletters.php:431
|
2985 |
#: lite/includes/classes/class-es-reports-table.php:533
|
2986 |
+
#: lite/includes/classes/class-es-templates-table.php:148
|
2987 |
msgid "There could be a slight variation on how your customer will view the email content."
|
2988 |
msgstr ""
|
2989 |
|
2990 |
#: lite/includes/classes/class-es-newsletters.php:435
|
2991 |
#: lite/includes/classes/class-es-reports-table.php:537
|
2992 |
+
#: lite/includes/classes/class-es-templates-table.php:152
|
2993 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
|
2994 |
msgid "Close"
|
2995 |
msgstr ""
|
3118 |
|
3119 |
#: lite/includes/classes/class-es-reports-data.php:362
|
3120 |
#: lite/includes/classes/class-es-reports-table.php:157
|
3121 |
+
#: lite/public/class-email-subscribers-public.php:474
|
3122 |
#: pro/classes/class-es-pro-reports-data.php:73
|
3123 |
msgid "Post Notification"
|
3124 |
msgstr ""
|
3187 |
msgid "Completed"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: lite/includes/classes/class-es-templates-table.php:38
|
3191 |
msgid "Select template type"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: lite/includes/classes/class-es-templates-table.php:54
|
3195 |
+
#: lite/includes/classes/class-es-templates-table.php:65
|
3196 |
+
#: lite/includes/classes/class-es-templates-table.php:71
|
3197 |
+
#: lite/includes/classes/class-es-templates-table.php:76
|
3198 |
msgid "Available Keywords"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: lite/includes/classes/class-es-templates-table.php:71
|
3202 |
msgid "for Broadcast:"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: lite/includes/classes/class-es-templates-table.php:76
|
3206 |
msgid "for Post Digest:"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
+
#: lite/includes/classes/class-es-templates-table.php:77
|
3210 |
msgid "Any keywords related Post Notification"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: lite/includes/classes/class-es-templates-table.php:122
|
3214 |
msgid "Preview template"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
+
#: lite/includes/classes/class-es-templates-table.php:165
|
|
|
|
|
|
|
|
|
3218 |
msgid "Template type"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3222 |
+
#: lite/includes/classes/class-es-templates-table.php:203
|
3223 |
+
#: pro/pro-class-email-subscribers.php:1499
|
3224 |
msgid "Duplicate"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: lite/includes/classes/class-es-templates-table.php:227
|
3228 |
#: lite/includes/db/class-es-db-campaigns.php:741
|
3229 |
#: lite/includes/db/class-es-db-campaigns.php:744
|
3230 |
msgid "Copy"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
#: lite/includes/pro-features.php:252
|
3472 |
+
#: pro/pro-class-email-subscribers.php:904
|
3473 |
msgid "Track clicks"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
#: lite/includes/pro-features.php:253
|
3477 |
+
#: pro/pro-class-email-subscribers.php:905
|
3478 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3479 |
msgstr ""
|
3480 |
|
3565 |
msgstr ""
|
3566 |
|
3567 |
#: lite/includes/pro-features.php:390
|
3568 |
+
#: pro/pro-class-email-subscribers.php:913
|
3569 |
msgid "Track IP address"
|
3570 |
msgstr ""
|
3571 |
|
3823 |
msgstr ""
|
3824 |
|
3825 |
#: lite/includes/pro-features.php:1007
|
3826 |
+
#: pro/pro-class-email-subscribers.php:741
|
3827 |
msgid "Link tracking"
|
3828 |
msgstr ""
|
3829 |
|
3832 |
msgstr ""
|
3833 |
|
3834 |
#: lite/includes/pro-features.php:1056
|
3835 |
+
#: pro/pro-class-email-subscribers.php:785
|
3836 |
msgid "Send options"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
#: lite/includes/pro-features.php:1059
|
3840 |
+
#: pro/pro-class-email-subscribers.php:788
|
3841 |
msgid "Schedule for later"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
#: lite/includes/pro-features.php:1075
|
3845 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
3846 |
+
#: pro/pro-class-email-subscribers.php:812
|
3847 |
msgid "Time"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
#: lite/includes/pro-features.php:1085
|
3851 |
+
#: pro/pro-class-email-subscribers.php:823
|
3852 |
msgid "Local Time: "
|
3853 |
msgstr ""
|
3854 |
|
3973 |
msgstr ""
|
3974 |
|
3975 |
#: lite/includes/pro-features.php:1612
|
3976 |
+
#: pro/pro-class-email-subscribers.php:1700
|
3977 |
msgid "Add Attachments"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
#: lite/includes/pro-features.php:1642
|
3981 |
+
#: pro/pro-class-email-subscribers.php:1785
|
3982 |
msgid "Import existing WordPress users"
|
3983 |
msgstr ""
|
3984 |
|
4075 |
msgid "Delete Contact"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: lite/includes/workflows/actions/class-es-action-send-email.php:30
|
4079 |
+
msgid "Send Email"
|
4080 |
+
msgstr ""
|
4081 |
+
|
4082 |
+
#: lite/includes/workflows/actions/class-es-action-send-email.php:43
|
4083 |
+
msgid "Email Content"
|
4084 |
+
msgstr ""
|
4085 |
+
|
4086 |
#: lite/includes/workflows/actions/class-es-action-update-contact.php:29
|
4087 |
msgid "Update Contact"
|
4088 |
msgstr ""
|
4187 |
msgstr ""
|
4188 |
|
4189 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:22
|
4190 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:373
|
4191 |
#: starter/workflows/triggers/class-es-trigger-comment-added.php:23
|
4192 |
msgid "Comment Added"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:25
|
4196 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:385
|
4197 |
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
|
4198 |
msgid "Contact Form 7 Submitted"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:26
|
4202 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:393
|
4203 |
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
|
4204 |
msgid "WP Form Submitted"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:27
|
4208 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:389
|
4209 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
|
4210 |
msgid "Ninja Form Submitted"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:28
|
4214 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:401
|
4215 |
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
|
4216 |
msgid "Gravity Form Submitted"
|
4217 |
msgstr ""
|
4222 |
msgstr ""
|
4223 |
|
4224 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:32
|
4225 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:377
|
4226 |
#: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
|
4227 |
msgid "WooCommerce Order Completed"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:33
|
4231 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:381
|
4232 |
msgid "EDD Purchase Completed"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:34
|
4236 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:397
|
4237 |
msgid "Give Donation Added"
|
4238 |
msgstr ""
|
4239 |
|
4428 |
msgid "Please select workflow(s) to %s."
|
4429 |
msgstr ""
|
4430 |
|
4431 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:369
|
4432 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
|
4433 |
+
msgid "User Registered"
|
4434 |
+
msgstr ""
|
4435 |
+
|
4436 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:421
|
4437 |
msgid "User deleted"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:429
|
4441 |
msgid "User updated"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:567
|
4445 |
+
msgid "Send welcome email when someone subscribes"
|
4446 |
+
msgstr ""
|
4447 |
+
|
4448 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:580
|
4449 |
+
#: pro/pro-class-email-subscribers.php:2412
|
4450 |
+
msgid "Send confirmation email"
|
4451 |
+
msgstr ""
|
4452 |
+
|
4453 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:593
|
4454 |
+
msgid "Notify admin when someone subscribes"
|
4455 |
+
msgstr ""
|
4456 |
+
|
4457 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:606
|
4458 |
+
msgid "Notify admin when campaign is sent"
|
4459 |
+
msgstr ""
|
4460 |
+
|
4461 |
#: lite/includes/workflows/fields/class-es-checkbox.php:34
|
4462 |
msgid "Checkbox"
|
4463 |
msgstr ""
|
4491 |
msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: lite/includes/workflows/triggers/class-es-trigger-campaign-sent.php:30
|
4495 |
+
msgid "Campaign sent"
|
4496 |
+
msgstr ""
|
4497 |
+
|
4498 |
+
#: lite/includes/workflows/triggers/class-es-trigger-campaign-sent.php:31
|
4499 |
+
msgid "Fires when a campaign is sent successfully."
|
4500 |
+
msgstr ""
|
4501 |
+
|
4502 |
+
#: lite/includes/workflows/triggers/class-es-trigger-campaign-sent.php:32
|
4503 |
+
msgid "Admin"
|
4504 |
+
msgstr ""
|
4505 |
+
|
4506 |
#: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
|
4507 |
msgid "User Deleted"
|
4508 |
msgstr ""
|
4522 |
msgid "Fires when someone signup."
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-subscribed.php:30
|
4526 |
+
msgid "User Subscribed"
|
4527 |
+
msgstr ""
|
4528 |
+
|
4529 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-subscribed.php:31
|
4530 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-unconfirmed.php:31
|
4531 |
+
msgid "Fires when someone subscribes."
|
4532 |
+
msgstr ""
|
4533 |
+
|
4534 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-subscribed.php:32
|
4535 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-unconfirmed.php:32
|
4536 |
+
msgid "Subscriber"
|
4537 |
+
msgstr ""
|
4538 |
+
|
4539 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-unconfirmed.php:30
|
4540 |
+
msgid "User Unconfirmed"
|
4541 |
+
msgstr ""
|
4542 |
+
|
4543 |
#: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
|
4544 |
msgid "User Updated"
|
4545 |
msgstr ""
|
4548 |
msgid "Fires when a user is updated."
|
4549 |
msgstr ""
|
4550 |
|
4551 |
+
#: lite/public/class-email-subscribers-public.php:208
|
4552 |
msgid "Sorry, you are not allowed to access this page."
|
4553 |
msgstr ""
|
4554 |
|
4555 |
+
#: lite/public/class-email-subscribers-public.php:250
|
4556 |
msgid "You are already subscribed!"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: lite/public/class-email-subscribers-public.php:252
|
4560 |
msgid "You are already unsubscribed!"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: lite/public/class-email-subscribers-public.php:257
|
4564 |
msgid "Sorry, we couldn't find you. Please contact admin."
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: lite/public/class-email-subscribers-public.php:435
|
4568 |
#: starter/starter-class-email-subscribers.php:904
|
4569 |
msgid "is subscribed to our mailing list(s)."
|
4570 |
msgstr ""
|
4571 |
|
4572 |
+
#: lite/public/class-email-subscribers-public.php:443
|
4573 |
msgid "Unsubscribe from all list(s)"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: lite/public/class-email-subscribers-public.php:444
|
4577 |
msgid "You will be unsubscribed from receiving all future emails sent from us."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
+
#: lite/public/class-email-subscribers-public.php:450
|
4581 |
#: starter/starter-class-email-subscribers.php:928
|
4582 |
msgid "Unsubscribe"
|
4583 |
msgstr ""
|
4599 |
msgstr ""
|
4600 |
|
4601 |
#: lite/public/partials/cron-message.php:43
|
4602 |
+
#: pro/pro-class-email-subscribers.php:831
|
4603 |
msgid "Send Now"
|
4604 |
msgstr ""
|
4605 |
|
4677 |
|
4678 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
4679 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
4680 |
+
#: pro/pro-class-email-subscribers.php:389
|
4681 |
msgid "Custom Fields"
|
4682 |
msgstr ""
|
4683 |
|
4756 |
msgstr ""
|
4757 |
|
4758 |
#: pro/classes/class-es-pro-custom-fields.php:240
|
4759 |
+
#: pro/classes/class-es-pro-custom-fields.php:382
|
4760 |
msgid "Select option"
|
4761 |
msgstr ""
|
4762 |
|
4765 |
msgstr ""
|
4766 |
|
4767 |
#: pro/classes/class-es-pro-reports-data.php:261
|
4768 |
+
#: pro/pro-class-email-subscribers.php:1235
|
4769 |
msgid "Clicked"
|
4770 |
msgstr ""
|
4771 |
|
4893 |
msgstr ""
|
4894 |
|
4895 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
|
4896 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:338
|
4897 |
msgid "Access Key ID is empty."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
|
4901 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:348
|
4902 |
msgid "Secret Access Key is empty."
|
4903 |
msgstr ""
|
4904 |
|
4905 |
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
|
4906 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:358
|
4907 |
msgid "Closest region is not set."
|
4908 |
msgstr ""
|
4909 |
|
4910 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:412
|
4911 |
msgid "US East (N. Virginia)"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:413
|
4915 |
msgid "US East (Ohio)"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:414
|
4919 |
msgid "US West (Oregon)"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
|
4923 |
msgid "US AWS GovCloud"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
|
4927 |
msgid "EU (Ireland)"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
|
4931 |
msgid "EU (London)"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
|
4935 |
msgid "EU (Frankfurt)"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
|
4939 |
msgid "Asia Pacific (Mumbai)"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
|
4943 |
msgid "Asia Pacific (Tokyo)"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
|
4947 |
msgid "Asia Pacific (Seoul)"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
|
4951 |
msgid "Asia Pacific (Singapore)"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
|
4955 |
msgid "Asia Pacific (Sydney)"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:424
|
4959 |
msgid "Canada (Central)"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
+
#: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:425
|
4963 |
msgid "South America (São Paulo)"
|
4964 |
msgstr ""
|
4965 |
|
5028 |
msgid "Your cart could not be restored, it may have expired."
|
5029 |
msgstr ""
|
5030 |
|
5031 |
+
#: pro/pro-class-email-subscribers.php:385
|
5032 |
#: pro/pro-class-post-digest.php:25
|
5033 |
msgid "Sequence"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: pro/pro-class-email-subscribers.php:523
|
5037 |
msgid "Please enter an email address."
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: pro/pro-class-email-subscribers.php:525
|
5041 |
msgid "Add Attachment"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
#. translators: %s: Attachmen max file size.
|
5045 |
+
#: pro/pro-class-email-subscribers.php:527
|
5046 |
msgid "Please attach a file having size lower than %s."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
+
#: pro/pro-class-email-subscribers.php:528
|
5050 |
msgid "Are you sure you want to delete this?"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
+
#: pro/pro-class-email-subscribers.php:529
|
5054 |
+
#: pro/pro-class-email-subscribers.php:1976
|
5055 |
msgid "Checking your orders..."
|
5056 |
msgstr ""
|
5057 |
|
5058 |
+
#: pro/pro-class-email-subscribers.php:653
|
5059 |
msgid "Clean My List"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
+
#: pro/pro-class-email-subscribers.php:654
|
5063 |
msgid "List cleanup is in progress..."
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: pro/pro-class-email-subscribers.php:655
|
5067 |
msgid "List cleanup completed successfully."
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: pro/pro-class-email-subscribers.php:672
|
5071 |
msgid "Email status"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: pro/pro-class-email-subscribers.php:673
|
5075 |
msgid "Last opened at"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: pro/pro-class-email-subscribers.php:869
|
5079 |
msgid "Select page"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: pro/pro-class-email-subscribers.php:882
|
5083 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: pro/pro-class-email-subscribers.php:895
|
5087 |
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."
|
5088 |
msgstr ""
|
5089 |
|
5090 |
+
#: pro/pro-class-email-subscribers.php:928
|
5091 |
+
msgid "Weekly summary"
|
5092 |
+
msgstr ""
|
5093 |
+
|
5094 |
+
#: pro/pro-class-email-subscribers.php:933
|
5095 |
+
msgid "Enable?"
|
5096 |
+
msgstr ""
|
5097 |
+
|
5098 |
#: pro/pro-class-email-subscribers.php:940
|
5099 |
+
msgid "When our automated weekly email should be sent out?"
|
5100 |
+
msgstr ""
|
5101 |
+
|
5102 |
+
#: pro/pro-class-email-subscribers.php:949
|
5103 |
+
msgid "In which time we need to send our weekly summary?"
|
5104 |
+
msgstr ""
|
5105 |
+
|
5106 |
+
#: pro/pro-class-email-subscribers.php:975
|
5107 |
msgid "Access Key ID"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
+
#: pro/pro-class-email-subscribers.php:988
|
5111 |
msgid "Secret Access Key"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
+
#: pro/pro-class-email-subscribers.php:1002
|
5115 |
msgid "Closest Region"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
+
#: pro/pro-class-email-subscribers.php:1004
|
5119 |
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."
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: pro/pro-class-email-subscribers.php:1031
|
5123 |
msgid "Private API Key"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
+
#: pro/pro-class-email-subscribers.php:1045
|
5127 |
msgid "Domain Name"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
+
#: pro/pro-class-email-subscribers.php:1056
|
5131 |
+
#: pro/pro-class-email-subscribers.php:1131
|
5132 |
msgid "United States"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: pro/pro-class-email-subscribers.php:1057
|
5136 |
+
#: pro/pro-class-email-subscribers.php:1132
|
5137 |
msgid "Europe"
|
5138 |
msgstr ""
|
5139 |
|
5140 |
+
#: pro/pro-class-email-subscribers.php:1063
|
5141 |
+
#: pro/pro-class-email-subscribers.php:1138
|
5142 |
msgid "Region"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
+
#: pro/pro-class-email-subscribers.php:1067
|
5146 |
msgid "mailgun.com"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
+
#: pro/pro-class-email-subscribers.php:1093
|
5150 |
+
#: pro/pro-class-email-subscribers.php:1120
|
5151 |
msgid "API Key"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
+
#: pro/pro-class-email-subscribers.php:1140
|
5155 |
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."
|
5156 |
msgstr ""
|
5157 |
|
5158 |
+
#: pro/pro-class-email-subscribers.php:1165
|
5159 |
msgid "API token"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
+
#: pro/pro-class-email-subscribers.php:1520
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5163 |
msgid "You are not allowed to duplicate campaign."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
+
#: pro/pro-class-email-subscribers.php:1535
|
5167 |
msgid "Campaign duplicated !"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: pro/pro-class-email-subscribers.php:1804
|
5171 |
msgid "Import WordPress users with following roles"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: pro/pro-class-email-subscribers.php:1857
|
5175 |
+
#: pro/pro-class-email-subscribers.php:1983
|
5176 |
msgid "Proceed "
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: pro/pro-class-email-subscribers.php:1893
|
5180 |
msgid "Import from WooCommerce orders"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
+
#: pro/pro-class-email-subscribers.php:1918
|
5184 |
msgid "Select order statuses"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
+
#: pro/pro-class-email-subscribers.php:1966
|
5188 |
msgid "Orders should contain these products"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
+
#: pro/pro-class-email-subscribers.php:1971
|
5192 |
msgid "Search products..."
|
5193 |
msgstr ""
|
5194 |
|
5195 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5196 |
+
#: pro/pro-class-email-subscribers.php:2199
|
5197 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: pro/pro-class-email-subscribers.php:2210
|
5201 |
msgid "We can't find any matching orders in your store."
|
5202 |
msgstr ""
|
5203 |
|
5204 |
+
#: pro/pro-class-email-subscribers.php:2223
|
5205 |
msgid "Total Opened"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
+
#: pro/pro-class-email-subscribers.php:2274
|
5209 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5210 |
msgstr ""
|
5211 |
|
5212 |
+
#: pro/pro-class-email-subscribers.php:2304
|
5213 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
+
#: pro/pro-class-email-subscribers.php:2334
|
5217 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
+
#: pro/pro-class-email-subscribers.php:2363
|
5221 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: pro/pro-class-email-subscribers.php:2392
|
5225 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: pro/pro-class-email-subscribers.php:2427
|
|
|
|
|
|
|
|
|
5229 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: pro/pro-class-email-subscribers.php:2435
|
5233 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: pro/pro-class-email-subscribers.php:2438
|
5237 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5238 |
msgstr ""
|
5239 |
|
5391 |
msgid "Remove from list"
|
5392 |
msgstr ""
|
5393 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5394 |
#: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
|
5395 |
msgid "Add customer to product specific list"
|
5396 |
msgstr ""
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
|
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.8.1
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 5.0.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,15 +310,18 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
-
= 5.0.
|
314 |
|
315 |
-
*
|
316 |
-
*
|
317 |
-
* Fix: Increase character limit in amazon SES
|
318 |
-
* Fix: Prevent email sending while campaign is getting queued
|
319 |
|
320 |
== Changelog ==
|
321 |
|
|
|
|
|
|
|
|
|
|
|
322 |
**5.0.1 (18.11.2021)**
|
323 |
|
324 |
* Enhancement: Welcome and Confirmation email are now part of workflows
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.8.1
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 5.0.2
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 5.0.2 =
|
314 |
|
315 |
+
* Fix: Incorrect placeholder values in emails
|
316 |
+
* Fix: Unable to send campaigns
|
|
|
|
|
317 |
|
318 |
== Changelog ==
|
319 |
|
320 |
+
**5.0.2 (19.11.2021)**
|
321 |
+
|
322 |
+
* Fix: Incorrect placeholder values in emails
|
323 |
+
* Fix: Unable to send campaigns
|
324 |
+
|
325 |
**5.0.1 (18.11.2021)**
|
326 |
|
327 |
* Enhancement: Welcome and Confirmation email are now part of workflows
|