Email Subscribers & Newsletters - Version 3.5.7

Version Description

(30.08.2018) =

  • Fix: Post notification sent to multiple times.
  • Update: POT file
  • Localization: Made all translation files up-to-date with latest POT file
Download this release

Release Info

Developer Icegram
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 3.5.7
Comparing to
See all releases

Code changes from version 3.5.6 to 3.5.7

changelog.txt CHANGED
@@ -4,6 +4,12 @@ Author : Icegram
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
7
  ***********************************************************Version 3.5.6************************************************************
8
 
9
  * Update: POT file
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ***********************************************************Version 3.5.7************************************************************
8
+
9
+ * Fix: Post notification sent to multiple times.
10
+ * Update: POT file
11
+ * Localization: Made all translation files up-to-date with latest POT file
12
+
13
  ***********************************************************Version 3.5.6************************************************************
14
 
15
  * Update: POT file
classes/es-register.php CHANGED
@@ -711,7 +711,7 @@ class es_cls_registerhook {
711
  public static function es_add_admin_notices() {
712
 
713
  $screen = get_current_screen();
714
- if ( ! in_array( $screen->id, array( 'toplevel_page_es-view-subscribers', 'es_template', 'edit-es_template', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-sendemail', 'email-subscribers_page_es-settings', 'email-subscribers_page_es-sentmail', 'email-subscribers_page_es-general-information' ), true ) ) {
715
  return;
716
  }
717
 
711
  public static function es_add_admin_notices() {
712
 
713
  $screen = get_current_screen();
714
+ if ( ! in_array( $screen->id, array( 'toplevel_page_es-view-subscribers', 'es_template', 'edit-es_template', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-sendemail', 'email-subscribers_page_es-settings', 'email-subscribers_page_es-sentmail' ), true ) ) {
715
  return;
716
  }
717
 
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: 3.5.6
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
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: 3.5.7
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
help/help.php CHANGED
@@ -50,6 +50,7 @@ if ( ! defined( 'ABSPATH' ) ) {
50
  .es-ltr {
51
  width: 20em;
52
  height: 2em;
 
53
  }
54
  .es-about-text {
55
  margin-bottom: 2em;
@@ -176,9 +177,37 @@ if ( ! defined( 'ABSPATH' ) ) {
176
  margin-bottom: 1em;
177
  font-weight: 700;
178
  }
179
- #klawoo_response {
180
- margin-left: -14em;
181
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  </style>
183
 
184
  <?php
@@ -199,19 +228,29 @@ if ( ! defined( 'ABSPATH' ) ) {
199
 
200
  <div class="wrap klawoo-form">
201
  <table class="form-table">
 
202
  <tr>
203
- <th scope="row es-subscribe-text"><?php echo __( 'Stay in touch with us. We send out plugin help, tips, periodic updates and even the occasional discounts.', ES_TDOMAIN ); ?></th>
204
- <td>
 
 
 
 
 
 
 
205
  <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
206
- <input class="es-ltr" type="text" name="email" id="email" placeholder="Your Email" />
 
207
  <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
 
 
 
208
  <input type="submit" name="submit" id="submit" class="button button-hero" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
209
  <br><br>
210
- <input type="checkbox" name="es-gdpr-agree" id ="es-gdpr-agree" value="1" required="required">
211
- <label for="es-gdpr-agree"><?php echo sprintf(__( 'I have read and agreed to your %s.', ES_TDOMAIN ), '<a href="https://www.icegram.com/privacy-policy/" target="_blank">' . __( 'Privacy Policy', ES_TDOMAIN ) . '</a>' ); ?></label>
212
- <br>
213
- <div id="klawoo_response"></div>
214
  </form>
 
215
  </td>
216
  </tr>
217
  </table>
@@ -232,12 +271,15 @@ if ( ! defined( 'ABSPATH' ) ) {
232
  <script type="text/javascript">
233
  jQuery(function () {
234
  jQuery("form[name=klawoo_subscribe]").submit(function (e) {
 
235
  e.preventDefault();
236
-
237
  jQuery('#klawoo_response').html('');
 
 
238
  params = jQuery("form[name=klawoo_subscribe]").serializeArray();
239
  params.push( {name: 'action', value: 'es_klawoo_subscribe' });
240
-
241
  jQuery.ajax({
242
  method: 'POST',
243
  type: 'text',
@@ -247,12 +289,24 @@ if ( ! defined( 'ABSPATH' ) ) {
247
  success: function(response) {
248
 
249
  if (response != '') {
250
- jQuery('#klawoo_response').html(response);
 
 
 
 
 
 
 
 
 
 
 
251
  } else {
252
  jQuery('#klawoo_response').html('error!');
253
  }
254
  }
255
  });
 
256
  });
257
  });
258
  </script>
50
  .es-ltr {
51
  width: 20em;
52
  height: 2em;
53
+ margin-bottom: 10px;
54
  }
55
  .es-about-text {
56
  margin-bottom: 2em;
177
  margin-bottom: 1em;
178
  font-weight: 700;
179
  }
180
+
181
+ .form-table td.es-optin-headline {
182
+ color: red;
183
+ text-align: center;
184
+ font-weight: bold;
185
+ font-size: 24px;
186
+ }
187
+
188
+ .form-table td.es-emm-image {
189
+ padding: 15px 10px;
190
+ width: 25%;
191
+ }
192
+
193
+ .form-table td.es-emm-text{
194
+ padding: 15px 10px;
195
+ width: 50%;
196
+ }
197
+
198
+ .form-table td.es-emm-optin{
199
+ padding: 15px 10px;
200
+ width: 25%;
201
+ }
202
+
203
+ .form-table td.es-emm-optin form[name="klawoo_subscribe"] {
204
+ margin-right: 1px;
205
+ }
206
+
207
+ #klawoo_response {
208
+ background-color: yellow;
209
+ }
210
+
211
  </style>
212
 
213
  <?php
228
 
229
  <div class="wrap klawoo-form">
230
  <table class="form-table">
231
+ <tr><td colspan="3" class="es-optin-headline"><?php echo __( 'Build your list and succeed with email marketing in 5 short weeks', ES_TDOMAIN ); ?></td></tr>
232
  <tr>
233
+ <td class="es-emm-image"><img alt="Email Marketing Mastery" src="<?php echo ES_URL; ?>images/email-marketing-mastery.png" /></td>
234
+ <td class="es-emm-text">
235
+ <?php echo __( 'Do you want to build your list, keep off spam, write emails that people open and click through? Do you want to build your brand and nurture an amazing tribe?', ES_TDOMAIN ); ?> <br /><br />
236
+ <b><?php echo __( 'Enter your name and email on the form on right to get it all.', ES_TDOMAIN ); ?></b> <br /><br />
237
+ <?php echo __( 'First part is about the greatest mistake lot of people make (and you may as well be making). There are 5 steps to succeeding with email marketing and we\'ll cover it all.', ES_TDOMAIN ); ?> <br /><br />
238
+ <?php echo __( 'It\'s time to get to full speed - and you get this training for free. Sign up now.', ES_TDOMAIN ); ?>
239
+ </td>
240
+ <td class="es-emm-optin">
241
+
242
  <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
243
+ <input class="es-ltr" type="text" name="name" id="name" placeholder="Your Name" />
244
+ <input class="es-ltr" type="text" name="email" id="email" placeholder="Your Email" /> <br />
245
  <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
246
+ <input type="checkbox" name="es-gdpr-agree" id ="es-gdpr-agree" value="1" required="required">
247
+ <label for="es-gdpr-agree"><?php echo sprintf(__( 'I have read and agreed to your %s.', ES_TDOMAIN ), '<a href="https://www.icegram.com/privacy-policy/" target="_blank">' . __( 'Privacy Policy', ES_TDOMAIN ) . '</a>' ); ?></label>
248
+ <br /><br />
249
  <input type="submit" name="submit" id="submit" class="button button-hero" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
250
  <br><br>
251
+ <p id="klawoo_response"></p>
 
 
 
252
  </form>
253
+
254
  </td>
255
  </tr>
256
  </table>
271
  <script type="text/javascript">
272
  jQuery(function () {
273
  jQuery("form[name=klawoo_subscribe]").submit(function (e) {
274
+
275
  e.preventDefault();
276
+
277
  jQuery('#klawoo_response').html('');
278
+ jQuery('#klawoo_response').show();
279
+
280
  params = jQuery("form[name=klawoo_subscribe]").serializeArray();
281
  params.push( {name: 'action', value: 'es_klawoo_subscribe' });
282
+
283
  jQuery.ajax({
284
  method: 'POST',
285
  type: 'text',
289
  success: function(response) {
290
 
291
  if (response != '') {
292
+ var parser = new DOMParser()
293
+ var el = parser.parseFromString(response, "text/xml");
294
+
295
+ jQuery('#klawoo_response').html(el.childNodes[0].firstChild.nextElementSibling.innerHTML);
296
+
297
+ jQuery('.es-emm-optin #name').val('');
298
+ jQuery('.es-emm-optin #email').val('');
299
+ jQuery('.es-emm-optin #es-gdpr-agree').attr('checked', false);
300
+ setTimeout(function() {
301
+ jQuery('#klawoo_response').hide('slow');
302
+ }, 2000);
303
+
304
  } else {
305
  jQuery('#klawoo_response').html('error!');
306
  }
307
  }
308
  });
309
+
310
  });
311
  });
312
  </script>
images/email-marketing-mastery.png ADDED
Binary file
languages/email-subscribers.pot CHANGED
@@ -1,2309 +1,44 @@
1
- # Loco Gettext template
2
- #, fuzzy
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
6
- "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
- "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
- "POT-Revision-Date: Mon Aug 06 2018 14:11:14 GMT+0530 (IST)\n"
9
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
- "Last-Translator: \n"
11
- "Language-Team: Icegram <hello@icegram.com>Language:\n"
12
- "Language: \n"
13
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-SearchPath-0: ..\n"
20
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
21
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
22
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
23
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
24
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
25
- "X-Generator: Loco - https://localise.biz/"
26
-
27
- #: ../classes/es-common.php:13
28
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
29
- msgstr ""
30
-
31
- #: ../classes/es-common.php:16
32
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
33
- msgstr ""
34
-
35
- #: ../classes/es-common.php:19
36
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
37
- msgstr ""
38
-
39
- #: ../classes/es-common.php:22
40
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
41
- msgstr ""
42
-
43
- #: ../classes/es-common.php:25
44
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
45
- msgstr ""
46
-
47
- #: ../classes/es-common.php:28
48
- msgid "<span style=\"color:#999900;\">Nodata</span>"
49
- msgstr ""
50
-
51
- #: ../classes/es-common.php:31
52
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
53
- msgstr ""
54
-
55
- #: ../classes/es-common.php:34
56
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
57
- msgstr ""
58
-
59
- #: ../classes/es-common.php:37
60
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
61
- msgstr ""
62
-
63
- #: ../classes/es-common.php:40
64
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
65
- msgstr ""
66
-
67
- #: ../classes/es-common.php:43
68
- msgid "<span style=\"color:#993399;\">Immediately</span>"
69
- msgstr ""
70
-
71
- #: ../classes/es-register.php:101 ../email-subscribers.php:98
72
- msgctxt "timezone date format"
73
- msgid "Y-m-d H:i:s"
74
- msgstr ""
75
-
76
- #: ../classes/es-register.php:186 ../classes/es-register.php:187 ../classes/es-
77
- #: register.php:1146
78
- msgid "Email Subscribers"
79
- msgstr ""
80
-
81
- #: ../classes/es-register.php:189 ../classes/es-register.php:190 ..
82
- #: /subscribers/view-subscriber-show.php:242
83
- msgid "Subscribers"
84
- msgstr ""
85
-
86
- #: ../classes/es-register.php:192 ../classes/es-register.php:193 ../classes/es-
87
- #: register.php:1134 ../classes/es-register.php:1135 ../classes/es-register.php:
88
- #: 1140
89
- msgid "Templates"
90
- msgstr ""
91
-
92
- #: ../classes/es-register.php:195 ../classes/es-register.php:196 ../help/help.php:
93
- #: 376 ../notification/notification-show.php:52
94
- msgid "Post Notifications"
95
- msgstr ""
96
-
97
- #: ../classes/es-register.php:198 ../classes/es-register.php:199 ../help/help.php:
98
- #: 366 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
99
- msgid "Newsletters"
100
- msgstr ""
101
-
102
- #: ../classes/es-register.php:201 ../classes/es-register.php:202 ..
103
- #: /settings/settings-edit.php:42
104
- msgid "Settings"
105
- msgstr ""
106
-
107
- #: ../classes/es-register.php:204 ../classes/es-register.php:205 ..
108
- #: /sentmail/sentmail-show.php:93
109
- msgid "Reports"
110
- msgstr ""
111
-
112
- #: ../classes/es-register.php:207
113
- msgid "Help & Info"
114
- msgstr ""
115
-
116
- #: ../classes/es-register.php:208
117
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
118
- msgstr ""
119
-
120
- #: ../classes/es-register.php:211
121
- msgid "Go Pro"
122
- msgstr ""
123
-
124
- #: ../classes/es-register.php:212
125
- msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
126
- msgstr ""
127
-
128
- #: ../classes/es-register.php:224
129
- msgctxt "view-subscriber-enhanced-select"
130
- msgid "Please enter subscriber email address."
131
- msgstr ""
132
-
133
- #: ../classes/es-register.php:225
134
- msgctxt "view-subscriber-enhanced-select"
135
- msgid "Please select subscriber email status."
136
- msgstr ""
137
-
138
- #: ../classes/es-register.php:226
139
- msgctxt "view-subscriber-enhanced-select"
140
- msgid "Please select or create group for this subscriber."
141
- msgstr ""
142
-
143
- #: ../classes/es-register.php:227
144
- msgctxt "view-subscriber-enhanced-select"
145
- msgid "Do you want to delete this record?"
146
- msgstr ""
147
-
148
- #: ../classes/es-register.php:228
149
- msgctxt "view-subscriber-enhanced-select"
150
- msgid "Please select the bulk action."
151
- msgstr ""
152
-
153
- #: ../classes/es-register.php:229
154
- msgctxt "view-subscriber-enhanced-select"
155
- msgid "Are you sure you want to delete selected records?"
156
- msgstr ""
157
-
158
- #: ../classes/es-register.php:230
159
- msgctxt "view-subscriber-enhanced-select"
160
- msgid ""
161
- "Do you want to resend confirmation email? Also please note, this will update "
162
- "subscriber current status to 'Unconfirmed'."
163
- msgstr ""
164
-
165
- #: ../classes/es-register.php:231
166
- msgctxt "view-subscriber-enhanced-select"
167
- msgid "Please select new subscriber group."
168
- msgstr ""
169
-
170
- #: ../classes/es-register.php:232
171
- msgctxt "view-subscriber-enhanced-select"
172
- msgid "Please select new status for subscribers"
173
- msgstr ""
174
-
175
- #: ../classes/es-register.php:233
176
- msgctxt "view-subscriber-enhanced-select"
177
- msgid "Do you want to update subscribers group?"
178
- msgstr ""
179
-
180
- #: ../classes/es-register.php:234
181
- msgctxt "view-subscriber-enhanced-select"
182
- msgid "Do you want to update subscribers status?"
183
- msgstr ""
184
-
185
- #: ../classes/es-register.php:235
186
- msgctxt "view-subscriber-enhanced-select"
187
- msgid ""
188
- "Please select only csv file. Please check official website for csv structure."
189
- "."
190
- msgstr ""
191
-
192
- #: ../classes/es-register.php:243
193
- msgctxt "notification-enhanced-select"
194
- msgid "Please select subscribers group."
195
- msgstr ""
196
-
197
- #: ../classes/es-register.php:244
198
- msgctxt "notification-enhanced-select"
199
- msgid "Please select notification mail subject. Use templates menu to create new."
200
- msgstr ""
201
-
202
- #: ../classes/es-register.php:245
203
- msgctxt "notification-enhanced-select"
204
- msgid "Please select notification status."
205
- msgstr ""
206
-
207
- #: ../classes/es-register.php:246
208
- msgctxt "notification-enhanced-select"
209
- msgid "Do you want to delete this record?"
210
- msgstr ""
211
-
212
- #: ../classes/es-register.php:254
213
- msgctxt "sendmail-enhanced-select"
214
- msgid "Please select your mail subject."
215
- msgstr ""
216
-
217
- #: ../classes/es-register.php:255
218
- msgctxt "sendmail-enhanced-select"
219
- msgid "Please select your mail type."
220
- msgstr ""
221
-
222
- #: ../classes/es-register.php:256
223
- msgctxt "sendmail-enhanced-select"
224
- msgid ""
225
- "Have you double checked your selected group? If so, let's go ahead and send "
226
- "this."
227
- msgstr ""
228
-
229
- #: ../classes/es-register.php:264
230
- msgctxt "sentmail-enhanced-select"
231
- msgid "Do you want to delete this record?"
232
- msgstr ""
233
-
234
- #: ../classes/es-register.php:265
235
- msgctxt "sentmail-enhanced-select"
236
- msgid "Do you want to delete all records except latest 10?"
237
- msgstr ""
238
-
239
- #: ../classes/es-register.php:273
240
- msgctxt "cron-enhanced-select"
241
- msgid "Please select enter number of mails you want to send per hour/trigger."
242
- msgstr ""
243
-
244
- #: ../classes/es-register.php:274
245
- msgctxt "cron-enhanced-select"
246
- msgid "Please enter the mail count, only number."
247
- msgstr ""
248
-
249
- #: ../classes/es-register.php:287
250
- msgctxt "widget-page-enhanced-select"
251
- msgid "Please enter email address"
252
- msgstr ""
253
-
254
- #: ../classes/es-register.php:288
255
- msgctxt "widget-page-enhanced-select"
256
- msgid "Successfully Subscribed."
257
- msgstr ""
258
-
259
- #: ../classes/es-register.php:289
260
- msgctxt "widget-page-enhanced-select"
261
- msgid ""
262
- "Your subscription was successful! Kindly check your mailbox and confirm your "
263
- "subscription. If you don't see the email within a few minutes, check the "
264
- "spam/junk folder."
265
- msgstr ""
266
-
267
- #: ../classes/es-register.php:290
268
- msgctxt "widget-page-enhanced-select"
269
- msgid "Email Address already exists!"
270
- msgstr ""
271
-
272
- #: ../classes/es-register.php:291
273
- msgctxt "widget-page-enhanced-select"
274
- msgid "Oops.. Unexpected error occurred."
275
- msgstr ""
276
-
277
- #: ../classes/es-register.php:292
278
- msgctxt "widget-page-enhanced-select"
279
- msgid "Invalid email address"
280
- msgstr ""
281
-
282
- #: ../classes/es-register.php:293
283
- msgctxt "widget-page-enhanced-select"
284
- msgid "Please try after some time"
285
- msgstr ""
286
-
287
- #: ../classes/es-register.php:723
288
- msgid ""
289
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
290
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
291
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
292
- "</a> rating. A huge thank you from Icegram in advance!"
293
- msgstr ""
294
-
295
- #: ../classes/es-register.php:724
296
- msgid "No, I don't like it"
297
- msgstr ""
298
-
299
- #: ../classes/es-register.php:730
300
- msgctxt "timezone date format"
301
- msgid "Y-m-d"
302
- msgstr ""
303
-
304
- #: ../classes/es-register.php:931
305
- msgid "What do you hate about list building and email marketing?"
306
- msgstr ""
307
-
308
- #: ../classes/es-register.php:932
309
- msgid "Hey, glad to see you!"
310
- msgstr ""
311
-
312
- #: ../classes/es-register.php:933
313
- msgid ""
314
- "I am on a daring quest to solve your biggest problems around list building "
315
- "and email marketing. "
316
- msgstr ""
317
-
318
- #: ../classes/es-register.php:934
319
- msgid ""
320
- "So tell me, when it comes to list building and email marketing, what's your "
321
- "biggest challenge? What's blocking your progress? "
322
- msgstr ""
323
-
324
- #: ../classes/es-register.php:939
325
- msgid "And what's another big challenge? "
326
- msgstr ""
327
-
328
- #: ../classes/es-register.php:943
329
- msgid "Send my problems..."
330
- msgstr ""
331
-
332
- #: ../classes/es-register.php:944
333
- msgid "No, I don't have problems"
334
- msgstr ""
335
-
336
- #: ../classes/es-register.php:946
337
- msgid "Fill the above field first"
338
- msgstr ""
339
-
340
- #: ../classes/es-register.php:955
341
- msgid "Gosh... I hear you mate... "
342
- msgstr ""
343
-
344
- #: ../classes/es-register.php:956
345
- msgid "You will be the first to know when we solve those problems."
346
- msgstr ""
347
-
348
- #: ../classes/es-register.php:957
349
- msgid "We will inform you on below email"
350
- msgstr ""
351
-
352
- #: ../classes/es-register.php:975
353
- msgid "I got you."
354
- msgstr ""
355
-
356
- #: ../classes/es-register.php:976
357
- msgid "Will do everything I can to help you. "
358
- msgstr ""
359
-
360
- #: ../classes/es-register.php:978 ../classes/es-register.php:986
361
- msgid "Later. "
362
- msgstr ""
363
-
364
- #: ../classes/es-register.php:980 ../classes/es-register.php:988
365
- msgid "Andrea Juliao "
366
- msgstr ""
367
-
368
- #: ../classes/es-register.php:984
369
- msgid "No issues, have a nice day!"
370
- msgstr ""
371
-
372
- #: ../classes/es-register.php:1111
373
- msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
374
- msgstr ""
375
-
376
- #: ../classes/es-register.php:1125
377
- #, php-format
378
- msgid "Email Subscribers version: <strong>%s</strong>"
379
- msgstr ""
380
-
381
- #: ../classes/es-register.php:1136 ../classes/es-register.php:1137
382
- msgid "Add new Template"
383
- msgstr ""
384
-
385
- #: ../classes/es-register.php:1138
386
- msgid "Edit Templates"
387
- msgstr ""
388
-
389
- #: ../classes/es-register.php:1139
390
- msgid "New Templates"
391
- msgstr ""
392
-
393
- #: ../classes/es-register.php:1141
394
- msgid "View Templates"
395
- msgstr ""
396
-
397
- #: ../classes/es-register.php:1142
398
- msgid "Search Templates"
399
- msgstr ""
400
-
401
- #: ../classes/es-register.php:1143
402
- msgid "No Templates found"
403
- msgstr ""
404
-
405
- #: ../classes/es-register.php:1144
406
- msgid "No Templates found in Trash"
407
- msgstr ""
408
-
409
- #: ../classes/es-register.php:1147
410
- msgid "Thumbnail (For Visual Representation only)"
411
- msgstr ""
412
-
413
- #: ../classes/es-register.php:1148
414
- msgid "Set thumbnail"
415
- msgstr ""
416
-
417
- #: ../classes/es-register.php:1185
418
- msgid "Template Type"
419
- msgstr ""
420
-
421
- #: ../classes/es-register.php:1186 ../settings/settings-edit.php:124
422
- msgid "Thumbnail"
423
- msgstr ""
424
-
425
- #: ../classes/es-register.php:1238 ../sentmail/sentmail-show.php:108 ..
426
- #: /sentmail/sentmail-show.php:121
427
- msgid "Preview"
428
- msgstr ""
429
-
430
- #: ../classes/es-register.php:1260
431
- #, php-format
432
- msgid "%s for Post Notification: {{POSTTITLE}}"
433
- msgstr ""
434
-
435
- #: ../classes/es-register.php:1260
436
- msgid "Available Keyword"
437
- msgstr ""
438
-
439
- #: ../classes/es-register.php:1267
440
- msgid "Select your Email Template Type"
441
- msgstr ""
442
-
443
- #: ../classes/es-register.php:1271
444
- msgid "Newsletter"
445
- msgstr ""
446
-
447
- #: ../classes/es-register.php:1274
448
- msgid "Post Notification"
449
- msgstr ""
450
-
451
- #: ../classes/es-register.php:1336
452
- msgid "Preview Template"
453
- msgstr ""
454
-
455
- #: ../classes/es-register.php:1355 ../classes/es-register.php:1371
456
- #, php-format
457
- msgid ""
458
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
459
- "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
460
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
461
- msgstr ""
462
-
463
- #: ../classes/es-register.php:1355 ../classes/es-register.php:1356 ../classes/es-
464
- #: register.php:1371 ../classes/es-register.php:1379
465
- msgid "Available Keywords"
466
- msgstr ""
467
-
468
- #: ../classes/es-register.php:1356
469
- #, php-format
470
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
471
- msgstr ""
472
-
473
- #: ../classes/es-register.php:1379
474
- #, php-format
475
- msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
476
- msgstr ""
477
-
478
- #: ../classes/es-register.php:1414 ../subscribers/view-subscriber-show.php:289
479
- msgid "Name"
480
- msgstr ""
481
-
482
- #: ../classes/es-register.php:1421
483
- msgid "Email *"
484
- msgstr ""
485
-
486
- #: ../classes/es-register.php:1430 ../help/help.php:208
487
- msgid "Subscribe"
488
- msgstr ""
489
-
490
- #: ../classes/es-register.php:1535
491
- msgid "Widget Title"
492
- msgstr ""
493
-
494
- #: ../classes/es-register.php:1539
495
- msgid "Short description about subscription form"
496
- msgstr ""
497
-
498
- #: ../classes/es-register.php:1543
499
- msgid "Display Name Field"
500
- msgstr ""
501
-
502
- #: ../classes/es-register.php:1545 ../settings/settings-edit.php:143 ..
503
- #: /settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
504
- msgid "YES"
505
- msgstr ""
506
-
507
- #: ../classes/es-register.php:1546 ../settings/settings-edit.php:144 ..
508
- #: /settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
509
- msgid "NO"
510
- msgstr ""
511
-
512
- #: ../classes/es-register.php:1550
513
- msgid "Subscriber Group"
514
- msgstr ""
515
-
516
- #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
517
- msgid "Unexpected url submit has been detected!"
518
- msgstr ""
519
-
520
- #: ../help/help.php:191
521
- msgid "Welcome to the Email Subscribers Community!"
522
- msgstr ""
523
-
524
- #: ../help/help.php:192
525
- msgid "We hope our plugin adds to your success 🏆"
526
- msgstr ""
527
-
528
- #: ../help/help.php:193
529
- msgid "To get started, we did some initial setup to save your time 😊"
530
- msgstr ""
531
-
532
- #: ../help/help.php:195
533
- msgid ""
534
- "1. Created a lead collecting form and added it the default widget area in "
535
- "your WP admin"
536
- msgstr ""
537
-
538
- #: ../help/help.php:196
539
- msgid "2. Created a \"Test\" subscriber group and added \""
540
- msgstr ""
541
-
542
- #: ../help/help.php:196
543
- msgid "\" to it."
544
- msgstr ""
545
-
546
- #: ../help/help.php:197
547
- msgid ""
548
- "3. Sent a test post notification, test newsletter to the test subscriber "
549
- "group."
550
- msgstr ""
551
-
552
- #: ../help/help.php:203
553
- msgid ""
554
- "Stay in touch with us. We send out plugin help, tips, periodic updates and "
555
- "even the occasional discounts."
556
- msgstr ""
557
-
558
- #: ../help/help.php:211
559
- #, php-format
560
- msgid "I have read and agreed to your %s."
561
- msgstr ""
562
-
563
- #: ../help/help.php:211
564
- msgid "Privacy Policy"
565
- msgstr ""
566
-
567
- #: ../help/help.php:220
568
- #, php-format
569
- msgid "Version: %s"
570
- msgstr ""
571
-
572
- #: ../help/help.php:223
573
- msgid "Questions? Need Help?"
574
- msgstr ""
575
-
576
- #: ../help/help.php:224
577
- msgid "Contact Us"
578
- msgstr ""
579
-
580
- #: ../help/help.php:229
581
- #, php-format
582
- msgid ""
583
- "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
584
- "developments."
585
- msgstr ""
586
-
587
- #: ../help/help.php:229
588
- msgid "donating to us"
589
- msgstr ""
590
-
591
- #: ../help/help.php:264
592
- msgid "Description"
593
- msgstr ""
594
-
595
- #: ../help/help.php:266
596
- msgid ""
597
- "Email Subscribers is a complete newsletter plugin which lets you collect "
598
- "leads, send automated new blog post notification emails, create & send "
599
- "newsletters and manage all this in one single place."
600
- msgstr ""
601
-
602
- #: ../help/help.php:268
603
- msgid "Feature Overview"
604
- msgstr ""
605
-
606
- #: ../help/help.php:271
607
- msgid ""
608
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
609
- "Code)."
610
- msgstr ""
611
-
612
- #: ../help/help.php:274
613
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
614
- msgstr ""
615
-
616
- #: ../help/help.php:277
617
- msgid "Send automatic welcome email to subscribers."
618
- msgstr ""
619
-
620
- #: ../help/help.php:280
621
- msgid ""
622
- "Send new post notification emails to subscribers when new posts are "
623
- "published on your website."
624
- msgstr ""
625
-
626
- #: ../help/help.php:283
627
- msgid "Schedule email (Cron job) or send them manually."
628
- msgstr ""
629
-
630
- #: ../help/help.php:286
631
- msgid "Send email notification to admin when a new user signs up."
632
- msgstr ""
633
-
634
- #: ../help/help.php:289
635
- msgid "Automatically add Unsubscribe link in the email."
636
- msgstr ""
637
-
638
- #: ../help/help.php:292
639
- msgid "Easily migrate subscribers from another app using Import & Export."
640
- msgstr ""
641
-
642
- #: ../help/help.php:295
643
- msgid "Use HTML editor to create newsletters and post notifications."
644
- msgstr ""
645
-
646
- #: ../help/help.php:298
647
- msgid "Send newsletters to different groups."
648
- msgstr ""
649
-
650
- #: ../help/help.php:301
651
- msgid "Get detailed sent email reports."
652
- msgstr ""
653
-
654
- #: ../help/help.php:304
655
- msgid "Control user access (User Roles and Capabilities)."
656
- msgstr ""
657
-
658
- #: ../help/help.php:307
659
- msgid "Supports localization and internationalization."
660
- msgstr ""
661
-
662
- #: ../help/help.php:314
663
- msgid "Add Subscribe form"
664
- msgstr ""
665
-
666
- #: ../help/help.php:316 ../help/help.php:327 ../help/help.php:330 ../help/help.
667
- #: php:342 ../help/help.php:345 ../help/help.php:348 ../help/help.php:351 ..
668
- #: /help/help.php:354 ../help/help.php:357 ../help/help.php:369 ../help/help.php:
669
- #: 372 ../help/help.php:379 ../help/help.php:382 ../help/help.php:385 ..
670
- #: /help/help.php:393 ../help/help.php:396 ../help/help.php:399 ../help/help.php:
671
- #: 402 ../help/help.php:408 ../help/help.php:411 ../help/help.php:414 ..
672
- #: /help/help.php:422 ../help/help.php:425 ../help/help.php:440 ../help/help.php:
673
- #: 443
674
- #, php-format
675
- msgid "%s"
676
- msgstr ""
677
-
678
- #: ../help/help.php:316
679
- msgid "How to Add Subscription box to website?"
680
- msgstr ""
681
-
682
- #: ../help/help.php:319
683
- #, php-format
684
- msgid ""
685
- "Use any of the following 3 methods :<br>\n"
686
- " a) Shortcode in any page/post : <strong>[email-subscribers "
687
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
688
- " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
689
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
690
- " c) Copy and past this php code to your desired template location : "
691
- "<strong>%s</strong>"
692
- msgstr ""
693
-
694
- #: ../help/help.php:324
695
- msgid "Additional form settings"
696
- msgstr ""
697
-
698
- #: ../help/help.php:327
699
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
700
- msgstr ""
701
-
702
- #: ../help/help.php:330
703
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
704
- msgstr ""
705
-
706
- #: ../help/help.php:336
707
- msgid "General Plugin Configuration"
708
- msgstr ""
709
-
710
- #: ../help/help.php:339
711
- #, php-format
712
- msgid "Modify %s"
713
- msgstr ""
714
-
715
- #: ../help/help.php:339
716
- msgid "default text, email contents"
717
- msgstr ""
718
-
719
- #: ../help/help.php:339
720
- msgid ""
721
- " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
722
- "Roles"
723
- msgstr ""
724
-
725
- #: ../help/help.php:342
726
- msgid "How does Sync work?"
727
- msgstr ""
728
-
729
- #: ../help/help.php:345
730
- msgid "How to Import or Export Email Addresses?"
731
- msgstr ""
732
-
733
- #: ../help/help.php:348
734
- msgid "How to Add/Update Existing Subscribers Group & Status?"
735
- msgstr ""
736
-
737
- #: ../help/help.php:351
738
- msgid "How to change/update/translate any texts from the plugin?"
739
- msgstr ""
740
-
741
- #: ../help/help.php:354
742
- msgid "How to add Unsubscribe link in emails?"
743
- msgstr ""
744
-
745
- #: ../help/help.php:357
746
- msgid "How to check sent emails?"
747
- msgstr ""
748
-
749
- #: ../help/help.php:369
750
- msgid "Create and Send Newsletter Emails"
751
- msgstr ""
752
-
753
- #: ../help/help.php:372
754
- msgid "Keywords in the Newsletters"
755
- msgstr ""
756
-
757
- #: ../help/help.php:379
758
- msgid "Create and Send Post Notification Emails when new posts are published"
759
- msgstr ""
760
-
761
- #: ../help/help.php:382
762
- msgid "Keywords in the Post Notifications"
763
- msgstr ""
764
-
765
- #: ../help/help.php:385
766
- msgid "Send a test post notification email to myself/testgroup"
767
- msgstr ""
768
-
769
- #: ../help/help.php:390
770
- msgid "Cron Job Setup"
771
- msgstr ""
772
-
773
- #: ../help/help.php:393
774
- msgid "What is Cron and how to Schedule Cron Emails?"
775
- msgstr ""
776
-
777
- #: ../help/help.php:396
778
- msgid "Schedule Cron Emails in cPanel"
779
- msgstr ""
780
-
781
- #: ../help/help.php:399
782
- msgid "Schedule Cron Emails in Parallels Plesk"
783
- msgstr ""
784
-
785
- #: ../help/help.php:402
786
- msgid "Hosting doesn’t support Cron Jobs?"
787
- msgstr ""
788
-
789
- #: ../help/help.php:405
790
- msgid "Troubleshooting Steps"
791
- msgstr ""
792
-
793
- #: ../help/help.php:408
794
- msgid "Subscribers are not receiving Emails?"
795
- msgstr ""
796
-
797
- #: ../help/help.php:411
798
- msgid "CSS Help"
799
- msgstr ""
800
-
801
- #: ../help/help.php:414
802
- msgid "FAQ's"
803
- msgstr ""
804
-
805
- #: ../help/help.php:419
806
- msgid "[GDPR] Email Subscribers"
807
- msgstr ""
808
-
809
- #: ../help/help.php:422 ../help/help.php:440
810
- msgid "How to enable consent checkbox in the subscribe form?"
811
- msgstr ""
812
-
813
- #: ../help/help.php:425
814
- msgid "What data Email Subscribers stores on your end?"
815
- msgstr ""
816
-
817
- #: ../help/help.php:437
818
- msgid "[GDPR] Email Subscribers - Group Selector"
819
- msgstr ""
820
-
821
- #: ../help/help.php:443
822
- msgid "What data Email Subscribers - Group Selector stores on your end?"
823
- msgstr ""
824
-
825
- #: ../help/help.php:452
826
- msgid "Want to do more? Here's how.."
827
- msgstr ""
828
-
829
- #: ../help/help.php:455
830
- msgid "Allow Subscribers to get subscribed to any group"
831
- msgstr ""
832
-
833
- #: ../help/help.php:460
834
- msgid "Using our <b>free</b> "
835
- msgstr ""
836
-
837
- #: ../help/help.php:461
838
- msgid "Group Selector"
839
- msgstr ""
840
-
841
- #: ../help/help.php:462
842
- msgid ""
843
- "plugin, you can extend Email Subscribers Form functionality by providing an "
844
- "grouping option right next to the form."
845
- msgstr ""
846
-
847
- #: ../help/help.php:465
848
- msgid "The user can then subscribe to whichever group most appeals to them."
849
- msgstr ""
850
-
851
- #: ../help/help.php:468
852
- msgid "For example: Subscribe either to Updates or to Offers."
853
- msgstr ""
854
-
855
- #: ../help/help.php:472
856
- msgid "Show your subscribe form inside attractive popups"
857
- msgstr ""
858
-
859
- #: ../help/help.php:477
860
- msgid ""
861
- "Don't limit your subscriber form to a widget. Embed it within popups, hello "
862
- "bars, slide-ins, sidebars, full screen popups etc."
863
- msgstr ""
864
-
865
- #: ../help/help.php:480
866
- msgid ""
867
- "Using Email Subscribers you can achieve this easily with our <b>free</b> "
868
- "plugin "
869
- msgstr ""
870
-
871
- #. Author of the plugin/theme
872
- #: ../help/help.php:481
873
- msgid "Icegram"
874
- msgstr ""
875
-
876
- #: ../help/help.php:484
877
- msgid ""
878
- "Icegram's beautiful designs instantly capture user attention and help "
879
- "increase sign-ups to your WordPress website."
880
- msgstr ""
881
-
882
- #: ../help/help.php:487 ../help/help.php:507
883
- #, php-format
884
- msgid "How to %s"
885
- msgstr ""
886
-
887
- #: ../help/help.php:487
888
- msgid "show subscribe form inside a popup"
889
- msgstr ""
890
-
891
- #: ../help/help.php:491
892
- msgid "Get beautiful and elegant form styles"
893
- msgstr ""
894
-
895
- #: ../help/help.php:497
896
- msgid "Email subscribers easily integrates with another <b>free</b> plugin "
897
- msgstr ""
898
-
899
- #: ../help/help.php:498
900
- msgid "Rainmaker"
901
- msgstr ""
902
-
903
- #: ../help/help.php:501
904
- msgid ""
905
- "Rainmaker extends the core features of Email Subscribers and provides "
906
- "elegant form styles."
907
- msgstr ""
908
-
909
- #: ../help/help.php:504
910
- msgid ""
911
- "These styles are well designed and beautify your subscription form making it "
912
- "more appealing."
913
- msgstr ""
914
-
915
- #: ../help/help.php:507
916
- msgid "add Rainmaker’s form in Email Subscribers"
917
- msgstr ""
918
-
919
- #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
920
- #: /job/es-unsubscribe.php:62
921
- msgid ""
922
- "Oops.. We are getting some technical error. Please try again or contact "
923
- "admin."
924
- msgstr ""
925
-
926
- #: ../job/es-optin.php:62
927
- msgid "This email address has already been confirmed."
928
- msgstr ""
929
-
930
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
931
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
932
- #: /subscribers/view-subscriber-edit.php:22
933
- msgid "Oops, selected details does not exists."
934
- msgstr ""
935
-
936
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
937
- msgid "Selected record deleted."
938
- msgstr ""
939
-
940
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
941
- #: 123
942
- msgid "Add New"
943
- msgstr ""
944
-
945
- #: ../notification/notification-show.php:54 ../notification/notification-add.php:
946
- #: 113 ../notification/notification-edit.php:124 ../sendmail/sendmail.php:94 ..
947
- #: /sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
948
- #: /sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
949
- #: /subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
950
- #: php:113 ../subscribers/view-subscriber-import.php:150 ../subscribers/view-
951
- #: subscriber-show.php:247 ../subscribers/view-subscriber-export.php:54 ..
952
- #: /subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
953
- msgid "Help"
954
- msgstr ""
955
-
956
- #: ../notification/notification-show.php:57
957
- msgid ""
958
- "Use this to setup and send notification emails to your subscribers when a "
959
- "new post is published in your blog."
960
- msgstr ""
961
-
962
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
963
- #: 76
964
- msgid "Email Subject"
965
- msgstr ""
966
-
967
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
968
- #: 77
969
- msgid "Subscribers Group"
970
- msgstr ""
971
-
972
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
973
- #: 78
974
- msgid "Post Categories / Custom Post Types"
975
- msgstr ""
976
-
977
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
978
- #: 79
979
- msgid "Notification Status"
980
- msgstr ""
981
-
982
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
983
- #: php:417 ../templates/template-preview.php:36
984
- msgid "Edit"
985
- msgstr ""
986
-
987
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
988
- #: php:301 ../subscribers/view-subscriber-show.php:422
989
- msgid "Delete"
990
- msgstr ""
991
-
992
- #: ../notification/notification-show.php:130 ../notification/notification-add.php:
993
- #: 244 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
994
- msgid "Send email immediately"
995
- msgstr ""
996
-
997
- #: ../notification/notification-show.php:132 ../notification/notification-add.php:
998
- #: 245 ../notification/notification-edit.php:281
999
- msgid "Add to cron and send email via cron job"
1000
- msgstr ""
1001
-
1002
- #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1003
- #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1004
- #: 456
1005
- msgid "No records available."
1006
- msgstr ""
1007
-
1008
- #: ../notification/notification-add.php:33
1009
- msgid "Please select subscribers group."
1010
- msgstr ""
1011
-
1012
- #: ../notification/notification-add.php:39
1013
- msgid "Please select notification status."
1014
- msgstr ""
1015
-
1016
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
1017
- msgid "Please select notification mail subject. Use templates menu to create new."
1018
- msgstr ""
1019
-
1020
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
1021
- msgid "Please select post categories."
1022
- msgstr ""
1023
-
1024
- #: ../notification/notification-add.php:71
1025
- msgid "Notification successfully created. "
1026
- msgstr ""
1027
-
1028
- #: ../notification/notification-add.php:112
1029
- msgid "Add Notification"
1030
- msgstr ""
1031
-
1032
- #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
1033
- #: 132
1034
- msgid "Subscribers Group to send post notification to"
1035
- msgstr ""
1036
-
1037
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1038
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1039
- #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1040
- #: /sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1041
- #: /subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1042
- #: import.php:194 ../subscribers/view-subscriber-sync.php:119
1043
- msgid "Select"
1044
- msgstr ""
1045
-
1046
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
1047
- #: 163
1048
- msgid "Select Notification Email Subject"
1049
- msgstr ""
1050
-
1051
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
1052
- #: 164
1053
- msgid "(Use templates menu to create new)"
1054
- msgstr ""
1055
-
1056
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
1057
- #: 191
1058
- msgid "Select Post Categories"
1059
- msgstr ""
1060
-
1061
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
1062
- #: 226
1063
- msgid "Check All"
1064
- msgstr ""
1065
-
1066
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
1067
- #: 227
1068
- msgid "Uncheck All"
1069
- msgstr ""
1070
-
1071
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
1072
- #: 234
1073
- msgid "Select your Custom Post Type"
1074
- msgstr ""
1075
-
1076
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
1077
- #: 235
1078
- msgid "(Optional)"
1079
- msgstr ""
1080
-
1081
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
1082
- #: 269
1083
- msgid "No Custom Post Types Available"
1084
- msgstr ""
1085
-
1086
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
1087
- #: 276
1088
- msgid "Select Notification Status when a new post is published"
1089
- msgstr ""
1090
-
1091
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1092
- #: 282
1093
- msgid "Disable email notification"
1094
- msgstr ""
1095
-
1096
- #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1097
- #: 292 ../subscribers/view-subscriber-edit.php:191
1098
- msgid "Save"
1099
- msgstr ""
1100
-
1101
- #: ../notification/notification-edit.php:49
1102
- msgid "Please select subscribers group"
1103
- msgstr ""
1104
-
1105
- #: ../notification/notification-edit.php:55
1106
- msgid "Please select notification status"
1107
- msgstr ""
1108
-
1109
- #: ../notification/notification-edit.php:89
1110
- msgid "Notification successfully updated. "
1111
- msgstr ""
1112
-
1113
- #: ../notification/notification-edit.php:122
1114
- msgid "Edit Notification"
1115
- msgstr ""
1116
-
1117
- #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1118
- msgid "Click Here"
1119
- msgstr ""
1120
-
1121
- #: ../sendmail/sendmail.php:40
1122
- msgid "Please select your mail subject."
1123
- msgstr ""
1124
-
1125
- #: ../sendmail/sendmail.php:46
1126
- msgid "Please select your mail type."
1127
- msgstr ""
1128
-
1129
- #: ../sendmail/sendmail.php:52
1130
- msgid "Please select your group."
1131
- msgstr ""
1132
-
1133
- #: ../sendmail/sendmail.php:59
1134
- msgid "Email sent successfully. "
1135
- msgstr ""
1136
-
1137
- #: ../sendmail/sendmail.php:63
1138
- msgid "Click here to check Statistics"
1139
- msgstr ""
1140
-
1141
- #: ../sendmail/sendmail.php:69
1142
- msgid "Oops.. We are getting some error. mail not sending."
1143
- msgstr ""
1144
-
1145
- #: ../sendmail/sendmail.php:97
1146
- msgid "Use this to send newsletter emails to your subscribers."
1147
- msgstr ""
1148
-
1149
- #: ../sendmail/sendmail.php:106
1150
- msgid "Select Email Subject from available list"
1151
- msgstr ""
1152
-
1153
- #: ../sendmail/sendmail.php:133
1154
- msgid "Select Email Type"
1155
- msgstr ""
1156
-
1157
- #: ../sendmail/sendmail.php:140
1158
- msgid "Send email via cron job"
1159
- msgstr ""
1160
-
1161
- #: ../sendmail/sendmail.php:148
1162
- msgid "Select Subscribers group to Send Email"
1163
- msgstr ""
1164
-
1165
- #: ../sendmail/sendmail.php:180
1166
- msgid "Recipients : 0 "
1167
- msgstr ""
1168
-
1169
- #: ../sendmail/sendmail.php:182
1170
- #, php-format
1171
- msgid "Recipients : %s"
1172
- msgstr ""
1173
-
1174
- #: ../sendmail/sendmail.php:185
1175
- msgid ""
1176
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1177
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1178
- "</strong><br>Click on Help for more information."
1179
- msgstr ""
1180
-
1181
- #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1182
- msgid "Send Email"
1183
- msgstr ""
1184
-
1185
- #: ../sendmail/sendmail.php:202
1186
- msgid "Reset"
1187
- msgstr ""
1188
-
1189
- #: ../sentmail/deliverreport-show.php:14
1190
- msgid "Oops.. Unexpected error occurred. Please try again."
1191
- msgstr ""
1192
-
1193
- #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
1194
- msgid " &lt;&lt; "
1195
- msgstr ""
1196
-
1197
- #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
1198
- msgid " &gt;&gt; "
1199
- msgstr ""
1200
-
1201
- #: ../sentmail/deliverreport-show.php:60
1202
- msgid "Delivery Report"
1203
- msgstr ""
1204
-
1205
- #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1206
- #: /subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1207
- #: export.php:69
1208
- msgid "Sno"
1209
- msgstr ""
1210
-
1211
- #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1212
- msgid "Email"
1213
- msgstr ""
1214
-
1215
- #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1216
- #: /sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1217
- #: /subscribers/view-subscriber-show.php:290
1218
- msgid "Status"
1219
- msgstr ""
1220
-
1221
- #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1222
- #: /sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1223
- msgid "Sent"
1224
- msgstr ""
1225
-
1226
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1227
- msgid "Sent Date"
1228
- msgstr ""
1229
-
1230
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1231
- msgid "Viewed Status"
1232
- msgstr ""
1233
-
1234
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1235
- msgid "Viewed Date"
1236
- msgstr ""
1237
-
1238
- #: ../sentmail/sentmail-preview.php:27
1239
- msgid "Preview Email"
1240
- msgstr ""
1241
-
1242
- #: ../sentmail/sentmail-preview.php:31
1243
- msgid ""
1244
- "This is how the email you sent may look. <br>Note: Different email services "
1245
- "(like gmail, yahoo etc) display email content differently. So there could be "
1246
- "a slight variation on how your customer will view the email content."
1247
- msgstr ""
1248
-
1249
- #: ../sentmail/sentmail-preview.php:53
1250
- msgid "Back"
1251
- msgstr ""
1252
-
1253
- #: ../sentmail/sentmail-show.php:43
1254
- msgid "Successfully deleted all reports except latest 10."
1255
- msgstr ""
1256
-
1257
- #: ../sentmail/sentmail-show.php:97
1258
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1259
- msgstr ""
1260
-
1261
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1262
- msgid "View Reports"
1263
- msgstr ""
1264
-
1265
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1266
- msgid "Type"
1267
- msgstr ""
1268
-
1269
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1270
- msgid "Start Date"
1271
- msgstr ""
1272
-
1273
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1274
- msgid "End Date"
1275
- msgstr ""
1276
-
1277
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1278
- msgid "Total"
1279
- msgstr ""
1280
-
1281
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1282
- #: /subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
1283
- #: export.php:64 ../subscribers/view-subscriber-export.php:72
1284
- msgid "Action"
1285
- msgstr ""
1286
-
1287
- #: ../sentmail/sentmail-show.php:190
1288
- msgid "Optimize Table & Delete Records"
1289
- msgstr ""
1290
-
1291
- #: ../sentmail/sentmail-show.php:201
1292
- msgid ""
1293
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1294
- "button to delete all reports except latest 10."
1295
- msgstr ""
1296
-
1297
- #: ../sentmail/sentmail-show.php:216
1298
- msgid ""
1299
- "<strong>Note:</strong> If you delete record for the emails with Status = "
1300
- "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
1301
- "deleted too and email will not be sent."
1302
- msgstr ""
1303
-
1304
- #: ../settings/setting-sync.php:16
1305
- msgid "Table sync completed successfully."
1306
- msgstr ""
1307
-
1308
- #: ../settings/setting-sync.php:29
1309
- msgid "Sync plugin tables"
1310
- msgstr ""
1311
-
1312
- #: ../settings/setting-sync.php:33
1313
- msgid "Click to sync tables"
1314
- msgstr ""
1315
-
1316
- #: ../settings/settings-edit.php:23
1317
- msgid "Admin"
1318
- msgstr ""
1319
-
1320
- #: ../settings/settings-edit.php:24
1321
- msgid "Signup Confirmation"
1322
- msgstr ""
1323
-
1324
- #: ../settings/settings-edit.php:25
1325
- msgid "Cron"
1326
- msgstr ""
1327
-
1328
- #: ../settings/settings-edit.php:26
1329
- msgid "User Roles"
1330
- msgstr ""
1331
-
1332
- #: ../settings/settings-edit.php:67
1333
- msgid "Save Settings"
1334
- msgstr ""
1335
-
1336
- #: ../settings/settings-edit.php:78
1337
- msgid "Sender of Notifications"
1338
- msgstr ""
1339
-
1340
- #: ../settings/settings-edit.php:79
1341
- msgid ""
1342
- "Choose a FROM name and FROM email address for all the emails to be sent from "
1343
- "this plugin."
1344
- msgstr ""
1345
-
1346
- #: ../settings/settings-edit.php:89
1347
- msgid "Email Type"
1348
- msgstr ""
1349
-
1350
- #: ../settings/settings-edit.php:90
1351
- msgid ""
1352
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1353
- "Option 3 & 4 is to send emails with PHP method mail()."
1354
- msgstr ""
1355
-
1356
- #: ../settings/settings-edit.php:94
1357
- msgid "1. WP HTML MAIL"
1358
- msgstr ""
1359
-
1360
- #: ../settings/settings-edit.php:95
1361
- msgid "2. WP PLAINTEXT MAIL"
1362
- msgstr ""
1363
-
1364
- #: ../settings/settings-edit.php:96
1365
- msgid "3. PHP HTML MAIL"
1366
- msgstr ""
1367
-
1368
- #: ../settings/settings-edit.php:97
1369
- msgid "4. PHP PLAINTEXT MAIL"
1370
- msgstr ""
1371
-
1372
- #: ../settings/settings-edit.php:104
1373
- msgid "Opt-In Type"
1374
- msgstr ""
1375
-
1376
- #: ../settings/settings-edit.php:105
1377
- msgid ""
1378
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
1379
- "soon as they subscribe to your list. They have to confirm their subscription "
1380
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1381
- "subscriber is not asked to confirm their email address. They are subscribed "
1382
- "directly in the list."
1383
- msgstr ""
1384
-
1385
- #: ../settings/settings-edit.php:109
1386
- msgid "Double Opt In"
1387
- msgstr ""
1388
-
1389
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1390
- #: /subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1391
- #: import.php:182 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1392
- #: subscriber-show.php:356
1393
- msgid "Single Opt In"
1394
- msgstr ""
1395
-
1396
- #: ../settings/settings-edit.php:117
1397
- msgid "Image Size"
1398
- msgstr ""
1399
-
1400
- #: ../settings/settings-edit.php:118
1401
- msgid ""
1402
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1403
- "Emails."
1404
- msgstr ""
1405
-
1406
- #: ../settings/settings-edit.php:122
1407
- msgid "Full Size"
1408
- msgstr ""
1409
-
1410
- #: ../settings/settings-edit.php:123
1411
- msgid "Medium Size"
1412
- msgstr ""
1413
-
1414
- #: ../settings/settings-edit.php:130
1415
- msgid "Admin Email Addresses"
1416
- msgstr ""
1417
-
1418
- #: ../settings/settings-edit.php:131
1419
- msgid ""
1420
- "Enter the admin email addresses that should receive notifications (separated "
1421
- "by comma)."
1422
- msgstr ""
1423
-
1424
- #: ../settings/settings-edit.php:137
1425
- msgid "Notify Admin when a new subscriber signs up"
1426
- msgstr ""
1427
-
1428
- #: ../settings/settings-edit.php:138
1429
- msgid ""
1430
- "To send admin email notifications for the new subscriber. This option must "
1431
- "be set to YES."
1432
- msgstr ""
1433
-
1434
- #: ../settings/settings-edit.php:150
1435
- msgid "Admin Email Subject on new subscriber sign up"
1436
- msgstr ""
1437
-
1438
- #: ../settings/settings-edit.php:151
1439
- msgid ""
1440
- "Subject for the admin email whenever a new subscriber signs up and is "
1441
- "confirmed."
1442
- msgstr ""
1443
-
1444
- #: ../settings/settings-edit.php:157
1445
- msgid "Admin Email Content on new subscriber signs up"
1446
- msgstr ""
1447
-
1448
- #: ../settings/settings-edit.php:158
1449
- msgid ""
1450
- "Content for the admin email whenever a new subscriber signs up and is "
1451
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1452
- msgstr ""
1453
-
1454
- #: ../settings/settings-edit.php:165
1455
- msgid "Sent Report Subject"
1456
- msgstr ""
1457
-
1458
- #: ../settings/settings-edit.php:166
1459
- msgid ""
1460
- "Subject for the email report which will be sent to admin.<br />(Will be sent "
1461
- "only if sending email via immediately)"
1462
- msgstr ""
1463
-
1464
- #: ../settings/settings-edit.php:172
1465
- msgid "Sent Report Content"
1466
- msgstr ""
1467
-
1468
- #: ../settings/settings-edit.php:173
1469
- msgid ""
1470
- "Content for the email report which will be sent to admin.<br />Available "
1471
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
1472
- "sent only if sending email via immediately)"
1473
- msgstr ""
1474
-
1475
- #: ../settings/settings-edit.php:184
1476
- msgid "Double Opt-In Email Subject (Confirmation Email)"
1477
- msgstr ""
1478
-
1479
- #: ../settings/settings-edit.php:185
1480
- msgid ""
1481
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1482
- "subscriber signs up."
1483
- msgstr ""
1484
-
1485
- #: ../settings/settings-edit.php:191
1486
- msgid "Double Opt-In Email Content (Confirmation Email)"
1487
- msgstr ""
1488
-
1489
- #: ../settings/settings-edit.php:192
1490
- msgid ""
1491
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
1492
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1493
- msgstr ""
1494
-
1495
- #: ../settings/settings-edit.php:198
1496
- msgid "Double Opt-In Confirmation Link"
1497
- msgstr ""
1498
-
1499
- #: ../settings/settings-edit.php:199
1500
- msgid "It is a readonly field and you are advised not to modify it."
1501
- msgstr ""
1502
-
1503
- #: ../settings/settings-edit.php:206
1504
- msgid ""
1505
- "Text to display after an email address is successfully subscribed from "
1506
- "Double Opt-In (Confirmation) Email"
1507
- msgstr ""
1508
-
1509
- #: ../settings/settings-edit.php:207
1510
- msgid ""
1511
- "This text will be displayed once user clicks on email confirmation link from "
1512
- "the Double Opt In (confirmation) Email."
1513
- msgstr ""
1514
-
1515
- #: ../settings/settings-edit.php:219
1516
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
1517
- msgstr ""
1518
-
1519
- #: ../settings/settings-edit.php:220
1520
- msgid ""
1521
- "To send welcome email to subscriber after successful signup. This option "
1522
- "must be set to YES."
1523
- msgstr ""
1524
-
1525
- #: ../settings/settings-edit.php:231
1526
- msgid "Subject for Welcome Email"
1527
- msgstr ""
1528
-
1529
- #: ../settings/settings-edit.php:232
1530
- msgid ""
1531
- "Subject for the subscriber welcome email. This will be sent whenever a "
1532
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1533
- "Opt-In) successfully."
1534
- msgstr ""
1535
-
1536
- #: ../settings/settings-edit.php:238
1537
- msgid "Email Content for Welcome Email"
1538
- msgstr ""
1539
-
1540
- #: ../settings/settings-edit.php:239
1541
- msgid ""
1542
- "Content for the subscriber welcome email whenever a user's email is either "
1543
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1544
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1545
- msgstr ""
1546
-
1547
- #: ../settings/settings-edit.php:247
1548
- msgid "Unsubscribe Link"
1549
- msgstr ""
1550
-
1551
- #: ../settings/settings-edit.php:248
1552
- msgid ""
1553
- "This unsubscribe link is automatically added to all the emails that are sent "
1554
- "from this plugin. It is a readonly field and you are advised not to modify "
1555
- "it."
1556
- msgstr ""
1557
-
1558
- #: ../settings/settings-edit.php:254
1559
- msgid "Unsubscribe Text in Email"
1560
- msgstr ""
1561
-
1562
- #: ../settings/settings-edit.php:255
1563
- msgid ""
1564
- "The text for the unsubscribe link. This text is automatically added with "
1565
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1566
- msgstr ""
1567
-
1568
- #: ../settings/settings-edit.php:262
1569
- msgid "Text to display after an email address is unsubscribed"
1570
- msgstr ""
1571
-
1572
- #: ../settings/settings-edit.php:263
1573
- msgid ""
1574
- "This text will be displayed once user clicks on unsubscribe link from the "
1575
- "email."
1576
- msgstr ""
1577
-
1578
- #: ../settings/settings-edit.php:275
1579
- msgid "Error in the Subscribe / Confirmation Link"
1580
- msgstr ""
1581
-
1582
- #: ../settings/settings-edit.php:276
1583
- msgid ""
1584
- "Default message to display if there is any issue while clicking on subscribe "
1585
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
1586
- msgstr ""
1587
-
1588
- #: ../settings/settings-edit.php:282
1589
- msgid "Error in the Unsubscribe Link"
1590
- msgstr ""
1591
-
1592
- #: ../settings/settings-edit.php:283
1593
- msgid ""
1594
- "Default message to display if there is any issue while clicking on "
1595
- "unsubscribe link from the emails."
1596
- msgstr ""
1597
-
1598
- #: ../settings/settings-edit.php:295
1599
- msgid "Select user roles who can access following menus. Only Admin can change this."
1600
- msgstr ""
1601
-
1602
- #: ../settings/settings-edit.php:301
1603
- msgid "Subscribers Menu"
1604
- msgstr ""
1605
-
1606
- #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1607
- #: /settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1608
- #: /settings/settings-edit.php:353
1609
- msgid "Administrator Only"
1610
- msgstr ""
1611
-
1612
- #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1613
- #: /settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1614
- #: /settings/settings-edit.php:354
1615
- msgid "Administrator/Editor"
1616
- msgstr ""
1617
-
1618
- #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1619
- #: /settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1620
- #: /settings/settings-edit.php:355
1621
- msgid "Administrator/Editor/Author/Contributor"
1622
- msgstr ""
1623
-
1624
- #: ../settings/settings-edit.php:313
1625
- msgid "Templates Menu"
1626
- msgstr ""
1627
-
1628
- #: ../settings/settings-edit.php:325
1629
- msgid "Post Notifications Menu"
1630
- msgstr ""
1631
-
1632
- #: ../settings/settings-edit.php:349
1633
- msgid "Reports Menu"
1634
- msgstr ""
1635
-
1636
- #: ../settings/settings-edit.php:366
1637
- msgid "Cron job URL"
1638
- msgstr ""
1639
-
1640
- #: ../settings/settings-edit.php:367
1641
- msgid ""
1642
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
1643
- "modify it."
1644
- msgstr ""
1645
-
1646
- #: ../settings/settings-edit.php:377
1647
- msgid "Email Count"
1648
- msgstr ""
1649
-
1650
- #: ../settings/settings-edit.php:378
1651
- msgid "Number of emails that you want to trigger per hour."
1652
- msgstr ""
1653
-
1654
- #: ../settings/settings-edit.php:383
1655
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1656
- msgstr ""
1657
-
1658
- #: ../settings/settings-edit.php:388
1659
- msgid "Cron Report"
1660
- msgstr ""
1661
-
1662
- #: ../settings/settings-edit.php:389
1663
- msgid ""
1664
- "Email to admin whenever a cron URL is triggered from your server.<br "
1665
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1666
- msgstr ""
1667
-
1668
- #: ../settings/settings-edit.php:393
1669
- msgid "Enabling this will send a cron report email on every successfully cron hit"
1670
- msgstr ""
1671
-
1672
- #: ../settings/settings-edit.php:400
1673
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
1674
- msgstr ""
1675
-
1676
- #: ../settings/settings-edit.php:401
1677
- msgid ""
1678
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1679
- "schedule-cron-emails/?"
1680
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
1681
- "Cron?</a>"
1682
- msgstr ""
1683
-
1684
- #: ../settings/settings-edit.php:402
1685
- msgid ""
1686
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1687
- "schedule-cron-emails-in-cpanel/?"
1688
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1689
- "job in cPanel</a>"
1690
- msgstr ""
1691
-
1692
- #: ../settings/settings-edit.php:403
1693
- msgid ""
1694
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1695
- "schedule-cron-emails-in-parallels-plesk/?"
1696
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1697
- "job in Plesk</a>"
1698
- msgstr ""
1699
-
1700
- #: ../settings/settings-edit.php:404
1701
- msgid ""
1702
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1703
- "if-hosting-doesnt-support-cron-jobs/?"
1704
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1705
- "does not support cron jobs?</a>"
1706
- msgstr ""
1707
-
1708
- #: ../settings/settings-edit.php:520
1709
- msgid "Please enter sender of notifications from name."
1710
- msgstr ""
1711
-
1712
- #: ../settings/settings-edit.php:525
1713
- msgid "Please enter sender of notifications from email."
1714
- msgstr ""
1715
-
1716
- #: ../settings/settings-edit.php:569
1717
- msgid "Please enter valid email count."
1718
- msgstr ""
1719
-
1720
- #: ../settings/settings-edit.php:584
1721
- msgid "Settings Saved."
1722
- msgstr ""
1723
-
1724
- #: ../settings/settings-edit.php:587
1725
- msgid "Oops, unable to update."
1726
- msgstr ""
1727
-
1728
- #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1729
- #: php:54
1730
- msgid "Please enter subscriber email address."
1731
- msgstr ""
1732
-
1733
- #: ../subscribers/view-subscriber-add.php:52
1734
- msgid "Please select or create your group for this email."
1735
- msgstr ""
1736
-
1737
- #: ../subscribers/view-subscriber-add.php:59
1738
- msgid ""
1739
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1740
- "the group name."
1741
- msgstr ""
1742
-
1743
- #: ../subscribers/view-subscriber-add.php:69
1744
- msgid "Subscriber has been saved."
1745
- msgstr ""
1746
-
1747
- #: ../subscribers/view-subscriber-add.php:71
1748
- msgid "Subscriber already exists."
1749
- msgstr ""
1750
-
1751
- #: ../subscribers/view-subscriber-add.php:74
1752
- msgid "Invalid Email."
1753
- msgstr ""
1754
-
1755
- #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1756
- #: php:109 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1757
- #: subscriber-show.php:243 ../subscribers/view-subscriber-export.php:51 ..
1758
- #: /subscribers/view-subscriber-sync.php:89
1759
- msgid "Add New Subscriber"
1760
- msgstr ""
1761
-
1762
- #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1763
- #: php:110 ../subscribers/view-subscriber-import.php:214 ../subscribers/view-
1764
- #: subscriber-show.php:244 ../subscribers/view-subscriber-export.php:52 ..
1765
- #: /subscribers/view-subscriber-sync.php:90
1766
- msgid "Import"
1767
- msgstr ""
1768
-
1769
- #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1770
- #: php:111 ../subscribers/view-subscriber-import.php:148 ../subscribers/view-
1771
- #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1772
- msgid "Export"
1773
- msgstr ""
1774
-
1775
- #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1776
- #: php:112 ../subscribers/view-subscriber-import.php:149 ../subscribers/view-
1777
- #: subscriber-show.php:246 ../subscribers/view-subscriber-export.php:53 ..
1778
- #: /subscribers/view-subscriber-sync.php:143
1779
- msgid "Sync"
1780
- msgstr ""
1781
-
1782
- #: ../subscribers/view-subscriber-add.php:127
1783
- msgid "Enter Subscriber's Full name"
1784
- msgstr ""
1785
-
1786
- #: ../subscribers/view-subscriber-add.php:137
1787
- msgid "Enter Subscriber's Email Address"
1788
- msgstr ""
1789
-
1790
- #: ../subscribers/view-subscriber-add.php:147
1791
- msgid "Select Subscriber's Status"
1792
- msgstr ""
1793
-
1794
- #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1795
- #: php:147 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1796
- #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1797
- msgid "Confirmed"
1798
- msgstr ""
1799
-
1800
- #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1801
- #: php:148 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1802
- #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1803
- msgid "Unconfirmed"
1804
- msgstr ""
1805
-
1806
- #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1807
- #: php:149 ../subscribers/view-subscriber-import.php:181 ../subscribers/view-
1808
- #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1809
- msgid "Unsubscribed"
1810
- msgstr ""
1811
-
1812
- #: ../subscribers/view-subscriber-add.php:162
1813
- msgid "Select (or) Create Group for Subscriber"
1814
- msgstr ""
1815
-
1816
- #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1817
- #: import.php:206
1818
- msgid "(or)"
1819
- msgstr ""
1820
-
1821
- #: ../subscribers/view-subscriber-add.php:187
1822
- msgid "Add Subscriber"
1823
- msgstr ""
1824
-
1825
- #: ../subscribers/view-subscriber-edit.php:64
1826
- msgid "Error: Special characters are not allowed in the group name."
1827
- msgstr ""
1828
-
1829
- #: ../subscribers/view-subscriber-edit.php:74
1830
- msgid "Subscriber details updated."
1831
- msgstr ""
1832
-
1833
- #: ../subscribers/view-subscriber-edit.php:76
1834
- msgid "Subscriber already exists for this group."
1835
- msgstr ""
1836
-
1837
- #: ../subscribers/view-subscriber-edit.php:108
1838
- msgid "Edit Subscriber"
1839
- msgstr ""
1840
-
1841
- #: ../subscribers/view-subscriber-edit.php:122
1842
- msgid "Subscriber's Full Name"
1843
- msgstr ""
1844
-
1845
- #: ../subscribers/view-subscriber-edit.php:132
1846
- msgid "Subscriber's Email Address"
1847
- msgstr ""
1848
-
1849
- #: ../subscribers/view-subscriber-edit.php:142
1850
- msgid "Update Subscriber's Status"
1851
- msgstr ""
1852
-
1853
- #: ../subscribers/view-subscriber-edit.php:157
1854
- msgid "Update Subscriber's Group"
1855
- msgstr ""
1856
-
1857
- #: ../subscribers/view-subscriber-import.php:45
1858
- msgid ""
1859
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1860
- "the Group name."
1861
- msgstr ""
1862
-
1863
- #: ../subscribers/view-subscriber-import.php:96
1864
- msgid "email imported."
1865
- msgstr ""
1866
-
1867
- #: ../subscribers/view-subscriber-import.php:97
1868
- msgid "email already exists."
1869
- msgstr ""
1870
-
1871
- #: ../subscribers/view-subscriber-import.php:98
1872
- msgid "email are invalid."
1873
- msgstr ""
1874
-
1875
- #: ../subscribers/view-subscriber-import.php:101 ../subscribers/view-subscriber-
1876
- #: import.php:130
1877
- msgid "Click here"
1878
- msgstr ""
1879
-
1880
- #: ../subscribers/view-subscriber-import.php:101 ../subscribers/view-subscriber-
1881
- #: import.php:130
1882
- msgid " to view details."
1883
- msgstr ""
1884
-
1885
- #: ../subscribers/view-subscriber-import.php:109
1886
- msgid "File Upload Failed."
1887
- msgstr ""
1888
-
1889
- #: ../subscribers/view-subscriber-import.php:146
1890
- msgid "Import Email Addresses"
1891
- msgstr ""
1892
-
1893
- #: ../subscribers/view-subscriber-import.php:159
1894
- msgid "Select CSV file"
1895
- msgstr ""
1896
-
1897
- #: ../subscribers/view-subscriber-import.php:161
1898
- msgid "Check CSV structure "
1899
- msgstr ""
1900
-
1901
- #: ../subscribers/view-subscriber-import.php:162
1902
- msgid "from here"
1903
- msgstr ""
1904
-
1905
- #: ../subscribers/view-subscriber-import.php:173
1906
- msgid "Select Subscribers Email Status"
1907
- msgstr ""
1908
-
1909
- #: ../subscribers/view-subscriber-import.php:189
1910
- msgid "Select (or) Create Group for Subscribers"
1911
- msgstr ""
1912
-
1913
- #: ../subscribers/view-subscriber-show.php:45
1914
- msgid "Selected details does not exists."
1915
- msgstr ""
1916
-
1917
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1918
- #: php:95
1919
- msgid "Record deleted."
1920
- msgstr ""
1921
-
1922
- #: ../subscribers/view-subscriber-show.php:67
1923
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1924
- msgstr ""
1925
-
1926
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1927
- #: php:134
1928
- msgid "Confirmation emails resent successfully."
1929
- msgstr ""
1930
-
1931
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1932
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1933
- #: subscriber-show.php:217
1934
- msgid "No record was selected."
1935
- msgstr ""
1936
-
1937
- #: ../subscribers/view-subscriber-show.php:115
1938
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1939
- msgstr ""
1940
-
1941
- #: ../subscribers/view-subscriber-show.php:164
1942
- msgid "Subscribers Group updated."
1943
- msgstr ""
1944
-
1945
- #: ../subscribers/view-subscriber-show.php:169
1946
- msgid "Please select New group to update."
1947
- msgstr ""
1948
-
1949
- #: ../subscribers/view-subscriber-show.php:203
1950
- msgid "Subscribers Status updated."
1951
- msgstr ""
1952
-
1953
- #: ../subscribers/view-subscriber-show.php:208
1954
- msgid "Please select New Status to update."
1955
- msgstr ""
1956
-
1957
- #: ../subscribers/view-subscriber-show.php:256
1958
- msgid "Total Subscribers: "
1959
- msgstr ""
1960
-
1961
- #: ../subscribers/view-subscriber-show.php:258
1962
- #, php-format
1963
- msgid "Active Subscribers: %s"
1964
- msgstr ""
1965
-
1966
- #: ../subscribers/view-subscriber-show.php:288
1967
- msgid "Email Address"
1968
- msgstr ""
1969
-
1970
- #: ../subscribers/view-subscriber-show.php:291
1971
- msgid "Group"
1972
- msgstr ""
1973
-
1974
- #: ../subscribers/view-subscriber-show.php:292
1975
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1976
- msgstr ""
1977
-
1978
- #: ../subscribers/view-subscriber-show.php:300
1979
- msgid "Bulk Actions"
1980
- msgstr ""
1981
-
1982
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1983
- #: show.php:413
1984
- msgid "Resend Confirmation"
1985
- msgstr ""
1986
-
1987
- #: ../subscribers/view-subscriber-show.php:303
1988
- msgid "Update Subscribers Group"
1989
- msgstr ""
1990
-
1991
- #: ../subscribers/view-subscriber-show.php:304
1992
- msgid "Update Subscribers Status"
1993
- msgstr ""
1994
-
1995
- #: ../subscribers/view-subscriber-show.php:307
1996
- msgid "Select Group"
1997
- msgstr ""
1998
-
1999
- #: ../subscribers/view-subscriber-show.php:322
2000
- msgid "Select Status"
2001
- msgstr ""
2002
-
2003
- #: ../subscribers/view-subscriber-show.php:328
2004
- msgid "Apply"
2005
- msgstr ""
2006
-
2007
- #: ../subscribers/view-subscriber-show.php:335
2008
- msgid "All Groups"
2009
- msgstr ""
2010
-
2011
- #: ../subscribers/view-subscriber-show.php:352
2012
- msgid "All Status"
2013
- msgstr ""
2014
-
2015
- #: ../subscribers/view-subscriber-show.php:359
2016
- msgid "1 to 500 emails"
2017
- msgstr ""
2018
-
2019
- #: ../subscribers/view-subscriber-show.php:360
2020
- msgid "501 to 1000"
2021
- msgstr ""
2022
-
2023
- #: ../subscribers/view-subscriber-show.php:361
2024
- msgid "1001 to 1500"
2025
- msgstr ""
2026
-
2027
- #: ../subscribers/view-subscriber-show.php:362
2028
- msgid "1501 to 2000"
2029
- msgstr ""
2030
-
2031
- #: ../subscribers/view-subscriber-show.php:363
2032
- msgid "2001 to 4000"
2033
- msgstr ""
2034
-
2035
- #: ../subscribers/view-subscriber-show.php:364
2036
- msgid "4001 to 6000"
2037
- msgstr ""
2038
-
2039
- #: ../subscribers/view-subscriber-show.php:365
2040
- msgid "6001 to 10000"
2041
- msgstr ""
2042
-
2043
- #: ../subscribers/view-subscriber-show.php:366
2044
- msgid "Display All"
2045
- msgstr ""
2046
-
2047
- #: ../subscribers/view-subscriber-export.php:12
2048
- msgid ""
2049
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
2050
- "administrator can export subscriber list."
2051
- msgstr ""
2052
-
2053
- #: ../subscribers/view-subscriber-export.php:14
2054
- msgid "Go back to Subscribers dashboard"
2055
- msgstr ""
2056
-
2057
- #: ../subscribers/view-subscriber-export.php:50
2058
- msgid "Export Email Addresses"
2059
- msgstr ""
2060
-
2061
- #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
2062
- #: export.php:70
2063
- msgid "Type of List to Export"
2064
- msgstr ""
2065
-
2066
- #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
2067
- #: export.php:71
2068
- msgid "Total Emails Count"
2069
- msgstr ""
2070
-
2071
- #: ../subscribers/view-subscriber-export.php:77
2072
- msgid "1"
2073
- msgstr ""
2074
-
2075
- #: ../subscribers/view-subscriber-export.php:78
2076
- msgid "All Subscribers"
2077
- msgstr ""
2078
-
2079
- #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
2080
- #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
2081
- #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
2082
- msgid "Click to Export in CSV"
2083
- msgstr ""
2084
-
2085
- #: ../subscribers/view-subscriber-export.php:83
2086
- msgid "2"
2087
- msgstr ""
2088
-
2089
- #: ../subscribers/view-subscriber-export.php:84
2090
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
2091
- msgstr ""
2092
-
2093
- #: ../subscribers/view-subscriber-export.php:89
2094
- msgid "3"
2095
- msgstr ""
2096
-
2097
- #: ../subscribers/view-subscriber-export.php:90
2098
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
2099
- msgstr ""
2100
-
2101
- #: ../subscribers/view-subscriber-export.php:95
2102
- msgid "4"
2103
- msgstr ""
2104
-
2105
- #: ../subscribers/view-subscriber-export.php:96
2106
- msgid "WordPress Registered Users"
2107
- msgstr ""
2108
-
2109
- #: ../subscribers/view-subscriber-export.php:101
2110
- msgid "5"
2111
- msgstr ""
2112
-
2113
- #: ../subscribers/view-subscriber-export.php:102
2114
- msgid "Commented Authors"
2115
- msgstr ""
2116
-
2117
- #: ../subscribers/view-subscriber-sync.php:36
2118
- msgid "Please select default group to newly registered user."
2119
- msgstr ""
2120
-
2121
- #: ../subscribers/view-subscriber-sync.php:50
2122
- msgid "Emails Successfully Synced."
2123
- msgstr ""
2124
-
2125
- #: ../subscribers/view-subscriber-sync.php:88
2126
- msgid "Sync Email"
2127
- msgstr ""
2128
-
2129
- #: ../subscribers/view-subscriber-sync.php:101
2130
- msgid "Sync newly registered users to subscribers list"
2131
- msgstr ""
2132
-
2133
- #: ../subscribers/view-subscriber-sync.php:114
2134
- msgid "Select group to add newly registered users to"
2135
- msgstr ""
2136
-
2137
- #: ../templates/template-preview.php:32
2138
- msgid "Template Preview"
2139
- msgstr ""
2140
-
2141
- #: ../templates/template-preview.php:40
2142
- msgid "This is how your email may look."
2143
- msgstr ""
2144
-
2145
- #: ../templates/template-preview.php:42
2146
- msgid ""
2147
- "<br><br>This Post Notification preview has replaced keywords from your last "
2148
- "published blog post."
2149
- msgstr ""
2150
-
2151
- #: ../templates/template-preview.php:44
2152
- msgid ""
2153
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
2154
- "content differently. So there could be a slight variation on how your "
2155
- "customer will view the email content."
2156
- msgstr ""
2157
-
2158
- #: ../pricing/pricing.php:157
2159
- msgid "Go a notch higher"
2160
- msgstr ""
2161
-
2162
- #: ../pricing/pricing.php:158
2163
- msgid "Get the Email Subscribers Pro Plugin at"
2164
- msgstr ""
2165
-
2166
- #: ../pricing/pricing.php:162
2167
- msgid "month"
2168
- msgstr ""
2169
-
2170
- #: ../pricing/pricing.php:163
2171
- msgid "Sign up for monthly"
2172
- msgstr ""
2173
-
2174
- #: ../pricing/pricing.php:166
2175
- msgid "year"
2176
- msgstr ""
2177
-
2178
- #: ../pricing/pricing.php:167
2179
- msgid "Sign up for yearly"
2180
- msgstr ""
2181
-
2182
- #: ../pricing/pricing.php:171
2183
- msgid "Get more with Email Subscribers Pro"
2184
- msgstr ""
2185
-
2186
- #: ../pricing/pricing.php:173
2187
- msgid "All features of Email Subscribers free plugin + everything below:"
2188
- msgstr ""
2189
-
2190
- #: ../pricing/pricing.php:176
2191
- msgid "Protect your list from bot attacks"
2192
- msgstr ""
2193
-
2194
- #: ../pricing/pricing.php:177
2195
- msgid "Use "
2196
- msgstr ""
2197
-
2198
- #: ../pricing/pricing.php:177
2199
- msgid "captcha"
2200
- msgstr ""
2201
-
2202
- #: ../pricing/pricing.php:177
2203
- msgid ""
2204
- "to protect your email list from bots. The simple maths captcha helps "
2205
- "identifying bots from humans and eliminates spam signups."
2206
- msgstr ""
2207
-
2208
- #: ../pricing/pricing.php:180
2209
- msgid "Check email status & increase email success rate"
2210
- msgstr ""
2211
-
2212
- #: ../pricing/pricing.php:181
2213
- msgid "Double check the status of the emails addresses and increase "
2214
- msgstr ""
2215
-
2216
- #: ../pricing/pricing.php:181
2217
- msgid "email success rate"
2218
- msgstr ""
2219
-
2220
- #: ../pricing/pricing.php:181
2221
- msgid "of your email campaign. "
2222
- msgstr ""
2223
-
2224
- #: ../pricing/pricing.php:187
2225
- msgid "Fullproof email deliverability"
2226
- msgstr ""
2227
-
2228
- #: ../pricing/pricing.php:188
2229
- msgid ""
2230
- "Reduce the risk of emails ending in trash or spam. Increase email "
2231
- "deliverability by double checking emails for their "
2232
- msgstr ""
2233
-
2234
- #: ../pricing/pricing.php:188
2235
- msgid "spam score"
2236
- msgstr ""
2237
-
2238
- #: ../pricing/pricing.php:188
2239
- msgid "before hitting send."
2240
- msgstr ""
2241
-
2242
- #: ../pricing/pricing.php:191
2243
- msgid "Track email leads in Google"
2244
- msgstr ""
2245
-
2246
- #: ../pricing/pricing.php:192
2247
- msgid "Insert "
2248
- msgstr ""
2249
-
2250
- #: ../pricing/pricing.php:192
2251
- msgid "UTM tracking"
2252
- msgstr ""
2253
-
2254
- #: ../pricing/pricing.php:192
2255
- msgid ""
2256
- "in all your email CTA’s and track the effectiveness of your emails directly "
2257
- "within Google. Know which/ how many leads landed up from your emails and "
2258
- "tweak emails for better performance."
2259
- msgstr ""
2260
-
2261
- #: ../pricing/pricing.php:199
2262
- msgid "Save time, use readymade email templates"
2263
- msgstr ""
2264
-
2265
- #: ../pricing/pricing.php:200
2266
- msgid ""
2267
- "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
2268
- "elegant templates</strong> to send your next email campaign."
2269
- msgstr ""
2270
-
2271
- #: ../pricing/pricing.php:203
2272
- msgid "Customize confirmation and unsubscribe page"
2273
- msgstr ""
2274
-
2275
- #: ../pricing/pricing.php:204
2276
- msgid ""
2277
- "Communicate with subscribers. Redirect them to beautifully designed "
2278
- "<strong>confirmation and unsubscribe pages</strong> on your website."
2279
- msgstr ""
2280
-
2281
- #: ../pricing/pricing.php:211
2282
- msgid "Coming soon..."
2283
- msgstr ""
2284
-
2285
- #: ../pricing/pricing.php:213
2286
- msgid "Spam testing"
2287
- msgstr ""
2288
-
2289
- #: ../pricing/pricing.php:214
2290
- msgid "Bounce handling"
2291
- msgstr ""
2292
-
2293
- #: ../pricing/pricing.php:215
2294
- msgid "Advanced reporting"
2295
- msgstr ""
2296
-
2297
- #. Plugin Name of the plugin/theme
2298
- msgid "Email Subscribers & Newsletters"
2299
- msgstr ""
2300
-
2301
- #. URI of the plugin
2302
- msgid "https://www.icegram.com"
2303
- msgstr ""
2304
-
2305
- #. Description of the plugin/theme
2306
- msgid ""
2307
- "Add subscription forms on website, send HTML newsletters & automatically "
2308
- "notify subscribers about new blog posts once it is published."
2309
- msgstr ""
1
+ # Loco Gettext template
2
+ #, fuzzy
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
6
+ "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
+ "POT-Creation-Date: 2018-08-30 10:14+0000\n"
8
+ "POT-Revision-Date: Mon Aug 06 2018 14:11:14 GMT+0530 (IST)\n"
9
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
+ "Last-Translator: \n"
11
+ "Language-Team: Icegram <hello@icegram.com>Language:\n"
12
+ "Language: \n"
13
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-SearchPath-0: ..\n"
20
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
21
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
22
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
23
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
24
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
25
+ "X-Generator: Loco https://localise.biz/"
26
+
27
+ #. Plugin Name of the plugin/theme
28
+ msgid "Email Subscribers & Newsletters"
29
+ msgstr ""
30
+
31
+ #. Description of the plugin/theme
32
+ msgid ""
33
+ "Add subscription forms on website, send HTML newsletters & automatically "
34
+ "notify subscribers about new blog posts once it is published."
35
+ msgstr ""
36
+
37
+ #. URI of the plugin
38
+ #. Author URI of the plugin
39
+ msgid "https://www.icegram.com/"
40
+ msgstr ""
41
+
42
+ #. Author of the plugin/theme
43
+ msgid "Icegram"
44
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
query/db_notification.php CHANGED
@@ -141,7 +141,7 @@ class es_cls_notification {
141
  }
142
  }
143
  $sSql .= " and (es_email_status = 'Confirmed' or es_email_status = 'Single Opt In')";
144
- $sSql .= " ORDER BY es_email_mail ASC";
145
  $subscribers = $wpdb->get_results( $sSql, ARRAY_A );
146
  }
147
 
141
  }
142
  }
143
  $sSql .= " and (es_email_status = 'Confirmed' or es_email_status = 'Single Opt In')";
144
+ $sSql .= " GROUP BY es_email_mail ORDER BY es_email_mail ASC";
145
  $subscribers = $wpdb->get_results( $sSql, ARRAY_A );
146
  }
147
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Author URI: https://www.icegram.com/
5
  Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.9
7
  Tested up to: 4.9.8
8
- Stable tag: 3.5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -342,6 +342,12 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
342
 
343
  == Changelog ==
344
 
 
 
 
 
 
 
345
  = 3.5.6 (09.08.2018) =
346
 
347
  * Update: POT file
5
  Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.9
7
  Tested up to: 4.9.8
8
+ Stable tag: 3.5.7
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
342
 
343
  == Changelog ==
344
 
345
+ = 3.5.7 (30.08.2018) =
346
+
347
+ * Fix: Post notification sent to multiple times.
348
+ * Update: POT file
349
+ * Localization: Made all translation files up-to-date with latest POT file
350
+
351
  = 3.5.6 (09.08.2018) =
352
 
353
  * Update: POT file