Version Description
- New: Option to add attachments to workflow emails [PRO]
- Fix: {{UNSUBSCRIBE-LINK}} not working in welcome emails in few cases
- Fix: PHP warning undefined index 'ig-es-tracking-campaign-id' during onboarding/update
=
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 5.0.8 |
Comparing to | |
See all releases |
Code changes from version 5.0.7 to 5.0.8
- email-subscribers.php +2 -2
- lite/admin/js/email-subscribers-admin.js +5 -0
- lite/includes/classes/class-es-mailer.php +2 -2
- lite/includes/workflows/actions/class-es-action-send-email.php +8 -0
- lite/includes/workflows/admin/class-es-workflow-admin-edit.php +4 -4
- lite/includes/workflows/db/class-es-db-workflows.php +2 -0
- lite/includes/workflows/fields/class-es-field.php +35 -0
- lite/includes/workflows/fields/class-es-wp-editor.php +2 -1
- lite/languages/email-subscribers.pot +578 -519
- readme.txt +11 -3
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 5.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.8
|
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.8' );
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
lite/admin/js/email-subscribers-admin.js
CHANGED
@@ -1235,6 +1235,11 @@
|
|
1235 |
IG_ES_Workflows.action_edit_open($action);
|
1236 |
}
|
1237 |
});
|
|
|
|
|
|
|
|
|
|
|
1238 |
|
1239 |
// Delete action
|
1240 |
$(document).on('click', '.js-delete-action', function (e) {
|
1235 |
IG_ES_Workflows.action_edit_open($action);
|
1236 |
}
|
1237 |
});
|
1238 |
+
|
1239 |
+
$('input[name="ig_es_workflow_data[actions][{action_id}][attachments][]"]').each( function(){
|
1240 |
+
let action_number = $(this).closest('.ig-es-action').data('action-number');
|
1241 |
+
$(this).attr('name','ig_es_workflow_data[actions]['+action_number+'][attachments][]');
|
1242 |
+
});
|
1243 |
|
1244 |
// Delete action
|
1245 |
$(document).on('click', '.js-delete-action', function (e) {
|
lite/includes/classes/class-es-mailer.php
CHANGED
@@ -633,8 +633,8 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
|
|
633 |
$emails = array( $emails );
|
634 |
}
|
635 |
|
636 |
-
// When email in not sent through a campaign e.g.
|
637 |
-
if (
|
638 |
$this->email_id_map = ES()->contacts_db->get_email_id_map( $emails );
|
639 |
} else {
|
640 |
/**
|
633 |
$emails = array( $emails );
|
634 |
}
|
635 |
|
636 |
+
// When email in not sent through a campaign e.g. Test emails.
|
637 |
+
if ( '' === $campaign_type ) {
|
638 |
$this->email_id_map = ES()->contacts_db->get_email_id_map( $emails );
|
639 |
} else {
|
640 |
/**
|
lite/includes/workflows/actions/class-es-action-send-email.php
CHANGED
@@ -40,7 +40,14 @@ if ( ! class_exists( 'ES_Action_Send_Email' ) ) {
|
|
40 |
public function load_fields() {
|
41 |
parent::load_fields();
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
$email_content = new ES_WP_Editor();
|
|
|
44 |
$email_content->set_name( 'ig-es-email-content' );
|
45 |
$email_content->set_title( __( 'Email Content', 'email-subscribers' ) );
|
46 |
$email_content->set_required();
|
@@ -57,6 +64,7 @@ if ( ! class_exists( 'ES_Action_Send_Email' ) ) {
|
|
57 |
$tracking_campaign_id = new ES_Hidden_Field();
|
58 |
$tracking_campaign_id->set_name( 'ig-es-tracking-campaign-id' );
|
59 |
$this->add_field( $tracking_campaign_id );
|
|
|
60 |
}
|
61 |
|
62 |
/**
|
40 |
public function load_fields() {
|
41 |
parent::load_fields();
|
42 |
|
43 |
+
$tracking_campaign_id = $this->get_option( 'ig-es-tracking-campaign-id', false );
|
44 |
+
|
45 |
+
if ( empty($tracking_campaign_id) ) {
|
46 |
+
$tracking_campaign_id = uniqid();
|
47 |
+
}
|
48 |
+
|
49 |
$email_content = new ES_WP_Editor();
|
50 |
+
$email_content->set_id( 'ig-es-workflow-email-content-' . $tracking_campaign_id );
|
51 |
$email_content->set_name( 'ig-es-email-content' );
|
52 |
$email_content->set_title( __( 'Email Content', 'email-subscribers' ) );
|
53 |
$email_content->set_required();
|
64 |
$tracking_campaign_id = new ES_Hidden_Field();
|
65 |
$tracking_campaign_id->set_name( 'ig-es-tracking-campaign-id' );
|
66 |
$this->add_field( $tracking_campaign_id );
|
67 |
+
|
68 |
}
|
69 |
|
70 |
/**
|
lite/includes/workflows/admin/class-es-workflow-admin-edit.php
CHANGED
@@ -586,14 +586,14 @@ class ES_Workflow_Admin_Edit {
|
|
586 |
$workflow_title = $workflow_data['title'];
|
587 |
$parent_campaign_id = ES()->workflows_db->create_parent_workflow_campaign( $workflow_id, $workflow_title );
|
588 |
}
|
589 |
-
$tracking_campaign_id = $action['ig-es-tracking-campaign-id'];
|
590 |
-
if ( empty( $tracking_campaign_id ) ) {
|
|
|
|
|
591 |
$tracking_campaign_id = ES()->workflows_db->create_child_tracking_campaign( $parent_campaign_id, $action );
|
592 |
|
593 |
$workflow_actions[$action_index]['ig-es-tracking-campaign-id'] = $tracking_campaign_id;
|
594 |
$actions_data_updated = true;
|
595 |
-
} else {
|
596 |
-
ES()->workflows_db->update_child_tracking_campaign( $tracking_campaign_id, $action );
|
597 |
}
|
598 |
}
|
599 |
}
|
586 |
$workflow_title = $workflow_data['title'];
|
587 |
$parent_campaign_id = ES()->workflows_db->create_parent_workflow_campaign( $workflow_id, $workflow_title );
|
588 |
}
|
589 |
+
$tracking_campaign_id = ! empty ( $action['ig-es-tracking-campaign-id'] ) ? $action['ig-es-tracking-campaign-id'] : 0;
|
590 |
+
if ( ! empty( $tracking_campaign_id ) ) {
|
591 |
+
ES()->workflows_db->update_child_tracking_campaign( $tracking_campaign_id, $action );
|
592 |
+
} else {
|
593 |
$tracking_campaign_id = ES()->workflows_db->create_child_tracking_campaign( $parent_campaign_id, $action );
|
594 |
|
595 |
$workflow_actions[$action_index]['ig-es-tracking-campaign-id'] = $tracking_campaign_id;
|
596 |
$actions_data_updated = true;
|
|
|
|
|
597 |
}
|
598 |
}
|
599 |
}
|
lite/includes/workflows/db/class-es-db-workflows.php
CHANGED
@@ -822,6 +822,7 @@ class ES_DB_Workflows extends ES_DB {
|
|
822 |
$campaign_meta = array(
|
823 |
'enable_open_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
824 |
'enable_link_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
|
|
825 |
);
|
826 |
|
827 |
$campaing_data = array(
|
@@ -858,6 +859,7 @@ class ES_DB_Workflows extends ES_DB {
|
|
858 |
$campaign_meta = array(
|
859 |
'enable_open_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
860 |
'enable_link_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
|
|
861 |
);
|
862 |
|
863 |
$campaing_data = array(
|
822 |
$campaign_meta = array(
|
823 |
'enable_open_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
824 |
'enable_link_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
825 |
+
'attachments' => ! empty( $action['attachments'] ) ? $action['attachments'] : array(),
|
826 |
);
|
827 |
|
828 |
$campaing_data = array(
|
859 |
$campaign_meta = array(
|
860 |
'enable_open_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
861 |
'enable_link_tracking' => ! empty( $action['ig-es-email-tracking-enabled'] ) ? 'yes' : 'no',
|
862 |
+
'attachments' => ! empty( $action['attachments'] ) ? $action['attachments'] : array(),
|
863 |
);
|
864 |
|
865 |
$campaing_data = array(
|
lite/includes/workflows/fields/class-es-field.php
CHANGED
@@ -25,6 +25,15 @@ abstract class ES_Field {
|
|
25 |
*/
|
26 |
protected $title;
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
/**
|
29 |
* Field name
|
30 |
*
|
@@ -116,6 +125,20 @@ abstract class ES_Field {
|
|
116 |
$this->classes[] = 'ig-es-field--type-' . $this->type;
|
117 |
}
|
118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
/**
|
120 |
* Set field name
|
121 |
*
|
@@ -158,6 +181,18 @@ abstract class ES_Field {
|
|
158 |
return $this->title ? $this->title : '';
|
159 |
}
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
/**
|
162 |
*
|
163 |
* Get field name
|
25 |
*/
|
26 |
protected $title;
|
27 |
|
28 |
+
/**
|
29 |
+
* Field id
|
30 |
+
*
|
31 |
+
* @since 5.0.8
|
32 |
+
*
|
33 |
+
* @var string
|
34 |
+
*/
|
35 |
+
protected $id;
|
36 |
+
|
37 |
/**
|
38 |
* Field name
|
39 |
*
|
125 |
$this->classes[] = 'ig-es-field--type-' . $this->type;
|
126 |
}
|
127 |
|
128 |
+
/**
|
129 |
+
* Set field id
|
130 |
+
*
|
131 |
+
* @since 5.0.8
|
132 |
+
*
|
133 |
+
* @param string $name Field name.
|
134 |
+
*
|
135 |
+
* @return $this
|
136 |
+
*/
|
137 |
+
public function set_id( $id ) {
|
138 |
+
$this->id = $id;
|
139 |
+
return $this;
|
140 |
+
}
|
141 |
+
|
142 |
/**
|
143 |
* Set field name
|
144 |
*
|
181 |
return $this->title ? $this->title : '';
|
182 |
}
|
183 |
|
184 |
+
/**
|
185 |
+
*
|
186 |
+
* Get field id
|
187 |
+
*
|
188 |
+
* @since 5.0.8
|
189 |
+
*
|
190 |
+
* @return string
|
191 |
+
*/
|
192 |
+
public function get_id() {
|
193 |
+
return $this->id ? $this->id : '';
|
194 |
+
}
|
195 |
+
|
196 |
/**
|
197 |
*
|
198 |
* Get field name
|
lite/includes/workflows/fields/class-es-wp-editor.php
CHANGED
@@ -37,7 +37,8 @@ class ES_WP_Editor extends ES_Field {
|
|
37 |
* @since 4.5.3
|
38 |
*/
|
39 |
public function render( $value ) {
|
40 |
-
|
|
|
41 |
$value = ES_Clean::editor_content( $value );
|
42 |
|
43 |
// If it is an ajax request then load wp editor using js library.
|
37 |
* @since 4.5.3
|
38 |
*/
|
39 |
public function render( $value ) {
|
40 |
+
|
41 |
+
$id = $this->get_id();
|
42 |
$value = ES_Clean::editor_content( $value );
|
43 |
|
44 |
// If it is an ajax request then load wp editor using js library.
|
lite/languages/email-subscribers.pot
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the
|
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:
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
-
"X-Generator: WP-CLI 2.
|
15 |
"X-Domain: email-subscribers\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
@@ -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,222 +51,226 @@ 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:562
|
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 add some recipients before proceeding."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
84 |
msgid "Please select a trigger before saving the workflow."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
88 |
msgid "Please add some actions before saving the workflow."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
92 |
msgid "Please select an action that this workflow should perform before saving the workflow."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
96 |
msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
100 |
msgid "Copied!"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
104 |
msgid "Are you sure?"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
108 |
msgid "Please select the status for the importing contacts!"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
112 |
msgid "Please select a list for importing contacts!"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
116 |
msgid "Please select the email address column!"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
120 |
msgid "Preparing Data"
|
121 |
msgstr ""
|
122 |
|
123 |
#. translators: %s: Upload progress
|
124 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
125 |
msgid "Uploading...%s"
|
126 |
msgstr ""
|
127 |
|
128 |
#. translators: %s: Import progress
|
129 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
130 |
msgid "Importing contacts...%s"
|
131 |
msgstr ""
|
132 |
|
133 |
#. translators: %s: Import failed svg icon
|
134 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
135 |
msgid "Import failed! %s"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
139 |
msgid "Please do not close this window until it completes..."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
143 |
msgid "Preparing Import..."
|
144 |
msgstr ""
|
145 |
|
146 |
#. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
|
147 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
148 |
msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
|
149 |
msgstr ""
|
150 |
|
151 |
#. translators: 1 Duplicate found email message
|
152 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
153 |
msgid "%1$s duplicate emails found."
|
154 |
msgstr ""
|
155 |
|
156 |
#. translators: %s: Time left in minutes
|
157 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
158 |
msgid "Estimate time left: %s minutes"
|
159 |
msgstr ""
|
160 |
|
161 |
#. translators: %s: Next attempt delaly time
|
162 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
163 |
msgid "Continues in %s seconds"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
167 |
msgid "There was a problem during importing contacts. Please check the error logs for more information!"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
171 |
msgid "Do you really like to import these contacts?"
|
172 |
msgstr ""
|
173 |
|
174 |
#. translators: %s: Process complete svg icon
|
175 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
176 |
msgid "Import complete! %s"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
180 |
msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
184 |
msgid "API is valid. Fetching lists..."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
188 |
msgid "Fetching contacts from MailChimp...Please do not close this window"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
192 |
-
#: lite/admin/partials/dashboard.php:
|
193 |
msgid "Dashboard"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
197 |
-
#: lite/admin/partials/dashboard.php:
|
198 |
#: lite/includes/classes/class-es-contacts-table.php:214
|
199 |
-
#: lite/includes/pro-features.php:
|
200 |
#: starter/starter-class-email-subscribers.php:649
|
201 |
msgid "Audience"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
205 |
#: lite/includes/classes/class-es-forms-table.php:464
|
206 |
#: lite/includes/classes/class-es-lists-table.php:34
|
207 |
#: lite/includes/classes/class-es-lists-table.php:88
|
208 |
msgid "Lists"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
212 |
#: lite/includes/classes/class-es-form-widget.php:76
|
213 |
#: lite/includes/classes/class-es-forms-table.php:39
|
214 |
#: lite/includes/classes/class-es-forms-table.php:40
|
215 |
#: lite/includes/classes/class-es-forms-table.php:93
|
216 |
-
#: lite/includes/pro-features.php:
|
217 |
#: starter/starter-class-email-subscribers.php:650
|
218 |
msgid "Forms"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
222 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
223 |
#: lite/includes/classes/class-es-newsletters.php:239
|
224 |
#: lite/includes/classes/class-es-newsletters.php:245
|
225 |
-
#: lite/includes/pro-features.php:
|
226 |
#: pro/partials/es-dashboard.php:8
|
227 |
#: starter/starter-class-email-subscribers.php:651
|
228 |
msgid "Campaigns"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
232 |
msgid "Post Notifications"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
236 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
237 |
#: lite/includes/classes/class-es-newsletters.php:254
|
238 |
#: lite/includes/classes/class-es-reports-data.php:360
|
239 |
#: lite/includes/classes/class-es-reports-table.php:161
|
240 |
#: lite/includes/classes/class-es-templates-table.php:185
|
241 |
-
#: lite/includes/pro-features.php:
|
242 |
#: lite/public/class-email-subscribers-public.php:471
|
243 |
#: pro/classes/class-es-pro-reports-data.php:77
|
244 |
msgid "Broadcast"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
248 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
249 |
#: lite/includes/classes/class-es-reports-table.php:551
|
250 |
#: lite/includes/classes/class-es-templates-table.php:147
|
251 |
msgid "Template Preview"
|
252 |
msgstr ""
|
253 |
|
254 |
#: lite/admin/class-email-subscribers-admin.php:323
|
255 |
-
|
256 |
-
|
|
|
|
|
|
|
|
|
257 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
258 |
#: lite/includes/workflows/class-es-workflows-table.php:169
|
259 |
#: starter/starter-class-email-subscribers.php:654
|
260 |
msgid "Workflows"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
264 |
-
#: lite/admin/partials/dashboard.php:
|
265 |
#: lite/includes/classes/class-es-campaign-report.php:17
|
266 |
#: lite/includes/classes/class-es-reports-table.php:17
|
267 |
#: lite/includes/classes/class-es-reports-table.php:55
|
268 |
#: lite/includes/classes/class-es-reports-table.php:112
|
269 |
-
#: lite/includes/pro-features.php:
|
270 |
#: pro/classes/class-es-pro-sequence-report.php:21
|
271 |
#: pro/classes/class-es-pro-sequence-report.php:44
|
272 |
#: pro/classes/class-es-pro-sequence-report.php:77
|
@@ -274,28 +278,28 @@ msgstr ""
|
|
274 |
msgid "Reports"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
278 |
-
#: lite/admin/partials/dashboard.php:
|
279 |
#: lite/includes/classes/class-es-admin-settings.php:131
|
280 |
msgid "Settings"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
284 |
msgid "Go To Icegram"
|
285 |
msgstr ""
|
286 |
|
287 |
#. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
|
288 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
289 |
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>"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
293 |
msgid "Something went wrong"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
297 |
#: lite/includes/class-email-subscribers-activator.php:61
|
298 |
-
#: lite/includes/class-email-subscribers.php:
|
299 |
#: lite/includes/classes/class-es-form-widget.php:11
|
300 |
#: lite/includes/classes/class-es-old-widget.php:13
|
301 |
#: lite/includes/classes/class-es-old-widget.php:15
|
@@ -304,12 +308,12 @@ msgstr ""
|
|
304 |
msgid "Email Subscribers"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
308 |
msgid "Last 30 days"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
312 |
-
#: lite/includes/class-es-common.php:
|
313 |
#: lite/includes/classes/class-es-contacts-table.php:327
|
314 |
#: lite/includes/classes/class-es-import-subscribers.php:839
|
315 |
#: lite/includes/classes/class-es-import-subscribers.php:1188
|
@@ -317,8 +321,8 @@ msgstr ""
|
|
317 |
msgid "Subscribed"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
321 |
-
#: lite/includes/class-es-common.php:
|
322 |
#: lite/includes/classes/class-es-contacts-table.php:335
|
323 |
#: lite/includes/classes/class-es-import-subscribers.php:840
|
324 |
#: lite/includes/classes/class-es-import-subscribers.php:1189
|
@@ -327,28 +331,28 @@ msgstr ""
|
|
327 |
msgid "Unsubscribed"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
331 |
-
#: lite/includes/pro-features.php:
|
332 |
msgid "Avg Open Rate"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
336 |
-
#: lite/admin/partials/dashboard.php:
|
337 |
msgid "Messages Sent"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
341 |
msgid "Last Campaign"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
345 |
msgid "Sent to"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
349 |
-
#: lite/admin/partials/dashboard.php:
|
350 |
-
#: lite/includes/pro-features.php:
|
351 |
-
#: lite/includes/pro-features.php:
|
352 |
#: pro/classes/class-es-pro-reports-data.php:321
|
353 |
#: pro/classes/class-es-pro-reports-data.php:444
|
354 |
#: pro/classes/class-es-pro-reports-data.php:677
|
@@ -357,15 +361,15 @@ msgstr ""
|
|
357 |
msgid "Opens"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
361 |
msgid "No campaigns sent yet"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
365 |
msgid "Latest Blog Posts from Icegram"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
369 |
msgid "Please publish it or save it as a draft."
|
370 |
msgstr ""
|
371 |
|
@@ -479,20 +483,20 @@ msgstr ""
|
|
479 |
#: lite/includes/classes/class-es-import-subscribers.php:1057
|
480 |
#: lite/includes/classes/class-es-import-subscribers.php:1180
|
481 |
#: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:143
|
482 |
-
#: lite/includes/pro-features.php:
|
483 |
-
#: lite/includes/pro-features.php:
|
484 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
485 |
#: lite/includes/workflows/actions/class-es-action-send-email.php:31
|
486 |
#: lite/public/partials/class-es-shortcode.php:170
|
487 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
488 |
-
#: pro/pro-class-email-subscribers.php:
|
489 |
-
#: pro/pro-class-email-subscribers.php:
|
490 |
msgid "Email"
|
491 |
msgstr ""
|
492 |
|
493 |
#: lite/admin/class-ig-es-campaign-rules.php:620
|
494 |
-
#: lite/includes/pro-features.php:
|
495 |
-
#: lite/includes/pro-features.php:
|
496 |
#: pro/classes/class-es-pro-campaign-rules.php:38
|
497 |
#: pro/classes/class-es-pro-reports-data.php:318
|
498 |
msgid "Country"
|
@@ -683,127 +687,139 @@ msgstr ""
|
|
683 |
msgid "New Post Published - {{POSTTITLE}}"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: lite/admin/partials/dashboard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
msgid "Add a Subscription Form"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: lite/admin/partials/dashboard.php:
|
691 |
msgid "Grow subscribers. Add a newsletter signup form to your site."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: lite/admin/partials/dashboard.php:
|
695 |
-
#: lite/admin/partials/dashboard.php:
|
696 |
msgid "Create"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: lite/admin/partials/dashboard.php:
|
700 |
#: lite/includes/classes/class-es-contacts-table.php:133
|
701 |
#: lite/includes/classes/class-es-import-subscribers.php:391
|
702 |
msgid "Import Contacts"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: lite/admin/partials/dashboard.php:
|
706 |
msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: lite/admin/partials/dashboard.php:
|
710 |
#: lite/includes/classes/class-es-import-subscribers.php:354
|
711 |
msgid "Import"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: lite/admin/partials/dashboard.php:
|
715 |
msgid "Configure Email Sending"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: lite/admin/partials/dashboard.php:
|
719 |
msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: lite/admin/partials/dashboard.php:
|
723 |
msgid "Setup"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: lite/admin/partials/dashboard.php:
|
727 |
msgid "Send a Newsletter"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: lite/admin/partials/dashboard.php:
|
731 |
msgid "Broadcast a newsletter campaign to all or selected subscribers."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: lite/admin/partials/dashboard.php:
|
735 |
msgid "Begin"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: lite/admin/partials/dashboard.php:
|
739 |
msgid "Create an Auto-responder Sequence"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: lite/admin/partials/dashboard.php:
|
743 |
msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: lite/admin/partials/dashboard.php:
|
747 |
msgid "Start"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: lite/admin/partials/dashboard.php:
|
751 |
msgid "New Broadcast"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: lite/admin/partials/dashboard.php:
|
755 |
msgid "New Post Notification"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: lite/admin/partials/dashboard.php:
|
759 |
-
#: lite/admin/partials/dashboard.php:
|
760 |
#: pro/pro-class-sequences.php:48
|
761 |
msgid "New Sequence"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: lite/admin/partials/dashboard.php:
|
765 |
msgid "Premium"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: lite/admin/partials/dashboard.php:
|
769 |
msgid "New Template"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: lite/admin/partials/dashboard.php:
|
773 |
msgid "New Form"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: lite/admin/partials/dashboard.php:
|
777 |
msgid "New List"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: lite/admin/partials/dashboard.php:
|
781 |
msgid "New Contact"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: lite/admin/partials/dashboard.php:
|
785 |
msgid " active contacts"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: lite/admin/partials/dashboard.php:
|
789 |
#: lite/includes/classes/class-es-contacts-table.php:320
|
790 |
msgid "Last 60 days"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: lite/admin/partials/dashboard.php:
|
794 |
msgid " Avg Open Rate"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: lite/admin/partials/dashboard.php:
|
798 |
-
#: lite/includes/pro-features.php:
|
799 |
msgid "Avg Click Rate"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: lite/admin/partials/dashboard.php:
|
803 |
msgid "Jump to: "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: lite/admin/partials/dashboard.php:
|
807 |
#: lite/includes/class-email-subscribers-activator.php:49
|
808 |
#: lite/includes/class-email-subscribers-activator.php:50
|
809 |
#: lite/includes/class-email-subscribers-activator.php:55
|
@@ -876,7 +892,7 @@ msgstr ""
|
|
876 |
|
877 |
#: lite/admin/partials/help.php:237
|
878 |
#: lite/includes/classes/class-es-campaign-report.php:190
|
879 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
880 |
#: lite/includes/classes/class-es-export-subscribers.php:341
|
881 |
#: lite/includes/classes/class-es-import-subscribers.php:666
|
882 |
#: lite/includes/classes/class-es-import-subscribers.php:1183
|
@@ -887,10 +903,10 @@ msgid "Status"
|
|
887 |
msgstr ""
|
888 |
|
889 |
#: lite/admin/partials/help.php:239
|
890 |
-
#: lite/includes/class-es-common.php:
|
891 |
-
#: lite/includes/class-es-common.php:
|
892 |
-
#: lite/includes/class-es-common.php:
|
893 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
894 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
895 |
#: pro/classes/class-es-pro-reports-data.php:193
|
896 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
@@ -898,8 +914,8 @@ msgid "Active"
|
|
898 |
msgstr ""
|
899 |
|
900 |
#: lite/admin/partials/help.php:241
|
901 |
-
#: lite/includes/class-es-common.php:
|
902 |
-
#: lite/includes/class-es-common.php:
|
903 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
904 |
#: pro/classes/class-es-pro-reports-data.php:198
|
905 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
@@ -929,7 +945,7 @@ msgstr ""
|
|
929 |
|
930 |
#: lite/admin/partials/onboarding.php:48
|
931 |
msgid ""
|
932 |
-
"We've simplified and automated email marketing, so you can get\
|
933 |
"\t\t results quickly."
|
934 |
msgstr ""
|
935 |
|
@@ -951,7 +967,7 @@ msgstr ""
|
|
951 |
|
952 |
#: lite/admin/partials/onboarding.php:89
|
953 |
msgid ""
|
954 |
-
"Add a couple of your own email addresses below. We will add\
|
955 |
"\t\t them to your audience lists."
|
956 |
msgstr ""
|
957 |
|
@@ -966,13 +982,13 @@ msgstr ""
|
|
966 |
|
967 |
#: lite/admin/partials/onboarding.php:173
|
968 |
msgid ""
|
969 |
-
"I want to send email notifications when new blog posts are\
|
970 |
"\t\t published"
|
971 |
msgstr ""
|
972 |
|
973 |
#: lite/admin/partials/onboarding.php:195
|
974 |
msgid ""
|
975 |
-
"Enable double opt-in (people have to click a confirmation\
|
976 |
"\t\t link in email before they're subscribed)"
|
977 |
msgstr ""
|
978 |
|
@@ -994,7 +1010,7 @@ msgstr ""
|
|
994 |
|
995 |
#: lite/admin/partials/onboarding.php:266
|
996 |
msgid ""
|
997 |
-
"We'll create audience lists, campaigns and a subscription form.\
|
998 |
"\t\t And then try to send a test email to make sure everything works."
|
999 |
msgstr ""
|
1000 |
|
@@ -1025,7 +1041,7 @@ msgstr ""
|
|
1025 |
|
1026 |
#: lite/admin/partials/onboarding.php:347
|
1027 |
msgid ""
|
1028 |
-
"Adding the form to an active sidebar, so you can show it on\
|
1029 |
"\t\t the site"
|
1030 |
msgstr ""
|
1031 |
|
@@ -1075,7 +1091,7 @@ msgstr ""
|
|
1075 |
|
1076 |
#: lite/admin/partials/onboarding.php:477
|
1077 |
msgid ""
|
1078 |
-
"How to build your list, make sure your email reach your\
|
1079 |
"\t\t\t\t audience and influence your audience."
|
1080 |
msgstr ""
|
1081 |
|
@@ -1126,8 +1142,8 @@ msgstr ""
|
|
1126 |
|
1127 |
#: lite/admin/partials/onboarding.php:632
|
1128 |
msgid ""
|
1129 |
-
"We recommend you solve this problem quickly after completing\
|
1130 |
-
"\t\t\t\t\t the setup. Do make sure emails are getting delivered before\
|
1131 |
"\t\t\t\t\t you send any real campaigns."
|
1132 |
msgstr ""
|
1133 |
|
@@ -1192,20 +1208,20 @@ msgid "OK, I Got it!"
|
|
1192 |
msgstr ""
|
1193 |
|
1194 |
#. translators: 1: Error message 2: File name 3: Line number
|
1195 |
-
#: lite/includes/class-email-subscribers.php:
|
1196 |
msgid "%1$s in %2$s on line %3$s"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: lite/includes/class-email-subscribers.php:
|
1200 |
msgid "Icegram WC"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
#. translators: %1$s - constant that was used
|
1204 |
-
#: lite/includes/class-email-subscribers.php:
|
1205 |
msgid "Value was set using constant %1$s"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: lite/includes/class-es-common.php:
|
1209 |
#: lite/includes/classes/class-es-contacts-table.php:343
|
1210 |
#: lite/includes/classes/class-es-import-subscribers.php:841
|
1211 |
#: lite/includes/classes/class-es-import-subscribers.php:1190
|
@@ -1213,185 +1229,185 @@ msgstr ""
|
|
1213 |
msgid "Unconfirmed"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: lite/includes/class-es-common.php:
|
1217 |
#: lite/includes/classes/class-es-import-subscribers.php:236
|
1218 |
msgid "Select Status"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: lite/includes/class-es-common.php:
|
1222 |
msgid "Select Template"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: lite/includes/class-es-common.php:
|
1226 |
msgid "Select Categories"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: lite/includes/class-es-common.php:
|
1230 |
msgid "All Categories (Also include all categories which will create later)"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: lite/includes/class-es-common.php:
|
1234 |
msgid "None (Don't include post from any category)"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: lite/includes/class-es-common.php:
|
1238 |
msgid "No Custom Post Types Available"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: lite/includes/class-es-common.php:
|
1242 |
msgid "Single Opt-In"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: lite/includes/class-es-common.php:
|
1246 |
msgid "Double Opt-In"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: lite/includes/class-es-common.php:
|
1250 |
#: pro/pro-class-post-digest.php:149
|
1251 |
msgid "Monday"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: lite/includes/class-es-common.php:
|
1255 |
#: pro/pro-class-post-digest.php:150
|
1256 |
msgid "Tuesday"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: lite/includes/class-es-common.php:
|
1260 |
#: pro/pro-class-post-digest.php:151
|
1261 |
msgid "Wednesday"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: lite/includes/class-es-common.php:
|
1265 |
#: pro/pro-class-post-digest.php:152
|
1266 |
msgid "Thursday"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: lite/includes/class-es-common.php:
|
1270 |
#: pro/pro-class-post-digest.php:153
|
1271 |
msgid "Friday"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: lite/includes/class-es-common.php:
|
1275 |
#: pro/pro-class-post-digest.php:154
|
1276 |
msgid "Saturday"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: lite/includes/class-es-common.php:
|
1280 |
#: pro/pro-class-post-digest.php:148
|
1281 |
msgid "Sunday"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: lite/includes/class-es-common.php:
|
1285 |
msgid "Full Size"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: lite/includes/class-es-common.php:
|
1289 |
msgid "Medium Size"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: lite/includes/class-es-common.php:
|
1293 |
#: lite/includes/classes/class-es-templates-table.php:166
|
1294 |
msgid "Thumbnail"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: lite/includes/class-es-common.php:
|
1298 |
msgid "Top 10 Tips on How to Build an Email List"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: lite/includes/class-es-common.php:
|
1302 |
#: pro/templates/email/es-admin-subscription-summary.php:174
|
1303 |
msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: lite/includes/class-es-common.php:
|
1307 |
msgid "Balance Email Marketing and Social Media Marketing"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: lite/includes/class-es-common.php:
|
1311 |
msgid "Use social proof to grow blog traffic through email"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: lite/includes/class-es-common.php:
|
1315 |
msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: lite/includes/class-es-common.php:
|
1319 |
-
#: lite/includes/pro-features.php:
|
1320 |
msgid "Email Subscribers PRO"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: lite/includes/class-es-common.php:
|
1324 |
msgid "Lifetime"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: lite/includes/class-es-common.php:
|
1328 |
msgid "<b>Email Subscribers Secret Club</b>"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: lite/includes/class-es-common.php:
|
1332 |
#: lite/includes/feedback.php:123
|
1333 |
msgid "Join Now"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: lite/includes/class-es-common.php:
|
1337 |
msgid "All Types"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: lite/includes/class-es-common.php:
|
1341 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1342 |
msgid "Draft"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: lite/includes/class-es-common.php:
|
1346 |
-
#: lite/includes/class-es-common.php:
|
1347 |
#: lite/includes/classes/class-es-campaign-report.php:237
|
1348 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1349 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1350 |
#: lite/includes/classes/class-es-reports-table.php:200
|
1351 |
#: lite/includes/classes/class-es-reports-table.php:590
|
1352 |
#: pro/classes/class-es-pro-reports-data.php:186
|
1353 |
msgid "Sending"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: lite/includes/class-es-common.php:
|
1357 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1358 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1359 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1360 |
#: lite/includes/classes/class-es-reports-table.php:216
|
1361 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:36
|
1362 |
msgid "Scheduled"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: lite/includes/class-es-common.php:
|
1366 |
-
#: lite/includes/class-es-common.php:
|
1367 |
#: lite/includes/classes/class-es-campaign-report.php:221
|
1368 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1369 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1370 |
#: lite/includes/classes/class-es-reports-table.php:191
|
1371 |
-
#: lite/includes/pro-features.php:
|
1372 |
-
#: lite/includes/pro-features.php:
|
1373 |
#: pro/classes/class-es-pro-reports-data.php:170
|
1374 |
#: pro/classes/class-es-pro-reports-data.php:270
|
1375 |
msgid "Sent"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: lite/includes/class-es-common.php:
|
1379 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1380 |
#: lite/includes/classes/class-es-contacts-table.php:1145
|
1381 |
msgid "All Statuses"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: lite/includes/class-es-common.php:
|
1385 |
msgid "Upgrade"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: lite/includes/class-es-common.php:
|
1389 |
#: lite/includes/classes/class-es-reports-table.php:592
|
1390 |
#: pro/classes/class-es-pro-reports-data.php:878
|
1391 |
msgid "All Status"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: lite/includes/class-es-common.php:
|
1395 |
#: lite/includes/classes/class-es-campaign-report.php:229
|
1396 |
#: lite/includes/classes/class-es-reports-table.php:589
|
1397 |
#: pro/classes/class-es-pro-reports-data.php:178
|
@@ -1399,36 +1415,36 @@ msgstr ""
|
|
1399 |
msgid "In Queue"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: lite/includes/class-es-common.php:
|
1403 |
msgid "Select field type"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: lite/includes/class-es-common.php:
|
1407 |
msgid "Text"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: lite/includes/class-es-common.php:
|
1411 |
msgid "TextArea"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: lite/includes/class-es-common.php:
|
1415 |
msgid "Dropdown"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: lite/includes/class-es-common.php:
|
1419 |
msgid "Radio"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: lite/includes/class-es-common.php:
|
1423 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
1424 |
msgid "Number"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: lite/includes/class-es-common.php:
|
1428 |
-
#: lite/includes/pro-features.php:
|
1429 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1430 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1431 |
-
#: pro/pro-class-email-subscribers.php:
|
1432 |
msgid "Date"
|
1433 |
msgstr ""
|
1434 |
|
@@ -1463,7 +1479,7 @@ msgstr ""
|
|
1463 |
|
1464 |
#: lite/includes/classes/class-es-admin-settings.php:202
|
1465 |
#: lite/includes/classes/class-es-admin-settings.php:205
|
1466 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1467 |
#: lite/includes/classes/class-es-forms-table.php:414
|
1468 |
#: lite/includes/classes/class-es-forms-table.php:925
|
1469 |
#: lite/includes/classes/class-es-lists-table.php:637
|
@@ -1751,11 +1767,11 @@ msgid "Click %1$shere%2$s to go to workflows."
|
|
1751 |
msgstr ""
|
1752 |
|
1753 |
#: lite/includes/classes/class-es-campaign-report.php:16
|
1754 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1755 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1756 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1757 |
#: lite/includes/classes/class-es-reports-table.php:16
|
1758 |
-
#: lite/includes/pro-features.php:
|
1759 |
#: pro/classes/class-es-pro-reports-data.php:154
|
1760 |
#: pro/classes/class-es-pro-sequence-report.php:20
|
1761 |
msgid "Report"
|
@@ -1782,7 +1798,7 @@ msgstr ""
|
|
1782 |
|
1783 |
#: lite/includes/classes/class-es-campaign-report.php:245
|
1784 |
#: lite/includes/classes/class-es-contacts-table.php:351
|
1785 |
-
#: lite/includes/pro-features.php:
|
1786 |
#: pro/classes/class-es-pro-reports-data.php:247
|
1787 |
#: pro/classes/class-es-pro-reports-data.php:875
|
1788 |
msgid "Opened"
|
@@ -1797,70 +1813,74 @@ msgstr ""
|
|
1797 |
msgid "Campaign"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1801 |
msgid "Number of campaigns per page"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1805 |
msgid "Broadcast created successfully."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1809 |
msgid "Create Post Notification"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1813 |
msgid "Send Broadcast"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1817 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1818 |
msgid "Onsite Campaigns"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1822 |
#: lite/includes/classes/class-es-post-notifications.php:308
|
1823 |
msgid "Manage Templates"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
|
|
|
|
|
|
|
|
1827 |
msgid "Notification Added Successfully!"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1831 |
msgid "No Campaigns Found."
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1835 |
msgid "In Active"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1839 |
msgid "Queued"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1843 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1844 |
#: lite/includes/classes/class-es-reports-table.php:208
|
1845 |
msgid "Paused"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1849 |
msgid "Finished"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1853 |
msgid "All"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1857 |
#: starter/starter-class-email-subscribers.php:392
|
1858 |
msgid "None"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1862 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1863 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1864 |
#: lite/includes/classes/class-es-contacts-table.php:1038
|
1865 |
#: lite/includes/classes/class-es-forms-table.php:908
|
1866 |
#: lite/includes/classes/class-es-lists-table.php:616
|
@@ -1870,7 +1890,7 @@ msgstr ""
|
|
1870 |
msgid "Edit"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1874 |
#: lite/includes/classes/class-es-contacts-table.php:1040
|
1875 |
#: lite/includes/classes/class-es-contacts-table.php:1111
|
1876 |
#: lite/includes/classes/class-es-forms-table.php:910
|
@@ -1887,7 +1907,7 @@ msgstr ""
|
|
1887 |
msgid "Delete"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1891 |
#: lite/includes/classes/class-es-reports-table.php:280
|
1892 |
#: pro/classes/class-es-pro-custom-fields-table.php:393
|
1893 |
#: pro/classes/class-es-pro-custom-fields-table.php:458
|
@@ -1895,44 +1915,44 @@ msgstr ""
|
|
1895 |
msgid "Type"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1899 |
#: lite/includes/classes/class-es-contacts-table.php:841
|
1900 |
#: lite/includes/classes/class-es-contacts-table.php:1077
|
1901 |
msgid "List(s)"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1905 |
msgid "Categories"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1909 |
#: lite/includes/classes/class-es-contacts-table.php:1078
|
1910 |
#: lite/includes/classes/class-es-forms-table.php:928
|
1911 |
msgid "Created"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1915 |
msgid "Search Campaigns"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1919 |
#: lite/includes/classes/class-es-reports-table.php:601
|
1920 |
msgid "All Type"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1924 |
msgid "You are not allowed to delete campaign."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1928 |
msgid "Campaign deleted successfully!"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1932 |
msgid "Campaign(s) deleted successfully!"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: lite/includes/classes/class-es-campaigns-table.php:
|
1936 |
msgid "Please select campaign(s) to delete."
|
1937 |
msgstr ""
|
1938 |
|
@@ -2047,8 +2067,8 @@ msgid "Enter last name"
|
|
2047 |
msgstr ""
|
2048 |
|
2049 |
#: lite/includes/classes/class-es-contacts-table.php:801
|
2050 |
-
#: lite/includes/pro-features.php:
|
2051 |
-
#: pro/pro-class-email-subscribers.php:
|
2052 |
msgid "Enter email"
|
2053 |
msgstr ""
|
2054 |
|
@@ -2220,6 +2240,18 @@ msgstr ""
|
|
2220 |
msgid "Cron lock enabled. Please try after sometime."
|
2221 |
msgstr ""
|
2222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2223 |
#: lite/includes/classes/class-es-export-subscribers.php:48
|
2224 |
msgid "No data available"
|
2225 |
msgstr ""
|
@@ -2259,7 +2291,7 @@ msgstr ""
|
|
2259 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2260 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2261 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2262 |
-
#: pro/pro-class-email-subscribers.php:
|
2263 |
msgid "First Name"
|
2264 |
msgstr ""
|
2265 |
|
@@ -2268,7 +2300,7 @@ msgstr ""
|
|
2268 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2269 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2270 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2271 |
-
#: pro/pro-class-email-subscribers.php:
|
2272 |
msgid "Last Name"
|
2273 |
msgstr ""
|
2274 |
|
@@ -2943,7 +2975,7 @@ msgid "Save Draft"
|
|
2943 |
msgstr ""
|
2944 |
|
2945 |
#: lite/includes/classes/class-es-newsletters.php:301
|
2946 |
-
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:
|
2947 |
#: lite/includes/workflows/admin/views/meta-box-save.php:68
|
2948 |
msgid "Save"
|
2949 |
msgstr ""
|
@@ -2980,51 +3012,51 @@ msgstr ""
|
|
2980 |
msgid "Message"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
2984 |
msgid "Design template"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
2988 |
msgid "Total recipients:"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
2992 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
2993 |
#: lite/includes/classes/class-es-reports-table.php:263
|
2994 |
#: pro/classes/class-es-pro-sequence-report.php:273
|
2995 |
msgid "Preview"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
2999 |
msgid "Browser"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
3003 |
#: lite/includes/classes/class-es-reports-table.php:552
|
3004 |
#: lite/includes/classes/class-es-templates-table.php:148
|
3005 |
msgid "There could be a slight variation on how your customer will view the email content."
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
3009 |
#: lite/includes/classes/class-es-reports-table.php:556
|
3010 |
#: lite/includes/classes/class-es-templates-table.php:152
|
3011 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
|
3012 |
msgid "Close"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
3016 |
msgid "Email sent successfully "
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
3020 |
msgid "Something went wrong. Please try again later"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
3024 |
msgid "Email Content Preview"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: lite/includes/classes/class-es-newsletters.php:
|
3028 |
msgid "Open tracking"
|
3029 |
msgstr ""
|
3030 |
|
@@ -3242,7 +3274,7 @@ msgstr ""
|
|
3242 |
|
3243 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3244 |
#: lite/includes/classes/class-es-templates-table.php:203
|
3245 |
-
#: pro/pro-class-email-subscribers.php:
|
3246 |
msgid "Duplicate"
|
3247 |
msgstr ""
|
3248 |
|
@@ -3415,7 +3447,7 @@ msgstr ""
|
|
3415 |
|
3416 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:183
|
3417 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:210
|
3418 |
-
#: lite/includes/pro-features.php:
|
3419 |
msgid "Check"
|
3420 |
msgstr ""
|
3421 |
|
@@ -3439,7 +3471,7 @@ msgid "Spam score"
|
|
3439 |
msgstr ""
|
3440 |
|
3441 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
|
3442 |
-
#: lite/includes/pro-features.php:
|
3443 |
msgid "UTM tracking"
|
3444 |
msgstr ""
|
3445 |
|
@@ -3459,609 +3491,635 @@ msgid "This will be appended to every URL in this template with parameters: %s"
|
|
3459 |
msgstr ""
|
3460 |
|
3461 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
|
3462 |
-
#: lite/includes/pro-features.php:
|
3463 |
msgid "Google Analytics UTM tracking"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:347
|
3467 |
-
#: lite/includes/pro-features.php:
|
3468 |
msgid "Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: lite/includes/pro-features.php:
|
3472 |
msgid "Customize user roles permissions with "
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: lite/includes/pro-features.php:
|
3476 |
#: starter/starter-class-email-subscribers.php:644
|
3477 |
msgid "You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below."
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: lite/includes/pro-features.php:
|
3481 |
#: starter/starter-class-email-subscribers.php:648
|
3482 |
msgid "Roles"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: lite/includes/pro-features.php:
|
3486 |
#: starter/starter-class-email-subscribers.php:653
|
3487 |
msgid "Sequences"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: lite/includes/pro-features.php:
|
3491 |
#: starter/starter-class-email-subscribers.php:618
|
3492 |
msgid "Access Control"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: lite/includes/pro-features.php:
|
3496 |
-
#: pro/pro-class-email-subscribers.php:
|
3497 |
msgid "Track clicks"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: lite/includes/pro-features.php:
|
3501 |
-
#: pro/pro-class-email-subscribers.php:
|
3502 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3506 |
-
#: lite/includes/pro-features.php:
|
3507 |
msgid "Track key insight behaviour with PRO"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: lite/includes/pro-features.php:
|
3511 |
msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: lite/includes/pro-features.php:
|
3515 |
msgid "Allow user to select list(s) while unsubscribing"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: lite/includes/pro-features.php:
|
3519 |
#: starter/starter-class-email-subscribers.php:530
|
3520 |
msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
-
#: lite/includes/pro-features.php:
|
3524 |
#: starter/starter-class-email-subscribers.php:502
|
3525 |
msgid "Nudge people to subscribe while leaving a comment or placing an order?"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: lite/includes/pro-features.php:
|
3529 |
#: starter/starter-class-email-subscribers.php:503
|
3530 |
msgid "Adds a checkbox to subscribe when people post a comment or checkout (if you’re using WooCommerce)."
|
3531 |
msgstr ""
|
3532 |
|
3533 |
-
#: lite/includes/pro-features.php:
|
3534 |
#: starter/starter-class-email-subscribers.php:508
|
3535 |
msgid "(toggle to enable this)"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: lite/includes/pro-features.php:
|
3539 |
#: starter/starter-class-email-subscribers.php:515
|
3540 |
msgid "Opt-in consent message text"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: lite/includes/pro-features.php:
|
3544 |
msgid "Subscribe to our email updates as well."
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: lite/includes/pro-features.php:
|
3548 |
#: starter/starter-class-email-subscribers.php:519
|
3549 |
msgid "Opt-in consent text"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: lite/includes/pro-features.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3553 |
#: starter/starter-class-email-subscribers.php:465
|
3554 |
msgid "Block known attackers"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
#: lite/includes/pro-features.php:
|
3558 |
#: starter/starter-class-email-subscribers.php:466
|
3559 |
msgid "Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated."
|
3560 |
msgstr ""
|
3561 |
|
3562 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3563 |
-
#: lite/includes/pro-features.php:
|
3564 |
msgid "Prevent spam attacks with PRO"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: lite/includes/pro-features.php:
|
3568 |
msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#: lite/includes/pro-features.php:
|
3572 |
#: starter/starter-class-email-subscribers.php:473
|
3573 |
msgid "Block temporary / fake emails"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: lite/includes/pro-features.php:
|
3577 |
#: starter/starter-class-email-subscribers.php:474
|
3578 |
msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically."
|
3579 |
msgstr ""
|
3580 |
|
3581 |
-
#: lite/includes/pro-features.php:
|
3582 |
#: starter/starter-class-email-subscribers.php:482
|
3583 |
msgid "Enable Captcha"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: lite/includes/pro-features.php:
|
3587 |
#: starter/starter-class-email-subscribers.php:483
|
3588 |
msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: lite/includes/pro-features.php:
|
3592 |
-
#: pro/pro-class-email-subscribers.php:
|
3593 |
msgid "Track IP address"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#: lite/includes/pro-features.php:
|
3597 |
msgid "Record user's IP address on subscription."
|
3598 |
msgstr ""
|
3599 |
|
3600 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3601 |
-
#: lite/includes/pro-features.php:
|
3602 |
msgid "Track subscribers IP addresses with PRO"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
-
#: lite/includes/pro-features.php:
|
3606 |
msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#: lite/includes/pro-features.php:
|
3610 |
#: starter/starter-class-es-integrations.php:63
|
3611 |
msgid "Comments"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: lite/includes/pro-features.php:
|
3615 |
#: starter/starter-class-es-integrations.php:73
|
3616 |
msgid "WooCommerce"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: lite/includes/pro-features.php:
|
3620 |
#: starter/starter-class-es-integrations.php:91
|
3621 |
msgid "Contact Form 7"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: lite/includes/pro-features.php:
|
3625 |
#: starter/starter-class-es-integrations.php:100
|
3626 |
msgid "WPForms"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
-
#: lite/includes/pro-features.php:
|
3630 |
#: starter/starter-class-es-integrations.php:109
|
3631 |
msgid "Give"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: lite/includes/pro-features.php:
|
3635 |
#: starter/starter-class-es-integrations.php:118
|
3636 |
msgid "Ninja Forms"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
-
#: lite/includes/pro-features.php:
|
3640 |
#: starter/starter-class-es-integrations.php:82
|
3641 |
msgid "EDD"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: lite/includes/pro-features.php:
|
3645 |
msgid "Sync Comment Users"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: lite/includes/pro-features.php:
|
3649 |
msgid "Quickly add to your mailing list when someone post a comment on your website."
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: lite/includes/pro-features.php:
|
3653 |
-
#: lite/includes/pro-features.php:
|
3654 |
-
#: lite/includes/pro-features.php:
|
3655 |
-
#: lite/includes/pro-features.php:
|
3656 |
-
#: lite/includes/pro-features.php:
|
3657 |
-
#: lite/includes/pro-features.php:
|
3658 |
-
#: lite/includes/pro-features.php:
|
3659 |
msgid "How to setup?"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: lite/includes/pro-features.php:
|
3663 |
-
#: lite/includes/pro-features.php:
|
3664 |
-
#: lite/includes/pro-features.php:
|
3665 |
-
#: lite/includes/pro-features.php:
|
3666 |
-
#: lite/includes/pro-features.php:
|
3667 |
-
#: lite/includes/pro-features.php:
|
3668 |
-
#: lite/includes/pro-features.php:
|
3669 |
msgid "Once you upgrade to "
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: lite/includes/pro-features.php:
|
3673 |
-
#: lite/includes/pro-features.php:
|
3674 |
-
#: lite/includes/pro-features.php:
|
3675 |
-
#: lite/includes/pro-features.php:
|
3676 |
-
#: lite/includes/pro-features.php:
|
3677 |
-
#: lite/includes/pro-features.php:
|
3678 |
-
#: lite/includes/pro-features.php:
|
3679 |
-
#: lite/includes/pro-features.php:
|
3680 |
-
#: lite/includes/pro-features.php:
|
3681 |
-
#: lite/includes/pro-features.php:
|
3682 |
msgid "Email Subscribers Starter"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: lite/includes/pro-features.php:
|
3686 |
msgid ""
|
3687 |
-
"you will have settings panel where you need to enable Comment user sync and select the list in which you want to add people whenever someone post a\
|
3688 |
"\t\tcomment."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
-
#: lite/includes/pro-features.php:
|
3692 |
-
#: lite/includes/pro-features.php:
|
3693 |
-
#: lite/includes/pro-features.php:
|
3694 |
-
#: lite/includes/pro-features.php:
|
3695 |
-
#: lite/includes/pro-features.php:
|
3696 |
-
#: lite/includes/pro-features.php:
|
3697 |
-
#: lite/includes/pro-features.php:
|
3698 |
msgid "Checkout "
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: lite/includes/pro-features.php:
|
3702 |
msgid "now"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: lite/includes/pro-features.php:
|
3706 |
msgid "Sync WooCommerce Customers"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#: lite/includes/pro-features.php:
|
3710 |
msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
-
#: lite/includes/pro-features.php:
|
3714 |
msgid ""
|
3715 |
-
"you will have settings panel where you need to enable WooCommerce sync and select the list in which you want to add people whenever they\
|
3716 |
-
"\t\t\tpurchase something\
|
3717 |
"\t\t\tfrom you."
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: lite/includes/pro-features.php:
|
3721 |
-
#: lite/includes/pro-features.php:
|
3722 |
msgid " Now"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: lite/includes/pro-features.php:
|
3726 |
msgid "Sync Contact Form 7 users"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: lite/includes/pro-features.php:
|
3730 |
msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: lite/includes/pro-features.php:
|
3734 |
msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: lite/includes/pro-features.php:
|
3738 |
-
#: lite/includes/pro-features.php:
|
3739 |
msgid "Sync Donors"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: lite/includes/pro-features.php:
|
3743 |
msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: lite/includes/pro-features.php:
|
3747 |
msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: lite/includes/pro-features.php:
|
3751 |
msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: lite/includes/pro-features.php:
|
3755 |
-
#: lite/includes/pro-features.php:
|
3756 |
msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: lite/includes/pro-features.php:
|
3760 |
msgid "Sync Contacts"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: lite/includes/pro-features.php:
|
3764 |
msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: lite/includes/pro-features.php:
|
3768 |
msgid "Sync Customers"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: lite/includes/pro-features.php:
|
3772 |
msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: lite/includes/pro-features.php:
|
3776 |
msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: lite/includes/pro-features.php:
|
3780 |
msgid "ES PRO Integrations"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
#: lite/includes/pro-features.php:
|
3784 |
msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: lite/includes/pro-features.php:
|
3788 |
msgid "Unlock plugin integrations with PRO"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: lite/includes/pro-features.php:
|
3792 |
msgid "Protect your subscription list now with PRO"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
#. translators: 1. Bold tag 2. Bold close tag
|
3796 |
-
#: lite/includes/pro-features.php:
|
3797 |
msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: lite/includes/pro-features.php:
|
3801 |
#: starter/starter-class-email-subscribers.php:1231
|
3802 |
msgid "Show a captcha to protect from bot signups."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: lite/includes/pro-features.php:
|
3806 |
msgid "Enable multiple lists & post digest with PRO"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: lite/includes/pro-features.php:
|
3810 |
msgid "Want to send notification emails to more than one list? You can select multiple list with"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: lite/includes/pro-features.php:
|
3814 |
msgid "Email Subscribers PRO."
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: lite/includes/pro-features.php:
|
3818 |
msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: lite/includes/pro-features.php:
|
3822 |
#: pro/pro-class-post-digest.php:65
|
3823 |
msgid "Is a post digest?"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: lite/includes/pro-features.php:
|
3827 |
#: pro/pro-class-post-digest.php:68
|
3828 |
msgid "Schedule one notification email for multiple posts"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: lite/includes/pro-features.php:
|
3832 |
#: pro/pro-class-post-digest.php:106
|
3833 |
msgid "Schedules at"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: lite/includes/pro-features.php:
|
3837 |
#: pro/pro-class-post-digest.php:107
|
3838 |
msgid "When to send?"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: lite/includes/pro-features.php:
|
3842 |
msgid "Once a day at"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: lite/includes/pro-features.php:
|
3846 |
msgid "Reduce the possibility to land in spam with PRO"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: lite/includes/pro-features.php:
|
3850 |
-
#: pro/pro-class-email-subscribers.php:
|
3851 |
msgid "Link tracking"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: lite/includes/pro-features.php:
|
3855 |
msgid "Get spam score"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: lite/includes/pro-features.php:
|
3859 |
-
#: pro/pro-class-email-subscribers.php:
|
3860 |
msgid "Send options"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
-
#: lite/includes/pro-features.php:
|
3864 |
-
#: pro/pro-class-email-subscribers.php:
|
3865 |
msgid "Schedule for later"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: lite/includes/pro-features.php:
|
3869 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
3870 |
-
#: pro/pro-class-email-subscribers.php:
|
3871 |
msgid "Time"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: lite/includes/pro-features.php:
|
3875 |
-
#: pro/pro-class-email-subscribers.php:
|
3876 |
msgid "Local Time: "
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: lite/includes/pro-features.php:
|
3880 |
msgid "Get campaign analytics with PRO"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
#. translators: 1. Bold tag 2. Bold close tag
|
3884 |
-
#: lite/includes/pro-features.php:
|
3885 |
msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: lite/includes/pro-features.php:
|
3889 |
#: pro/classes/class-es-pro-reports-data.php:203
|
3890 |
msgid "Type: "
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: lite/includes/pro-features.php:
|
3894 |
#: pro/classes/class-es-pro-reports-data.php:206
|
3895 |
msgid "From: "
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: lite/includes/pro-features.php:
|
3899 |
msgid "List(s): "
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: lite/includes/pro-features.php:
|
3903 |
msgid "Test, Main "
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: lite/includes/pro-features.php:
|
3907 |
#: pro/classes/class-es-pro-reports-data.php:224
|
3908 |
msgid "Date: "
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: lite/includes/pro-features.php:
|
3912 |
msgid "July 1, 2020 10:00 AM"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: lite/includes/pro-features.php:
|
3916 |
#: pro/classes/class-es-pro-reports-data.php:233
|
3917 |
msgid "Statistics"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: lite/includes/pro-features.php:
|
3921 |
msgid "Open and click activity"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: lite/includes/pro-features.php:
|
3925 |
msgid "Country Opens"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: lite/includes/pro-features.php:
|
3929 |
msgid "Mail Client Info"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: lite/includes/pro-features.php:
|
3933 |
-
#: lite/includes/pro-features.php:
|
3934 |
#: pro/classes/class-es-pro-reports-data.php:441
|
3935 |
#: pro/classes/class-es-pro-reports-data.php:922
|
3936 |
msgid "Mail Client"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: lite/includes/pro-features.php:
|
3940 |
msgid "Device Info"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: lite/includes/pro-features.php:
|
3944 |
msgid "Browser Info"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: lite/includes/pro-features.php:
|
3948 |
msgid "OS Info"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: lite/includes/pro-features.php:
|
3952 |
msgid "Link Activity"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: lite/includes/pro-features.php:
|
3956 |
#: pro/classes/class-es-pro-reports-data.php:546
|
3957 |
msgid "Link (URL)"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: lite/includes/pro-features.php:
|
3961 |
#: pro/classes/class-es-pro-reports-data.php:548
|
3962 |
msgid "Unique Clicks"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: lite/includes/pro-features.php:
|
3966 |
#: pro/classes/class-es-pro-reports-data.php:550
|
3967 |
msgid "Total Clicks"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: lite/includes/pro-features.php:
|
3971 |
msgid "Last 10 Open Activity"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: lite/includes/pro-features.php:
|
3975 |
#: pro/classes/class-es-pro-reports-data.php:921
|
3976 |
msgid "Device"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: lite/includes/pro-features.php:
|
3980 |
#: pro/classes/class-es-pro-reports-data.php:923
|
3981 |
msgid "OS"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: lite/includes/pro-features.php:
|
3985 |
#: pro/classes/class-es-pro-reports-data.php:945
|
3986 |
msgid "Desktop"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: lite/includes/pro-features.php:
|
3990 |
#: pro/classes/class-es-pro-reports-data.php:953
|
3991 |
msgid "Tablet"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: lite/includes/pro-features.php:
|
3995 |
#: pro/classes/class-es-pro-reports-data.php:961
|
3996 |
msgid "Mobile"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: lite/includes/pro-features.php:
|
4000 |
-
#: pro/pro-class-email-subscribers.php:
|
4001 |
msgid "Add Attachments"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: lite/includes/pro-features.php:
|
4005 |
-
#: pro/pro-class-email-subscribers.php:
|
4006 |
msgid "Import existing WordPress users"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: lite/includes/pro-features.php:
|
4010 |
msgid "Import from"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: lite/includes/pro-features.php:
|
4014 |
msgid "WooCommerce orders"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: lite/includes/pro-features.php:
|
4018 |
msgid "is not in List [PRO]"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: lite/includes/pro-features.php:
|
4022 |
msgid "Email [PRO]"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#: lite/includes/pro-features.php:
|
4026 |
msgid "Country [PRO]"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#: lite/includes/pro-features.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4030 |
msgid "has received [PRO]"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: lite/includes/pro-features.php:
|
4034 |
msgid "has not received [PRO]"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#: lite/includes/pro-features.php:
|
4038 |
msgid "has received and opened [PRO]"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#: lite/includes/pro-features.php:
|
4042 |
msgid "has received but not opened [PRO]"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: lite/includes/pro-features.php:
|
4046 |
msgid "has received and clicked [PRO]"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: lite/includes/pro-features.php:
|
4050 |
msgid "has received and not clicked [PRO]"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#: lite/includes/pro-features.php:
|
4054 |
msgid "Send Broadcast to specific audience with PRO"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: lite/includes/pro-features.php:
|
4058 |
msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them."
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: lite/includes/pro-features.php:
|
4062 |
msgid "Send confirmation email [PRO]"
|
4063 |
msgstr ""
|
4064 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4065 |
#: lite/includes/services/class-es-email-delivery-check.php:46
|
4066 |
msgid " The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients."
|
4067 |
msgstr ""
|
@@ -4119,28 +4177,28 @@ msgstr ""
|
|
4119 |
msgid "Variable not found."
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:
|
4123 |
msgid " Add New Workflow"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:
|
4127 |
msgid " Edit Workflow"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:
|
4131 |
msgid "Add title"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:
|
4135 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:68
|
4136 |
msgid "Trigger"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:
|
4140 |
msgid "Actions"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:
|
4144 |
msgid "Placeholders"
|
4145 |
msgstr ""
|
4146 |
|
@@ -4215,31 +4273,31 @@ msgid "(24 hour time)"
|
|
4215 |
msgstr ""
|
4216 |
|
4217 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:22
|
4218 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4219 |
#: starter/workflows/triggers/class-es-trigger-comment-added.php:23
|
4220 |
msgid "Comment Added"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:25
|
4224 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4225 |
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
|
4226 |
msgid "Contact Form 7 Submitted"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:26
|
4230 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4231 |
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
|
4232 |
msgid "WP Form Submitted"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:27
|
4236 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4237 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
|
4238 |
msgid "Ninja Form Submitted"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:28
|
4242 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4243 |
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
|
4244 |
msgid "Gravity Form Submitted"
|
4245 |
msgstr ""
|
@@ -4250,18 +4308,18 @@ msgid "Forminator Form Submitted"
|
|
4250 |
msgstr ""
|
4251 |
|
4252 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:32
|
4253 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4254 |
#: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
|
4255 |
msgid "WooCommerce Order Completed"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:33
|
4259 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4260 |
msgid "EDD Purchase Completed"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:34
|
4264 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4265 |
msgid "Give Donation Added"
|
4266 |
msgstr ""
|
4267 |
|
@@ -4418,71 +4476,71 @@ msgstr ""
|
|
4418 |
msgid "You are not allowed to delete workflow."
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4422 |
msgid "Workflow deleted successfully!"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4426 |
msgid "Workflow(s) deleted successfully!"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4430 |
msgid "Please select workflow(s) to delete."
|
4431 |
msgstr ""
|
4432 |
|
4433 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4434 |
msgid "activated"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4438 |
msgid "deactivated"
|
4439 |
msgstr ""
|
4440 |
|
4441 |
#. translators: %s: Workflow action
|
4442 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4443 |
msgid "Workflow(s) %s successfully!"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4447 |
msgid "activate"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4451 |
msgid "deactivate"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
#. translators: %s: Workflow action
|
4455 |
-
#: lite/includes/workflows/class-es-workflows-table.php:
|
4456 |
msgid "Please select workflow(s) to %s."
|
4457 |
msgstr ""
|
4458 |
|
4459 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4460 |
#: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
|
4461 |
msgid "User Registered"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4465 |
msgid "User deleted"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4469 |
msgid "User updated"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4473 |
msgid "Send welcome email when someone subscribes"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4477 |
-
#: pro/pro-class-email-subscribers.php:
|
4478 |
msgid "Send confirmation email"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4482 |
msgid "Notify admin when someone subscribes"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: lite/includes/workflows/db/class-es-db-workflows.php:
|
4486 |
msgid "Notify admin when campaign is sent"
|
4487 |
msgstr ""
|
4488 |
|
@@ -4560,6 +4618,7 @@ msgstr ""
|
|
4560 |
|
4561 |
#: lite/includes/workflows/triggers/class-es-trigger-user-subscribed.php:32
|
4562 |
#: lite/includes/workflows/triggers/class-es-trigger-user-unconfirmed.php:32
|
|
|
4563 |
msgid "Subscriber"
|
4564 |
msgstr ""
|
4565 |
|
@@ -4571,6 +4630,14 @@ msgstr ""
|
|
4571 |
msgid "Fires when someone submit subscriber form."
|
4572 |
msgstr ""
|
4573 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4574 |
#: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
|
4575 |
msgid "User Updated"
|
4576 |
msgstr ""
|
@@ -4626,7 +4693,7 @@ msgid "Total Emails In Queue"
|
|
4626 |
msgstr ""
|
4627 |
|
4628 |
#: lite/public/partials/cron-message.php:43
|
4629 |
-
#: pro/pro-class-email-subscribers.php:
|
4630 |
msgid "Send Now"
|
4631 |
msgstr ""
|
4632 |
|
@@ -4782,10 +4849,6 @@ msgstr ""
|
|
4782 |
msgid "No custom fields available."
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: pro/classes/class-es-pro-custom-fields.php:64
|
4786 |
-
msgid "Manage Custom Fields"
|
4787 |
-
msgstr ""
|
4788 |
-
|
4789 |
#: pro/classes/class-es-pro-custom-fields.php:240
|
4790 |
#: pro/classes/class-es-pro-custom-fields.php:382
|
4791 |
msgid "Select option"
|
@@ -4796,7 +4859,7 @@ msgid "Recipient(s): "
|
|
4796 |
msgstr ""
|
4797 |
|
4798 |
#: pro/classes/class-es-pro-reports-data.php:261
|
4799 |
-
#: pro/pro-class-email-subscribers.php:
|
4800 |
msgid "Clicked"
|
4801 |
msgstr ""
|
4802 |
|
@@ -5086,7 +5149,7 @@ msgid "Are you sure you want to delete this?"
|
|
5086 |
msgstr ""
|
5087 |
|
5088 |
#: pro/pro-class-email-subscribers.php:567
|
5089 |
-
#: pro/pro-class-email-subscribers.php:
|
5090 |
msgid "Checking your orders..."
|
5091 |
msgstr ""
|
5092 |
|
@@ -5114,185 +5177,181 @@ msgstr ""
|
|
5114 |
msgid "week(s)"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: pro/pro-class-email-subscribers.php:
|
5118 |
msgid "Clean My List"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: pro/pro-class-email-subscribers.php:
|
5122 |
msgid "List cleanup is in progress..."
|
5123 |
msgstr ""
|
5124 |
|
5125 |
-
#: pro/pro-class-email-subscribers.php:
|
5126 |
msgid "List cleanup completed successfully."
|
5127 |
msgstr ""
|
5128 |
|
5129 |
-
#: pro/pro-class-email-subscribers.php:
|
5130 |
msgid "Email status"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
-
#: pro/pro-class-email-subscribers.php:
|
5134 |
msgid "Last opened at"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: pro/pro-class-email-subscribers.php:
|
5138 |
msgid "Select page"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
-
#: pro/pro-class-email-subscribers.php:
|
5142 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5143 |
msgstr ""
|
5144 |
|
5145 |
-
#: pro/pro-class-email-subscribers.php:
|
5146 |
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."
|
5147 |
msgstr ""
|
5148 |
|
5149 |
-
#: pro/pro-class-email-subscribers.php:
|
5150 |
-
msgid "Weekly summary"
|
5151 |
-
msgstr ""
|
5152 |
-
|
5153 |
-
#: pro/pro-class-email-subscribers.php:1001
|
5154 |
msgid "Enable?"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: pro/pro-class-email-subscribers.php:
|
5158 |
msgid "When our automated weekly email should be sent out?"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
-
#: pro/pro-class-email-subscribers.php:
|
5162 |
msgid "In which time we need to send our weekly summary?"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: pro/pro-class-email-subscribers.php:
|
5166 |
msgid "Access Key ID"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: pro/pro-class-email-subscribers.php:
|
5170 |
msgid "Secret Access Key"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
-
#: pro/pro-class-email-subscribers.php:
|
5174 |
msgid "Closest Region"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
-
#: pro/pro-class-email-subscribers.php:
|
5178 |
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."
|
5179 |
msgstr ""
|
5180 |
|
5181 |
-
#: pro/pro-class-email-subscribers.php:
|
5182 |
msgid "Private API Key"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
-
#: pro/pro-class-email-subscribers.php:
|
5186 |
msgid "Domain Name"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
-
#: pro/pro-class-email-subscribers.php:
|
5190 |
-
#: pro/pro-class-email-subscribers.php:
|
5191 |
msgid "United States"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: pro/pro-class-email-subscribers.php:
|
5195 |
-
#: pro/pro-class-email-subscribers.php:
|
5196 |
msgid "Europe"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
-
#: pro/pro-class-email-subscribers.php:
|
5200 |
-
#: pro/pro-class-email-subscribers.php:
|
5201 |
msgid "Region"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
-
#: pro/pro-class-email-subscribers.php:
|
5205 |
msgid "mailgun.com"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
-
#: pro/pro-class-email-subscribers.php:
|
5209 |
-
#: pro/pro-class-email-subscribers.php:
|
5210 |
msgid "API Key"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
-
#: pro/pro-class-email-subscribers.php:
|
5214 |
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."
|
5215 |
msgstr ""
|
5216 |
|
5217 |
-
#: pro/pro-class-email-subscribers.php:
|
5218 |
msgid "API token"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#: pro/pro-class-email-subscribers.php:
|
5222 |
msgid "You are not allowed to duplicate campaign."
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: pro/pro-class-email-subscribers.php:
|
5226 |
msgid "Campaign duplicated !"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: pro/pro-class-email-subscribers.php:
|
5230 |
msgid "Import WordPress users with following roles"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: pro/pro-class-email-subscribers.php:
|
5234 |
-
#: pro/pro-class-email-subscribers.php:
|
5235 |
msgid "Proceed "
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: pro/pro-class-email-subscribers.php:
|
5239 |
msgid "Import from WooCommerce orders"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: pro/pro-class-email-subscribers.php:
|
5243 |
msgid "Select order statuses"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: pro/pro-class-email-subscribers.php:
|
5247 |
msgid "Orders should contain these products"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: pro/pro-class-email-subscribers.php:
|
5251 |
msgid "Search products..."
|
5252 |
msgstr ""
|
5253 |
|
5254 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5255 |
-
#: pro/pro-class-email-subscribers.php:
|
5256 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: pro/pro-class-email-subscribers.php:
|
5260 |
msgid "We can't find any matching orders in your store."
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: pro/pro-class-email-subscribers.php:
|
5264 |
msgid "Total Opened"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
-
#: pro/pro-class-email-subscribers.php:
|
5268 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: pro/pro-class-email-subscribers.php:
|
5272 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: pro/pro-class-email-subscribers.php:
|
5276 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: pro/pro-class-email-subscribers.php:
|
5280 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: pro/pro-class-email-subscribers.php:
|
5284 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: pro/pro-class-email-subscribers.php:
|
5288 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: pro/pro-class-email-subscribers.php:
|
5292 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5293 |
msgstr ""
|
5294 |
|
5295 |
-
#: pro/pro-class-email-subscribers.php:
|
5296 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5297 |
msgstr ""
|
5298 |
|
@@ -5547,7 +5606,7 @@ msgstr ""
|
|
5547 |
|
5548 |
#: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
|
5549 |
msgid ""
|
5550 |
-
"This trigger doesn't fire instantly when a product goes on sale. Instead, it performs a check for new on-sale products in every 15 minutes. \
|
5551 |
"\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
|
5552 |
msgstr ""
|
5553 |
|
1 |
+
# Copyright (C) 2022 Icegram
|
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.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-01-05T11:28:21+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"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
29 |
|
30 |
#. Author of the plugin
|
31 |
#: lite/admin/partials/help.php:28
|
32 |
+
#: lite/includes/class-email-subscribers.php:1562
|
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:169
|
55 |
msgid "An error has occured. Please try again later."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: lite/admin/class-email-subscribers-admin.php:170
|
59 |
msgid "Broadcast saved successfully."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: lite/admin/class-email-subscribers-admin.php:171
|
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:172
|
67 |
msgid "Please add a broadcast subject before saving."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: lite/admin/class-email-subscribers-admin.php:173
|
71 |
#: pro/pro-class-email-subscribers.php:562
|
72 |
msgid "Please add email body."
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: lite/admin/class-email-subscribers-admin.php:174
|
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 add some recipients before proceeding."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: lite/admin/class-email-subscribers-admin.php:178
|
84 |
msgid "Please select a trigger before saving the workflow."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: lite/admin/class-email-subscribers-admin.php:179
|
88 |
msgid "Please add some actions before saving the workflow."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: lite/admin/class-email-subscribers-admin.php:180
|
92 |
msgid "Please select an action that this workflow should perform before saving the workflow."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: lite/admin/class-email-subscribers-admin.php:181
|
96 |
msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: lite/admin/class-email-subscribers-admin.php:182
|
100 |
msgid "Copied!"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: lite/admin/class-email-subscribers-admin.php:183
|
104 |
msgid "Are you sure?"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lite/admin/class-email-subscribers-admin.php:186
|
108 |
msgid "Please select the status for the importing contacts!"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: lite/admin/class-email-subscribers-admin.php:187
|
112 |
msgid "Please select a list for importing contacts!"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: lite/admin/class-email-subscribers-admin.php:188
|
116 |
msgid "Please select the email address column!"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: lite/admin/class-email-subscribers-admin.php:189
|
120 |
msgid "Preparing Data"
|
121 |
msgstr ""
|
122 |
|
123 |
#. translators: %s: Upload progress
|
124 |
+
#: lite/admin/class-email-subscribers-admin.php:191
|
125 |
msgid "Uploading...%s"
|
126 |
msgstr ""
|
127 |
|
128 |
#. translators: %s: Import progress
|
129 |
+
#: lite/admin/class-email-subscribers-admin.php:193
|
130 |
msgid "Importing contacts...%s"
|
131 |
msgstr ""
|
132 |
|
133 |
#. translators: %s: Import failed svg icon
|
134 |
+
#: lite/admin/class-email-subscribers-admin.php:195
|
135 |
msgid "Import failed! %s"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: lite/admin/class-email-subscribers-admin.php:196
|
139 |
msgid "Please do not close this window until it completes..."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: lite/admin/class-email-subscribers-admin.php:197
|
143 |
msgid "Preparing Import..."
|
144 |
msgstr ""
|
145 |
|
146 |
#. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
|
147 |
+
#: lite/admin/class-email-subscribers-admin.php:199
|
148 |
msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
|
149 |
msgstr ""
|
150 |
|
151 |
#. translators: 1 Duplicate found email message
|
152 |
+
#: lite/admin/class-email-subscribers-admin.php:201
|
153 |
msgid "%1$s duplicate emails found."
|
154 |
msgstr ""
|
155 |
|
156 |
#. translators: %s: Time left in minutes
|
157 |
+
#: lite/admin/class-email-subscribers-admin.php:203
|
158 |
msgid "Estimate time left: %s minutes"
|
159 |
msgstr ""
|
160 |
|
161 |
#. translators: %s: Next attempt delaly time
|
162 |
+
#: lite/admin/class-email-subscribers-admin.php:205
|
163 |
msgid "Continues in %s seconds"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: lite/admin/class-email-subscribers-admin.php:206
|
167 |
msgid "There was a problem during importing contacts. Please check the error logs for more information!"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: lite/admin/class-email-subscribers-admin.php:207
|
171 |
msgid "Do you really like to import these contacts?"
|
172 |
msgstr ""
|
173 |
|
174 |
#. translators: %s: Process complete svg icon
|
175 |
+
#: lite/admin/class-email-subscribers-admin.php:209
|
176 |
msgid "Import complete! %s"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: lite/admin/class-email-subscribers-admin.php:210
|
180 |
msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: lite/admin/class-email-subscribers-admin.php:211
|
184 |
msgid "API is valid. Fetching lists..."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: lite/admin/class-email-subscribers-admin.php:212
|
188 |
msgid "Fetching contacts from MailChimp...Please do not close this window"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: lite/admin/class-email-subscribers-admin.php:290
|
192 |
+
#: lite/admin/partials/dashboard.php:109
|
193 |
msgid "Dashboard"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: lite/admin/class-email-subscribers-admin.php:295
|
197 |
+
#: lite/admin/partials/dashboard.php:116
|
198 |
#: lite/includes/classes/class-es-contacts-table.php:214
|
199 |
+
#: lite/includes/pro-features.php:163
|
200 |
#: starter/starter-class-email-subscribers.php:649
|
201 |
msgid "Audience"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: lite/admin/class-email-subscribers-admin.php:299
|
205 |
#: lite/includes/classes/class-es-forms-table.php:464
|
206 |
#: lite/includes/classes/class-es-lists-table.php:34
|
207 |
#: lite/includes/classes/class-es-lists-table.php:88
|
208 |
msgid "Lists"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: lite/admin/class-email-subscribers-admin.php:305
|
212 |
#: lite/includes/classes/class-es-form-widget.php:76
|
213 |
#: lite/includes/classes/class-es-forms-table.php:39
|
214 |
#: lite/includes/classes/class-es-forms-table.php:40
|
215 |
#: lite/includes/classes/class-es-forms-table.php:93
|
216 |
+
#: lite/includes/pro-features.php:164
|
217 |
#: starter/starter-class-email-subscribers.php:650
|
218 |
msgid "Forms"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: lite/admin/class-email-subscribers-admin.php:311
|
222 |
+
#: lite/includes/classes/class-es-campaigns-table.php:108
|
223 |
#: lite/includes/classes/class-es-newsletters.php:239
|
224 |
#: lite/includes/classes/class-es-newsletters.php:245
|
225 |
+
#: lite/includes/pro-features.php:165
|
226 |
#: pro/partials/es-dashboard.php:8
|
227 |
#: starter/starter-class-email-subscribers.php:651
|
228 |
msgid "Campaigns"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: lite/admin/class-email-subscribers-admin.php:315
|
232 |
msgid "Post Notifications"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: lite/admin/class-email-subscribers-admin.php:317
|
236 |
+
#: lite/includes/classes/class-es-campaigns-table.php:342
|
237 |
#: lite/includes/classes/class-es-newsletters.php:254
|
238 |
#: lite/includes/classes/class-es-reports-data.php:360
|
239 |
#: lite/includes/classes/class-es-reports-table.php:161
|
240 |
#: lite/includes/classes/class-es-templates-table.php:185
|
241 |
+
#: lite/includes/pro-features.php:1177
|
242 |
#: lite/public/class-email-subscribers-public.php:471
|
243 |
#: pro/classes/class-es-pro-reports-data.php:77
|
244 |
msgid "Broadcast"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: lite/admin/class-email-subscribers-admin.php:318
|
248 |
+
#: lite/includes/classes/class-es-newsletters.php:431
|
249 |
#: lite/includes/classes/class-es-reports-table.php:551
|
250 |
#: lite/includes/classes/class-es-templates-table.php:147
|
251 |
msgid "Template Preview"
|
252 |
msgstr ""
|
253 |
|
254 |
#: lite/admin/class-email-subscribers-admin.php:323
|
255 |
+
msgid "Drag and Drop Editor"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: lite/admin/class-email-subscribers-admin.php:329
|
259 |
+
#: lite/includes/pro-features.php:168
|
260 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:261
|
261 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
262 |
#: lite/includes/workflows/class-es-workflows-table.php:169
|
263 |
#: starter/starter-class-email-subscribers.php:654
|
264 |
msgid "Workflows"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: lite/admin/class-email-subscribers-admin.php:338
|
268 |
+
#: lite/admin/partials/dashboard.php:247
|
269 |
#: lite/includes/classes/class-es-campaign-report.php:17
|
270 |
#: lite/includes/classes/class-es-reports-table.php:17
|
271 |
#: lite/includes/classes/class-es-reports-table.php:55
|
272 |
#: lite/includes/classes/class-es-reports-table.php:112
|
273 |
+
#: lite/includes/pro-features.php:166
|
274 |
#: pro/classes/class-es-pro-sequence-report.php:21
|
275 |
#: pro/classes/class-es-pro-sequence-report.php:44
|
276 |
#: pro/classes/class-es-pro-sequence-report.php:77
|
278 |
msgid "Reports"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: lite/admin/class-email-subscribers-admin.php:342
|
282 |
+
#: lite/admin/partials/dashboard.php:255
|
283 |
#: lite/includes/classes/class-es-admin-settings.php:131
|
284 |
msgid "Settings"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: lite/admin/class-email-subscribers-admin.php:347
|
288 |
msgid "Go To Icegram"
|
289 |
msgstr ""
|
290 |
|
291 |
#. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
|
292 |
+
#: lite/admin/class-email-subscribers-admin.php:907
|
293 |
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>"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: lite/admin/class-email-subscribers-admin.php:935
|
297 |
msgid "Something went wrong"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: lite/admin/class-email-subscribers-admin.php:1309
|
301 |
#: lite/includes/class-email-subscribers-activator.php:61
|
302 |
+
#: lite/includes/class-email-subscribers.php:1559
|
303 |
#: lite/includes/classes/class-es-form-widget.php:11
|
304 |
#: lite/includes/classes/class-es-old-widget.php:13
|
305 |
#: lite/includes/classes/class-es-old-widget.php:15
|
308 |
msgid "Email Subscribers"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: lite/admin/class-email-subscribers-admin.php:1351
|
312 |
msgid "Last 30 days"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: lite/admin/class-email-subscribers-admin.php:1360
|
316 |
+
#: lite/includes/class-es-common.php:210
|
317 |
#: lite/includes/classes/class-es-contacts-table.php:327
|
318 |
#: lite/includes/classes/class-es-import-subscribers.php:839
|
319 |
#: lite/includes/classes/class-es-import-subscribers.php:1188
|
321 |
msgid "Subscribed"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: lite/admin/class-email-subscribers-admin.php:1368
|
325 |
+
#: lite/includes/class-es-common.php:212
|
326 |
#: lite/includes/classes/class-es-contacts-table.php:335
|
327 |
#: lite/includes/classes/class-es-import-subscribers.php:840
|
328 |
#: lite/includes/classes/class-es-import-subscribers.php:1189
|
331 |
msgid "Unsubscribed"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: lite/admin/class-email-subscribers-admin.php:1376
|
335 |
+
#: lite/includes/pro-features.php:1209
|
336 |
msgid "Avg Open Rate"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: lite/admin/class-email-subscribers-admin.php:1384
|
340 |
+
#: lite/admin/partials/dashboard.php:202
|
341 |
msgid "Messages Sent"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: lite/admin/class-email-subscribers-admin.php:1395
|
345 |
msgid "Last Campaign"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: lite/admin/class-email-subscribers-admin.php:1431
|
349 |
msgid "Sent to"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: lite/admin/class-email-subscribers-admin.php:1443
|
353 |
+
#: lite/admin/partials/dashboard.php:186
|
354 |
+
#: lite/includes/pro-features.php:1289
|
355 |
+
#: lite/includes/pro-features.php:1327
|
356 |
#: pro/classes/class-es-pro-reports-data.php:321
|
357 |
#: pro/classes/class-es-pro-reports-data.php:444
|
358 |
#: pro/classes/class-es-pro-reports-data.php:677
|
361 |
msgid "Opens"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: lite/admin/class-email-subscribers-admin.php:1457
|
365 |
msgid "No campaigns sent yet"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: lite/admin/class-email-subscribers-admin.php:1465
|
369 |
msgid "Latest Blog Posts from Icegram"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: lite/admin/class-email-subscribers-admin.php:1567
|
373 |
msgid "Please publish it or save it as a draft."
|
374 |
msgstr ""
|
375 |
|
483 |
#: lite/includes/classes/class-es-import-subscribers.php:1057
|
484 |
#: lite/includes/classes/class-es-import-subscribers.php:1180
|
485 |
#: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:143
|
486 |
+
#: lite/includes/pro-features.php:989
|
487 |
+
#: lite/includes/pro-features.php:1536
|
488 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
489 |
#: lite/includes/workflows/actions/class-es-action-send-email.php:31
|
490 |
#: lite/public/partials/class-es-shortcode.php:170
|
491 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
492 |
+
#: pro/pro-class-email-subscribers.php:918
|
493 |
+
#: pro/pro-class-email-subscribers.php:2229
|
494 |
msgid "Email"
|
495 |
msgstr ""
|
496 |
|
497 |
#: lite/admin/class-ig-es-campaign-rules.php:620
|
498 |
+
#: lite/includes/pro-features.php:1286
|
499 |
+
#: lite/includes/pro-features.php:1535
|
500 |
#: pro/classes/class-es-pro-campaign-rules.php:38
|
501 |
#: pro/classes/class-es-pro-reports-data.php:318
|
502 |
msgid "Country"
|
687 |
msgid "New Post Published - {{POSTTITLE}}"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: lite/admin/partials/dashboard.php:50
|
691 |
+
msgid "Try the new editor"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: lite/admin/partials/dashboard.php:51
|
695 |
+
msgid "Checkout and playaround the new drag and drop editor."
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: lite/admin/partials/dashboard.php:52
|
699 |
+
msgid "Try it"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: lite/admin/partials/dashboard.php:58
|
703 |
msgid "Add a Subscription Form"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: lite/admin/partials/dashboard.php:59
|
707 |
msgid "Grow subscribers. Add a newsletter signup form to your site."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: lite/admin/partials/dashboard.php:60
|
711 |
+
#: lite/admin/partials/dashboard.php:125
|
712 |
msgid "Create"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: lite/admin/partials/dashboard.php:66
|
716 |
#: lite/includes/classes/class-es-contacts-table.php:133
|
717 |
#: lite/includes/classes/class-es-import-subscribers.php:391
|
718 |
msgid "Import Contacts"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: lite/admin/partials/dashboard.php:67
|
722 |
msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: lite/admin/partials/dashboard.php:68
|
726 |
#: lite/includes/classes/class-es-import-subscribers.php:354
|
727 |
msgid "Import"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: lite/admin/partials/dashboard.php:74
|
731 |
msgid "Configure Email Sending"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: lite/admin/partials/dashboard.php:75
|
735 |
msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: lite/admin/partials/dashboard.php:76
|
739 |
msgid "Setup"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: lite/admin/partials/dashboard.php:82
|
743 |
msgid "Send a Newsletter"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: lite/admin/partials/dashboard.php:83
|
747 |
msgid "Broadcast a newsletter campaign to all or selected subscribers."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: lite/admin/partials/dashboard.php:84
|
751 |
msgid "Begin"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: lite/admin/partials/dashboard.php:90
|
755 |
msgid "Create an Auto-responder Sequence"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: lite/admin/partials/dashboard.php:91
|
759 |
msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: lite/admin/partials/dashboard.php:92
|
763 |
msgid "Start"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: lite/admin/partials/dashboard.php:136
|
767 |
msgid "New Broadcast"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: lite/admin/partials/dashboard.php:138
|
771 |
msgid "New Post Notification"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: lite/admin/partials/dashboard.php:141
|
775 |
+
#: lite/admin/partials/dashboard.php:143
|
776 |
#: pro/pro-class-sequences.php:48
|
777 |
msgid "New Sequence"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: lite/admin/partials/dashboard.php:144
|
781 |
msgid "Premium"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: lite/admin/partials/dashboard.php:149
|
785 |
msgid "New Template"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: lite/admin/partials/dashboard.php:153
|
789 |
msgid "New Form"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: lite/admin/partials/dashboard.php:154
|
793 |
msgid "New List"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: lite/admin/partials/dashboard.php:155
|
797 |
msgid "New Contact"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: lite/admin/partials/dashboard.php:170
|
801 |
msgid " active contacts"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: lite/admin/partials/dashboard.php:178
|
805 |
#: lite/includes/classes/class-es-contacts-table.php:320
|
806 |
msgid "Last 60 days"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: lite/admin/partials/dashboard.php:194
|
810 |
msgid " Avg Open Rate"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: lite/admin/partials/dashboard.php:210
|
814 |
+
#: lite/includes/pro-features.php:1225
|
815 |
msgid "Avg Click Rate"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: lite/admin/partials/dashboard.php:245
|
819 |
msgid "Jump to: "
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: lite/admin/partials/dashboard.php:251
|
823 |
#: lite/includes/class-email-subscribers-activator.php:49
|
824 |
#: lite/includes/class-email-subscribers-activator.php:50
|
825 |
#: lite/includes/class-email-subscribers-activator.php:55
|
892 |
|
893 |
#: lite/admin/partials/help.php:237
|
894 |
#: lite/includes/classes/class-es-campaign-report.php:190
|
895 |
+
#: lite/includes/classes/class-es-campaigns-table.php:616
|
896 |
#: lite/includes/classes/class-es-export-subscribers.php:341
|
897 |
#: lite/includes/classes/class-es-import-subscribers.php:666
|
898 |
#: lite/includes/classes/class-es-import-subscribers.php:1183
|
903 |
msgstr ""
|
904 |
|
905 |
#: lite/admin/partials/help.php:239
|
906 |
+
#: lite/includes/class-es-common.php:429
|
907 |
+
#: lite/includes/class-es-common.php:1796
|
908 |
+
#: lite/includes/class-es-common.php:2247
|
909 |
+
#: lite/includes/classes/class-es-campaigns-table.php:294
|
910 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
911 |
#: pro/classes/class-es-pro-reports-data.php:193
|
912 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
914 |
msgstr ""
|
915 |
|
916 |
#: lite/admin/partials/help.php:241
|
917 |
+
#: lite/includes/class-es-common.php:430
|
918 |
+
#: lite/includes/class-es-common.php:2252
|
919 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
920 |
#: pro/classes/class-es-pro-reports-data.php:198
|
921 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
945 |
|
946 |
#: lite/admin/partials/onboarding.php:48
|
947 |
msgid ""
|
948 |
+
"We've simplified and automated email marketing, so you can get\n"
|
949 |
"\t\t results quickly."
|
950 |
msgstr ""
|
951 |
|
967 |
|
968 |
#: lite/admin/partials/onboarding.php:89
|
969 |
msgid ""
|
970 |
+
"Add a couple of your own email addresses below. We will add\n"
|
971 |
"\t\t them to your audience lists."
|
972 |
msgstr ""
|
973 |
|
982 |
|
983 |
#: lite/admin/partials/onboarding.php:173
|
984 |
msgid ""
|
985 |
+
"I want to send email notifications when new blog posts are\n"
|
986 |
"\t\t published"
|
987 |
msgstr ""
|
988 |
|
989 |
#: lite/admin/partials/onboarding.php:195
|
990 |
msgid ""
|
991 |
+
"Enable double opt-in (people have to click a confirmation\n"
|
992 |
"\t\t link in email before they're subscribed)"
|
993 |
msgstr ""
|
994 |
|
1010 |
|
1011 |
#: lite/admin/partials/onboarding.php:266
|
1012 |
msgid ""
|
1013 |
+
"We'll create audience lists, campaigns and a subscription form.\n"
|
1014 |
"\t\t And then try to send a test email to make sure everything works."
|
1015 |
msgstr ""
|
1016 |
|
1041 |
|
1042 |
#: lite/admin/partials/onboarding.php:347
|
1043 |
msgid ""
|
1044 |
+
"Adding the form to an active sidebar, so you can show it on\n"
|
1045 |
"\t\t the site"
|
1046 |
msgstr ""
|
1047 |
|
1091 |
|
1092 |
#: lite/admin/partials/onboarding.php:477
|
1093 |
msgid ""
|
1094 |
+
"How to build your list, make sure your email reach your\n"
|
1095 |
"\t\t\t\t audience and influence your audience."
|
1096 |
msgstr ""
|
1097 |
|
1142 |
|
1143 |
#: lite/admin/partials/onboarding.php:632
|
1144 |
msgid ""
|
1145 |
+
"We recommend you solve this problem quickly after completing\n"
|
1146 |
+
"\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
|
1147 |
"\t\t\t\t\t you send any real campaigns."
|
1148 |
msgstr ""
|
1149 |
|
1208 |
msgstr ""
|
1209 |
|
1210 |
#. translators: 1: Error message 2: File name 3: Line number
|
1211 |
+
#: lite/includes/class-email-subscribers.php:1310
|
1212 |
msgid "%1$s in %2$s on line %3$s"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: lite/includes/class-email-subscribers.php:1572
|
1216 |
msgid "Icegram WC"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
#. translators: %1$s - constant that was used
|
1220 |
+
#: lite/includes/class-email-subscribers.php:1981
|
1221 |
msgid "Value was set using constant %1$s"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: lite/includes/class-es-common.php:211
|
1225 |
#: lite/includes/classes/class-es-contacts-table.php:343
|
1226 |
#: lite/includes/classes/class-es-import-subscribers.php:841
|
1227 |
#: lite/includes/classes/class-es-import-subscribers.php:1190
|
1229 |
msgid "Unconfirmed"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: lite/includes/class-es-common.php:236
|
1233 |
#: lite/includes/classes/class-es-import-subscribers.php:236
|
1234 |
msgid "Select Status"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: lite/includes/class-es-common.php:386
|
1238 |
msgid "Select Template"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: lite/includes/class-es-common.php:500
|
1242 |
msgid "Select Categories"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: lite/includes/class-es-common.php:515
|
1246 |
msgid "All Categories (Also include all categories which will create later)"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: lite/includes/class-es-common.php:521
|
1250 |
msgid "None (Don't include post from any category)"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: lite/includes/class-es-common.php:559
|
1254 |
msgid "No Custom Post Types Available"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: lite/includes/class-es-common.php:575
|
1258 |
msgid "Single Opt-In"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: lite/includes/class-es-common.php:576
|
1262 |
msgid "Double Opt-In"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: lite/includes/class-es-common.php:590
|
1266 |
#: pro/pro-class-post-digest.php:149
|
1267 |
msgid "Monday"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: lite/includes/class-es-common.php:591
|
1271 |
#: pro/pro-class-post-digest.php:150
|
1272 |
msgid "Tuesday"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: lite/includes/class-es-common.php:592
|
1276 |
#: pro/pro-class-post-digest.php:151
|
1277 |
msgid "Wednesday"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: lite/includes/class-es-common.php:593
|
1281 |
#: pro/pro-class-post-digest.php:152
|
1282 |
msgid "Thursday"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: lite/includes/class-es-common.php:594
|
1286 |
#: pro/pro-class-post-digest.php:153
|
1287 |
msgid "Friday"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: lite/includes/class-es-common.php:595
|
1291 |
#: pro/pro-class-post-digest.php:154
|
1292 |
msgid "Saturday"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: lite/includes/class-es-common.php:596
|
1296 |
#: pro/pro-class-post-digest.php:148
|
1297 |
msgid "Sunday"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: lite/includes/class-es-common.php:632
|
1301 |
msgid "Full Size"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: lite/includes/class-es-common.php:633
|
1305 |
msgid "Medium Size"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: lite/includes/class-es-common.php:634
|
1309 |
#: lite/includes/classes/class-es-templates-table.php:166
|
1310 |
msgid "Thumbnail"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: lite/includes/class-es-common.php:1553
|
1314 |
msgid "Top 10 Tips on How to Build an Email List"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: lite/includes/class-es-common.php:1557
|
1318 |
#: pro/templates/email/es-admin-subscription-summary.php:174
|
1319 |
msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: lite/includes/class-es-common.php:1561
|
1323 |
msgid "Balance Email Marketing and Social Media Marketing"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: lite/includes/class-es-common.php:1565
|
1327 |
msgid "Use social proof to grow blog traffic through email"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: lite/includes/class-es-common.php:1569
|
1331 |
msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: lite/includes/class-es-common.php:1578
|
1335 |
+
#: lite/includes/pro-features.php:153
|
1336 |
msgid "Email Subscribers PRO"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: lite/includes/class-es-common.php:1580
|
1340 |
msgid "Lifetime"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: lite/includes/class-es-common.php:1584
|
1344 |
msgid "<b>Email Subscribers Secret Club</b>"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: lite/includes/class-es-common.php:1586
|
1348 |
#: lite/includes/feedback.php:123
|
1349 |
msgid "Join Now"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: lite/includes/class-es-common.php:1764
|
1353 |
msgid "All Types"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: lite/includes/class-es-common.php:1792
|
1357 |
+
#: lite/includes/classes/class-es-campaigns-table.php:554
|
1358 |
msgid "Draft"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: lite/includes/class-es-common.php:1793
|
1362 |
+
#: lite/includes/class-es-common.php:2238
|
1363 |
#: lite/includes/classes/class-es-campaign-report.php:237
|
1364 |
+
#: lite/includes/classes/class-es-campaigns-table.php:535
|
1365 |
+
#: lite/includes/classes/class-es-campaigns-table.php:573
|
1366 |
#: lite/includes/classes/class-es-reports-table.php:200
|
1367 |
#: lite/includes/classes/class-es-reports-table.php:590
|
1368 |
#: pro/classes/class-es-pro-reports-data.php:186
|
1369 |
msgid "Sending"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: lite/includes/class-es-common.php:1794
|
1373 |
+
#: lite/includes/classes/class-es-campaigns-table.php:295
|
1374 |
+
#: lite/includes/classes/class-es-campaigns-table.php:528
|
1375 |
+
#: lite/includes/classes/class-es-campaigns-table.php:564
|
1376 |
#: lite/includes/classes/class-es-reports-table.php:216
|
1377 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:36
|
1378 |
msgid "Scheduled"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: lite/includes/class-es-common.php:1795
|
1382 |
+
#: lite/includes/class-es-common.php:2218
|
1383 |
#: lite/includes/classes/class-es-campaign-report.php:221
|
1384 |
+
#: lite/includes/classes/class-es-campaigns-table.php:542
|
1385 |
+
#: lite/includes/classes/class-es-campaigns-table.php:591
|
1386 |
#: lite/includes/classes/class-es-reports-table.php:191
|
1387 |
+
#: lite/includes/pro-features.php:1170
|
1388 |
+
#: lite/includes/pro-features.php:1217
|
1389 |
#: pro/classes/class-es-pro-reports-data.php:170
|
1390 |
#: pro/classes/class-es-pro-reports-data.php:270
|
1391 |
msgid "Sent"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: lite/includes/class-es-common.php:1820
|
1395 |
+
#: lite/includes/classes/class-es-campaigns-table.php:676
|
1396 |
#: lite/includes/classes/class-es-contacts-table.php:1145
|
1397 |
msgid "All Statuses"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: lite/includes/class-es-common.php:2032
|
1401 |
msgid "Upgrade"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: lite/includes/class-es-common.php:2068
|
1405 |
#: lite/includes/classes/class-es-reports-table.php:592
|
1406 |
#: pro/classes/class-es-pro-reports-data.php:878
|
1407 |
msgid "All Status"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: lite/includes/class-es-common.php:2228
|
1411 |
#: lite/includes/classes/class-es-campaign-report.php:229
|
1412 |
#: lite/includes/classes/class-es-reports-table.php:589
|
1413 |
#: pro/classes/class-es-pro-reports-data.php:178
|
1415 |
msgid "In Queue"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: lite/includes/class-es-common.php:2273
|
1419 |
msgid "Select field type"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: lite/includes/class-es-common.php:2276
|
1423 |
msgid "Text"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: lite/includes/class-es-common.php:2277
|
1427 |
msgid "TextArea"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: lite/includes/class-es-common.php:2278
|
1431 |
msgid "Dropdown"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: lite/includes/class-es-common.php:2279
|
1435 |
msgid "Radio"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: lite/includes/class-es-common.php:2280
|
1439 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
1440 |
msgid "Number"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: lite/includes/class-es-common.php:2281
|
1444 |
+
#: lite/includes/pro-features.php:1085
|
1445 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1446 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1447 |
+
#: pro/pro-class-email-subscribers.php:855
|
1448 |
msgid "Date"
|
1449 |
msgstr ""
|
1450 |
|
1479 |
|
1480 |
#: lite/includes/classes/class-es-admin-settings.php:202
|
1481 |
#: lite/includes/classes/class-es-admin-settings.php:205
|
1482 |
+
#: lite/includes/classes/class-es-campaigns-table.php:611
|
1483 |
#: lite/includes/classes/class-es-forms-table.php:414
|
1484 |
#: lite/includes/classes/class-es-forms-table.php:925
|
1485 |
#: lite/includes/classes/class-es-lists-table.php:637
|
1767 |
msgstr ""
|
1768 |
|
1769 |
#: lite/includes/classes/class-es-campaign-report.php:16
|
1770 |
+
#: lite/includes/classes/class-es-campaigns-table.php:428
|
1771 |
+
#: lite/includes/classes/class-es-campaigns-table.php:432
|
1772 |
+
#: lite/includes/classes/class-es-campaigns-table.php:463
|
1773 |
#: lite/includes/classes/class-es-reports-table.php:16
|
1774 |
+
#: lite/includes/pro-features.php:1162
|
1775 |
#: pro/classes/class-es-pro-reports-data.php:154
|
1776 |
#: pro/classes/class-es-pro-sequence-report.php:20
|
1777 |
msgid "Report"
|
1798 |
|
1799 |
#: lite/includes/classes/class-es-campaign-report.php:245
|
1800 |
#: lite/includes/classes/class-es-contacts-table.php:351
|
1801 |
+
#: lite/includes/pro-features.php:1201
|
1802 |
#: pro/classes/class-es-pro-reports-data.php:247
|
1803 |
#: pro/classes/class-es-pro-reports-data.php:875
|
1804 |
msgid "Opened"
|
1813 |
msgid "Campaign"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: lite/includes/classes/class-es-campaigns-table.php:77
|
1817 |
msgid "Number of campaigns per page"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: lite/includes/classes/class-es-campaigns-table.php:102
|
1821 |
msgid "Broadcast created successfully."
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: lite/includes/classes/class-es-campaigns-table.php:113
|
1825 |
msgid "Create Post Notification"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: lite/includes/classes/class-es-campaigns-table.php:115
|
1829 |
msgid "Send Broadcast"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: lite/includes/classes/class-es-campaigns-table.php:126
|
1833 |
+
#: lite/includes/classes/class-es-campaigns-table.php:128
|
1834 |
msgid "Onsite Campaigns"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: lite/includes/classes/class-es-campaigns-table.php:134
|
1838 |
#: lite/includes/classes/class-es-post-notifications.php:308
|
1839 |
msgid "Manage Templates"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: lite/includes/classes/class-es-campaigns-table.php:135
|
1843 |
+
msgid "Try New Editor"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: lite/includes/classes/class-es-campaigns-table.php:172
|
1847 |
msgid "Notification Added Successfully!"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: lite/includes/classes/class-es-campaigns-table.php:278
|
1851 |
msgid "No Campaigns Found."
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: lite/includes/classes/class-es-campaigns-table.php:293
|
1855 |
msgid "In Active"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: lite/includes/classes/class-es-campaigns-table.php:296
|
1859 |
msgid "Queued"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: lite/includes/classes/class-es-campaigns-table.php:297
|
1863 |
+
#: lite/includes/classes/class-es-campaigns-table.php:582
|
1864 |
#: lite/includes/classes/class-es-reports-table.php:208
|
1865 |
msgid "Paused"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: lite/includes/classes/class-es-campaigns-table.php:298
|
1869 |
msgid "Finished"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: lite/includes/classes/class-es-campaigns-table.php:354
|
1873 |
msgid "All"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: lite/includes/classes/class-es-campaigns-table.php:356
|
1877 |
#: starter/starter-class-email-subscribers.php:392
|
1878 |
msgid "None"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: lite/includes/classes/class-es-campaigns-table.php:419
|
1882 |
+
#: lite/includes/classes/class-es-campaigns-table.php:421
|
1883 |
+
#: lite/includes/classes/class-es-campaigns-table.php:449
|
1884 |
#: lite/includes/classes/class-es-contacts-table.php:1038
|
1885 |
#: lite/includes/classes/class-es-forms-table.php:908
|
1886 |
#: lite/includes/classes/class-es-lists-table.php:616
|
1890 |
msgid "Edit"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: lite/includes/classes/class-es-campaigns-table.php:473
|
1894 |
#: lite/includes/classes/class-es-contacts-table.php:1040
|
1895 |
#: lite/includes/classes/class-es-contacts-table.php:1111
|
1896 |
#: lite/includes/classes/class-es-forms-table.php:910
|
1907 |
msgid "Delete"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: lite/includes/classes/class-es-campaigns-table.php:612
|
1911 |
#: lite/includes/classes/class-es-reports-table.php:280
|
1912 |
#: pro/classes/class-es-pro-custom-fields-table.php:393
|
1913 |
#: pro/classes/class-es-pro-custom-fields-table.php:458
|
1915 |
msgid "Type"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: lite/includes/classes/class-es-campaigns-table.php:613
|
1919 |
#: lite/includes/classes/class-es-contacts-table.php:841
|
1920 |
#: lite/includes/classes/class-es-contacts-table.php:1077
|
1921 |
msgid "List(s)"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: lite/includes/classes/class-es-campaigns-table.php:614
|
1925 |
msgid "Categories"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: lite/includes/classes/class-es-campaigns-table.php:615
|
1929 |
#: lite/includes/classes/class-es-contacts-table.php:1078
|
1930 |
#: lite/includes/classes/class-es-forms-table.php:928
|
1931 |
msgid "Created"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: lite/includes/classes/class-es-campaigns-table.php:668
|
1935 |
msgid "Search Campaigns"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: lite/includes/classes/class-es-campaigns-table.php:685
|
1939 |
#: lite/includes/classes/class-es-reports-table.php:601
|
1940 |
msgid "All Type"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: lite/includes/classes/class-es-campaigns-table.php:733
|
1944 |
msgid "You are not allowed to delete campaign."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: lite/includes/classes/class-es-campaigns-table.php:738
|
1948 |
msgid "Campaign deleted successfully!"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: lite/includes/classes/class-es-campaigns-table.php:759
|
1952 |
msgid "Campaign(s) deleted successfully!"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: lite/includes/classes/class-es-campaigns-table.php:763
|
1956 |
msgid "Please select campaign(s) to delete."
|
1957 |
msgstr ""
|
1958 |
|
2067 |
msgstr ""
|
2068 |
|
2069 |
#: lite/includes/classes/class-es-contacts-table.php:801
|
2070 |
+
#: lite/includes/pro-features.php:995
|
2071 |
+
#: pro/pro-class-email-subscribers.php:924
|
2072 |
msgid "Enter email"
|
2073 |
msgstr ""
|
2074 |
|
2240 |
msgid "Cron lock enabled. Please try after sometime."
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: lite/includes/classes/class-es-drag-and-drop-editor.php:23
|
2244 |
+
msgid "How to use this?"
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: lite/includes/classes/class-es-drag-and-drop-editor.php:26
|
2248 |
+
msgid "Create the content by dragging elements displayed on the right. After you are done click on \"Export HTML\" "
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: lite/includes/classes/class-es-drag-and-drop-editor.php:27
|
2252 |
+
msgid " to get your html content. Use it while sending campaigns."
|
2253 |
+
msgstr ""
|
2254 |
+
|
2255 |
#: lite/includes/classes/class-es-export-subscribers.php:48
|
2256 |
msgid "No data available"
|
2257 |
msgstr ""
|
2291 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2292 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2293 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2294 |
+
#: pro/pro-class-email-subscribers.php:2230
|
2295 |
msgid "First Name"
|
2296 |
msgstr ""
|
2297 |
|
2300 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2301 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2302 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2303 |
+
#: pro/pro-class-email-subscribers.php:2231
|
2304 |
msgid "Last Name"
|
2305 |
msgstr ""
|
2306 |
|
2975 |
msgstr ""
|
2976 |
|
2977 |
#: lite/includes/classes/class-es-newsletters.php:301
|
2978 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:321
|
2979 |
#: lite/includes/workflows/admin/views/meta-box-save.php:68
|
2980 |
msgid "Save"
|
2981 |
msgstr ""
|
3012 |
msgid "Message"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: lite/includes/classes/class-es-newsletters.php:392
|
3016 |
msgid "Design template"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: lite/includes/classes/class-es-newsletters.php:408
|
3020 |
msgid "Total recipients:"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: lite/includes/classes/class-es-newsletters.php:418
|
3024 |
+
#: lite/includes/classes/class-es-newsletters.php:446
|
3025 |
#: lite/includes/classes/class-es-reports-table.php:263
|
3026 |
#: pro/classes/class-es-pro-sequence-report.php:273
|
3027 |
msgid "Preview"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: lite/includes/classes/class-es-newsletters.php:421
|
3031 |
msgid "Browser"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: lite/includes/classes/class-es-newsletters.php:432
|
3035 |
#: lite/includes/classes/class-es-reports-table.php:552
|
3036 |
#: lite/includes/classes/class-es-templates-table.php:148
|
3037 |
msgid "There could be a slight variation on how your customer will view the email content."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: lite/includes/classes/class-es-newsletters.php:436
|
3041 |
#: lite/includes/classes/class-es-reports-table.php:556
|
3042 |
#: lite/includes/classes/class-es-templates-table.php:152
|
3043 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
|
3044 |
msgid "Close"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: lite/includes/classes/class-es-newsletters.php:449
|
3048 |
msgid "Email sent successfully "
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: lite/includes/classes/class-es-newsletters.php:450
|
3052 |
msgid "Something went wrong. Please try again later"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: lite/includes/classes/class-es-newsletters.php:467
|
3056 |
msgid "Email Content Preview"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: lite/includes/classes/class-es-newsletters.php:495
|
3060 |
msgid "Open tracking"
|
3061 |
msgstr ""
|
3062 |
|
3274 |
|
3275 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3276 |
#: lite/includes/classes/class-es-templates-table.php:203
|
3277 |
+
#: pro/pro-class-email-subscribers.php:1569
|
3278 |
msgid "Duplicate"
|
3279 |
msgstr ""
|
3280 |
|
3447 |
|
3448 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:183
|
3449 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:210
|
3450 |
+
#: lite/includes/pro-features.php:1062
|
3451 |
msgid "Check"
|
3452 |
msgstr ""
|
3453 |
|
3471 |
msgstr ""
|
3472 |
|
3473 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
|
3474 |
+
#: lite/includes/pro-features.php:1045
|
3475 |
msgid "UTM tracking"
|
3476 |
msgstr ""
|
3477 |
|
3491 |
msgstr ""
|
3492 |
|
3493 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
|
3494 |
+
#: lite/includes/pro-features.php:315
|
3495 |
msgid "Google Analytics UTM tracking"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:347
|
3499 |
+
#: lite/includes/pro-features.php:316
|
3500 |
msgid "Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: lite/includes/pro-features.php:153
|
3504 |
msgid "Customize user roles permissions with "
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: lite/includes/pro-features.php:158
|
3508 |
#: starter/starter-class-email-subscribers.php:644
|
3509 |
msgid "You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below."
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: lite/includes/pro-features.php:162
|
3513 |
#: starter/starter-class-email-subscribers.php:648
|
3514 |
msgid "Roles"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
+
#: lite/includes/pro-features.php:167
|
3518 |
#: starter/starter-class-email-subscribers.php:653
|
3519 |
msgid "Sequences"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: lite/includes/pro-features.php:227
|
3523 |
#: starter/starter-class-email-subscribers.php:618
|
3524 |
msgid "Access Control"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: lite/includes/pro-features.php:255
|
3528 |
+
#: pro/pro-class-email-subscribers.php:971
|
3529 |
msgid "Track clicks"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: lite/includes/pro-features.php:256
|
3533 |
+
#: pro/pro-class-email-subscribers.php:972
|
3534 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3538 |
+
#: lite/includes/pro-features.php:263
|
3539 |
msgid "Track key insight behaviour with PRO"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: lite/includes/pro-features.php:264
|
3543 |
msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
|
3544 |
msgstr ""
|
3545 |
|
3546 |
+
#: lite/includes/pro-features.php:269
|
3547 |
msgid "Allow user to select list(s) while unsubscribing"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: lite/includes/pro-features.php:270
|
3551 |
#: starter/starter-class-email-subscribers.php:530
|
3552 |
msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: lite/includes/pro-features.php:280
|
3556 |
#: starter/starter-class-email-subscribers.php:502
|
3557 |
msgid "Nudge people to subscribe while leaving a comment or placing an order?"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: lite/includes/pro-features.php:281
|
3561 |
#: starter/starter-class-email-subscribers.php:503
|
3562 |
msgid "Adds a checkbox to subscribe when people post a comment or checkout (if you’re using WooCommerce)."
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: lite/includes/pro-features.php:286
|
3566 |
#: starter/starter-class-email-subscribers.php:508
|
3567 |
msgid "(toggle to enable this)"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: lite/includes/pro-features.php:294
|
3571 |
#: starter/starter-class-email-subscribers.php:515
|
3572 |
msgid "Opt-in consent message text"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: lite/includes/pro-features.php:296
|
3576 |
msgid "Subscribe to our email updates as well."
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: lite/includes/pro-features.php:298
|
3580 |
#: starter/starter-class-email-subscribers.php:519
|
3581 |
msgid "Opt-in consent text"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: lite/includes/pro-features.php:325
|
3585 |
+
#: pro/pro-class-email-subscribers.php:995
|
3586 |
+
msgid "Weekly summary"
|
3587 |
+
msgstr ""
|
3588 |
+
|
3589 |
+
#: lite/includes/pro-features.php:326
|
3590 |
+
msgid "Would you like to receive an automated weekly summary?"
|
3591 |
+
msgstr ""
|
3592 |
+
|
3593 |
+
#: lite/includes/pro-features.php:354
|
3594 |
#: starter/starter-class-email-subscribers.php:465
|
3595 |
msgid "Block known attackers"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: lite/includes/pro-features.php:355
|
3599 |
#: starter/starter-class-email-subscribers.php:466
|
3600 |
msgid "Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3604 |
+
#: lite/includes/pro-features.php:362
|
3605 |
msgid "Prevent spam attacks with PRO"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: lite/includes/pro-features.php:363
|
3609 |
msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: lite/includes/pro-features.php:368
|
3613 |
#: starter/starter-class-email-subscribers.php:473
|
3614 |
msgid "Block temporary / fake emails"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: lite/includes/pro-features.php:369
|
3618 |
#: starter/starter-class-email-subscribers.php:474
|
3619 |
msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically."
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: lite/includes/pro-features.php:380
|
3623 |
#: starter/starter-class-email-subscribers.php:482
|
3624 |
msgid "Enable Captcha"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: lite/includes/pro-features.php:381
|
3628 |
#: starter/starter-class-email-subscribers.php:483
|
3629 |
msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: lite/includes/pro-features.php:405
|
3633 |
+
#: pro/pro-class-email-subscribers.php:980
|
3634 |
msgid "Track IP address"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: lite/includes/pro-features.php:406
|
3638 |
msgid "Record user's IP address on subscription."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3642 |
+
#: lite/includes/pro-features.php:413
|
3643 |
msgid "Track subscribers IP addresses with PRO"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: lite/includes/pro-features.php:414
|
3647 |
msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: lite/includes/pro-features.php:430
|
3651 |
#: starter/starter-class-es-integrations.php:63
|
3652 |
msgid "Comments"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: lite/includes/pro-features.php:441
|
3656 |
#: starter/starter-class-es-integrations.php:73
|
3657 |
msgid "WooCommerce"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: lite/includes/pro-features.php:451
|
3661 |
#: starter/starter-class-es-integrations.php:91
|
3662 |
msgid "Contact Form 7"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: lite/includes/pro-features.php:461
|
3666 |
#: starter/starter-class-es-integrations.php:100
|
3667 |
msgid "WPForms"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: lite/includes/pro-features.php:471
|
3671 |
#: starter/starter-class-es-integrations.php:109
|
3672 |
msgid "Give"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: lite/includes/pro-features.php:481
|
3676 |
#: starter/starter-class-es-integrations.php:118
|
3677 |
msgid "Ninja Forms"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: lite/includes/pro-features.php:491
|
3681 |
#: starter/starter-class-es-integrations.php:82
|
3682 |
msgid "EDD"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: lite/includes/pro-features.php:518
|
3686 |
msgid "Sync Comment Users"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: lite/includes/pro-features.php:519
|
3690 |
msgid "Quickly add to your mailing list when someone post a comment on your website."
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: lite/includes/pro-features.php:520
|
3694 |
+
#: lite/includes/pro-features.php:556
|
3695 |
+
#: lite/includes/pro-features.php:596
|
3696 |
+
#: lite/includes/pro-features.php:634
|
3697 |
+
#: lite/includes/pro-features.php:672
|
3698 |
+
#: lite/includes/pro-features.php:710
|
3699 |
+
#: lite/includes/pro-features.php:748
|
3700 |
msgid "How to setup?"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: lite/includes/pro-features.php:521
|
3704 |
+
#: lite/includes/pro-features.php:557
|
3705 |
+
#: lite/includes/pro-features.php:597
|
3706 |
+
#: lite/includes/pro-features.php:635
|
3707 |
+
#: lite/includes/pro-features.php:673
|
3708 |
+
#: lite/includes/pro-features.php:711
|
3709 |
+
#: lite/includes/pro-features.php:749
|
3710 |
msgid "Once you upgrade to "
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: lite/includes/pro-features.php:521
|
3714 |
+
#: lite/includes/pro-features.php:531
|
3715 |
+
#: lite/includes/pro-features.php:557
|
3716 |
+
#: lite/includes/pro-features.php:568
|
3717 |
+
#: lite/includes/pro-features.php:599
|
3718 |
+
#: lite/includes/pro-features.php:637
|
3719 |
+
#: lite/includes/pro-features.php:675
|
3720 |
+
#: lite/includes/pro-features.php:682
|
3721 |
+
#: lite/includes/pro-features.php:713
|
3722 |
+
#: lite/includes/pro-features.php:751
|
3723 |
msgid "Email Subscribers Starter"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: lite/includes/pro-features.php:523
|
3727 |
msgid ""
|
3728 |
+
"you will have settings panel where you need to enable Comment user sync and select the list in which you want to add people whenever someone post a\n"
|
3729 |
"\t\tcomment."
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: lite/includes/pro-features.php:531
|
3733 |
+
#: lite/includes/pro-features.php:568
|
3734 |
+
#: lite/includes/pro-features.php:606
|
3735 |
+
#: lite/includes/pro-features.php:644
|
3736 |
+
#: lite/includes/pro-features.php:682
|
3737 |
+
#: lite/includes/pro-features.php:720
|
3738 |
+
#: lite/includes/pro-features.php:758
|
3739 |
msgid "Checkout "
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: lite/includes/pro-features.php:531
|
3743 |
msgid "now"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: lite/includes/pro-features.php:554
|
3747 |
msgid "Sync WooCommerce Customers"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: lite/includes/pro-features.php:555
|
3751 |
msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: lite/includes/pro-features.php:559
|
3755 |
msgid ""
|
3756 |
+
"you will have settings panel where you need to enable WooCommerce sync and select the list in which you want to add people whenever they\n"
|
3757 |
+
"\t\t\tpurchase something\n"
|
3758 |
"\t\t\tfrom you."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: lite/includes/pro-features.php:568
|
3762 |
+
#: lite/includes/pro-features.php:682
|
3763 |
msgid " Now"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: lite/includes/pro-features.php:594
|
3767 |
msgid "Sync Contact Form 7 users"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: lite/includes/pro-features.php:595
|
3771 |
msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: lite/includes/pro-features.php:604
|
3775 |
msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: lite/includes/pro-features.php:632
|
3779 |
+
#: lite/includes/pro-features.php:670
|
3780 |
msgid "Sync Donors"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: lite/includes/pro-features.php:633
|
3784 |
msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: lite/includes/pro-features.php:642
|
3788 |
msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: lite/includes/pro-features.php:671
|
3792 |
msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: lite/includes/pro-features.php:680
|
3796 |
+
#: lite/includes/pro-features.php:718
|
3797 |
msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: lite/includes/pro-features.php:708
|
3801 |
msgid "Sync Contacts"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: lite/includes/pro-features.php:709
|
3805 |
msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: lite/includes/pro-features.php:746
|
3809 |
msgid "Sync Customers"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: lite/includes/pro-features.php:747
|
3813 |
msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: lite/includes/pro-features.php:756
|
3817 |
msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: lite/includes/pro-features.php:778
|
3821 |
msgid "ES PRO Integrations"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: lite/includes/pro-features.php:821
|
3825 |
msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: lite/includes/pro-features.php:823
|
3829 |
msgid "Unlock plugin integrations with PRO"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: lite/includes/pro-features.php:864
|
3833 |
msgid "Protect your subscription list now with PRO"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
#. translators: 1. Bold tag 2. Bold close tag
|
3837 |
+
#: lite/includes/pro-features.php:867
|
3838 |
msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: lite/includes/pro-features.php:880
|
3842 |
#: starter/starter-class-email-subscribers.php:1231
|
3843 |
msgid "Show a captcha to protect from bot signups."
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: lite/includes/pro-features.php:914
|
3847 |
msgid "Enable multiple lists & post digest with PRO"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: lite/includes/pro-features.php:920
|
3851 |
msgid "Want to send notification emails to more than one list? You can select multiple list with"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: lite/includes/pro-features.php:920
|
3855 |
msgid "Email Subscribers PRO."
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: lite/includes/pro-features.php:927
|
3859 |
msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: lite/includes/pro-features.php:936
|
3863 |
#: pro/pro-class-post-digest.php:65
|
3864 |
msgid "Is a post digest?"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
#: lite/includes/pro-features.php:939
|
3868 |
#: pro/pro-class-post-digest.php:68
|
3869 |
msgid "Schedule one notification email for multiple posts"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: lite/includes/pro-features.php:956
|
3873 |
#: pro/pro-class-post-digest.php:106
|
3874 |
msgid "Schedules at"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: lite/includes/pro-features.php:958
|
3878 |
#: pro/pro-class-post-digest.php:107
|
3879 |
msgid "When to send?"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: lite/includes/pro-features.php:965
|
3883 |
msgid "Once a day at"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: lite/includes/pro-features.php:1014
|
3887 |
msgid "Reduce the possibility to land in spam with PRO"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: lite/includes/pro-features.php:1022
|
3891 |
+
#: pro/pro-class-email-subscribers.php:790
|
3892 |
msgid "Link tracking"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: lite/includes/pro-features.php:1060
|
3896 |
msgid "Get spam score"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
+
#: lite/includes/pro-features.php:1075
|
3900 |
+
#: pro/pro-class-email-subscribers.php:836
|
3901 |
msgid "Send options"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: lite/includes/pro-features.php:1078
|
3905 |
+
#: pro/pro-class-email-subscribers.php:841
|
3906 |
msgid "Schedule for later"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: lite/includes/pro-features.php:1094
|
3910 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
3911 |
+
#: pro/pro-class-email-subscribers.php:869
|
3912 |
msgid "Time"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: lite/includes/pro-features.php:1104
|
3916 |
+
#: pro/pro-class-email-subscribers.php:884
|
3917 |
msgid "Local Time: "
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: lite/includes/pro-features.php:1146
|
3921 |
msgid "Get campaign analytics with PRO"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
#. translators: 1. Bold tag 2. Bold close tag
|
3925 |
+
#: lite/includes/pro-features.php:1149
|
3926 |
msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: lite/includes/pro-features.php:1176
|
3930 |
#: pro/classes/class-es-pro-reports-data.php:203
|
3931 |
msgid "Type: "
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: lite/includes/pro-features.php:1179
|
3935 |
#: pro/classes/class-es-pro-reports-data.php:206
|
3936 |
msgid "From: "
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: lite/includes/pro-features.php:1182
|
3940 |
msgid "List(s): "
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: lite/includes/pro-features.php:1183
|
3944 |
msgid "Test, Main "
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: lite/includes/pro-features.php:1185
|
3948 |
#: pro/classes/class-es-pro-reports-data.php:224
|
3949 |
msgid "Date: "
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: lite/includes/pro-features.php:1186
|
3953 |
msgid "July 1, 2020 10:00 AM"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: lite/includes/pro-features.php:1193
|
3957 |
#: pro/classes/class-es-pro-reports-data.php:233
|
3958 |
msgid "Statistics"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: lite/includes/pro-features.php:1235
|
3962 |
msgid "Open and click activity"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: lite/includes/pro-features.php:1244
|
3966 |
msgid "Country Opens"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: lite/includes/pro-features.php:1247
|
3970 |
msgid "Mail Client Info"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: lite/includes/pro-features.php:1324
|
3974 |
+
#: lite/includes/pro-features.php:1538
|
3975 |
#: pro/classes/class-es-pro-reports-data.php:441
|
3976 |
#: pro/classes/class-es-pro-reports-data.php:922
|
3977 |
msgid "Mail Client"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: lite/includes/pro-features.php:1353
|
3981 |
msgid "Device Info"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: lite/includes/pro-features.php:1358
|
3985 |
msgid "Browser Info"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: lite/includes/pro-features.php:1363
|
3989 |
msgid "OS Info"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: lite/includes/pro-features.php:1382
|
3993 |
msgid "Link Activity"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: lite/includes/pro-features.php:1389
|
3997 |
#: pro/classes/class-es-pro-reports-data.php:546
|
3998 |
msgid "Link (URL)"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: lite/includes/pro-features.php:1391
|
4002 |
#: pro/classes/class-es-pro-reports-data.php:548
|
4003 |
msgid "Unique Clicks"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: lite/includes/pro-features.php:1393
|
4007 |
#: pro/classes/class-es-pro-reports-data.php:550
|
4008 |
msgid "Total Clicks"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: lite/includes/pro-features.php:1527
|
4012 |
msgid "Last 10 Open Activity"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: lite/includes/pro-features.php:1537
|
4016 |
#: pro/classes/class-es-pro-reports-data.php:921
|
4017 |
msgid "Device"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: lite/includes/pro-features.php:1539
|
4021 |
#: pro/classes/class-es-pro-reports-data.php:923
|
4022 |
msgid "OS"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: lite/includes/pro-features.php:1566
|
4026 |
#: pro/classes/class-es-pro-reports-data.php:945
|
4027 |
msgid "Desktop"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: lite/includes/pro-features.php:1575
|
4031 |
#: pro/classes/class-es-pro-reports-data.php:953
|
4032 |
msgid "Tablet"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: lite/includes/pro-features.php:1584
|
4036 |
#: pro/classes/class-es-pro-reports-data.php:961
|
4037 |
msgid "Mobile"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: lite/includes/pro-features.php:1643
|
4041 |
+
#: pro/pro-class-email-subscribers.php:1783
|
4042 |
msgid "Add Attachments"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: lite/includes/pro-features.php:1673
|
4046 |
+
#: pro/pro-class-email-subscribers.php:1902
|
4047 |
msgid "Import existing WordPress users"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: lite/includes/pro-features.php:1698
|
4051 |
msgid "Import from"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: lite/includes/pro-features.php:1699
|
4055 |
msgid "WooCommerce orders"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: lite/includes/pro-features.php:1726
|
4059 |
msgid "is not in List [PRO]"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: lite/includes/pro-features.php:1732
|
4063 |
msgid "Email [PRO]"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: lite/includes/pro-features.php:1736
|
4067 |
msgid "Country [PRO]"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: lite/includes/pro-features.php:1740
|
4071 |
+
msgid "Engagement score [PRO]"
|
4072 |
+
msgstr ""
|
4073 |
+
|
4074 |
+
#: lite/includes/pro-features.php:1744
|
4075 |
+
msgid "Bounce status [PRO]"
|
4076 |
+
msgstr ""
|
4077 |
+
|
4078 |
+
#: lite/includes/pro-features.php:1750
|
4079 |
msgid "has received [PRO]"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: lite/includes/pro-features.php:1754
|
4083 |
msgid "has not received [PRO]"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: lite/includes/pro-features.php:1758
|
4087 |
msgid "has received and opened [PRO]"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: lite/includes/pro-features.php:1762
|
4091 |
msgid "has received but not opened [PRO]"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: lite/includes/pro-features.php:1766
|
4095 |
msgid "has received and clicked [PRO]"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: lite/includes/pro-features.php:1770
|
4099 |
msgid "has received and not clicked [PRO]"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: lite/includes/pro-features.php:1791
|
4103 |
msgid "Send Broadcast to specific audience with PRO"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: lite/includes/pro-features.php:1793
|
4107 |
msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: lite/includes/pro-features.php:1808
|
4111 |
msgid "Send confirmation email [PRO]"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: lite/includes/pro-features.php:1824
|
4115 |
+
#: pro/classes/class-es-pro-custom-fields.php:64
|
4116 |
+
msgid "Manage Custom Fields"
|
4117 |
+
msgstr ""
|
4118 |
+
|
4119 |
+
#: lite/includes/pro-features.php:1843
|
4120 |
+
msgid "Want to add more form fields?"
|
4121 |
+
msgstr ""
|
4122 |
+
|
4123 |
#: lite/includes/services/class-es-email-delivery-check.php:46
|
4124 |
msgid " The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients."
|
4125 |
msgstr ""
|
4177 |
msgid "Variable not found."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:249
|
4181 |
msgid " Add New Workflow"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:251
|
4185 |
msgid " Edit Workflow"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:288
|
4189 |
msgid "Add title"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:319
|
4193 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:68
|
4194 |
msgid "Trigger"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:320
|
4198 |
msgid "Actions"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:322
|
4202 |
msgid "Placeholders"
|
4203 |
msgstr ""
|
4204 |
|
4273 |
msgstr ""
|
4274 |
|
4275 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:22
|
4276 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:387
|
4277 |
#: starter/workflows/triggers/class-es-trigger-comment-added.php:23
|
4278 |
msgid "Comment Added"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:25
|
4282 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:399
|
4283 |
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
|
4284 |
msgid "Contact Form 7 Submitted"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:26
|
4288 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:407
|
4289 |
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
|
4290 |
msgid "WP Form Submitted"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:27
|
4294 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:403
|
4295 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
|
4296 |
msgid "Ninja Form Submitted"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:28
|
4300 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:415
|
4301 |
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
|
4302 |
msgid "Gravity Form Submitted"
|
4303 |
msgstr ""
|
4308 |
msgstr ""
|
4309 |
|
4310 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:32
|
4311 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:391
|
4312 |
#: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
|
4313 |
msgid "WooCommerce Order Completed"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:33
|
4317 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:395
|
4318 |
msgid "EDD Purchase Completed"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
#: lite/includes/workflows/admin/views/meta-box-trigger.php:34
|
4322 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:411
|
4323 |
msgid "Give Donation Added"
|
4324 |
msgstr ""
|
4325 |
|
4476 |
msgid "You are not allowed to delete workflow."
|
4477 |
msgstr ""
|
4478 |
|
4479 |
+
#: lite/includes/workflows/class-es-workflows-table.php:440
|
4480 |
msgid "Workflow deleted successfully!"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: lite/includes/workflows/class-es-workflows-table.php:457
|
4484 |
msgid "Workflow(s) deleted successfully!"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: lite/includes/workflows/class-es-workflows-table.php:461
|
4488 |
msgid "Please select workflow(s) to delete."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: lite/includes/workflows/class-es-workflows-table.php:475
|
4492 |
msgid "activated"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: lite/includes/workflows/class-es-workflows-table.php:475
|
4496 |
msgid "deactivated"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
#. translators: %s: Workflow action
|
4500 |
+
#: lite/includes/workflows/class-es-workflows-table.php:478
|
4501 |
msgid "Workflow(s) %s successfully!"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: lite/includes/workflows/class-es-workflows-table.php:483
|
4505 |
msgid "activate"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: lite/includes/workflows/class-es-workflows-table.php:483
|
4509 |
msgid "deactivate"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
#. translators: %s: Workflow action
|
4513 |
+
#: lite/includes/workflows/class-es-workflows-table.php:486
|
4514 |
msgid "Please select workflow(s) to %s."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:383
|
4518 |
#: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
|
4519 |
msgid "User Registered"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:435
|
4523 |
msgid "User deleted"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:443
|
4527 |
msgid "User updated"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:581
|
4531 |
msgid "Send welcome email when someone subscribes"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:594
|
4535 |
+
#: pro/pro-class-email-subscribers.php:2565
|
4536 |
msgid "Send confirmation email"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:607
|
4540 |
msgid "Notify admin when someone subscribes"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:620
|
4544 |
msgid "Notify admin when campaign is sent"
|
4545 |
msgstr ""
|
4546 |
|
4618 |
|
4619 |
#: lite/includes/workflows/triggers/class-es-trigger-user-subscribed.php:32
|
4620 |
#: lite/includes/workflows/triggers/class-es-trigger-user-unconfirmed.php:32
|
4621 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-unsubscribed.php:26
|
4622 |
msgid "Subscriber"
|
4623 |
msgstr ""
|
4624 |
|
4630 |
msgid "Fires when someone submit subscriber form."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-unsubscribed.php:24
|
4634 |
+
msgid "User Unsubscribed"
|
4635 |
+
msgstr ""
|
4636 |
+
|
4637 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-unsubscribed.php:25
|
4638 |
+
msgid "Fires when someone unsubscribes."
|
4639 |
+
msgstr ""
|
4640 |
+
|
4641 |
#: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
|
4642 |
msgid "User Updated"
|
4643 |
msgstr ""
|
4693 |
msgstr ""
|
4694 |
|
4695 |
#: lite/public/partials/cron-message.php:43
|
4696 |
+
#: pro/pro-class-email-subscribers.php:895
|
4697 |
msgid "Send Now"
|
4698 |
msgstr ""
|
4699 |
|
4849 |
msgid "No custom fields available."
|
4850 |
msgstr ""
|
4851 |
|
|
|
|
|
|
|
|
|
4852 |
#: pro/classes/class-es-pro-custom-fields.php:240
|
4853 |
#: pro/classes/class-es-pro-custom-fields.php:382
|
4854 |
msgid "Select option"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
#: pro/classes/class-es-pro-reports-data.php:261
|
4862 |
+
#: pro/pro-class-email-subscribers.php:1302
|
4863 |
msgid "Clicked"
|
4864 |
msgstr ""
|
4865 |
|
5149 |
msgstr ""
|
5150 |
|
5151 |
#: pro/pro-class-email-subscribers.php:567
|
5152 |
+
#: pro/pro-class-email-subscribers.php:2112
|
5153 |
msgid "Checking your orders..."
|
5154 |
msgstr ""
|
5155 |
|
5177 |
msgid "week(s)"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#: pro/pro-class-email-subscribers.php:698
|
5181 |
msgid "Clean My List"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
+
#: pro/pro-class-email-subscribers.php:699
|
5185 |
msgid "List cleanup is in progress..."
|
5186 |
msgstr ""
|
5187 |
|
5188 |
+
#: pro/pro-class-email-subscribers.php:700
|
5189 |
msgid "List cleanup completed successfully."
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: pro/pro-class-email-subscribers.php:718
|
5193 |
msgid "Email status"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: pro/pro-class-email-subscribers.php:719
|
5197 |
msgid "Last opened at"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: pro/pro-class-email-subscribers.php:936
|
5201 |
msgid "Select page"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
+
#: pro/pro-class-email-subscribers.php:949
|
5205 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5206 |
msgstr ""
|
5207 |
|
5208 |
+
#: pro/pro-class-email-subscribers.php:962
|
5209 |
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."
|
5210 |
msgstr ""
|
5211 |
|
5212 |
+
#: pro/pro-class-email-subscribers.php:1000
|
|
|
|
|
|
|
|
|
5213 |
msgid "Enable?"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
+
#: pro/pro-class-email-subscribers.php:1007
|
5217 |
msgid "When our automated weekly email should be sent out?"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
+
#: pro/pro-class-email-subscribers.php:1016
|
5221 |
msgid "In which time we need to send our weekly summary?"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: pro/pro-class-email-subscribers.php:1042
|
5225 |
msgid "Access Key ID"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: pro/pro-class-email-subscribers.php:1055
|
5229 |
msgid "Secret Access Key"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: pro/pro-class-email-subscribers.php:1069
|
5233 |
msgid "Closest Region"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: pro/pro-class-email-subscribers.php:1071
|
5237 |
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."
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: pro/pro-class-email-subscribers.php:1098
|
5241 |
msgid "Private API Key"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: pro/pro-class-email-subscribers.php:1112
|
5245 |
msgid "Domain Name"
|
5246 |
msgstr ""
|
5247 |
|
5248 |
+
#: pro/pro-class-email-subscribers.php:1123
|
5249 |
+
#: pro/pro-class-email-subscribers.php:1198
|
5250 |
msgid "United States"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
+
#: pro/pro-class-email-subscribers.php:1124
|
5254 |
+
#: pro/pro-class-email-subscribers.php:1199
|
5255 |
msgid "Europe"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: pro/pro-class-email-subscribers.php:1130
|
5259 |
+
#: pro/pro-class-email-subscribers.php:1205
|
5260 |
msgid "Region"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
+
#: pro/pro-class-email-subscribers.php:1134
|
5264 |
msgid "mailgun.com"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
+
#: pro/pro-class-email-subscribers.php:1160
|
5268 |
+
#: pro/pro-class-email-subscribers.php:1187
|
5269 |
msgid "API Key"
|
5270 |
msgstr ""
|
5271 |
|
5272 |
+
#: pro/pro-class-email-subscribers.php:1207
|
5273 |
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."
|
5274 |
msgstr ""
|
5275 |
|
5276 |
+
#: pro/pro-class-email-subscribers.php:1232
|
5277 |
msgid "API token"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: pro/pro-class-email-subscribers.php:1591
|
5281 |
msgid "You are not allowed to duplicate campaign."
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: pro/pro-class-email-subscribers.php:1606
|
5285 |
msgid "Campaign duplicated !"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: pro/pro-class-email-subscribers.php:1921
|
5289 |
msgid "Import WordPress users with following roles"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: pro/pro-class-email-subscribers.php:1979
|
5293 |
+
#: pro/pro-class-email-subscribers.php:2119
|
5294 |
msgid "Proceed "
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: pro/pro-class-email-subscribers.php:2021
|
5298 |
msgid "Import from WooCommerce orders"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: pro/pro-class-email-subscribers.php:2046
|
5302 |
msgid "Select order statuses"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#: pro/pro-class-email-subscribers.php:2100
|
5306 |
msgid "Orders should contain these products"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
+
#: pro/pro-class-email-subscribers.php:2106
|
5310 |
msgid "Search products..."
|
5311 |
msgstr ""
|
5312 |
|
5313 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5314 |
+
#: pro/pro-class-email-subscribers.php:2338
|
5315 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: pro/pro-class-email-subscribers.php:2349
|
5319 |
msgid "We can't find any matching orders in your store."
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: pro/pro-class-email-subscribers.php:2362
|
5323 |
msgid "Total Opened"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: pro/pro-class-email-subscribers.php:2415
|
5327 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: pro/pro-class-email-subscribers.php:2447
|
5331 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: pro/pro-class-email-subscribers.php:2479
|
5335 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: pro/pro-class-email-subscribers.php:2511
|
5339 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: pro/pro-class-email-subscribers.php:2543
|
5343 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: pro/pro-class-email-subscribers.php:2580
|
5347 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: pro/pro-class-email-subscribers.php:2588
|
5351 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: pro/pro-class-email-subscribers.php:2591
|
5355 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5356 |
msgstr ""
|
5357 |
|
5606 |
|
5607 |
#: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
|
5608 |
msgid ""
|
5609 |
+
"This trigger doesn't fire instantly when a product goes on sale. Instead, it performs a check for new on-sale products in every 15 minutes. \n"
|
5610 |
"\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
|
5611 |
msgstr ""
|
5612 |
|
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.2
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 5.0.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,12 +310,20 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
-
= 5.0.
|
314 |
|
315 |
-
*
|
|
|
|
|
316 |
|
317 |
== Changelog ==
|
318 |
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
**5.0.7 (31.12.2021)**
|
320 |
|
321 |
* Fix: Adding sequence is not working
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.8.2
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 5.0.8
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 5.0.8 =
|
314 |
|
315 |
+
* New: Option to add attachments to workflow emails [PRO]
|
316 |
+
* Fix: {{UNSUBSCRIBE-LINK}} not working in welcome emails in few cases
|
317 |
+
* Fix: PHP warning undefined index 'ig-es-tracking-campaign-id' during onboarding/update
|
318 |
|
319 |
== Changelog ==
|
320 |
|
321 |
+
**5.0.8 (06.01.2022)**
|
322 |
+
|
323 |
+
* New: Option to add attachments to workflow emails [PRO]
|
324 |
+
* Fix: {{UNSUBSCRIBE-LINK}} not working in welcome emails in few cases
|
325 |
+
* Fix: PHP warning undefined index 'ig-es-tracking-campaign-id' during onboarding/update
|
326 |
+
|
327 |
**5.0.7 (31.12.2021)**
|
328 |
|
329 |
* Fix: Adding sequence is not working
|