Email Subscribers & Newsletters - Version 3.3.4

Version Description

(26.07.2017) =

  • New: Keyword ###POSTAUTHOR### to display Post Author name in Post Notification emails
  • New: Improvements in default settings and the email content created on first install of plugin (New users only)
  • New: Display Blog Name in FROM name instead of Admin (New users only)
  • Update: POT file
  • Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
  • Tweak: Do not highlight 'Reports' menu in Grey color
  • Tweak: Documentation links
Download this release

Release Info

Developer storeapps
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 3.3.4
Comparing to
See all releases

Code changes from version 3.3.3 to 3.3.4

changelog.txt CHANGED
@@ -1,16 +1,26 @@
1
  Plugin Name : Email Subscribers & Newsletters
2
- Plugin URI : http://www.icegram.com/
3
  Author : Icegram
4
- Author URI : http://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
 
 
 
 
7
  ************************************************************Version 3.3.3************************************************************
8
 
9
  * Fix: Settings used to get reset to default values when upgraded to a version higher than version 3.3
10
 
11
  ************************************************************Version 3.3.2************************************************************
12
 
13
- * New: Improvements in default Post Notification & Newsletter templates created on first install of plugin
14
  * Update: Mention while creating emails (under Compose) that Available Keywords are for Post Notifications only
15
  * Update: POT file
16
  * New: Translation for Norwegian (nb_NO) language added (Thanks to Helge Rosseboe)
1
  Plugin Name : Email Subscribers & Newsletters
2
+ Plugin URI : https://www.icegram.com/
3
  Author : Icegram
4
+ Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ************************************************************Version 3.3.4************************************************************
8
+
9
+ * New: Keyword ###POSTAUTHOR### to display Post Author name in Post Notification emails
10
+ * New: Improvements in default settings and the email content created on first install of plugin (New users only)
11
+ * New: Display Blog Name in FROM name instead of Admin (New users only)
12
+ * Update: POT file
13
+ * Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
14
+ * Tweak: Do not highlight 'Reports' menu in Grey color
15
+ * Tweak: Documentation links
16
+
17
  ************************************************************Version 3.3.3************************************************************
18
 
19
  * Fix: Settings used to get reset to default values when upgraded to a version higher than version 3.3
20
 
21
  ************************************************************Version 3.3.2************************************************************
22
 
23
+ * New: Improvements in default Post Notification & Newsletter templates created on first install of plugin (New users only)
24
  * Update: Mention while creating emails (under Compose) that Available Keywords are for Post Notifications only
25
  * Update: POT file
26
  * New: Translation for Norwegian (nb_NO) language added (Thanks to Helge Rosseboe)
classes/es-common.php CHANGED
@@ -118,24 +118,24 @@ class es_cls_common {
118
  public static function es_sent_report_plain() {
119
  $report = "";
120
  $report = $report. "Hi Admin,\n\n";
121
- $report = $report. "Email has been sent successfully to ###COUNT### email(s). Please find the details below.\n\n";
122
- $report = $report. "Unique ID : ###UNIQUE### \n";
123
- $report = $report. "Start Time: ###STARTTIME### \n";
124
- $report = $report. "End Time: ###ENDTIME### \n";
125
- $report = $report. "For more information, login to your dashboard and go to Reports menu in Email Subscribers. \n\n";
126
- $report = $report. "Thank You. \n";
127
  return $report;
128
  }
129
 
130
  public static function es_sent_report_html() {
131
  $report = "";
132
- $report = $report. "Hi Admin, <br/><br/>";
133
- $report = $report. "Email has been sent successfully to ###COUNT### email(s). Please find the details below.<br/><br/>";
134
- $report = $report. "Unique ID : ###UNIQUE### <br/>";
135
- $report = $report. "Start Time: ###STARTTIME### <br/>";
136
- $report = $report. "End Time: ###ENDTIME### <br/>";
137
- $report = $report. "For more information, login to your dashboard and go to Reports menu in Email Subscribers. <br/><br/>";
138
- $report = $report. "Thank You. <br/>";
139
  return $report;
140
  }
141
 
118
  public static function es_sent_report_plain() {
119
  $report = "";
120
  $report = $report. "Hi Admin,\n\n";
121
+ $report = $report. "Email has been sent successfully to ###COUNT### email(s). Please find the details below:\n\n";
122
+ $report = $report. "Unique ID: ###UNIQUE###\n";
123
+ $report = $report. "Start Time: ###STARTTIME###\n";
124
+ $report = $report. "End Time: ###ENDTIME###\n";
125
+ $report = $report. "For more information, login to your dashboard and go to Reports menu in Email Subscribers.\n\n";
126
+ $report = $report. "Thank You.";
127
  return $report;
128
  }
129
 
130
  public static function es_sent_report_html() {
131
  $report = "";
132
+ $report = $report. "Hi Admin,<br/><br/>";
133
+ $report = $report. "Email has been sent successfully to ###COUNT### email(s). Please find the details below:<br/><br/>";
134
+ $report = $report. "Unique ID: ###UNIQUE###<br/>";
135
+ $report = $report. "Start Time: ###STARTTIME###<br/>";
136
+ $report = $report. "End Time: ###ENDTIME###<br/>";
137
+ $report = $report. "For more information, login to your dashboard and go to Reports menu in Email Subscribers.<br/><br/>";
138
+ $report = $report. "Thank You.";
139
  return $report;
140
  }
141
 
classes/es-register.php CHANGED
@@ -105,10 +105,12 @@ class es_cls_registerhook {
105
 
106
  $guid = es_cls_common::es_generate_guid(60);
107
  $home_url = home_url('/');
 
108
  $cronurl = $home_url . "?es=cron&guid=". $guid;
 
109
  add_option('ig_es_cronurl', $cronurl);
110
  add_option('ig_es_cron_mailcount', "50");
111
- add_option('ig_es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the email ###SUBJECT###. And it sent email to ###COUNT### recipient. \r\n\r\nThank You");
112
  update_option('email-subscribers', "2.9" );
113
  }
114
  }
@@ -373,24 +375,24 @@ class es_cls_registerhook {
373
 
374
  // Compose table
375
  $wpdb->query( "UPDATE {$wpdb->prefix}es_templatetable
376
- SET es_email_type =
377
- ( CASE
378
- WHEN es_email_type = 'Static Template' THEN 'Newsletter'
379
- WHEN es_email_type = 'Dynamic Template' THEN 'Post Notification'
380
- ELSE es_email_type
381
- END ) " );
382
 
383
  // Sent Details table
384
  $wpdb->query( "UPDATE {$wpdb->prefix}es_sentdetails
385
  SET es_sent_type =
386
  ( CASE
387
- WHEN es_sent_type = 'Instant Mail' THEN 'Immediately'
388
- WHEN es_sent_type = 'Cron Mail' THEN 'Cron'
389
- ELSE es_sent_type
390
- END ),
391
- es_sent_source =
392
  ( CASE
393
- WHEN es_sent_source = 'manual' THEN 'Newsletter'
394
  WHEN es_sent_source = 'notification' THEN 'Post Notification'
395
  ELSE es_sent_source
396
  END ) " );
@@ -399,10 +401,10 @@ class es_cls_registerhook {
399
  $wpdb->query( "UPDATE {$wpdb->prefix}es_deliverreport
400
  SET es_deliver_senttype =
401
  ( CASE
402
- WHEN es_deliver_senttype = 'Instant Mail' THEN 'Immediately'
403
  WHEN es_deliver_senttype = 'Cron Mail' THEN 'Cron'
404
  ELSE es_deliver_senttype
405
- END ) " );
406
 
407
  update_option( 'current_sa_email_subscribers_db_version', '3.2.7' );
408
  }
@@ -495,7 +497,7 @@ class es_cls_registerhook {
495
  public static function es_add_admin_notices() {
496
  ?>
497
  <style type="text/css">
498
- a.es-admin-btn{
499
  margin-left: 10px;
500
  padding: 4px 8px;
501
  position: relative;
@@ -508,24 +510,24 @@ class es_cls_registerhook {
508
  font-weight: 600;
509
  font-size: 13px;
510
  }
511
- a.es-admin-btn-secondary{
512
  background: #fafafa;
513
  margin-left: 20px;
514
  font-weight: 400;
515
  }
516
 
517
- a.es-admin-btn:hover{
518
  color: #FFF;
519
  background-color: #363b3f;
520
  }
521
- .es-form-container .es-form-feild{
522
  display: inline-block;
523
  }
524
- .es-form-container .es-form-feild:not(:first-child){
525
- margin-left: 5%;
526
  }
527
- .es-form-container{
528
- background-color: rgba(52, 0, 109, 0.89) !important;
529
  border-radius: 0.618em;
530
  margin-top: 1%;
531
  padding: 1em 1em 0.5em 1em;
@@ -533,142 +535,182 @@ class es_cls_registerhook {
533
  color: #FFF;
534
  font-size: 1.1em;
535
  }
536
- .es-form-wrapper{
537
  margin-bottom:0.4em;
538
  }
539
- .es-form-headline div.es-mainheadline{
540
  font-weight: bold;
541
  font-size: 1.618em;
542
  line-height: 1.8em;
543
  }
544
- .es-form-headline div.es-subheadline{
545
  padding-bottom: 0.4em;
546
  font-family: Georgia, Palatino, serif;
547
  font-size: 1.2em;
548
  color: #d4a000;
549
  }
550
- .es-survey-ques{
551
  font-size:1.1em;
552
  padding-bottom: 0.3em;
553
  }
554
- .es-form-feild label{
555
  font-size:0.9em;
556
  margin-left: 0.2em;
557
  }
558
- .es-button{
559
  box-shadow: 0 1px 0 #03a025;
560
  font-weight: bold;
561
  height: 2em;
562
  line-height: 1em;
563
  }
564
- .es-button.primary{
565
  color: #FFFFFF!important;
566
  border-color: #a7c53c !important;
567
  background: #a7c53c !important;
568
  box-shadow: none;
569
  padding: 0 3.6em;
570
  }
571
- .es-button.secondary{
572
  color: #545454!important;
573
  border-color: #d9dcda!important;
574
  background: rgba(243, 243, 243, 0.83) !important;
575
  }
576
- .es-loader-wrapper{
577
  position: absolute;
578
- top: 0.6em;
579
- right: 0;
580
  display: none;
 
 
 
581
  }
582
- .es-loader-wrapper img{
583
  width: 60%;
584
  }
585
- .es-msg-wrap{
586
  display: none;
587
  text-align: center;
588
  }
589
- .es-msg-wrap .es-msg-text{
590
  padding: 1%;
591
  font-size: 2em;
592
  }
593
- .es-form-field.es-left{
594
  margin-bottom: 0.6em;
595
  width: 29%;
596
  display: inline-block;
597
  float: left;
598
  }
599
- .es-form-field.es-right{
600
  margin-left: 3%;
601
  width: 67%;
602
  display: inline-block;
603
  }
604
- .es-profile-txt:before{
605
  font-family: dashicons;
606
  content: "\f345";
607
  vertical-align: middle;
608
  }
609
- .es-profile-txt{
610
  font-size: 0.9em;
611
  }
612
- .es-right-info .es-right{
613
- width: 48%;
614
  display: inline-block;
615
  float: right;
 
616
  }
617
- .es-right-info .es-left{
618
- width: 52%;
619
  display: inline-block;
620
  }
621
- .es-form-wrapper form{
622
  margin-top: 0.6em;
623
  }
624
- .es-right-info label{
625
  padding: 0 0.5em 0 0;
626
  font-size: 0.8em;
627
  text-transform: uppercase;
628
  color: rgba(239, 239, 239, 0.98);
629
  }
630
- .es-list-item{
631
  margin-bottom: 0.9em;
 
 
632
  }
633
- .es-rocket{
634
  position: absolute;
635
- top: 3em;
636
- right: 0%;
637
- }
638
- .es-rocket img{
639
- width: 85%;
640
  }
641
- #es-no{
642
  box-shadow: none;
643
- cursor: pointer;
644
- color: #c3bfbf;
645
- text-decoration: underline;
646
- width: 100%;
647
- display: block;
 
 
 
648
  }
649
  .es-clearfix:after {
650
- content: ".";
651
- display: block;
652
- clear: both;
653
- visibility: hidden;
654
- line-height: 0;
655
- height: 0;
 
 
 
 
 
656
  }
657
  </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
 
659
  <?php
660
 
661
  // 13th June 17
662
  // updated on 5th July 17 - 0.2
663
- $home_url = home_url();
664
- $strlen = strlen($home_url);
665
- $res = $strlen%10;
666
- if($res != 1 && $res != 2)
667
- return;
668
  $es_data = es_cls_dbquery::es_survey_res();
669
  $screen = get_current_screen();
670
  if( stripos($screen->id, 'email-subscribers' ) === false ) return;
671
  if( get_option('es_survey_done') == 1 ) return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  ?>
673
 
674
  <div class="es-form-container wrap">
@@ -701,7 +743,7 @@ class es_cls_registerhook {
701
  <?php
702
  if($es_data['cron'] > $es_data['immediately']){
703
  _e('Send emails via Cron', ES_TDOMAIN);
704
- }else {
705
  _e('Send emails Immediately', ES_TDOMAIN);
706
  }
707
  ?>
@@ -722,7 +764,7 @@ class es_cls_registerhook {
722
  <div style="font-size: 1.218em;padding-bottom: 0.5em;display: block;font-weight: bold;color: #ffd3a2;"><?php echo __( 'How soon do you want these new features?', ES_TDOMAIN ); ?></div>
723
  <div class="es-right-info">
724
  <div class="es-left">
725
- <ul style="margin-top:0;">
726
  <li class="es-list-item"><?php _e('Beautiful Email Designs', ES_TDOMAIN); ?><br>
727
  <label title="days"><input checked="" type="radio" name="es_data[design_tmpl]" value="0"><?php _e('Right now!', ES_TDOMAIN); ?></label>
728
  <label title="days"><input type="radio" name="es_data[design_tmpl]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
@@ -733,10 +775,6 @@ class es_cls_registerhook {
733
  <label><input checked="" type="radio" name="es_data[email_control]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
734
  <label><input type="radio" name="es_data[email_control]" value="2"><?php _e('Later', ES_TDOMAIN); ?></label>
735
  </li>
736
- </ul>
737
- </div>
738
- <div class="es-right">
739
- <ul style="margin-top:0;">
740
  <li class="es-list-item"><?php _e('Discard Fake / Bouncing Emails', ES_TDOMAIN); ?><br>
741
  <label><input type="radio" name="es_data[cleanup]" value="0"><?php _e('Right now!', ES_TDOMAIN); ?></label>
742
  <label><input checked="" type="radio" name="es_data[cleanup]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
@@ -747,19 +785,24 @@ class es_cls_registerhook {
747
  <label><input type="radio" name="es_data[report]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
748
  <label><input checked="" type="radio" name="es_data[report]" value="2"><?php _e('Later', ES_TDOMAIN); ?></label>
749
  </li>
 
 
 
 
 
 
 
 
 
 
750
  </ul>
751
  </div>
 
 
 
752
  </div>
753
  </div>
754
  </div>
755
- <div style="position:relative;margin: 0 auto;padding: .5em;width: 70%;text-align: center;">
756
- <input style="width: 55%;vertical-align: middle;display: inline-block;" placeholder="Enter your email to get early access" type="email" name="es_data[email]">
757
- <div class="" style="display: inline-block;margin-left: 0.4em;width: 23%;vertical-align: middle;">
758
- <input data-val="yes" type="submit" id="es-yes" value="Alright, Send It All" class="es-button button primary">
759
- </div>
760
- <div class="es-loader-wrapper"><img src="<?php echo ES_URL ?>images/spinner-2x.gif"></div>
761
- <a id="es-no" data-val="no" class="">Nah, I don't like improvements</a>
762
- </div>
763
  </form>
764
  <div class="es-rocket"><img src="<?php echo ES_URL?>images/es-growth-rocket.png"/></div>
765
  </div>
@@ -797,7 +840,7 @@ class es_cls_registerhook {
797
  jQuery(".es-form-container").hide('slow');
798
  }, 5000);
799
  }
800
- });
801
  })
802
 
803
  });
@@ -808,7 +851,7 @@ class es_cls_registerhook {
808
 
809
  public static function es_submit_survey() {
810
 
811
- $url = 'http://www.icegram.com/wp-admin/admin-ajax.php';
812
 
813
  if( !empty($_POST['btn-val']) && $_POST['btn-val'] == 'no' ) {
814
  update_option('es_survey_done', true);
@@ -816,10 +859,8 @@ class es_cls_registerhook {
816
  }
817
 
818
  if( !empty( $_POST ) ) {
819
- // $data = $_POST['es_data']['data'];
820
  $params = $_POST;
821
  $params['domain'] = home_url();
822
- // $params['es_data']['data'] = $data;
823
  } else {
824
  exit();
825
  }
105
 
106
  $guid = es_cls_common::es_generate_guid(60);
107
  $home_url = home_url('/');
108
+ $blogname = get_option('blogname');
109
  $cronurl = $home_url . "?es=cron&guid=". $guid;
110
+
111
  add_option('ig_es_cronurl', $cronurl);
112
  add_option('ig_es_cron_mailcount', "50");
113
+ add_option('ig_es_cron_adminmail', "Hi Admin,\r\n\r\nCron URL has been triggered successfully on ###DATE### for the email ###SUBJECT###. And it sent email to ###COUNT### recipient(s).\r\n\r\nBest,\r\n".$blogname."");
114
  update_option('email-subscribers', "2.9" );
115
  }
116
  }
375
 
376
  // Compose table
377
  $wpdb->query( "UPDATE {$wpdb->prefix}es_templatetable
378
+ SET es_email_type =
379
+ ( CASE
380
+ WHEN es_email_type = 'Static Template' THEN 'Newsletter'
381
+ WHEN es_email_type = 'Dynamic Template' THEN 'Post Notification'
382
+ ELSE es_email_type
383
+ END ) " );
384
 
385
  // Sent Details table
386
  $wpdb->query( "UPDATE {$wpdb->prefix}es_sentdetails
387
  SET es_sent_type =
388
  ( CASE
389
+ WHEN es_sent_type = 'Instant Mail' THEN 'Immediately'
390
+ WHEN es_sent_type = 'Cron Mail' THEN 'Cron'
391
+ ELSE es_sent_type
392
+ END ),
393
+ es_sent_source =
394
  ( CASE
395
+ WHEN es_sent_source = 'manual' THEN 'Newsletter'
396
  WHEN es_sent_source = 'notification' THEN 'Post Notification'
397
  ELSE es_sent_source
398
  END ) " );
401
  $wpdb->query( "UPDATE {$wpdb->prefix}es_deliverreport
402
  SET es_deliver_senttype =
403
  ( CASE
404
+ WHEN es_deliver_senttype = 'Instant Mail' THEN 'Immediately'
405
  WHEN es_deliver_senttype = 'Cron Mail' THEN 'Cron'
406
  ELSE es_deliver_senttype
407
+ END ) " );
408
 
409
  update_option( 'current_sa_email_subscribers_db_version', '3.2.7' );
410
  }
497
  public static function es_add_admin_notices() {
498
  ?>
499
  <style type="text/css">
500
+ a.es-admin-btn {
501
  margin-left: 10px;
502
  padding: 4px 8px;
503
  position: relative;
510
  font-weight: 600;
511
  font-size: 13px;
512
  }
513
+ a.es-admin-btn-secondary {
514
  background: #fafafa;
515
  margin-left: 20px;
516
  font-weight: 400;
517
  }
518
 
519
+ a.es-admin-btn:hover {
520
  color: #FFF;
521
  background-color: #363b3f;
522
  }
523
+ .es-form-container .es-form-field {
524
  display: inline-block;
525
  }
526
+ .es-form-container .es-form-field:not(:first-child) {
527
+ margin-left: 4%;
528
  }
529
+ .es-form-container {
530
+ background-color: rgb(42, 2, 86) !important;
531
  border-radius: 0.618em;
532
  margin-top: 1%;
533
  padding: 1em 1em 0.5em 1em;
535
  color: #FFF;
536
  font-size: 1.1em;
537
  }
538
+ .es-form-wrapper {
539
  margin-bottom:0.4em;
540
  }
541
+ .es-form-headline div.es-mainheadline {
542
  font-weight: bold;
543
  font-size: 1.618em;
544
  line-height: 1.8em;
545
  }
546
+ .es-form-headline div.es-subheadline {
547
  padding-bottom: 0.4em;
548
  font-family: Georgia, Palatino, serif;
549
  font-size: 1.2em;
550
  color: #d4a000;
551
  }
552
+ .es-survey-ques {
553
  font-size:1.1em;
554
  padding-bottom: 0.3em;
555
  }
556
+ .es-form-field label {
557
  font-size:0.9em;
558
  margin-left: 0.2em;
559
  }
560
+ .es-survey-next,.es-button {
561
  box-shadow: 0 1px 0 #03a025;
562
  font-weight: bold;
563
  height: 2em;
564
  line-height: 1em;
565
  }
566
+ .es-survey-next,.es-button.primary {
567
  color: #FFFFFF!important;
568
  border-color: #a7c53c !important;
569
  background: #a7c53c !important;
570
  box-shadow: none;
571
  padding: 0 3.6em;
572
  }
573
+ .es-button.secondary {
574
  color: #545454!important;
575
  border-color: #d9dcda!important;
576
  background: rgba(243, 243, 243, 0.83) !important;
577
  }
578
+ .es-loader-wrapper {
579
  position: absolute;
 
 
580
  display: none;
581
+ left: 50%;
582
+ margin-top: 0.4em;
583
+ margin-left: 4em;
584
  }
585
+ .es-loader-wrapper img {
586
  width: 60%;
587
  }
588
+ .es-msg-wrap {
589
  display: none;
590
  text-align: center;
591
  }
592
+ .es-msg-wrap .es-msg-text {
593
  padding: 1%;
594
  font-size: 2em;
595
  }
596
+ .es-form-field.es-left {
597
  margin-bottom: 0.6em;
598
  width: 29%;
599
  display: inline-block;
600
  float: left;
601
  }
602
+ .es-form-field.es-right {
603
  margin-left: 3%;
604
  width: 67%;
605
  display: inline-block;
606
  }
607
+ .es-profile-txt:before {
608
  font-family: dashicons;
609
  content: "\f345";
610
  vertical-align: middle;
611
  }
612
+ .es-profile-txt {
613
  font-size: 0.9em;
614
  }
615
+ .es-right-info .es-right {
616
+ width: 50%;
617
  display: inline-block;
618
  float: right;
619
+ margin-top: 2em;
620
  }
621
+ .es-right-info .es-left {
622
+ width: 50%;
623
  display: inline-block;
624
  }
625
+ .es-form-wrapper form {
626
  margin-top: 0.6em;
627
  }
628
+ .es-right-info label {
629
  padding: 0 0.5em 0 0;
630
  font-size: 0.8em;
631
  text-transform: uppercase;
632
  color: rgba(239, 239, 239, 0.98);
633
  }
634
+ .es-list-item {
635
  margin-bottom: 0.9em;
636
+ display: none;
637
+ margin-top: 0.5em;
638
  }
639
+ .es-rocket {
640
  position: absolute;
641
+ top: 1.5em;
642
+ right: 5%;
 
 
 
643
  }
644
+ #es-no {
645
  box-shadow: none;
646
+ cursor: pointer;
647
+ color: #c3bfbf;
648
+ text-decoration: underline;
649
+ width: 100%;
650
+ display: inline-block;
651
+ margin: 0 auto;
652
+ margin-left: 11em;
653
+ margin-top: 0.2em;
654
  }
655
  .es-clearfix:after {
656
+ content: ".";
657
+ display: block;
658
+ clear: both;
659
+ visibility: hidden;
660
+ line-height: 0;
661
+ height: 0;
662
+ }
663
+
664
+ .es-survey-next {
665
+ text-decoration: none;
666
+ color: #fff;
667
  }
668
  </style>
669
+ <script type="text/javascript">
670
+ jQuery(function() {
671
+ jQuery('.es-list-item:nth-child(2)').show();
672
+ jQuery('.es-list-item:nth-child(2)').addClass('current');
673
+ jQuery('.es-form-container').on('click', '.es-survey-next', function(){
674
+ var count = jQuery('.es-count-update').text();
675
+ if(count < 5){
676
+ count = parseInt(count) + 1;
677
+ }
678
+ jQuery('.es-count-update').text(count);
679
+ jQuery('.es-list-item.current').hide();
680
+ jQuery('.es-list-item.current').next().show().addClass('current');
681
+ jQuery('.es-list-item.current').prev('.es-list-item').hide();
682
+ if(jQuery('.es-list-item.current').is(':last-child')){
683
+ jQuery('.es-survey-next').hide();
684
+
685
+ }
686
+ });
687
+
688
+ });
689
+ </script>
690
 
691
  <?php
692
 
693
  // 13th June 17
694
  // updated on 5th July 17 - 0.2
695
+ // updated on 26th July 17 - 0.2
 
 
 
 
696
  $es_data = es_cls_dbquery::es_survey_res();
697
  $screen = get_current_screen();
698
  if( stripos($screen->id, 'email-subscribers' ) === false ) return;
699
  if( get_option('es_survey_done') == 1 ) return;
700
+
701
+ // Check days passed from this update (v3.3.4)
702
+ $timezone_format = _x('Y-m-d', 'timezone date format');
703
+ $es_current_date = date_i18n($timezone_format);
704
+ $es_update_date = get_option('ig_es_update_v_3_3_4_date');
705
+
706
+ if ( $es_update_date === false ) {
707
+ $es_update_date = $es_current_date;
708
+ add_option('ig_es_update_v_3_3_4_date',$es_update_date);
709
+ }
710
+
711
+ $date_diff = floor( ( strtotime($es_current_date) - strtotime($es_update_date) ) / (3600 * 24) );
712
+ if($date_diff < 10) return;
713
+
714
  ?>
715
 
716
  <div class="es-form-container wrap">
743
  <?php
744
  if($es_data['cron'] > $es_data['immediately']){
745
  _e('Send emails via Cron', ES_TDOMAIN);
746
+ } else {
747
  _e('Send emails Immediately', ES_TDOMAIN);
748
  }
749
  ?>
764
  <div style="font-size: 1.218em;padding-bottom: 0.5em;display: block;font-weight: bold;color: #ffd3a2;"><?php echo __( 'How soon do you want these new features?', ES_TDOMAIN ); ?></div>
765
  <div class="es-right-info">
766
  <div class="es-left">
767
+ <ul style="margin-top:0;"><span class="es-counter"><span class="es-count-update">1</span> of 5</span>
768
  <li class="es-list-item"><?php _e('Beautiful Email Designs', ES_TDOMAIN); ?><br>
769
  <label title="days"><input checked="" type="radio" name="es_data[design_tmpl]" value="0"><?php _e('Right now!', ES_TDOMAIN); ?></label>
770
  <label title="days"><input type="radio" name="es_data[design_tmpl]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
775
  <label><input checked="" type="radio" name="es_data[email_control]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
776
  <label><input type="radio" name="es_data[email_control]" value="2"><?php _e('Later', ES_TDOMAIN); ?></label>
777
  </li>
 
 
 
 
778
  <li class="es-list-item"><?php _e('Discard Fake / Bouncing Emails', ES_TDOMAIN); ?><br>
779
  <label><input type="radio" name="es_data[cleanup]" value="0"><?php _e('Right now!', ES_TDOMAIN); ?></label>
780
  <label><input checked="" type="radio" name="es_data[cleanup]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
785
  <label><input type="radio" name="es_data[report]" value="1"><?php _e('Soon', ES_TDOMAIN); ?></label>
786
  <label><input checked="" type="radio" name="es_data[report]" value="2"><?php _e('Later', ES_TDOMAIN); ?></label>
787
  </li>
788
+ <li class="es-list-item">
789
+ <div>
790
+ <input style="width: 70%;vertical-align: middle;display: inline-block;" placeholder="Enter your email to get early access" type="email" name="es_data[email]">
791
+ <div class="" style="display: inline-block;margin-left: 0.4em;width: 23%;vertical-align: middle;">
792
+ <input data-val="yes" type="submit" id="es-yes" value="Alright, Send It All" class="es-button button primary">
793
+ </div>
794
+ <div class="es-loader-wrapper"><img src="<?php echo ES_URL ?>images/spinner-2x.gif"></div>
795
+ <a id="es-no" data-val="no" class="">Nah, I don't like improvements</a>
796
+ </div>
797
+ </li>
798
  </ul>
799
  </div>
800
+ <div class="es-right">
801
+ <a href="#" class="es-survey-next button primary">Next</a>
802
+ </div>
803
  </div>
804
  </div>
805
  </div>
 
 
 
 
 
 
 
 
806
  </form>
807
  <div class="es-rocket"><img src="<?php echo ES_URL?>images/es-growth-rocket.png"/></div>
808
  </div>
840
  jQuery(".es-form-container").hide('slow');
841
  }, 5000);
842
  }
843
+ });
844
  })
845
 
846
  });
851
 
852
  public static function es_submit_survey() {
853
 
854
+ $url = 'https://www.icegram.com/wp-admin/admin-ajax.php';
855
 
856
  if( !empty($_POST['btn-val']) && $_POST['btn-val'] == 'no' ) {
857
  update_option('es_survey_done', true);
859
  }
860
 
861
  if( !empty( $_POST ) ) {
 
862
  $params = $_POST;
863
  $params['domain'] = home_url();
 
864
  } else {
865
  exit();
866
  }
classes/es-sendmail.php CHANGED
@@ -296,6 +296,7 @@ class es_cls_sendmail {
296
  $the_excerpt = implode(' ', $words);
297
  }
298
 
 
299
  if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) ) {
300
  $es_post_image_size = get_option( 'ig_es_post_image_size', 'full' );
301
  switch ( $es_post_image_size ) {
@@ -324,6 +325,13 @@ class es_cls_sendmail {
324
  $post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
325
  }
326
 
 
 
 
 
 
 
 
327
  $content = str_replace('###POSTTITLE###', $post_title, $content);
328
  $content = str_replace('###POSTLINK###', $post_link, $content);
329
  $content = str_replace('###POSTIMAGE###', $post_thumbnail_link, $content);
296
  $the_excerpt = implode(' ', $words);
297
  }
298
 
299
+ // Size of ###POSTIMAGE###
300
  if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) ) {
301
  $es_post_image_size = get_option( 'ig_es_post_image_size', 'full' );
302
  switch ( $es_post_image_size ) {
325
  $post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
326
  }
327
 
328
+ // setting up the post manually to use get_the_author() function below
329
+ setup_postdata($post);
330
+
331
+ // To get post author name for ###POSTAUTHOR###
332
+ $author = get_the_author();
333
+
334
+ $content = str_replace('###POSTAUTHOR###', the_author(), $content);
335
  $content = str_replace('###POSTTITLE###', $post_title, $content);
336
  $content = str_replace('###POSTLINK###', $post_link, $content);
337
  $content = str_replace('###POSTIMAGE###', $post_thumbnail_link, $content);
compose/compose-add.php CHANGED
@@ -90,7 +90,7 @@ if ( ! defined( 'ABSPATH' ) ) {
90
  <?php $settings_body = array( 'textarea_rows' => 25 ); ?>
91
  <?php wp_editor("", "es_templ_body", $settings_body);?>
92
  <p>
93
- <?php echo sprintf(__( '%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL### (For Post Notification only)', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
94
  </p>
95
 
96
  <div class="template_status" style="display:none;">
90
  <?php $settings_body = array( 'textarea_rows' => 25 ); ?>
91
  <?php wp_editor("", "es_templ_body", $settings_body);?>
92
  <p>
93
+ <?php echo sprintf(__( '%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
94
  </p>
95
 
96
  <div class="template_status" style="display:none;">
compose/compose-edit.php CHANGED
@@ -101,7 +101,7 @@ if ( ! defined( 'ABSPATH' ) ) {
101
  <?php $settings_body = array( 'textarea_rows' => 25 ); ?>
102
  <?php wp_editor(stripslashes($form['es_templ_body']), "es_templ_body", $settings_body);?>
103
  <p>
104
- <?php echo sprintf(__( '%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL### (For Post Notification only)', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
105
  </p>
106
 
107
  <div class="template_status" style="display:none;">
101
  <?php $settings_body = array( 'textarea_rows' => 25 ); ?>
102
  <?php wp_editor(stripslashes($form['es_templ_body']), "es_templ_body", $settings_body);?>
103
  <p>
104
+ <?php echo sprintf(__( '%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
105
  </p>
106
 
107
  <div class="template_status" style="display:none;">
email-subscribers.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /**
3
  * Plugin Name: Email Subscribers & Newsletters
4
- * Plugin URI: http://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.3.3
7
  * Author: Icegram
8
- * Author URI: http://www.icegram.com/
9
  * Requires at least: 3.4
10
  * Tested up to: 4.8
11
  * Text Domain: email-subscribers
1
  <?php
2
  /**
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.3.4
7
  * Author: Icegram
8
+ * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.4
10
  * Tested up to: 4.8
11
  * Text Domain: email-subscribers
help/help.php CHANGED
@@ -115,7 +115,7 @@ if ( ! defined( 'ABSPATH' ) ) {
115
 
116
  <ol class="es_faq_list">
117
  <li class="es_faq">
118
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website/" target="_blank">' . __( 'How to Add Subscription box to website?', ES_TDOMAIN ) . '</a>' ); ?>
119
  <p style="line-height: 1.7em;">
120
  <?php echo __( 'Use any of the following 3 methods to add subscription form to your website :<br>
121
  a) Use shortcode in any page/post : <strong>[email-subscribers namefield="YES" desc="" group="Public"]</strong> <i>Or</i><br>
@@ -124,66 +124,66 @@ if ( ! defined( 'ABSPATH' ) ) {
124
  </p>
125
  </li>
126
  <li class="es_faq">
127
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-general-plugin-settings/" target="_blank">' . __( 'General Plugin Settings', ES_TDOMAIN ) . '</a>' . __( ' (Modify existing emails like Confirmation, Welcome, Admin emails and Cron Settings and Assign User Roles)', ES_TDOMAIN ) ); ?>
128
  </li>
129
  <li class="es_faq">
130
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
131
  </li>
132
  <li class="es_faq">
133
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-change-update-translate-any-texts-from-email-subscribers/" target="_blank">' . __( 'How to change/update/translate any texts from Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
134
  </li>
135
  <li class="es_faq">
136
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/" target="_blank">' . __( 'How to add Unsubscribe link in emails?', ES_TDOMAIN ) . '</a>' ); ?>
137
  </li>
138
  <li class="es_faq">
139
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-compose-and-send-newsletter-emails/" target="_blank">' . __( 'How to Compose and Send Newsletter Emails?', ES_TDOMAIN ) . '</a>' ); ?>
140
  </li>
141
  <li class="es_faq">
142
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/" target="_blank">' . __( 'How to Configure and Send Post Notification Emails to subscribers when new posts are published?', ES_TDOMAIN ) . '</a>' ); ?>
143
  </li>
144
  <li class="es_faq">
145
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'What are the available keywords in the Post Notifications?', ES_TDOMAIN ) . '</a>' ); ?>
146
  </li>
147
  <li class="es_faq">
148
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/" target="_blank">' . __( 'How to send a sample new post notification email to testgroup/myself?', ES_TDOMAIN ) . '</a>' ); ?>
149
  </li>
150
  <li class="es_faq">
151
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-check-sent-emails/" target="_blank">' . __( 'How to check sent emails?', ES_TDOMAIN ) . '</a>' ); ?>
152
  </li>
153
  <li class="es_faq">
154
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/" target="_blank">' . __( 'How to Add/Update Existing Subscribers Group & Status?', ES_TDOMAIN ) . '</a>' ); ?>
155
  </li>
156
  <li class="es_faq">
157
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/" target="_blank">' . __( 'Subscribers are not receiving Emails?', ES_TDOMAIN ) . '</a>' ); ?>
158
  </li>
159
  <li class="es_faq">
160
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-show-subscribe-form-inside-a-popup/" target="_blank">' . __( 'How to show subscribe form inside a popup?', ES_TDOMAIN ) . '</a>' ); ?>
161
  </li>
162
  <li class="es_faq">
163
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/" target="_blank">' . __( 'How to use Rainmaker’s form in Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
164
  </li>
165
  <li class="es_faq">
166
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/" target="_blank">' . __( 'How to Redirect Subscribers to a new page/url after successful sign up?', ES_TDOMAIN ) . '</a>' ); ?>
167
  </li>
168
  <li class="es_faq">
169
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/" target="_blank">' . __( 'How to add captcha in Subscribe form of Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
170
  </li>
171
  <li class="es_faq">
172
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/" target="_blank">' . __( 'How to Schedule Cron Emails?', ES_TDOMAIN ) . '</a>' ); ?>
173
  </li>
174
  <li class="es_faq">
175
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/" target="_blank">' . __( 'How to Schedule Cron Emails in cPanel?', ES_TDOMAIN ) . '</a>' ); ?>
176
  </li>
177
  <li class="es_faq">
178
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/" target="_blank">' . __( 'How to Schedule Cron Emails in Parallels Plesk?', ES_TDOMAIN ) . '</a>' ); ?>
179
  </li>
180
  <li class="es_faq">
181
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/" target="_blank">' . __( 'What to do if Hosting doesn’t support Cron Jobs?', ES_TDOMAIN ) . '</a>' ); ?>
182
  </li>
183
  <li class="es_faq">
184
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-css-help/" target="_blank">' . __( 'CSS Help', ES_TDOMAIN ) . '</a>' ); ?>
185
  <li class="es_faq">
186
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-faq/" target="_blank">' . __( 'Common FAQ\'s', ES_TDOMAIN ) . '</a>' ); ?>
187
  </li>
188
  </ol>
189
  </div>
115
 
116
  <ol class="es_faq_list">
117
  <li class="es_faq">
118
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website/" target="_blank">' . __( 'How to Add Subscription box to website?', ES_TDOMAIN ) . '</a>' ); ?>
119
  <p style="line-height: 1.7em;">
120
  <?php echo __( 'Use any of the following 3 methods to add subscription form to your website :<br>
121
  a) Use shortcode in any page/post : <strong>[email-subscribers namefield="YES" desc="" group="Public"]</strong> <i>Or</i><br>
124
  </p>
125
  </li>
126
  <li class="es_faq">
127
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-general-plugin-settings/" target="_blank">' . __( 'General Plugin Settings', ES_TDOMAIN ) . '</a>' . __( ' (Modify existing emails like Confirmation, Welcome, Admin emails and Cron Settings and Assign User Roles)', ES_TDOMAIN ) ); ?>
128
  </li>
129
  <li class="es_faq">
130
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
131
  </li>
132
  <li class="es_faq">
133
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-change-update-translate-any-texts-from-email-subscribers/" target="_blank">' . __( 'How to change/update/translate any texts from Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
134
  </li>
135
  <li class="es_faq">
136
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/" target="_blank">' . __( 'How to add Unsubscribe link in emails?', ES_TDOMAIN ) . '</a>' ); ?>
137
  </li>
138
  <li class="es_faq">
139
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-compose-and-send-newsletter-emails/" target="_blank">' . __( 'How to Compose and Send Newsletter Emails?', ES_TDOMAIN ) . '</a>' ); ?>
140
  </li>
141
  <li class="es_faq">
142
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/" target="_blank">' . __( 'How to Configure and Send Post Notification Emails to subscribers when new posts are published?', ES_TDOMAIN ) . '</a>' ); ?>
143
  </li>
144
  <li class="es_faq">
145
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'What are the available keywords in the Post Notifications?', ES_TDOMAIN ) . '</a>' ); ?>
146
  </li>
147
  <li class="es_faq">
148
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/" target="_blank">' . __( 'How to send a sample new post notification email to testgroup/myself?', ES_TDOMAIN ) . '</a>' ); ?>
149
  </li>
150
  <li class="es_faq">
151
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-check-sent-emails/" target="_blank">' . __( 'How to check sent emails?', ES_TDOMAIN ) . '</a>' ); ?>
152
  </li>
153
  <li class="es_faq">
154
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/" target="_blank">' . __( 'How to Add/Update Existing Subscribers Group & Status?', ES_TDOMAIN ) . '</a>' ); ?>
155
  </li>
156
  <li class="es_faq">
157
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/" target="_blank">' . __( 'Subscribers are not receiving Emails?', ES_TDOMAIN ) . '</a>' ); ?>
158
  </li>
159
  <li class="es_faq">
160
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-show-subscribe-form-inside-a-popup/" target="_blank">' . __( 'How to show subscribe form inside a popup?', ES_TDOMAIN ) . '</a>' ); ?>
161
  </li>
162
  <li class="es_faq">
163
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/" target="_blank">' . __( 'How to use Rainmaker’s form in Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
164
  </li>
165
  <li class="es_faq">
166
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/" target="_blank">' . __( 'How to Redirect Subscribers to a new page/url after successful sign up?', ES_TDOMAIN ) . '</a>' ); ?>
167
  </li>
168
  <li class="es_faq">
169
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/" target="_blank">' . __( 'How to add captcha in Subscribe form of Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
170
  </li>
171
  <li class="es_faq">
172
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails/" target="_blank">' . __( 'How to Schedule Cron Emails?', ES_TDOMAIN ) . '</a>' ); ?>
173
  </li>
174
  <li class="es_faq">
175
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/" target="_blank">' . __( 'How to Schedule Cron Emails in cPanel?', ES_TDOMAIN ) . '</a>' ); ?>
176
  </li>
177
  <li class="es_faq">
178
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/" target="_blank">' . __( 'How to Schedule Cron Emails in Parallels Plesk?', ES_TDOMAIN ) . '</a>' ); ?>
179
  </li>
180
  <li class="es_faq">
181
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/" target="_blank">' . __( 'What to do if Hosting doesn’t support Cron Jobs?', ES_TDOMAIN ) . '</a>' ); ?>
182
  </li>
183
  <li class="es_faq">
184
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-css-help/" target="_blank">' . __( 'CSS Help', ES_TDOMAIN ) . '</a>' ); ?>
185
  <li class="es_faq">
186
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-faq/" target="_blank">' . __( 'Common FAQ\'s', ES_TDOMAIN ) . '</a>' ); ?>
187
  </li>
188
  </ol>
189
  </div>
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email Subscribers & Newsletters 3.2.9\n"
4
- "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
5
  "POT-Creation-Date: 2017-03-20 04:54:56+00:00\n"
6
  "PO-Revision-Date: Thu Apr 06 2017 17:16:38 GMT+0530 (IST)\n"
7
  "Last-Translator: Jordi Jorda <jjorda@periodistes.org>\n"
@@ -675,34 +675,34 @@ msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron
675
 
676
  #: cron/cron-add.php:127
677
  msgid ""
678
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
679
  "schedule-cron-emails/\">What is Cron?</a>"
680
  msgstr ""
681
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
682
  "schedule-cron-emails/\">Què és Cron?</a>"
683
 
684
  #: cron/cron-add.php:128
685
  msgid ""
686
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
687
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
688
  msgstr ""
689
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
690
  "schedule-cron-emails-in-parallels-plesk/\">Configuració del cron en Plesk</a>"
691
 
692
  #: cron/cron-add.php:129
693
  msgid ""
694
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
695
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
696
  msgstr ""
697
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
698
  "schedule-cron-emails-in-cpanel/\">Configuració del cron a cPanel</a>"
699
 
700
  #: cron/cron-add.php:130
701
  msgid ""
702
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
703
  "if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
704
  msgstr ""
705
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
706
  "if-hosting-doesnt-support-cron-jobs/\">El teu hosting no admet els treballs "
707
  "de cron?</a>"
708
 
@@ -1980,8 +1980,8 @@ msgstr "Email Subscribers & Newsletters"
1980
  #. Plugin URI of the plugin/theme
1981
  #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.4) #-#-#-#-#
1982
  #. Author URI of the plugin/theme
1983
- msgid "http://www.icegram.com/"
1984
- msgstr "http://www.icegram.com/"
1985
 
1986
  #. Description of the plugin/theme
1987
  msgid ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email Subscribers & Newsletters 3.2.9\n"
4
+ "Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
5
  "POT-Creation-Date: 2017-03-20 04:54:56+00:00\n"
6
  "PO-Revision-Date: Thu Apr 06 2017 17:16:38 GMT+0530 (IST)\n"
7
  "Last-Translator: Jordi Jorda <jjorda@periodistes.org>\n"
675
 
676
  #: cron/cron-add.php:127
677
  msgid ""
678
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
679
  "schedule-cron-emails/\">What is Cron?</a>"
680
  msgstr ""
681
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
682
  "schedule-cron-emails/\">Què és Cron?</a>"
683
 
684
  #: cron/cron-add.php:128
685
  msgid ""
686
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
687
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
688
  msgstr ""
689
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
690
  "schedule-cron-emails-in-parallels-plesk/\">Configuració del cron en Plesk</a>"
691
 
692
  #: cron/cron-add.php:129
693
  msgid ""
694
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
695
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
696
  msgstr ""
697
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
698
  "schedule-cron-emails-in-cpanel/\">Configuració del cron a cPanel</a>"
699
 
700
  #: cron/cron-add.php:130
701
  msgid ""
702
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
703
  "if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
704
  msgstr ""
705
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
706
  "if-hosting-doesnt-support-cron-jobs/\">El teu hosting no admet els treballs "
707
  "de cron?</a>"
708
 
1980
  #. Plugin URI of the plugin/theme
1981
  #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.4) #-#-#-#-#
1982
  #. Author URI of the plugin/theme
1983
+ msgid "https://www.icegram.com/"
1984
+ msgstr "https://www.icegram.com/"
1985
 
1986
  #. Description of the plugin/theme
1987
  msgid ""
languages/email-subscribers-cs_CZ.mo CHANGED
Binary file
languages/email-subscribers-cs_CZ.po CHANGED
@@ -853,34 +853,34 @@ msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
853
 
854
  #: cron/cron-add.php:127
855
  msgid ""
856
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
857
  "schedule-cron-emails/\">What is Cron?</a>"
858
  msgstr ""
859
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
860
  "schedule-cron-emails/\">Co je to cron?</a>"
861
 
862
  #: cron/cron-add.php:128
863
  msgid ""
864
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
865
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
866
  msgstr ""
867
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
868
  "schedule-cron-emails-in-parallels-plesk/\">Nastavení cronu v Plesk</a>"
869
 
870
  #: cron/cron-add.php:129
871
  msgid ""
872
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
873
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
874
  msgstr ""
875
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
876
  "schedule-cron-emails-in-cpanel/\">Nastavení cronu v cPanel</a>"
877
 
878
  #: cron/cron-add.php:130
879
  msgid ""
880
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
881
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
882
  msgstr ""
883
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
884
  "hosting-doesnt-support-cron-jobs/\">Hosting nepodporuje crony?</a>"
885
 
886
  #: export/export-email-address.php:33 export/export-email-address.php:37
@@ -1905,8 +1905,8 @@ msgstr "Email Subscribers & Newsletters"
1905
  #. Plugin URI of the plugin/theme
1906
  #. #-#-#-#-# tmp-email-subscribers.pot (Email Subscribers & Newsletters 3.2.3)
1907
  #. Author URI of the plugin/theme
1908
- msgid "http://www.icegram.com/"
1909
- msgstr "http://www.icegram.com/"
1910
 
1911
  #. Description of the plugin/theme
1912
  msgid ""
853
 
854
  #: cron/cron-add.php:127
855
  msgid ""
856
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
857
  "schedule-cron-emails/\">What is Cron?</a>"
858
  msgstr ""
859
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
860
  "schedule-cron-emails/\">Co je to cron?</a>"
861
 
862
  #: cron/cron-add.php:128
863
  msgid ""
864
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
865
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
866
  msgstr ""
867
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
868
  "schedule-cron-emails-in-parallels-plesk/\">Nastavení cronu v Plesk</a>"
869
 
870
  #: cron/cron-add.php:129
871
  msgid ""
872
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
873
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
874
  msgstr ""
875
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
876
  "schedule-cron-emails-in-cpanel/\">Nastavení cronu v cPanel</a>"
877
 
878
  #: cron/cron-add.php:130
879
  msgid ""
880
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
881
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
882
  msgstr ""
883
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
884
  "hosting-doesnt-support-cron-jobs/\">Hosting nepodporuje crony?</a>"
885
 
886
  #: export/export-email-address.php:33 export/export-email-address.php:37
1905
  #. Plugin URI of the plugin/theme
1906
  #. #-#-#-#-# tmp-email-subscribers.pot (Email Subscribers & Newsletters 3.2.3)
1907
  #. Author URI of the plugin/theme
1908
+ msgid "https://www.icegram.com/"
1909
+ msgstr "https://www.icegram.com/"
1910
 
1911
  #. Description of the plugin/theme
1912
  msgid ""
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-13 09:40:46+00:00\n"
6
- "PO-Revision-Date: 2017-06-16 17:31+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: de\n"
@@ -22,220 +22,28 @@ msgstr ""
22
  "X-Loco-Target-Locale: de_DE\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
- #: classes/es-register.php:155 classes/es-register.php:156
26
- #: settings/settings-edit.php:41
27
- msgid "Settings"
28
- msgstr "Einstellungen"
29
-
30
- #: classes/es-register.php:192
31
- msgctxt "compose-enhanced-select"
32
- msgid "Please enter the Email Subject."
33
- msgstr "Bitte gib das Subjekt der Email ein."
34
-
35
- #: classes/es-register.php:707
36
- msgid "is getting even better!"
37
- msgstr "wird sogar noch besser!"
38
-
39
- #: classes/es-register.php:708
40
- msgid "But I need you to"
41
- msgstr "Aber ich brauche Dich"
42
-
43
- #: classes/es-register.php:708
44
- msgid "help me prioritize"
45
- msgstr "hilf mir zu priorisieren"
46
-
47
- #: classes/es-register.php:708
48
- msgid "Please send your response today."
49
- msgstr "Bitte sende Deine Antwort noch heute."
50
-
51
- #: classes/es-register.php:715
52
- msgid "Here's how you use ES:"
53
- msgstr "Und so verwendest Du ES:"
54
-
55
- #: classes/es-register.php:720
56
- msgid "Used Post Notifications more often than Newsletter"
57
- msgstr "Verwendete öfter Benachrichtigungen über Beiträge als Newsletter"
58
-
59
- #: classes/es-register.php:722
60
- msgid "Used Newsletter more often than Post Notifications"
61
- msgstr "Verwendete öfter Newsletter als Benachrichtigungen über Beiträge"
62
-
63
- #: classes/es-register.php:724
64
- msgid "Used Post Notification &amp; Newsletter equally"
65
- msgstr ""
66
- "Verwendete Newsletter &amp; Benachrichtigungen über Beiträge zu gleichen Teilen"
67
-
68
- #: classes/es-register.php:728
69
- msgid "Have "
70
- msgstr "Habe "
71
-
72
- #: classes/es-register.php:728
73
- msgid " Active Subscribers"
74
- msgstr " Aktive Abonnenten"
75
-
76
- #: classes/es-register.php:729
77
- msgid "Post "
78
- msgstr "Beitrag "
79
-
80
- #: classes/es-register.php:729
81
- msgid " blog per week"
82
- msgstr " Beiträge pro Woche"
83
-
84
- #: classes/es-register.php:733
85
- msgid "Send mails via Cron"
86
- msgstr "Sende Emails via Cron"
87
-
88
- #: classes/es-register.php:735
89
- msgid "Send mails Immediately"
90
- msgstr "Sende Emails sofort"
91
-
92
- #: classes/es-register.php:745
93
- msgid "How soon do you want these new features?"
94
- msgstr "Wie bald möchtest Du diese neuen Features?"
95
-
96
- #: classes/es-register.php:749
97
- msgid "Beautiful Email Designs"
98
- msgstr "Schöne Email Designs"
99
-
100
- #: classes/es-register.php:750 classes/es-register.php:755 classes/es-register.php:764
101
- #: classes/es-register.php:769
102
- msgid "Right now!"
103
- msgstr "Jetzt!"
104
-
105
- #: classes/es-register.php:751 classes/es-register.php:756 classes/es-register.php:765
106
- #: classes/es-register.php:770
107
- msgid "Soon"
108
- msgstr "Bald"
109
-
110
- #: classes/es-register.php:752 classes/es-register.php:757 classes/es-register.php:766
111
- #: classes/es-register.php:771
112
- msgid "Later"
113
- msgstr "Später"
114
-
115
- #: classes/es-register.php:754
116
- msgid "Spam Check, Scheduling... (Better Email Delivery)"
117
- msgstr "Spamüberprüfung, Zeitplanung... (Besserer Emailversand)"
118
-
119
- #: classes/es-register.php:763
120
- msgid "Discard Fake / Bouncing Emails"
121
- msgstr "Verwerfe Fake- oder zurückgekommene Emails"
122
-
123
- #: classes/es-register.php:768
124
- msgid "Advanced Reporting"
125
- msgstr "Erweiterte Berichte"
126
-
127
- #: classes/es-register.php:791
128
- msgid "Thank you!"
129
- msgstr "Danke!"
130
 
131
- #: classes/es-register.php:792
132
- msgid "No issues, have a nice day!"
133
- msgstr "Keine Probleme gefunden, Genieße den Tag!"
134
 
135
- #: help/help.php:67
136
  #, c-format
137
  msgid ""
138
- "Like Email Subscribers? If yes, then consider %s to support further developments."
139
- msgstr ""
140
- "Du magst Email Subscribers? Falls ja, erwäge doch %s um zukünftige Entwicklungen zu "
141
- "unterstützen."
142
-
143
- #: help/help.php:67
144
- msgid "donating to us"
145
- msgstr "eine Spende an uns"
146
-
147
- #: help/help.php:139
148
- msgid "What are the keywords available in the Post Notification template?"
149
- msgstr ""
150
- "Welche Schlüsselworte sind in der Vorlage für Beitragsbenachrichtigungen verfügbar?"
151
-
152
- #: help/help.php:178
153
- msgid "CSS Help"
154
- msgstr "CSS Hilfe"
155
-
156
- #: settings/settings-edit.php:23
157
- msgid "Admin"
158
- msgstr "Admin"
159
-
160
- #: settings/settings-edit.php:24
161
- msgid "Signup Confirmation"
162
- msgstr "Anmeldebestätigung"
163
-
164
- #: settings/settings-edit.php:26
165
- msgid "Cron"
166
- msgstr "Cron"
167
-
168
- #: settings/settings-edit.php:228
169
- msgid ""
170
- "Enter the content for the subscriber welcome email whenever a user's email is either "
171
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: "
172
- "###NAME###, ###GROUP###, ###LINK###)"
173
  msgstr ""
174
- "Gib den Inhalt für die Willkommensmail ein. Diese wird verschickt wenn eine "
175
- "Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet (Single "
176
- "Opt In) ist. (Schlüsselworte: ###NAME###, ###GROUP###, ###LINK###)"
177
-
178
- #: subscribers/view-subscriber-export.php:62
179
- msgid "All Subscribers"
180
- msgstr "Alle Abonnenten"
181
-
182
- #: subscribers/view-subscriber-export.php:68
183
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
184
- msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
185
-
186
- #: subscribers/view-subscriber-export.php:74
187
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
188
- msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
189
-
190
- #: subscribers/view-subscriber-export.php:79
191
- msgid "4"
192
- msgstr "4"
193
-
194
- #: subscribers/view-subscriber-export.php:85
195
- msgid "5"
196
- msgstr "5"
197
-
198
- #: subscribers/view-subscriber-show.php:252
199
- #, c-format
200
- msgid "Total Subscribers: %s"
201
- msgstr "Abonnenten insgesamt: %s"
202
-
203
- #: subscribers/view-subscriber-show.php:254
204
- #, c-format
205
- msgid "Active Subscribers: %s"
206
- msgstr "Abonnenten aktiv: %s"
207
-
208
- #: subscribers/view-subscriber-show.php:342
209
- msgid "1 to 500 emails"
210
- msgstr "1 bis 500 Emails"
211
-
212
- #: subscribers/view-subscriber-show.php:343
213
- msgid "501 to 1000"
214
- msgstr "501 bis 1000"
215
-
216
- #: subscribers/view-subscriber-show.php:344
217
- msgid "1001 to 1500"
218
- msgstr "1001 bis 1500"
219
-
220
- #: subscribers/view-subscriber-show.php:345
221
- msgid "1501 to 2000"
222
- msgstr "1501 bis 2000"
223
-
224
- #: subscribers/view-subscriber-show.php:346
225
- msgid "2001 to 4000"
226
- msgstr "2001 bis 4000"
227
-
228
- #: subscribers/view-subscriber-show.php:347
229
- msgid "4001 to 6000"
230
- msgstr "4001 bis 6000"
231
-
232
- #: subscribers/view-subscriber-show.php:348
233
- msgid "6001 to 10000"
234
- msgstr "6001 bis 10000"
235
 
236
- #: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
237
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
238
- msgstr "Anmeldedatum und -Zeit<br>(Y-M-D H:I:S)"
239
 
240
  #: base/es-defined.php:32
241
  msgid ""
@@ -294,20 +102,20 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
294
  msgid "<span style=\"color:#993399;\">Immediately</span>"
295
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
296
 
297
- #: classes/es-loadwidget.php:28 classes/es-register.php:961
298
  #: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
299
  msgid "Name"
300
  msgstr "Name"
301
 
302
- #: classes/es-loadwidget.php:33 classes/es-register.php:966
303
  msgid "Email *"
304
  msgstr "Email *"
305
 
306
- #: classes/es-loadwidget.php:38 classes/es-register.php:971
307
  msgid "Subscribe"
308
  msgstr "Anmelden"
309
 
310
- #: classes/es-register.php:140 classes/es-register.php:141 classes/es-register.php:707
311
  msgid "Email Subscribers"
312
  msgstr "Email Subscribers"
313
 
@@ -326,10 +134,15 @@ msgid "Post Notifications"
326
  msgstr "Benachrichtigungen"
327
 
328
  #: classes/es-register.php:152 classes/es-register.php:153 sendmail/sendmail.php:93
329
- #: settings/settings-edit.php:318
330
  msgid "Newsletters"
331
  msgstr "Newsletter"
332
 
 
 
 
 
 
333
  #: classes/es-register.php:158 classes/es-register.php:159
334
  #: sentmail/sentmail-show.php:96
335
  msgid "Reports"
@@ -407,6 +220,11 @@ msgctxt "view-subscriber-enhanced-select"
407
  msgid "Please select only csv file. Please check official website for csv structure.."
408
  msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
409
 
 
 
 
 
 
410
  #: classes/es-register.php:193
411
  msgctxt "compose-enhanced-select"
412
  msgid "Do you want to delete this record?"
@@ -592,29 +410,129 @@ msgctxt "widget-page-enhanced-select"
592
  msgid "There was a problem with the request"
593
  msgstr "Es gab ein Problem mit der Anforderung"
594
 
595
- #: classes/es-register.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
596
  msgid "Widget Title"
597
  msgstr "Widget Titel"
598
 
599
- #: classes/es-register.php:1013
600
  msgid "Short description about subscription form"
601
  msgstr "Kurze Beschreibung des Anmeldeformulars"
602
 
603
- #: classes/es-register.php:1017
604
  msgid "Display Name Field"
605
  msgstr "Namensfeld anzeigen"
606
 
607
- #: classes/es-register.php:1019 settings/settings-edit.php:140
608
- #: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
609
  msgid "YES"
610
  msgstr "Ja"
611
 
612
- #: classes/es-register.php:1020 settings/settings-edit.php:141
613
- #: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
614
  msgid "NO"
615
  msgstr "Nein"
616
 
617
- #: classes/es-register.php:1024
618
  msgid "Subscriber Group"
619
  msgstr "Abonnentengruppe"
620
 
@@ -622,10 +540,6 @@ msgstr "Abonnentengruppe"
622
  msgid "Please enter template heading."
623
  msgstr "Bitte gib die Vorlagenüberschrift ein."
624
 
625
- #: compose/compose-add.php:43
626
- msgid "Template successfully created. "
627
- msgstr "Vorlage erfolgreich erstellt. "
628
-
629
  #: compose/compose-add.php:74
630
  msgid "Add new Email"
631
  msgstr "Neue Emailadresse hinzufügen"
@@ -635,7 +549,7 @@ msgstr "Neue Emailadresse hinzufügen"
635
  #: notification/notification-add.php:113 notification/notification-edit.php:124
636
  #: notification/notification-show.php:54 sendmail/sendmail.php:94
637
  #: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
638
- #: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
639
  #: subscribers/view-subscriber-add.php:114 subscribers/view-subscriber-edit.php:113
640
  #: subscribers/view-subscriber-export.php:38 subscribers/view-subscriber-import.php:146
641
  #: subscribers/view-subscriber-show.php:246 subscribers/view-subscriber-sync.php:92
@@ -643,8 +557,8 @@ msgid "Help"
643
  msgstr "Hilfe"
644
 
645
  #: compose/compose-add.php:78 compose/compose-edit.php:89
646
- msgid "Select your Mail Template"
647
- msgstr "Wähle die Mailvorlage"
648
 
649
  #: compose/compose-add.php:80 compose/compose-edit.php:91
650
  msgid "Newsletter"
@@ -658,25 +572,10 @@ msgstr "Benachrichtigung über Beitrag"
658
  msgid "Enter your Email Subject"
659
  msgstr "Gib das Emailsubjekt ein"
660
 
661
- #: compose/compose-add.php:87 compose/compose-edit.php:98
662
- msgid "Keyword: ###POSTTITLE###"
663
- msgstr "Schlüsselwort: ###POSTTITLE###"
664
-
665
  #: compose/compose-add.php:89 compose/compose-edit.php:100
666
  msgid "Enter Content for your Email"
667
  msgstr "Gib den Inhalt der Email ein"
668
 
669
- #: compose/compose-add.php:93 compose/compose-edit.php:104
670
- #, c-format
671
- msgid ""
672
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
673
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
674
- "###POSTFULL###"
675
- msgstr ""
676
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
677
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
678
- "###POSTFULL###"
679
-
680
  #: compose/compose-add.php:93 compose/compose-edit.php:104
681
  msgid "Available Keywords"
682
  msgstr "Verfügbare Schlüsselworte"
@@ -709,10 +608,6 @@ msgstr "Sichern"
709
  msgid "Oops, selected details does not exists."
710
  msgstr "Oops, die gewählten Details existieren nicht."
711
 
712
- #: compose/compose-edit.php:61
713
- msgid "Template successfully updated. "
714
- msgstr "Vorlage erfolgreich aktualisiert. "
715
-
716
  #: compose/compose-edit.php:84
717
  msgid "Edit Email"
718
  msgstr "Email bearbeiten"
@@ -787,6 +682,18 @@ msgstr ""
787
  msgid "For more help and tips..."
788
  msgstr "Für mehr Hilfe & Tips..."
789
 
 
 
 
 
 
 
 
 
 
 
 
 
790
  #: help/help.php:99
791
  msgid "Frequently Asked Questions"
792
  msgstr "Frequently Asked Questions"
@@ -795,7 +702,8 @@ msgstr "Frequently Asked Questions"
795
  #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
796
  #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
797
  #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
798
- #: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
 
799
  #, c-format
800
  msgid "%s"
801
  msgstr "%s"
@@ -810,11 +718,11 @@ msgstr "Allgemeine Plugineinstellungen"
810
 
811
  #: help/help.php:127
812
  msgid ""
813
- " (How to modify the existing email content like Confirmation email, Welcome email, "
814
- "Admin emails)"
815
  msgstr ""
816
- " (Wie passe ich die existierenden Mailinhalte z. Bsp. in Bestätigungsmail, "
817
- "Wilkommensmail und Adminemails an)"
818
 
819
  #: help/help.php:130
820
  msgid "How to Import or Export Email Addresses?"
@@ -828,28 +736,34 @@ msgstr "Wie ändere/aktualisiere/übersetze ich Texte von Email Subscribers?"
828
  msgid "How to add Unsubscribe link in emails?"
829
  msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
830
 
831
- #: help/help.php:142
832
  msgid "How to Compose and Send Newsletter Emails?"
833
  msgstr "Wie erstelle und versende ich Newsletter-Emails?"
834
 
835
- #: help/help.php:145
836
  msgid ""
837
- "How to Configure and Send Post Notification emails to subscribers when new posts are "
838
  "published?"
839
  msgstr ""
840
- "Wie erstelle und versende ich Benachrichtigungsmails wenn neue Beiträge "
841
  "veröffentlicht werden?"
842
 
 
 
 
 
 
843
  #: help/help.php:148
844
- msgid "How to Send a sample new post notification email to testgroup/myself?"
845
- msgstr "Wie versende ich eine Beispielbenachrichtigung an eine Testgruppe oder mich?"
 
846
 
847
  #: help/help.php:151
848
- msgid "How to check Sent emails reports?"
849
  msgstr "Wie prüfe ich Sendeberichte für Emails?"
850
 
851
  #: help/help.php:154
852
- msgid "How to Add/Update Existing Subscribers Group?"
853
  msgstr "Wie aktualisiere ich Abonnentengruppen oder füge neue hinzu?"
854
 
855
  #: help/help.php:157
@@ -865,24 +779,38 @@ msgid "How to use Rainmaker’s form in Email Subscribers?"
865
  msgstr "Wie kann ich Rainmakers Form verwenden?"
866
 
867
  #: help/help.php:166
868
- msgid "How to Schedule Cron Mails?"
869
- msgstr "Wie plane ich Cron Emails?"
 
 
870
 
871
  #: help/help.php:169
 
 
 
 
 
 
 
 
872
  msgid "How to Schedule Cron Emails in cPanel?"
873
  msgstr "Wie plane ich Cron Emails in cPanel?"
874
 
875
- #: help/help.php:172
876
  msgid "How to Schedule Cron Emails in Parallels Plesk?"
877
  msgstr "Wie plane ich Cron Emails in Plesk?"
878
 
879
- #: help/help.php:175
880
  msgid "What to do if Hosting doesn’t support Cron Jobs?"
881
  msgstr "Was ist zu tun wenn mein Hoster keine Cron Jobs unterstützt?"
882
 
883
- #: help/help.php:180
884
- msgid "Commonly Asked Questions"
885
- msgstr "Übliche Fragen"
 
 
 
 
886
 
887
  #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
888
  #: job/es-unsubscribe.php:61
@@ -1197,19 +1125,31 @@ msgstr "Plugintabellen synchronisieren"
1197
  msgid "Click to sync tables"
1198
  msgstr "Klicken um die Plugintabellen zu synchronisieren"
1199
 
 
 
 
 
 
 
 
 
1200
  #: settings/settings-edit.php:25
1201
  msgid "User Roles"
1202
  msgstr "Benutzerrollen"
1203
 
1204
- #: settings/settings-edit.php:64
 
 
 
 
1205
  msgid "Save Settings"
1206
  msgstr "Einstellungen speichern"
1207
 
1208
- #: settings/settings-edit.php:76
1209
  msgid "Sender of Notifications"
1210
  msgstr "Absender von Benachrichtigungen"
1211
 
1212
- #: settings/settings-edit.php:77
1213
  msgid ""
1214
  "Choose a FROM name and FROM email address for all the emails to be sent from this "
1215
  "plugin."
@@ -1217,11 +1157,11 @@ msgstr ""
1217
  "Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von diesem "
1218
  "Plugin verschickt werden."
1219
 
1220
- #: settings/settings-edit.php:87
1221
  msgid "Mail Type"
1222
  msgstr "Emailtyp"
1223
 
1224
- #: settings/settings-edit.php:88
1225
  msgid ""
1226
  "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 "
1227
  "is to send mails with PHP method mail()."
@@ -1229,27 +1169,27 @@ msgstr ""
1229
  "Optionen 1 & 2 verschicken Mails mit der Standart Wordpressmethode wp_mail(). <br /"
1230
  ">Optionen 3 & 4 verschicken Mails mit der PHP Methode mail()."
1231
 
1232
- #: settings/settings-edit.php:92
1233
  msgid "1. WP HTML MAIL"
1234
  msgstr "1. WP HTML MAIL"
1235
 
1236
- #: settings/settings-edit.php:93
1237
  msgid "2. WP PLAINTEXT MAIL"
1238
  msgstr "2. WP PLAINTEXT MAIL"
1239
 
1240
- #: settings/settings-edit.php:94
1241
  msgid "3. PHP HTML MAIL"
1242
  msgstr "3. PHP HTML MAIL"
1243
 
1244
- #: settings/settings-edit.php:95
1245
  msgid "4. PHP PLAINTEXT MAIL"
1246
  msgstr "4. PHP PLAINTEXT MAIL"
1247
 
1248
- #: settings/settings-edit.php:102
1249
  msgid "Opt-In Option"
1250
  msgstr "Opt In Option"
1251
 
1252
- #: settings/settings-edit.php:103
1253
  msgid ""
1254
  "Double Opt In means subscribers need to confirm their email address by an activation "
1255
  "link sent them on a activation email message.<br />Single Opt In means subscribers "
@@ -1259,44 +1199,44 @@ msgstr ""
1259
  "Aktivierungslink in einer Aktivierungsmail bestätigen müssen.<br />Einfaches Opt In "
1260
  "bedeutet, dass Abonnenten ihre Emailadresse nicht bestätigen müssen."
1261
 
1262
- #: settings/settings-edit.php:107
1263
  msgid "Double Opt In"
1264
  msgstr "Doppeltes Opt In"
1265
 
1266
- #: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
1267
  #: subscribers/view-subscriber-edit.php:150 subscribers/view-subscriber-import.php:178
1268
  #: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
1269
  msgid "Single Opt In"
1270
  msgstr "Einfaches Opt In"
1271
 
1272
- #: settings/settings-edit.php:114
1273
  msgid "Image Size"
1274
  msgstr "Bildgröße"
1275
 
1276
- #: settings/settings-edit.php:115
1277
  msgid ""
1278
  "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
1279
  msgstr ""
1280
  "Wähle die Bildgröße für ###POSTIMAGE### wie es in Benachrichtigungsmails angezeigt "
1281
  "wird."
1282
 
1283
- #: settings/settings-edit.php:119
1284
  msgid "Full Size"
1285
  msgstr "Volle Größe"
1286
 
1287
- #: settings/settings-edit.php:120
1288
  msgid "Medium Size"
1289
  msgstr "Mittlere Größe"
1290
 
1291
- #: settings/settings-edit.php:121
1292
  msgid "Thumbnail"
1293
  msgstr "Vorschau"
1294
 
1295
- #: settings/settings-edit.php:127
1296
  msgid "Admin Email Addresses"
1297
  msgstr "Admin Emailadresse"
1298
 
1299
- #: settings/settings-edit.php:128
1300
  msgid ""
1301
  "Enter the admin email addresses that should receive notifications (separated by "
1302
  "comma)."
@@ -1304,11 +1244,11 @@ msgstr ""
1304
  "Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen (durch "
1305
  "Kommas getrennt)."
1306
 
1307
- #: settings/settings-edit.php:134
1308
  msgid "Notify admin when a new subscriber signs up"
1309
  msgstr "Nachricht an den Admin bei neuem Abonnent"
1310
 
1311
- #: settings/settings-edit.php:135
1312
  msgid ""
1313
  "To send admin email notifications for the new subscriber. This option must be set to "
1314
  "YES."
@@ -1316,11 +1256,11 @@ msgstr ""
1316
  "Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent dazugekommen "
1317
  "ist. Diese Option muss auf JA stehen."
1318
 
1319
- #: settings/settings-edit.php:147
1320
  msgid "Admin Email Subject when a new subscriber signs up"
1321
  msgstr "Subjekt der Email an den Admin wenn ein neuer Abonnent sich angemeldet hat"
1322
 
1323
- #: settings/settings-edit.php:148
1324
  msgid ""
1325
  "Enter the subject for the admin email which will be sent whenever a new email is "
1326
  "added and confirmed."
@@ -1328,34 +1268,34 @@ msgstr ""
1328
  "Gib das Subjekt für die Email an die Admins ein das verwendet wird wenn eine neue "
1329
  "Emailadresse hinzugefügt und bestätigt wurde."
1330
 
1331
- #: settings/settings-edit.php:154
1332
  msgid "Admin Email Content when a new subscriber signs up"
1333
  msgstr "Inhalt der Email an den Admin wenn ein neuer Abonnent sich angemeldet hat"
1334
 
1335
- #: settings/settings-edit.php:155
1336
  msgid ""
1337
  "Enter the email content for the admin email which will be sent whenever a new email "
1338
- "is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1339
  msgstr ""
1340
  "Gib den Inhalt für die Email an die Admins ein der verwendet wird wenn eine neue "
1341
  "Emailadresse hinzugefügt und bestätigt wurde. (Schlüsselworte: ###NAME###, "
1342
  "###EMAIL###)"
1343
 
1344
- #: settings/settings-edit.php:162
1345
  msgid "Sent Report Subject"
1346
  msgstr "Subjekt des Sendeberichts"
1347
 
1348
- #: settings/settings-edit.php:163
1349
  msgid "Enter the subject for the sent email report. It will be emailed to Admin."
1350
  msgstr ""
1351
  "Gib das Subjekt für die Mail mit den Sendeberichten ein. Diese wird an den Admin "
1352
  "geschickt."
1353
 
1354
- #: settings/settings-edit.php:169
1355
  msgid "Sent Report Content"
1356
  msgstr "Inhalt des Sendeberichts"
1357
 
1358
- #: settings/settings-edit.php:170
1359
  msgid ""
1360
  "Enter the content for the sent email report. It will be emailed to Admin. (Keyword: "
1361
  "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
@@ -1363,11 +1303,11 @@ msgstr ""
1363
  "Gib den Inhalt des Sendeberichts ein. Dieser wird dem Admin geschickt. "
1364
  "(Schlüsselworte: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1365
 
1366
- #: settings/settings-edit.php:179
1367
  msgid "Double Opt In Email Subject (Confirmation Email)"
1368
  msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt In)"
1369
 
1370
- #: settings/settings-edit.php:180
1371
  msgid ""
1372
  "Enter the subject for the confirmation email to be sent for Double Opt In whenever a "
1373
  "user signs up."
@@ -1375,11 +1315,11 @@ msgstr ""
1375
  "Gib hier das Subjekt ein das in der Bestätigungsmail bei Doppeltem Opt In verschickt "
1376
  "wird wenn sich ein neuer Benutzer anmeldet."
1377
 
1378
- #: settings/settings-edit.php:186
1379
  msgid "Double Opt In Email Content (Confirmation Email)"
1380
  msgstr "Inhalt der Bestätigungsmail (Doppeltes Opt In)"
1381
 
1382
- #: settings/settings-edit.php:187
1383
  msgid ""
1384
  "Enter the content for the confirmation email to be sent for Double Opt In whenever a "
1385
  "user signs up. (Keyword: ###NAME###, ###LINK###)"
@@ -1387,15 +1327,15 @@ msgstr ""
1387
  "Gib hier den Text ein der in der Bestätigungsmail bei Doppeltem Opt In verschickt "
1388
  "wird wenn sich ein neuer Benutzer anmeldet. (Schlüsselworte: ###NAME###, ###LINK###)"
1389
 
1390
- #: settings/settings-edit.php:193
1391
  msgid "Double Opt In Confirmation Link"
1392
  msgstr "Bestätigungslink für Doppeltes Opt In"
1393
 
1394
- #: settings/settings-edit.php:194
1395
  msgid "It is a readonly field and you are advised not to modify it."
1396
  msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
1397
 
1398
- #: settings/settings-edit.php:200
1399
  msgid ""
1400
  "Text to display after an email address is successfully subscribed from Double Opt In "
1401
  "(confirmation) Email"
@@ -1403,7 +1343,7 @@ msgstr ""
1403
  "Text der nach erfolgreicher Registrierung aus der Bestätigungsmail bei Doppelt Opt "
1404
  "In angezeigt wird"
1405
 
1406
- #: settings/settings-edit.php:201
1407
  msgid ""
1408
  "This text will be displayed once user clicks on email confirmation link from the "
1409
  "Double Opt In (confirmation) Email."
@@ -1411,11 +1351,11 @@ msgstr ""
1411
  "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in der "
1412
  "Double Opt In Bestätigungsmail klickt."
1413
 
1414
- #: settings/settings-edit.php:208
1415
  msgid "Subscriber Welcome Email"
1416
  msgstr "Wilkommensemail für Abonnenten"
1417
 
1418
- #: settings/settings-edit.php:209
1419
  msgid ""
1420
  "To send welcome email to subscriber after successful signup. This option must be set "
1421
  "to YES."
@@ -1423,11 +1363,11 @@ msgstr ""
1423
  "Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich registriert ist. "
1424
  "Diese Option muss auf JA stehen."
1425
 
1426
- #: settings/settings-edit.php:220
1427
  msgid "Subscriber Welcome Email Subject"
1428
  msgstr "Subjekt der Wilkommensemail für Abonnenten"
1429
 
1430
- #: settings/settings-edit.php:221
1431
  msgid ""
1432
  "Enter the subject for the subscriber welcome email. This will be sent whenever a "
1433
  "user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
@@ -1437,15 +1377,25 @@ msgstr ""
1437
  "Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet (Single "
1438
  "Opt In) ist."
1439
 
1440
- #: settings/settings-edit.php:227
1441
  msgid "Subscriber Welcome Email Content"
1442
  msgstr "Inhalt der Wilkommensemail für Abonnenten"
1443
 
1444
- #: settings/settings-edit.php:236
 
 
 
 
 
 
 
 
 
 
1445
  msgid "Unsubscribe Link"
1446
  msgstr "Link zum Abmelden"
1447
 
1448
- #: settings/settings-edit.php:237
1449
  msgid ""
1450
  "The unsubscribe link gets added automatically to all emails that are sent from this "
1451
  "plugin. It is a readonly field and you are advised not to modify it."
@@ -1454,11 +1404,11 @@ msgstr ""
1454
  "verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empohlen das nicht zu "
1455
  "ändern."
1456
 
1457
- #: settings/settings-edit.php:243
1458
  msgid "Unsubscribe Text in Email"
1459
  msgstr "Inhalt der Abmeldeemail"
1460
 
1461
- #: settings/settings-edit.php:244
1462
  msgid ""
1463
  "Enter the text for the unsubscribe link. This text is added with unsubscribe link in "
1464
  "the emails. (Keyword: ###LINK###)"
@@ -1466,19 +1416,19 @@ msgstr ""
1466
  "Gib den Text für den Abmeldungslink ein. Dieser Text wird mit dem Abmeldelink an die "
1467
  "Emails angehängt. (Keyword: ###LINK###)"
1468
 
1469
- #: settings/settings-edit.php:250
1470
  msgid "Text to display after an email address is unsubscribed"
1471
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
1472
 
1473
- #: settings/settings-edit.php:251
1474
  msgid "This text will be displayed once user clicks on unsubscribe link."
1475
  msgstr "Dieser Text wird angezeigt nachdem der Benutzer auf den Abmeldelink klickt."
1476
 
1477
- #: settings/settings-edit.php:258
1478
  msgid "Error in the Confirmation Link"
1479
  msgstr "Fehler im Bestätigungslink"
1480
 
1481
- #: settings/settings-edit.php:259
1482
  msgid ""
1483
  "Default message to display if there is any issue while clicking on confirmation link "
1484
  "from the Double Opt In (confirmation) Emails."
@@ -1486,86 +1436,86 @@ msgstr ""
1486
  "Standartnachricht wenn ein Problem mit dem Bestätigungslink der Doppelten Opt In "
1487
  "Bestätigungsmail besteht."
1488
 
1489
- #: settings/settings-edit.php:265
1490
  msgid "Error in the Unsubscribe Link"
1491
  msgstr "Fehler im Abmeldelink"
1492
 
1493
- #: settings/settings-edit.php:266
1494
  msgid ""
1495
  "Default message to display if there is any issue while clicking on unsubscribe link "
1496
  "from the Emails."
1497
  msgstr ""
1498
  "Standartnachricht wenn ein Problem mit dem Abmeldungslink in den Emails besteht."
1499
 
1500
- #: settings/settings-edit.php:276
1501
  msgid "Select user roles who can access following menus. Only Admin can change this."
1502
  msgstr ""
1503
  "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur ein Admin "
1504
  "kann das ändern."
1505
 
1506
- #: settings/settings-edit.php:282
1507
  msgid "Subscribers Menu"
1508
  msgstr "Menü Abonnenten"
1509
 
1510
- #: settings/settings-edit.php:286 settings/settings-edit.php:298
1511
- #: settings/settings-edit.php:310 settings/settings-edit.php:322
1512
- #: settings/settings-edit.php:334
1513
  msgid "Administrator Only"
1514
  msgstr "Nur für Administratoren"
1515
 
1516
- #: settings/settings-edit.php:287 settings/settings-edit.php:299
1517
- #: settings/settings-edit.php:311 settings/settings-edit.php:323
1518
- #: settings/settings-edit.php:335
1519
  msgid "Administrator/Editor"
1520
  msgstr "Für Administratoren / Editoren"
1521
 
1522
- #: settings/settings-edit.php:288 settings/settings-edit.php:300
1523
- #: settings/settings-edit.php:312 settings/settings-edit.php:324
1524
- #: settings/settings-edit.php:336
1525
  msgid "Administrator/Editor/Author/Contributor"
1526
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
1527
 
1528
- #: settings/settings-edit.php:294
1529
  msgid "Compose Menu"
1530
  msgstr "Menü Erstellen"
1531
 
1532
- #: settings/settings-edit.php:306
1533
  msgid "Post Notifications Menu"
1534
  msgstr "Menü Benachrichtigungen"
1535
 
1536
- #: settings/settings-edit.php:330
1537
  msgid "Reports Menu"
1538
  msgstr "Menü Berichte"
1539
 
1540
- #: settings/settings-edit.php:345
1541
  msgid "Cron job URL"
1542
  msgstr "Cron Job URL"
1543
 
1544
- #: settings/settings-edit.php:346
1545
  msgid ""
1546
  "This is your Cron Job URL. It is a readonly field and you are advised not to modify "
1547
  "it."
1548
  msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1549
 
1550
- #: settings/settings-edit.php:355
1551
  msgid "Email Count"
1552
  msgstr "Anzahl Emails"
1553
 
1554
- #: settings/settings-edit.php:356
1555
  msgid "Number of emails that you want to trigger per hour."
1556
  msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
1557
 
1558
- #: settings/settings-edit.php:361
1559
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
1560
  msgstr ""
1561
  "(Dein Webhoster hat Beschränkungen. Wir empfehlen 50 Emails pro Stunde um auf der "
1562
  "sicheren Seite zu sein)"
1563
 
1564
- #: settings/settings-edit.php:366
1565
  msgid "Admin Report"
1566
  msgstr "Admin Bericht"
1567
 
1568
- #: settings/settings-edit.php:367
1569
  msgid ""
1570
  "Email to admin whenever cron URL is triggered from your server. (Keywords: "
1571
  "###DATE###, ###SUBJECT###, ###COUNT###)"
@@ -1573,59 +1523,59 @@ msgstr ""
1573
  "Email an den Admin wenn eine Cron URL vom Server aufgerufen wird. (Schlüsselworte: "
1574
  "###DATE###, ###SUBJECT###, ###COUNT###)"
1575
 
1576
- #: settings/settings-edit.php:377
1577
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1578
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1579
 
1580
- #: settings/settings-edit.php:378
1581
  msgid ""
1582
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1583
  "cron-emails/\">What is Cron?</a>"
1584
  msgstr ""
1585
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1586
  "cron-emails/\">Was ist Cron?</a>"
1587
 
1588
- #: settings/settings-edit.php:379
1589
  msgid ""
1590
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1591
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1592
  msgstr ""
1593
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1594
  "cron-emails-in-parallels-plesk/\">Cron Job in Plesk konfigurieren</a>"
1595
 
1596
- #: settings/settings-edit.php:380
1597
  msgid ""
1598
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1599
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1600
  msgstr ""
1601
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1602
  "cron-emails-in-cpanel/\">Cron Job in cPanel konfigurieren</a>"
1603
 
1604
- #: settings/settings-edit.php:381
1605
  msgid ""
1606
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1607
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1608
  msgstr ""
1609
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1610
  "hosting-doesnt-support-cron-jobs/\">Dein Hoster unterstützt keine Cron Jobs?</a>"
1611
 
1612
- #: settings/settings-edit.php:495
1613
  msgid "Please enter sender of notifications from name."
1614
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
1615
 
1616
- #: settings/settings-edit.php:500
1617
  msgid "Please enter sender of notifications from email."
1618
  msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
1619
 
1620
- #: settings/settings-edit.php:544
1621
  msgid "Please enter valid mail count."
1622
  msgstr "Bitte gib eine gültige Mailanzahl ein."
1623
 
1624
- #: settings/settings-edit.php:557
1625
  msgid "Settings Saved."
1626
  msgstr "Einstellungen gesichert."
1627
 
1628
- #: settings/settings-edit.php:560
1629
  msgid "Oops, unable to update."
1630
  msgstr "Oops.. Update nicht möglich."
1631
 
@@ -1771,6 +1721,10 @@ msgstr "Gesamte Anzahl Emails"
1771
  msgid "1"
1772
  msgstr "1"
1773
 
 
 
 
 
1774
  #: subscribers/view-subscriber-export.php:64 subscribers/view-subscriber-export.php:70
1775
  #: subscribers/view-subscriber-export.php:76 subscribers/view-subscriber-export.php:82
1776
  #: subscribers/view-subscriber-export.php:88
@@ -1781,14 +1735,30 @@ msgstr "Klicken um nach CSV zu exportieren"
1781
  msgid "2"
1782
  msgstr "2"
1783
 
 
 
 
 
1784
  #: subscribers/view-subscriber-export.php:73
1785
  msgid "3"
1786
  msgstr "3"
1787
 
 
 
 
 
 
 
 
 
1788
  #: subscribers/view-subscriber-export.php:80
1789
  msgid "WordPress Registered Users"
1790
  msgstr "Registrierte WordPress Benutzer"
1791
 
 
 
 
 
1792
  #: subscribers/view-subscriber-export.php:86
1793
  msgid "Commented Authors"
1794
  msgstr "Kommentierte Autoren"
@@ -1803,7 +1773,7 @@ msgstr ""
1803
 
1804
  #: subscribers/view-subscriber-import.php:92
1805
  msgid "email imported."
1806
- msgstr "Email importiert."
1807
 
1808
  #: subscribers/view-subscriber-import.php:93
1809
  msgid "email already exists."
@@ -1811,7 +1781,7 @@ msgstr "Email existiert bereits."
1811
 
1812
  #: subscribers/view-subscriber-import.php:94
1813
  msgid "email are invalid."
1814
- msgstr "Email sind ungültig."
1815
 
1816
  #: subscribers/view-subscriber-import.php:97 subscribers/view-subscriber-import.php:126
1817
  msgid "Click here"
@@ -1892,6 +1862,16 @@ msgstr "Abonnentenstatus aktualisiert."
1892
  msgid "Please select New Status to update."
1893
  msgstr "Bitte wähle den neuen Status aus."
1894
 
 
 
 
 
 
 
 
 
 
 
1895
  #: subscribers/view-subscriber-show.php:286
1896
  msgid "Bulk Actions"
1897
  msgstr "Mehrfachaktionen"
@@ -1924,6 +1904,34 @@ msgstr "Alle Gruppen"
1924
  msgid "All Status"
1925
  msgstr "Alle Stati"
1926
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1927
  #: subscribers/view-subscriber-show.php:349
1928
  msgid "Display All"
1929
  msgstr "Alle anzeigen"
@@ -1936,6 +1944,10 @@ msgstr "Emailadresse"
1936
  msgid "Group"
1937
  msgstr "Gruppe"
1938
 
 
 
 
 
1939
  #: subscribers/view-subscriber-sync.php:36
1940
  msgid "Please select default group to newly registered user."
1941
  msgstr "Bitte wähle die Standartgruppe für neu registrierte Benutzer."
@@ -1962,8 +1974,8 @@ msgstr "Email Subscribers & Newsletters"
1962
 
1963
  #. Plugin URI of the plugin/theme
1964
  #. Author URI of the plugin/theme
1965
- msgid "http://www.icegram.com/"
1966
- msgstr "http://www.icegram.com/"
1967
 
1968
  #. Description of the plugin/theme
1969
  msgid ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-10 11:57:27+00:00\n"
6
+ "PO-Revision-Date: 2017-07-19 15:36+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: de\n"
22
  "X-Loco-Target-Locale: de_DE\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
+ #: compose/compose-add.php:43
26
+ msgid "Successfully created. "
27
+ msgstr "Erfolgreich erstellt. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
+ #: compose/compose-add.php:87 compose/compose-edit.php:98
30
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
31
+ msgstr "Verfügbar Stichwort: ## #POSTTITLE### (nur für Beitragsbenachrichtigungen)"
32
 
33
+ #: compose/compose-add.php:93 compose/compose-edit.php:104
34
  #, c-format
35
  msgid ""
36
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
37
+ "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
38
+ "###POSTFULL### (For Post Notification only)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  msgstr ""
40
+ "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
41
+ "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
42
+ "###POSTFULL### (nur für Beitragsbenachrichtigungen)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
+ #: compose/compose-edit.php:61
45
+ msgid "Successfully updated. "
46
+ msgstr "Erfolgreich aktualisiert. "
47
 
48
  #: base/es-defined.php:32
49
  msgid ""
102
  msgid "<span style=\"color:#993399;\">Immediately</span>"
103
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
104
 
105
+ #: classes/es-loadwidget.php:28 classes/es-register.php:931
106
  #: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
107
  msgid "Name"
108
  msgstr "Name"
109
 
110
+ #: classes/es-loadwidget.php:33 classes/es-register.php:936
111
  msgid "Email *"
112
  msgstr "Email *"
113
 
114
+ #: classes/es-loadwidget.php:38 classes/es-register.php:941
115
  msgid "Subscribe"
116
  msgstr "Anmelden"
117
 
118
+ #: classes/es-register.php:140 classes/es-register.php:141 classes/es-register.php:677
119
  msgid "Email Subscribers"
120
  msgstr "Email Subscribers"
121
 
134
  msgstr "Benachrichtigungen"
135
 
136
  #: classes/es-register.php:152 classes/es-register.php:153 sendmail/sendmail.php:93
137
+ #: settings/settings-edit.php:327
138
  msgid "Newsletters"
139
  msgstr "Newsletter"
140
 
141
+ #: classes/es-register.php:155 classes/es-register.php:156
142
+ #: settings/settings-edit.php:42
143
+ msgid "Settings"
144
+ msgstr "Einstellungen"
145
+
146
  #: classes/es-register.php:158 classes/es-register.php:159
147
  #: sentmail/sentmail-show.php:96
148
  msgid "Reports"
220
  msgid "Please select only csv file. Please check official website for csv structure.."
221
  msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
222
 
223
+ #: classes/es-register.php:192
224
+ msgctxt "compose-enhanced-select"
225
+ msgid "Please enter the Email Subject."
226
+ msgstr "Bitte gib das Subjekt der Email ein."
227
+
228
  #: classes/es-register.php:193
229
  msgctxt "compose-enhanced-select"
230
  msgid "Do you want to delete this record?"
410
  msgid "There was a problem with the request"
411
  msgstr "Es gab ein Problem mit der Anforderung"
412
 
413
+ #: classes/es-register.php:677
414
+ msgid "is getting even better!"
415
+ msgstr "wird sogar noch besser!"
416
+
417
+ #: classes/es-register.php:678
418
+ msgid "But I need you to"
419
+ msgstr "Aber ich brauche Dich"
420
+
421
+ #: classes/es-register.php:678
422
+ msgid "help me prioritize"
423
+ msgstr "hilf mir zu priorisieren"
424
+
425
+ #: classes/es-register.php:678
426
+ msgid "Please send your response today."
427
+ msgstr "Bitte sende Deine Antwort noch heute."
428
+
429
+ #: classes/es-register.php:685
430
+ msgid "Here's how you use ES:"
431
+ msgstr "Und so verwendest Du ES:"
432
+
433
+ #: classes/es-register.php:690
434
+ msgid "Used Post Notifications more often than Newsletter"
435
+ msgstr "Verwendete öfter Benachrichtigungen über Beiträge als Newsletter"
436
+
437
+ #: classes/es-register.php:692
438
+ msgid "Used Newsletter more often than Post Notifications"
439
+ msgstr "Verwendete öfter Newsletter als Benachrichtigungen über Beiträge"
440
+
441
+ #: classes/es-register.php:694
442
+ msgid "Used Post Notification &amp; Newsletter equally"
443
+ msgstr ""
444
+ "Verwendete Newsletter &amp; Benachrichtigungen über Beiträge zu gleichen Teilen"
445
+
446
+ #: classes/es-register.php:698
447
+ msgid "Have "
448
+ msgstr "Habe "
449
+
450
+ #: classes/es-register.php:698
451
+ msgid " Active Subscribers"
452
+ msgstr " Aktive Abonnenten"
453
+
454
+ #: classes/es-register.php:699
455
+ msgid "Post "
456
+ msgstr "Beitrag "
457
+
458
+ #: classes/es-register.php:699
459
+ msgid " blog per week"
460
+ msgstr " Beiträge pro Woche"
461
+
462
+ #: classes/es-register.php:703
463
+ msgid "Send emails via Cron"
464
+ msgstr "Emails via Cron versenden"
465
+
466
+ #: classes/es-register.php:705
467
+ msgid "Send emails Immediately"
468
+ msgstr "Sende Emails sofort"
469
+
470
+ #: classes/es-register.php:722
471
+ msgid "How soon do you want these new features?"
472
+ msgstr "Wie bald möchtest Du diese neuen Features?"
473
+
474
+ #: classes/es-register.php:726
475
+ msgid "Beautiful Email Designs"
476
+ msgstr "Schöne Email Designs"
477
+
478
+ #: classes/es-register.php:727 classes/es-register.php:732 classes/es-register.php:741
479
+ #: classes/es-register.php:746
480
+ msgid "Right now!"
481
+ msgstr "Jetzt!"
482
+
483
+ #: classes/es-register.php:728 classes/es-register.php:733 classes/es-register.php:742
484
+ #: classes/es-register.php:747
485
+ msgid "Soon"
486
+ msgstr "Bald"
487
+
488
+ #: classes/es-register.php:729 classes/es-register.php:734 classes/es-register.php:743
489
+ #: classes/es-register.php:748
490
+ msgid "Later"
491
+ msgstr "Später"
492
+
493
+ #: classes/es-register.php:731
494
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
495
+ msgstr "Spamüberprüfung, Zeitplanung... (Besserer Emailversand)"
496
+
497
+ #: classes/es-register.php:740
498
+ msgid "Discard Fake / Bouncing Emails"
499
+ msgstr "Verwerfe Fake- oder zurückgekommene Emails"
500
+
501
+ #: classes/es-register.php:745
502
+ msgid "Advanced Reporting"
503
+ msgstr "Erweiterte Berichte"
504
+
505
+ #: classes/es-register.php:768
506
+ msgid "Thank you!"
507
+ msgstr "Danke!"
508
+
509
+ #: classes/es-register.php:769
510
+ msgid "No issues, have a nice day!"
511
+ msgstr "Keine Probleme gefunden, Genieße den Tag!"
512
+
513
+ #: classes/es-register.php:979
514
  msgid "Widget Title"
515
  msgstr "Widget Titel"
516
 
517
+ #: classes/es-register.php:983
518
  msgid "Short description about subscription form"
519
  msgstr "Kurze Beschreibung des Anmeldeformulars"
520
 
521
+ #: classes/es-register.php:987
522
  msgid "Display Name Field"
523
  msgstr "Namensfeld anzeigen"
524
 
525
+ #: classes/es-register.php:989 settings/settings-edit.php:145
526
+ #: settings/settings-edit.php:220 subscribers/view-subscriber-sync.php:107
527
  msgid "YES"
528
  msgstr "Ja"
529
 
530
+ #: classes/es-register.php:990 settings/settings-edit.php:146
531
+ #: settings/settings-edit.php:221 subscribers/view-subscriber-sync.php:106
532
  msgid "NO"
533
  msgstr "Nein"
534
 
535
+ #: classes/es-register.php:994
536
  msgid "Subscriber Group"
537
  msgstr "Abonnentengruppe"
538
 
540
  msgid "Please enter template heading."
541
  msgstr "Bitte gib die Vorlagenüberschrift ein."
542
 
 
 
 
 
543
  #: compose/compose-add.php:74
544
  msgid "Add new Email"
545
  msgstr "Neue Emailadresse hinzufügen"
549
  #: notification/notification-add.php:113 notification/notification-edit.php:124
550
  #: notification/notification-show.php:54 sendmail/sendmail.php:94
551
  #: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
552
+ #: sentmail/sentmail-show.php:97 settings/settings-edit.php:43
553
  #: subscribers/view-subscriber-add.php:114 subscribers/view-subscriber-edit.php:113
554
  #: subscribers/view-subscriber-export.php:38 subscribers/view-subscriber-import.php:146
555
  #: subscribers/view-subscriber-show.php:246 subscribers/view-subscriber-sync.php:92
557
  msgstr "Hilfe"
558
 
559
  #: compose/compose-add.php:78 compose/compose-edit.php:89
560
+ msgid "Select your Email Template"
561
+ msgstr "Emailvorlage wählen"
562
 
563
  #: compose/compose-add.php:80 compose/compose-edit.php:91
564
  msgid "Newsletter"
572
  msgid "Enter your Email Subject"
573
  msgstr "Gib das Emailsubjekt ein"
574
 
 
 
 
 
575
  #: compose/compose-add.php:89 compose/compose-edit.php:100
576
  msgid "Enter Content for your Email"
577
  msgstr "Gib den Inhalt der Email ein"
578
 
 
 
 
 
 
 
 
 
 
 
 
579
  #: compose/compose-add.php:93 compose/compose-edit.php:104
580
  msgid "Available Keywords"
581
  msgstr "Verfügbare Schlüsselworte"
608
  msgid "Oops, selected details does not exists."
609
  msgstr "Oops, die gewählten Details existieren nicht."
610
 
 
 
 
 
611
  #: compose/compose-edit.php:84
612
  msgid "Edit Email"
613
  msgstr "Email bearbeiten"
682
  msgid "For more help and tips..."
683
  msgstr "Für mehr Hilfe & Tips..."
684
 
685
+ #: help/help.php:67
686
+ #, c-format
687
+ msgid ""
688
+ "Like Email Subscribers? If yes, then consider %s to support further developments."
689
+ msgstr ""
690
+ "Du magst Email Subscribers? Falls ja, erwäge doch %s um zukünftige Entwicklungen zu "
691
+ "unterstützen."
692
+
693
+ #: help/help.php:67
694
+ msgid "donating to us"
695
+ msgstr "eine Spende an uns"
696
+
697
  #: help/help.php:99
698
  msgid "Frequently Asked Questions"
699
  msgstr "Frequently Asked Questions"
702
  #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
703
  #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
704
  #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
705
+ #: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:181
706
+ #: help/help.php:184 help/help.php:186
707
  #, c-format
708
  msgid "%s"
709
  msgstr "%s"
718
 
719
  #: help/help.php:127
720
  msgid ""
721
+ " (Modify existing emails like Confirmation, Welcome, Admin emails and Cron Settings "
722
+ "and Assign User Roles)"
723
  msgstr ""
724
+ " (Anpassen existierender Emails wie Bestätigung, Willkommen, Admin Emails sowie Cron-"
725
+ "Einstellungen und Zuweisung von Benutzerrollen)"
726
 
727
  #: help/help.php:130
728
  msgid "How to Import or Export Email Addresses?"
736
  msgid "How to add Unsubscribe link in emails?"
737
  msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
738
 
739
+ #: help/help.php:139
740
  msgid "How to Compose and Send Newsletter Emails?"
741
  msgstr "Wie erstelle und versende ich Newsletter-Emails?"
742
 
743
+ #: help/help.php:142
744
  msgid ""
745
+ "How to Configure and Send Post Notification Emails to subscribers when new posts are "
746
  "published?"
747
  msgstr ""
748
+ "Wie erstelle und versende ich Benachrichtigungsmails, wenn neue Beiträge "
749
  "veröffentlicht werden?"
750
 
751
+ #: help/help.php:145
752
+ msgid "What are the available keywords in the Post Notifications?"
753
+ msgstr ""
754
+ "Welche Schlüsselworte sind in der Vorlage für Beitragsbenachrichtigungen verfügbar?"
755
+
756
  #: help/help.php:148
757
+ msgid "How to send a sample new post notification email to testgroup/myself?"
758
+ msgstr ""
759
+ "Wie versende ich eine Beispielbenachrichtigung an eine Testgruppe oder mich selbst?"
760
 
761
  #: help/help.php:151
762
+ msgid "How to check sent emails?"
763
  msgstr "Wie prüfe ich Sendeberichte für Emails?"
764
 
765
  #: help/help.php:154
766
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
767
  msgstr "Wie aktualisiere ich Abonnentengruppen oder füge neue hinzu?"
768
 
769
  #: help/help.php:157
779
  msgstr "Wie kann ich Rainmakers Form verwenden?"
780
 
781
  #: help/help.php:166
782
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
783
+ msgstr ""
784
+ "Wie kann ich Abonnenten nach erfolgreicher Anmeldung auf eine neue Seite / URL "
785
+ "umleiten?"
786
 
787
  #: help/help.php:169
788
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
789
+ msgstr "Wie kann ich ein Captcha zum Anmeldeformular von Email Subscribers hinzufügen?"
790
+
791
+ #: help/help.php:172
792
+ msgid "How to Schedule Cron Emails?"
793
+ msgstr "Wie plane ich Cron-Emails?"
794
+
795
+ #: help/help.php:175
796
  msgid "How to Schedule Cron Emails in cPanel?"
797
  msgstr "Wie plane ich Cron Emails in cPanel?"
798
 
799
+ #: help/help.php:178
800
  msgid "How to Schedule Cron Emails in Parallels Plesk?"
801
  msgstr "Wie plane ich Cron Emails in Plesk?"
802
 
803
+ #: help/help.php:181
804
  msgid "What to do if Hosting doesn’t support Cron Jobs?"
805
  msgstr "Was ist zu tun wenn mein Hoster keine Cron Jobs unterstützt?"
806
 
807
+ #: help/help.php:184
808
+ msgid "CSS Help"
809
+ msgstr "CSS Hilfe"
810
+
811
+ #: help/help.php:186
812
+ msgid "Common FAQ's"
813
+ msgstr "Allgemeine FAQs"
814
 
815
  #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
816
  #: job/es-unsubscribe.php:61
1125
  msgid "Click to sync tables"
1126
  msgstr "Klicken um die Plugintabellen zu synchronisieren"
1127
 
1128
+ #: settings/settings-edit.php:23
1129
+ msgid "Admin"
1130
+ msgstr "Admin"
1131
+
1132
+ #: settings/settings-edit.php:24
1133
+ msgid "Signup Confirmation"
1134
+ msgstr "Anmeldebestätigung"
1135
+
1136
  #: settings/settings-edit.php:25
1137
  msgid "User Roles"
1138
  msgstr "Benutzerrollen"
1139
 
1140
+ #: settings/settings-edit.php:26
1141
+ msgid "Cron"
1142
+ msgstr "Cron"
1143
+
1144
+ #: settings/settings-edit.php:67
1145
  msgid "Save Settings"
1146
  msgstr "Einstellungen speichern"
1147
 
1148
+ #: settings/settings-edit.php:81
1149
  msgid "Sender of Notifications"
1150
  msgstr "Absender von Benachrichtigungen"
1151
 
1152
+ #: settings/settings-edit.php:82
1153
  msgid ""
1154
  "Choose a FROM name and FROM email address for all the emails to be sent from this "
1155
  "plugin."
1157
  "Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von diesem "
1158
  "Plugin verschickt werden."
1159
 
1160
+ #: settings/settings-edit.php:92
1161
  msgid "Mail Type"
1162
  msgstr "Emailtyp"
1163
 
1164
+ #: settings/settings-edit.php:93
1165
  msgid ""
1166
  "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 "
1167
  "is to send mails with PHP method mail()."
1169
  "Optionen 1 & 2 verschicken Mails mit der Standart Wordpressmethode wp_mail(). <br /"
1170
  ">Optionen 3 & 4 verschicken Mails mit der PHP Methode mail()."
1171
 
1172
+ #: settings/settings-edit.php:97
1173
  msgid "1. WP HTML MAIL"
1174
  msgstr "1. WP HTML MAIL"
1175
 
1176
+ #: settings/settings-edit.php:98
1177
  msgid "2. WP PLAINTEXT MAIL"
1178
  msgstr "2. WP PLAINTEXT MAIL"
1179
 
1180
+ #: settings/settings-edit.php:99
1181
  msgid "3. PHP HTML MAIL"
1182
  msgstr "3. PHP HTML MAIL"
1183
 
1184
+ #: settings/settings-edit.php:100
1185
  msgid "4. PHP PLAINTEXT MAIL"
1186
  msgstr "4. PHP PLAINTEXT MAIL"
1187
 
1188
+ #: settings/settings-edit.php:107
1189
  msgid "Opt-In Option"
1190
  msgstr "Opt In Option"
1191
 
1192
+ #: settings/settings-edit.php:108
1193
  msgid ""
1194
  "Double Opt In means subscribers need to confirm their email address by an activation "
1195
  "link sent them on a activation email message.<br />Single Opt In means subscribers "
1199
  "Aktivierungslink in einer Aktivierungsmail bestätigen müssen.<br />Einfaches Opt In "
1200
  "bedeutet, dass Abonnenten ihre Emailadresse nicht bestätigen müssen."
1201
 
1202
+ #: settings/settings-edit.php:112
1203
  msgid "Double Opt In"
1204
  msgstr "Doppeltes Opt In"
1205
 
1206
+ #: settings/settings-edit.php:113 subscribers/view-subscriber-add.php:151
1207
  #: subscribers/view-subscriber-edit.php:150 subscribers/view-subscriber-import.php:178
1208
  #: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
1209
  msgid "Single Opt In"
1210
  msgstr "Einfaches Opt In"
1211
 
1212
+ #: settings/settings-edit.php:119
1213
  msgid "Image Size"
1214
  msgstr "Bildgröße"
1215
 
1216
+ #: settings/settings-edit.php:120
1217
  msgid ""
1218
  "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
1219
  msgstr ""
1220
  "Wähle die Bildgröße für ###POSTIMAGE### wie es in Benachrichtigungsmails angezeigt "
1221
  "wird."
1222
 
1223
+ #: settings/settings-edit.php:124
1224
  msgid "Full Size"
1225
  msgstr "Volle Größe"
1226
 
1227
+ #: settings/settings-edit.php:125
1228
  msgid "Medium Size"
1229
  msgstr "Mittlere Größe"
1230
 
1231
+ #: settings/settings-edit.php:126
1232
  msgid "Thumbnail"
1233
  msgstr "Vorschau"
1234
 
1235
+ #: settings/settings-edit.php:132
1236
  msgid "Admin Email Addresses"
1237
  msgstr "Admin Emailadresse"
1238
 
1239
+ #: settings/settings-edit.php:133
1240
  msgid ""
1241
  "Enter the admin email addresses that should receive notifications (separated by "
1242
  "comma)."
1244
  "Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen (durch "
1245
  "Kommas getrennt)."
1246
 
1247
+ #: settings/settings-edit.php:139
1248
  msgid "Notify admin when a new subscriber signs up"
1249
  msgstr "Nachricht an den Admin bei neuem Abonnent"
1250
 
1251
+ #: settings/settings-edit.php:140
1252
  msgid ""
1253
  "To send admin email notifications for the new subscriber. This option must be set to "
1254
  "YES."
1256
  "Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent dazugekommen "
1257
  "ist. Diese Option muss auf JA stehen."
1258
 
1259
+ #: settings/settings-edit.php:152
1260
  msgid "Admin Email Subject when a new subscriber signs up"
1261
  msgstr "Subjekt der Email an den Admin wenn ein neuer Abonnent sich angemeldet hat"
1262
 
1263
+ #: settings/settings-edit.php:153
1264
  msgid ""
1265
  "Enter the subject for the admin email which will be sent whenever a new email is "
1266
  "added and confirmed."
1268
  "Gib das Subjekt für die Email an die Admins ein das verwendet wird wenn eine neue "
1269
  "Emailadresse hinzugefügt und bestätigt wurde."
1270
 
1271
+ #: settings/settings-edit.php:159
1272
  msgid "Admin Email Content when a new subscriber signs up"
1273
  msgstr "Inhalt der Email an den Admin wenn ein neuer Abonnent sich angemeldet hat"
1274
 
1275
+ #: settings/settings-edit.php:160
1276
  msgid ""
1277
  "Enter the email content for the admin email which will be sent whenever a new email "
1278
+ "is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, ###GROUP###)"
1279
  msgstr ""
1280
  "Gib den Inhalt für die Email an die Admins ein der verwendet wird wenn eine neue "
1281
  "Emailadresse hinzugefügt und bestätigt wurde. (Schlüsselworte: ###NAME###, "
1282
  "###EMAIL###)"
1283
 
1284
+ #: settings/settings-edit.php:167
1285
  msgid "Sent Report Subject"
1286
  msgstr "Subjekt des Sendeberichts"
1287
 
1288
+ #: settings/settings-edit.php:168
1289
  msgid "Enter the subject for the sent email report. It will be emailed to Admin."
1290
  msgstr ""
1291
  "Gib das Subjekt für die Mail mit den Sendeberichten ein. Diese wird an den Admin "
1292
  "geschickt."
1293
 
1294
+ #: settings/settings-edit.php:174
1295
  msgid "Sent Report Content"
1296
  msgstr "Inhalt des Sendeberichts"
1297
 
1298
+ #: settings/settings-edit.php:175
1299
  msgid ""
1300
  "Enter the content for the sent email report. It will be emailed to Admin. (Keyword: "
1301
  "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1303
  "Gib den Inhalt des Sendeberichts ein. Dieser wird dem Admin geschickt. "
1304
  "(Schlüsselworte: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1305
 
1306
+ #: settings/settings-edit.php:186
1307
  msgid "Double Opt In Email Subject (Confirmation Email)"
1308
  msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt In)"
1309
 
1310
+ #: settings/settings-edit.php:187
1311
  msgid ""
1312
  "Enter the subject for the confirmation email to be sent for Double Opt In whenever a "
1313
  "user signs up."
1315
  "Gib hier das Subjekt ein das in der Bestätigungsmail bei Doppeltem Opt In verschickt "
1316
  "wird wenn sich ein neuer Benutzer anmeldet."
1317
 
1318
+ #: settings/settings-edit.php:193
1319
  msgid "Double Opt In Email Content (Confirmation Email)"
1320
  msgstr "Inhalt der Bestätigungsmail (Doppeltes Opt In)"
1321
 
1322
+ #: settings/settings-edit.php:194
1323
  msgid ""
1324
  "Enter the content for the confirmation email to be sent for Double Opt In whenever a "
1325
  "user signs up. (Keyword: ###NAME###, ###LINK###)"
1327
  "Gib hier den Text ein der in der Bestätigungsmail bei Doppeltem Opt In verschickt "
1328
  "wird wenn sich ein neuer Benutzer anmeldet. (Schlüsselworte: ###NAME###, ###LINK###)"
1329
 
1330
+ #: settings/settings-edit.php:200
1331
  msgid "Double Opt In Confirmation Link"
1332
  msgstr "Bestätigungslink für Doppeltes Opt In"
1333
 
1334
+ #: settings/settings-edit.php:201
1335
  msgid "It is a readonly field and you are advised not to modify it."
1336
  msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
1337
 
1338
+ #: settings/settings-edit.php:207
1339
  msgid ""
1340
  "Text to display after an email address is successfully subscribed from Double Opt In "
1341
  "(confirmation) Email"
1343
  "Text der nach erfolgreicher Registrierung aus der Bestätigungsmail bei Doppelt Opt "
1344
  "In angezeigt wird"
1345
 
1346
+ #: settings/settings-edit.php:208
1347
  msgid ""
1348
  "This text will be displayed once user clicks on email confirmation link from the "
1349
  "Double Opt In (confirmation) Email."
1351
  "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in der "
1352
  "Double Opt In Bestätigungsmail klickt."
1353
 
1354
+ #: settings/settings-edit.php:215
1355
  msgid "Subscriber Welcome Email"
1356
  msgstr "Wilkommensemail für Abonnenten"
1357
 
1358
+ #: settings/settings-edit.php:216
1359
  msgid ""
1360
  "To send welcome email to subscriber after successful signup. This option must be set "
1361
  "to YES."
1363
  "Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich registriert ist. "
1364
  "Diese Option muss auf JA stehen."
1365
 
1366
+ #: settings/settings-edit.php:227
1367
  msgid "Subscriber Welcome Email Subject"
1368
  msgstr "Subjekt der Wilkommensemail für Abonnenten"
1369
 
1370
+ #: settings/settings-edit.php:228
1371
  msgid ""
1372
  "Enter the subject for the subscriber welcome email. This will be sent whenever a "
1373
  "user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1377
  "Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet (Single "
1378
  "Opt In) ist."
1379
 
1380
+ #: settings/settings-edit.php:234
1381
  msgid "Subscriber Welcome Email Content"
1382
  msgstr "Inhalt der Wilkommensemail für Abonnenten"
1383
 
1384
+ #: settings/settings-edit.php:235
1385
+ msgid ""
1386
+ "Enter the content for the subscriber welcome email whenever a user's email is either "
1387
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: "
1388
+ "###NAME###, ###GROUP###, ###LINK###)"
1389
+ msgstr ""
1390
+ "Gib den Inhalt für die Willkommensmail ein. Diese wird verschickt wenn eine "
1391
+ "Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet (Single "
1392
+ "Opt In) ist. (Schlüsselworte: ###NAME###, ###GROUP###, ###LINK###)"
1393
+
1394
+ #: settings/settings-edit.php:243
1395
  msgid "Unsubscribe Link"
1396
  msgstr "Link zum Abmelden"
1397
 
1398
+ #: settings/settings-edit.php:244
1399
  msgid ""
1400
  "The unsubscribe link gets added automatically to all emails that are sent from this "
1401
  "plugin. It is a readonly field and you are advised not to modify it."
1404
  "verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empohlen das nicht zu "
1405
  "ändern."
1406
 
1407
+ #: settings/settings-edit.php:250
1408
  msgid "Unsubscribe Text in Email"
1409
  msgstr "Inhalt der Abmeldeemail"
1410
 
1411
+ #: settings/settings-edit.php:251
1412
  msgid ""
1413
  "Enter the text for the unsubscribe link. This text is added with unsubscribe link in "
1414
  "the emails. (Keyword: ###LINK###)"
1416
  "Gib den Text für den Abmeldungslink ein. Dieser Text wird mit dem Abmeldelink an die "
1417
  "Emails angehängt. (Keyword: ###LINK###)"
1418
 
1419
+ #: settings/settings-edit.php:257
1420
  msgid "Text to display after an email address is unsubscribed"
1421
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
1422
 
1423
+ #: settings/settings-edit.php:258
1424
  msgid "This text will be displayed once user clicks on unsubscribe link."
1425
  msgstr "Dieser Text wird angezeigt nachdem der Benutzer auf den Abmeldelink klickt."
1426
 
1427
+ #: settings/settings-edit.php:265
1428
  msgid "Error in the Confirmation Link"
1429
  msgstr "Fehler im Bestätigungslink"
1430
 
1431
+ #: settings/settings-edit.php:266
1432
  msgid ""
1433
  "Default message to display if there is any issue while clicking on confirmation link "
1434
  "from the Double Opt In (confirmation) Emails."
1436
  "Standartnachricht wenn ein Problem mit dem Bestätigungslink der Doppelten Opt In "
1437
  "Bestätigungsmail besteht."
1438
 
1439
+ #: settings/settings-edit.php:272
1440
  msgid "Error in the Unsubscribe Link"
1441
  msgstr "Fehler im Abmeldelink"
1442
 
1443
+ #: settings/settings-edit.php:273
1444
  msgid ""
1445
  "Default message to display if there is any issue while clicking on unsubscribe link "
1446
  "from the Emails."
1447
  msgstr ""
1448
  "Standartnachricht wenn ein Problem mit dem Abmeldungslink in den Emails besteht."
1449
 
1450
+ #: settings/settings-edit.php:285
1451
  msgid "Select user roles who can access following menus. Only Admin can change this."
1452
  msgstr ""
1453
  "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur ein Admin "
1454
  "kann das ändern."
1455
 
1456
+ #: settings/settings-edit.php:291
1457
  msgid "Subscribers Menu"
1458
  msgstr "Menü Abonnenten"
1459
 
1460
+ #: settings/settings-edit.php:295 settings/settings-edit.php:307
1461
+ #: settings/settings-edit.php:319 settings/settings-edit.php:331
1462
+ #: settings/settings-edit.php:343
1463
  msgid "Administrator Only"
1464
  msgstr "Nur für Administratoren"
1465
 
1466
+ #: settings/settings-edit.php:296 settings/settings-edit.php:308
1467
+ #: settings/settings-edit.php:320 settings/settings-edit.php:332
1468
+ #: settings/settings-edit.php:344
1469
  msgid "Administrator/Editor"
1470
  msgstr "Für Administratoren / Editoren"
1471
 
1472
+ #: settings/settings-edit.php:297 settings/settings-edit.php:309
1473
+ #: settings/settings-edit.php:321 settings/settings-edit.php:333
1474
+ #: settings/settings-edit.php:345
1475
  msgid "Administrator/Editor/Author/Contributor"
1476
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
1477
 
1478
+ #: settings/settings-edit.php:303
1479
  msgid "Compose Menu"
1480
  msgstr "Menü Erstellen"
1481
 
1482
+ #: settings/settings-edit.php:315
1483
  msgid "Post Notifications Menu"
1484
  msgstr "Menü Benachrichtigungen"
1485
 
1486
+ #: settings/settings-edit.php:339
1487
  msgid "Reports Menu"
1488
  msgstr "Menü Berichte"
1489
 
1490
+ #: settings/settings-edit.php:356
1491
  msgid "Cron job URL"
1492
  msgstr "Cron Job URL"
1493
 
1494
+ #: settings/settings-edit.php:357
1495
  msgid ""
1496
  "This is your Cron Job URL. It is a readonly field and you are advised not to modify "
1497
  "it."
1498
  msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1499
 
1500
+ #: settings/settings-edit.php:366
1501
  msgid "Email Count"
1502
  msgstr "Anzahl Emails"
1503
 
1504
+ #: settings/settings-edit.php:367
1505
  msgid "Number of emails that you want to trigger per hour."
1506
  msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
1507
 
1508
+ #: settings/settings-edit.php:372
1509
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
1510
  msgstr ""
1511
  "(Dein Webhoster hat Beschränkungen. Wir empfehlen 50 Emails pro Stunde um auf der "
1512
  "sicheren Seite zu sein)"
1513
 
1514
+ #: settings/settings-edit.php:377
1515
  msgid "Admin Report"
1516
  msgstr "Admin Bericht"
1517
 
1518
+ #: settings/settings-edit.php:378
1519
  msgid ""
1520
  "Email to admin whenever cron URL is triggered from your server. (Keywords: "
1521
  "###DATE###, ###SUBJECT###, ###COUNT###)"
1523
  "Email an den Admin wenn eine Cron URL vom Server aufgerufen wird. (Schlüsselworte: "
1524
  "###DATE###, ###SUBJECT###, ###COUNT###)"
1525
 
1526
+ #: settings/settings-edit.php:388
1527
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1528
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1529
 
1530
+ #: settings/settings-edit.php:389
1531
  msgid ""
1532
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1533
  "cron-emails/\">What is Cron?</a>"
1534
  msgstr ""
1535
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1536
  "cron-emails/\">Was ist Cron?</a>"
1537
 
1538
+ #: settings/settings-edit.php:390
1539
  msgid ""
1540
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1541
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1542
  msgstr ""
1543
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1544
  "cron-emails-in-parallels-plesk/\">Cron Job in Plesk konfigurieren</a>"
1545
 
1546
+ #: settings/settings-edit.php:391
1547
  msgid ""
1548
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1549
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1550
  msgstr ""
1551
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1552
  "cron-emails-in-cpanel/\">Cron Job in cPanel konfigurieren</a>"
1553
 
1554
+ #: settings/settings-edit.php:392
1555
  msgid ""
1556
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1557
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1558
  msgstr ""
1559
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1560
  "hosting-doesnt-support-cron-jobs/\">Dein Hoster unterstützt keine Cron Jobs?</a>"
1561
 
1562
+ #: settings/settings-edit.php:506
1563
  msgid "Please enter sender of notifications from name."
1564
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
1565
 
1566
+ #: settings/settings-edit.php:511
1567
  msgid "Please enter sender of notifications from email."
1568
  msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
1569
 
1570
+ #: settings/settings-edit.php:555
1571
  msgid "Please enter valid mail count."
1572
  msgstr "Bitte gib eine gültige Mailanzahl ein."
1573
 
1574
+ #: settings/settings-edit.php:568
1575
  msgid "Settings Saved."
1576
  msgstr "Einstellungen gesichert."
1577
 
1578
+ #: settings/settings-edit.php:571
1579
  msgid "Oops, unable to update."
1580
  msgstr "Oops.. Update nicht möglich."
1581
 
1721
  msgid "1"
1722
  msgstr "1"
1723
 
1724
+ #: subscribers/view-subscriber-export.php:62
1725
+ msgid "All Subscribers"
1726
+ msgstr "Alle Abonnenten"
1727
+
1728
  #: subscribers/view-subscriber-export.php:64 subscribers/view-subscriber-export.php:70
1729
  #: subscribers/view-subscriber-export.php:76 subscribers/view-subscriber-export.php:82
1730
  #: subscribers/view-subscriber-export.php:88
1735
  msgid "2"
1736
  msgstr "2"
1737
 
1738
+ #: subscribers/view-subscriber-export.php:68
1739
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1740
+ msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
1741
+
1742
  #: subscribers/view-subscriber-export.php:73
1743
  msgid "3"
1744
  msgstr "3"
1745
 
1746
+ #: subscribers/view-subscriber-export.php:74
1747
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1748
+ msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
1749
+
1750
+ #: subscribers/view-subscriber-export.php:79
1751
+ msgid "4"
1752
+ msgstr "4"
1753
+
1754
  #: subscribers/view-subscriber-export.php:80
1755
  msgid "WordPress Registered Users"
1756
  msgstr "Registrierte WordPress Benutzer"
1757
 
1758
+ #: subscribers/view-subscriber-export.php:85
1759
+ msgid "5"
1760
+ msgstr "5"
1761
+
1762
  #: subscribers/view-subscriber-export.php:86
1763
  msgid "Commented Authors"
1764
  msgstr "Kommentierte Autoren"
1773
 
1774
  #: subscribers/view-subscriber-import.php:92
1775
  msgid "email imported."
1776
+ msgstr "Email(s) importiert."
1777
 
1778
  #: subscribers/view-subscriber-import.php:93
1779
  msgid "email already exists."
1781
 
1782
  #: subscribers/view-subscriber-import.php:94
1783
  msgid "email are invalid."
1784
+ msgstr "Email(s) sind ungültig."
1785
 
1786
  #: subscribers/view-subscriber-import.php:97 subscribers/view-subscriber-import.php:126
1787
  msgid "Click here"
1862
  msgid "Please select New Status to update."
1863
  msgstr "Bitte wähle den neuen Status aus."
1864
 
1865
+ #: subscribers/view-subscriber-show.php:252
1866
+ #, c-format
1867
+ msgid "Total Subscribers: %s"
1868
+ msgstr "Abonnenten insgesamt: %s"
1869
+
1870
+ #: subscribers/view-subscriber-show.php:254
1871
+ #, c-format
1872
+ msgid "Active Subscribers: %s"
1873
+ msgstr "Abonnenten aktiv: %s"
1874
+
1875
  #: subscribers/view-subscriber-show.php:286
1876
  msgid "Bulk Actions"
1877
  msgstr "Mehrfachaktionen"
1904
  msgid "All Status"
1905
  msgstr "Alle Stati"
1906
 
1907
+ #: subscribers/view-subscriber-show.php:342
1908
+ msgid "1 to 500 emails"
1909
+ msgstr "1 bis 500 Emails"
1910
+
1911
+ #: subscribers/view-subscriber-show.php:343
1912
+ msgid "501 to 1000"
1913
+ msgstr "501 bis 1000"
1914
+
1915
+ #: subscribers/view-subscriber-show.php:344
1916
+ msgid "1001 to 1500"
1917
+ msgstr "1001 bis 1500"
1918
+
1919
+ #: subscribers/view-subscriber-show.php:345
1920
+ msgid "1501 to 2000"
1921
+ msgstr "1501 bis 2000"
1922
+
1923
+ #: subscribers/view-subscriber-show.php:346
1924
+ msgid "2001 to 4000"
1925
+ msgstr "2001 bis 4000"
1926
+
1927
+ #: subscribers/view-subscriber-show.php:347
1928
+ msgid "4001 to 6000"
1929
+ msgstr "4001 bis 6000"
1930
+
1931
+ #: subscribers/view-subscriber-show.php:348
1932
+ msgid "6001 to 10000"
1933
+ msgstr "6001 bis 10000"
1934
+
1935
  #: subscribers/view-subscriber-show.php:349
1936
  msgid "Display All"
1937
  msgstr "Alle anzeigen"
1944
  msgid "Group"
1945
  msgstr "Gruppe"
1946
 
1947
+ #: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
1948
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1949
+ msgstr "Anmeldedatum und -Zeit<br>(Y-M-D H:I:S)"
1950
+
1951
  #: subscribers/view-subscriber-sync.php:36
1952
  msgid "Please select default group to newly registered user."
1953
  msgstr "Bitte wähle die Standartgruppe für neu registrierte Benutzer."
1974
 
1975
  #. Plugin URI of the plugin/theme
1976
  #. Author URI of the plugin/theme
1977
+ msgid "https://www.icegram.com/"
1978
+ msgstr "https://www.icegram.com/"
1979
 
1980
  #. Description of the plugin/theme
1981
  msgid ""
languages/email-subscribers-es_ES.mo CHANGED
Binary file
languages/email-subscribers-es_ES.po CHANGED
@@ -1553,34 +1553,34 @@ msgstr "¿Qué es Cron (correos automáticos) y cómo configurar una tarea Cron?
1553
 
1554
  #: settings/settings-edit.php:378
1555
  msgid ""
1556
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1557
  "schedule-cron-emails/\">What is Cron?</a>"
1558
  msgstr ""
1559
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1560
  "schedule-cron-emails/\">¿Qué es Cron?</a>"
1561
 
1562
  #: settings/settings-edit.php:379
1563
  msgid ""
1564
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1565
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1566
  msgstr ""
1567
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1568
  "schedule-cron-emails-in-parallels-plesk/\">Configurar una tarea cron en Plesk</a>"
1569
 
1570
  #: settings/settings-edit.php:380
1571
  msgid ""
1572
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1573
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1574
  msgstr ""
1575
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1576
  "schedule-cron-emails-in-cpanel/\">Configurar una tarea cron job en cPanel</a>"
1577
 
1578
  #: settings/settings-edit.php:381
1579
  msgid ""
1580
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1581
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1582
  msgstr ""
1583
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1584
  "hosting-doesnt-support-cron-jobs/\">¿Tu servidor no soporta tareas cron?</a>"
1585
 
1586
  #: settings/settings-edit.php:495
@@ -2009,8 +2009,8 @@ msgstr "Email Subscribers & Newsletters"
2009
 
2010
  #. Plugin URI of the plugin/theme
2011
  #. Author URI of the plugin/theme
2012
- msgid "http://www.icegram.com/"
2013
- msgstr "http://www.icegram.com/"
2014
 
2015
  #. Description of the plugin/theme
2016
  msgid ""
1553
 
1554
  #: settings/settings-edit.php:378
1555
  msgid ""
1556
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1557
  "schedule-cron-emails/\">What is Cron?</a>"
1558
  msgstr ""
1559
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1560
  "schedule-cron-emails/\">¿Qué es Cron?</a>"
1561
 
1562
  #: settings/settings-edit.php:379
1563
  msgid ""
1564
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1565
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1566
  msgstr ""
1567
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1568
  "schedule-cron-emails-in-parallels-plesk/\">Configurar una tarea cron en Plesk</a>"
1569
 
1570
  #: settings/settings-edit.php:380
1571
  msgid ""
1572
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1573
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1574
  msgstr ""
1575
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1576
  "schedule-cron-emails-in-cpanel/\">Configurar una tarea cron job en cPanel</a>"
1577
 
1578
  #: settings/settings-edit.php:381
1579
  msgid ""
1580
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1581
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1582
  msgstr ""
1583
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1584
  "hosting-doesnt-support-cron-jobs/\">¿Tu servidor no soporta tareas cron?</a>"
1585
 
1586
  #: settings/settings-edit.php:495
2009
 
2010
  #. Plugin URI of the plugin/theme
2011
  #. Author URI of the plugin/theme
2012
+ msgid "https://www.icegram.com/"
2013
+ msgstr "https://www.icegram.com/"
2014
 
2015
  #. Description of the plugin/theme
2016
  msgid ""
languages/email-subscribers-fr_FR.mo CHANGED
Binary file
languages/email-subscribers-fr_FR.po CHANGED
@@ -1542,34 +1542,34 @@ msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1542
 
1543
  #: settings/settings-edit.php:378
1544
  msgid ""
1545
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1546
  "schedule-cron-emails/\">What is Cron?</a>"
1547
  msgstr ""
1548
- "<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-cron-"
1549
  "mails/\">Qu'est qu'une tâche Cron?</a>"
1550
 
1551
  #: settings/settings-edit.php:379
1552
  msgid ""
1553
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1554
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1555
  msgstr ""
1556
- "<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-cron-"
1557
  "emails-in-parallels-plesk/\">Paramétrer une tâche cron sur Plesk</a>"
1558
 
1559
  #: settings/settings-edit.php:380
1560
  msgid ""
1561
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1562
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1563
  msgstr ""
1564
- "<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-cron-"
1565
  "emails-in-cpanel/\">Paramétrer une tâche cron sur cPanel</a>"
1566
 
1567
  #: settings/settings-edit.php:381
1568
  msgid ""
1569
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1570
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1571
  msgstr ""
1572
- "<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-what-to-do-if-hosting-"
1573
  "doesnt-support-cron-jobs/\">Votre hébergeur ne gère pas les tâches cron?</a>"
1574
 
1575
  #: settings/settings-edit.php:495
@@ -1996,8 +1996,8 @@ msgstr "Email Subscribers & Newsletters"
1996
 
1997
  #. Plugin URI of the plugin/theme
1998
  #. Author URI of the plugin/theme
1999
- msgid "http://www.icegram.com/"
2000
- msgstr "http://www.icegram.com/"
2001
 
2002
  #. Description of the plugin/theme
2003
  msgid ""
1542
 
1543
  #: settings/settings-edit.php:378
1544
  msgid ""
1545
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1546
  "schedule-cron-emails/\">What is Cron?</a>"
1547
  msgstr ""
1548
+ "<a target=\"_blank\" href=\"https://www.storeapps.org/docs/es-how-to-schedule-cron-"
1549
  "mails/\">Qu'est qu'une tâche Cron?</a>"
1550
 
1551
  #: settings/settings-edit.php:379
1552
  msgid ""
1553
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1554
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1555
  msgstr ""
1556
+ "<a target=\"_blank\" href=\"https://www.storeapps.org/docs/es-how-to-schedule-cron-"
1557
  "emails-in-parallels-plesk/\">Paramétrer une tâche cron sur Plesk</a>"
1558
 
1559
  #: settings/settings-edit.php:380
1560
  msgid ""
1561
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1562
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1563
  msgstr ""
1564
+ "<a target=\"_blank\" href=\"https://www.storeapps.org/docs/es-how-to-schedule-cron-"
1565
  "emails-in-cpanel/\">Paramétrer une tâche cron sur cPanel</a>"
1566
 
1567
  #: settings/settings-edit.php:381
1568
  msgid ""
1569
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1570
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1571
  msgstr ""
1572
+ "<a target=\"_blank\" href=\"https://www.storeapps.org/docs/es-what-to-do-if-hosting-"
1573
  "doesnt-support-cron-jobs/\">Votre hébergeur ne gère pas les tâches cron?</a>"
1574
 
1575
  #: settings/settings-edit.php:495
1996
 
1997
  #. Plugin URI of the plugin/theme
1998
  #. Author URI of the plugin/theme
1999
+ msgid "https://www.icegram.com/"
2000
+ msgstr "https://www.icegram.com/"
2001
 
2002
  #. Description of the plugin/theme
2003
  msgid ""
languages/email-subscribers-hu_HU.mo CHANGED
Binary file
languages/email-subscribers-hu_HU.po CHANGED
@@ -1559,34 +1559,34 @@ msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1559
 
1560
  #: settings/settings-edit.php:378
1561
  msgid ""
1562
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1563
  "cron-emails/\">What is Cron?</a>"
1564
  msgstr ""
1565
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1566
  "cron-emails/\">What is Cron?</a>"
1567
 
1568
  #: settings/settings-edit.php:379
1569
  msgid ""
1570
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1571
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1572
  msgstr ""
1573
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1574
  "cron-emails-in-parallels-plesk/\">Az időzítés beállítása a Plesk-en - angol</a>"
1575
 
1576
  #: settings/settings-edit.php:380
1577
  msgid ""
1578
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1579
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1580
  msgstr ""
1581
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1582
  "cron-emails-in-cpanel/\">Az időzítés beállítása a cPanelen - angolul l</a>"
1583
 
1584
  #: settings/settings-edit.php:381
1585
  msgid ""
1586
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1587
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1588
  msgstr ""
1589
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1590
  "hosting-doesnt-support-cron-jobs/\">A tárhelyszolgáltató nem támogatja az időzített "
1591
  "feladatokat (angol)</a>"
1592
 
@@ -1947,8 +1947,8 @@ msgstr "Email Subscribers & Newsletters"
1947
  #. Plugin URI of the plugin/theme
1948
  #. #-#-#-#-# tmp-email-subscribers.pot (Email Subscribers & Newsletters 3.2.3)
1949
  #. Author URI of the plugin/theme
1950
- msgid "http://www.icegram.com/"
1951
- msgstr "http://www.icegram.com/"
1952
 
1953
  #. Description of the plugin/theme
1954
  msgid ""
1559
 
1560
  #: settings/settings-edit.php:378
1561
  msgid ""
1562
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1563
  "cron-emails/\">What is Cron?</a>"
1564
  msgstr ""
1565
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1566
  "cron-emails/\">What is Cron?</a>"
1567
 
1568
  #: settings/settings-edit.php:379
1569
  msgid ""
1570
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1571
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1572
  msgstr ""
1573
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1574
  "cron-emails-in-parallels-plesk/\">Az időzítés beállítása a Plesk-en - angol</a>"
1575
 
1576
  #: settings/settings-edit.php:380
1577
  msgid ""
1578
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1579
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1580
  msgstr ""
1581
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1582
  "cron-emails-in-cpanel/\">Az időzítés beállítása a cPanelen - angolul l</a>"
1583
 
1584
  #: settings/settings-edit.php:381
1585
  msgid ""
1586
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1587
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1588
  msgstr ""
1589
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1590
  "hosting-doesnt-support-cron-jobs/\">A tárhelyszolgáltató nem támogatja az időzített "
1591
  "feladatokat (angol)</a>"
1592
 
1947
  #. Plugin URI of the plugin/theme
1948
  #. #-#-#-#-# tmp-email-subscribers.pot (Email Subscribers & Newsletters 3.2.3)
1949
  #. Author URI of the plugin/theme
1950
+ msgid "https://www.icegram.com/"
1951
+ msgstr "https://www.icegram.com/"
1952
 
1953
  #. Description of the plugin/theme
1954
  msgid ""
languages/email-subscribers-lt_LT.mo CHANGED
Binary file
languages/email-subscribers-lt_LT.po CHANGED
@@ -1598,37 +1598,37 @@ msgstr ""
1598
 
1599
  #: settings/settings-edit.php:378
1600
  msgid ""
1601
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1602
  "schedule-cron-emails/\">What is Cron?</a>"
1603
  msgstr ""
1604
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1605
  "schedule-cron-emails/\">Kas yra periodinės užduotys (cron)?</a>"
1606
 
1607
  #: settings/settings-edit.php:379
1608
  msgid ""
1609
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1610
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1611
  msgstr ""
1612
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1613
  "schedule-cron-emails-in-parallels-plesk/\">Periodinių užduočių (cron job) "
1614
  "nustatymas Plesk</a>"
1615
 
1616
  #: settings/settings-edit.php:380
1617
  msgid ""
1618
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1619
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1620
  msgstr ""
1621
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1622
  "schedule-cron-emails-in-cpanel/\">Periodinių užduočių (cron job) nustatymas "
1623
  "cPanel</a>"
1624
 
1625
  #: settings/settings-edit.php:381
1626
  msgid ""
1627
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
1628
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
1629
  "</a>"
1630
  msgstr ""
1631
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
1632
  "do-if-hosting-doesnt-support-cron-jobs/\">Serveris nepalaiko periodinių "
1633
  "užduočių (cron job)?</a>"
1634
 
@@ -2088,8 +2088,8 @@ msgstr "Email Subscribers & Newsletters"
2088
  #. Plugin URI of the plugin/theme
2089
  #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
2090
  #. Author URI of the plugin/theme
2091
- msgid "http://www.icegram.com/"
2092
- msgstr "http://www.icegram.com/"
2093
 
2094
  #. Description of the plugin/theme
2095
  msgid ""
1598
 
1599
  #: settings/settings-edit.php:378
1600
  msgid ""
1601
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1602
  "schedule-cron-emails/\">What is Cron?</a>"
1603
  msgstr ""
1604
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1605
  "schedule-cron-emails/\">Kas yra periodinės užduotys (cron)?</a>"
1606
 
1607
  #: settings/settings-edit.php:379
1608
  msgid ""
1609
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1610
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1611
  msgstr ""
1612
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1613
  "schedule-cron-emails-in-parallels-plesk/\">Periodinių užduočių (cron job) "
1614
  "nustatymas Plesk</a>"
1615
 
1616
  #: settings/settings-edit.php:380
1617
  msgid ""
1618
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1619
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1620
  msgstr ""
1621
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1622
  "schedule-cron-emails-in-cpanel/\">Periodinių užduočių (cron job) nustatymas "
1623
  "cPanel</a>"
1624
 
1625
  #: settings/settings-edit.php:381
1626
  msgid ""
1627
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
1628
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
1629
  "</a>"
1630
  msgstr ""
1631
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
1632
  "do-if-hosting-doesnt-support-cron-jobs/\">Serveris nepalaiko periodinių "
1633
  "užduočių (cron job)?</a>"
1634
 
2088
  #. Plugin URI of the plugin/theme
2089
  #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
2090
  #. Author URI of the plugin/theme
2091
+ msgid "https://www.icegram.com/"
2092
+ msgstr "https://www.icegram.com/"
2093
 
2094
  #. Description of the plugin/theme
2095
  msgid ""
languages/email-subscribers-nb_NO.mo CHANGED
Binary file
languages/email-subscribers-nb_NO.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
4
- "Report-Msgid-Bugs-To: http://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
6
  "PO-Revision-Date: 2017-06-20 21:03+0200\n"
7
  "Last-Translator: Helge Rosseboe <rosseha@me.com>\n"
@@ -1585,34 +1585,34 @@ msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
1585
 
1586
  #: settings/settings-edit.php:378
1587
  msgid ""
1588
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1589
  "cron-emails/\">What is Cron?</a>"
1590
  msgstr ""
1591
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1592
  "cron-emails/\">Hva er Cron?</a>"
1593
 
1594
  #: settings/settings-edit.php:379
1595
  msgid ""
1596
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1597
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1598
  msgstr ""
1599
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1600
  "cron-emails-in-parallels-plesk/\">ISetup cron jobb i Plesk</a>"
1601
 
1602
  #: settings/settings-edit.php:380
1603
  msgid ""
1604
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1605
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1606
  msgstr ""
1607
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1608
  "cron-emails-in-cpanel/\">Setup cron jobb i cPanel</a>"
1609
 
1610
  #: settings/settings-edit.php:381
1611
  msgid ""
1612
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1613
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1614
  msgstr ""
1615
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1616
  "hosting-doesnt-support-cron-jobs/\">Host støtter ikke cron jobber?</a>"
1617
 
1618
  #: settings/settings-edit.php:495
@@ -1967,8 +1967,8 @@ msgstr "Email Subscribers & nyhetsbrev"
1967
 
1968
  #. Plugin URI of the plugin/theme
1969
  #. Author URI of the plugin/theme
1970
- msgid "http://www.icegram.com/"
1971
- msgstr "http://www.icegram.com/"
1972
 
1973
  #. Author of the plugin/theme
1974
  msgid "Icegram"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
4
+ "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
6
  "PO-Revision-Date: 2017-06-20 21:03+0200\n"
7
  "Last-Translator: Helge Rosseboe <rosseha@me.com>\n"
1585
 
1586
  #: settings/settings-edit.php:378
1587
  msgid ""
1588
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1589
  "cron-emails/\">What is Cron?</a>"
1590
  msgstr ""
1591
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1592
  "cron-emails/\">Hva er Cron?</a>"
1593
 
1594
  #: settings/settings-edit.php:379
1595
  msgid ""
1596
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1597
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1598
  msgstr ""
1599
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1600
  "cron-emails-in-parallels-plesk/\">ISetup cron jobb i Plesk</a>"
1601
 
1602
  #: settings/settings-edit.php:380
1603
  msgid ""
1604
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1605
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1606
  msgstr ""
1607
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1608
  "cron-emails-in-cpanel/\">Setup cron jobb i cPanel</a>"
1609
 
1610
  #: settings/settings-edit.php:381
1611
  msgid ""
1612
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1613
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1614
  msgstr ""
1615
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1616
  "hosting-doesnt-support-cron-jobs/\">Host støtter ikke cron jobber?</a>"
1617
 
1618
  #: settings/settings-edit.php:495
1967
 
1968
  #. Plugin URI of the plugin/theme
1969
  #. Author URI of the plugin/theme
1970
+ msgid "https://www.icegram.com/"
1971
+ msgstr "https://www.icegram.com/"
1972
 
1973
  #. Author of the plugin/theme
1974
  msgid "Icegram"
languages/email-subscribers-pl_PL.mo CHANGED
Binary file
languages/email-subscribers-pl_PL.po CHANGED
@@ -1598,34 +1598,34 @@ msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę
1598
 
1599
  #: settings/settings-edit.php:378
1600
  msgid ""
1601
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1602
  "cron-emails/\">What is Cron?</a>"
1603
  msgstr ""
1604
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1605
  "cron-emails/\">Co to jest Cron?</a>"
1606
 
1607
  #: settings/settings-edit.php:379
1608
  msgid ""
1609
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1610
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1611
  msgstr ""
1612
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1613
  "cron-emails-in-parallels-plesk/\">Konfiguracja Cron w panelu Plesk</a>"
1614
 
1615
  #: settings/settings-edit.php:380
1616
  msgid ""
1617
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1618
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1619
  msgstr ""
1620
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1621
  "cron-emails-in-cpanel/\">Konfiguracja Cron w cPanel</a>"
1622
 
1623
  #: settings/settings-edit.php:381
1624
  msgid ""
1625
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1626
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1627
  msgstr ""
1628
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1629
  "hosting-doesnt-support-cron-jobs/\">Hosting nie obsługuje procedur Cron?</a>"
1630
 
1631
  #: settings/settings-edit.php:495
@@ -1977,8 +1977,8 @@ msgstr "Email Subscribers & Newsletters"
1977
 
1978
  #. Plugin URI of the plugin/theme
1979
  #. Author URI of the plugin/theme
1980
- msgid "http://www.icegram.com/"
1981
- msgstr "http://www.icegram.com/"
1982
 
1983
  #. Description of the plugin/theme
1984
  msgid ""
1598
 
1599
  #: settings/settings-edit.php:378
1600
  msgid ""
1601
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1602
  "cron-emails/\">What is Cron?</a>"
1603
  msgstr ""
1604
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1605
  "cron-emails/\">Co to jest Cron?</a>"
1606
 
1607
  #: settings/settings-edit.php:379
1608
  msgid ""
1609
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1610
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1611
  msgstr ""
1612
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1613
  "cron-emails-in-parallels-plesk/\">Konfiguracja Cron w panelu Plesk</a>"
1614
 
1615
  #: settings/settings-edit.php:380
1616
  msgid ""
1617
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1618
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1619
  msgstr ""
1620
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1621
  "cron-emails-in-cpanel/\">Konfiguracja Cron w cPanel</a>"
1622
 
1623
  #: settings/settings-edit.php:381
1624
  msgid ""
1625
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1626
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1627
  msgstr ""
1628
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1629
  "hosting-doesnt-support-cron-jobs/\">Hosting nie obsługuje procedur Cron?</a>"
1630
 
1631
  #: settings/settings-edit.php:495
1977
 
1978
  #. Plugin URI of the plugin/theme
1979
  #. Author URI of the plugin/theme
1980
+ msgid "https://www.icegram.com/"
1981
+ msgstr "https://www.icegram.com/"
1982
 
1983
  #. Description of the plugin/theme
1984
  msgid ""
languages/email-subscribers-sv_SE.mo CHANGED
Binary file
languages/email-subscribers-sv_SE.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
4
- "Report-Msgid-Bugs-To: http://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
6
  "PO-Revision-Date: 2017-07-04 10:56+0200\n"
7
  "Last-Translator: \n"
@@ -1506,34 +1506,34 @@ msgstr "Vad är Cron och hur görs inställningarna."
1506
 
1507
  #: settings/settings-edit.php:378
1508
  msgid ""
1509
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1510
  "cron-emails/\">What is Cron?</a>"
1511
  msgstr ""
1512
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1513
  "cron-emails/\">Vad är Cron?</a>"
1514
 
1515
  #: settings/settings-edit.php:379
1516
  msgid ""
1517
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1518
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1519
  msgstr ""
1520
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1521
  "cron-emails-in-parallels-plesk/\">Ställ in cron i Plesk</a>"
1522
 
1523
  #: settings/settings-edit.php:380
1524
  msgid ""
1525
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1526
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1527
  msgstr ""
1528
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
1529
  "cron-emails-in-cpanel/\">Ställ in cron job i cPanal</a>"
1530
 
1531
  #: settings/settings-edit.php:381
1532
  msgid ""
1533
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1534
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1535
  msgstr ""
1536
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
1537
  "hosting-doesnt-support-cron-jobs/\">Ditt webbhotell stöder inte cron jobs?</a>"
1538
 
1539
  #: settings/settings-edit.php:495
@@ -1950,8 +1950,8 @@ msgstr "Email Subscribers & Newsletters"
1950
 
1951
  #. Plugin URI of the plugin/theme
1952
  #. Author URI of the plugin/theme
1953
- msgid "http://www.icegram.com/"
1954
- msgstr "http://www.icegram.com/"
1955
 
1956
  #. Description of the plugin/theme
1957
  msgid ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
4
+ "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
6
  "PO-Revision-Date: 2017-07-04 10:56+0200\n"
7
  "Last-Translator: \n"
1506
 
1507
  #: settings/settings-edit.php:378
1508
  msgid ""
1509
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1510
  "cron-emails/\">What is Cron?</a>"
1511
  msgstr ""
1512
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1513
  "cron-emails/\">Vad är Cron?</a>"
1514
 
1515
  #: settings/settings-edit.php:379
1516
  msgid ""
1517
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1518
  "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1519
  msgstr ""
1520
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1521
  "cron-emails-in-parallels-plesk/\">Ställ in cron i Plesk</a>"
1522
 
1523
  #: settings/settings-edit.php:380
1524
  msgid ""
1525
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1526
  "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1527
  msgstr ""
1528
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-schedule-"
1529
  "cron-emails-in-cpanel/\">Ställ in cron job i cPanal</a>"
1530
 
1531
  #: settings/settings-edit.php:381
1532
  msgid ""
1533
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1534
  "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
1535
  msgstr ""
1536
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
1537
  "hosting-doesnt-support-cron-jobs/\">Ditt webbhotell stöder inte cron jobs?</a>"
1538
 
1539
  #: settings/settings-edit.php:495
1950
 
1951
  #. Plugin URI of the plugin/theme
1952
  #. Author URI of the plugin/theme
1953
+ msgid "https://www.icegram.com/"
1954
+ msgstr "https://www.icegram.com/"
1955
 
1956
  #. Description of the plugin/theme
1957
  msgid ""
languages/email-subscribers-tr_TR.mo CHANGED
Binary file
languages/email-subscribers-tr_TR.po CHANGED
@@ -1649,36 +1649,36 @@ msgstr ""
1649
 
1650
  #: settings/settings-edit.php:378
1651
  msgid ""
1652
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1653
  "schedule-cron-emails/\">What is Cron?</a>"
1654
  msgstr ""
1655
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1656
  "schedule-cron-emails/\">Planlanmış gönderi nedir?</a>"
1657
 
1658
  #: settings/settings-edit.php:379
1659
  msgid ""
1660
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1661
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1662
  msgstr ""
1663
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1664
  "schedule-cron-emails-in-parallels-plesk/\">Plesk için planlanmış gönderi "
1665
  "ayarla</a>"
1666
 
1667
  #: settings/settings-edit.php:380
1668
  msgid ""
1669
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1670
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1671
  msgstr ""
1672
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1673
  "schedule-cron-emails-in-cpanel/\">Cpanel için planlanmış gönderi ayarla</a>"
1674
 
1675
  #: settings/settings-edit.php:381
1676
  msgid ""
1677
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
1678
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
1679
  "</a>"
1680
  msgstr ""
1681
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
1682
  "do-if-hosting-doesnt-support-cron-jobs/\">Eğer web alanımız planlanmış "
1683
  "gönderi desteklemiyorsa ?</a>"
1684
 
@@ -2072,8 +2072,8 @@ msgstr "Email Subscribers & Newsletters"
2072
 
2073
  #. Plugin URI of the plugin/theme
2074
  #. Author URI of the plugin/theme
2075
- msgid "http://www.icegram.com/"
2076
- msgstr "http://www.icegram.com/"
2077
 
2078
  #. Description of the plugin/theme
2079
  msgid ""
1649
 
1650
  #: settings/settings-edit.php:378
1651
  msgid ""
1652
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1653
  "schedule-cron-emails/\">What is Cron?</a>"
1654
  msgstr ""
1655
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1656
  "schedule-cron-emails/\">Planlanmış gönderi nedir?</a>"
1657
 
1658
  #: settings/settings-edit.php:379
1659
  msgid ""
1660
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1661
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1662
  msgstr ""
1663
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1664
  "schedule-cron-emails-in-parallels-plesk/\">Plesk için planlanmış gönderi "
1665
  "ayarla</a>"
1666
 
1667
  #: settings/settings-edit.php:380
1668
  msgid ""
1669
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1670
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1671
  msgstr ""
1672
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1673
  "schedule-cron-emails-in-cpanel/\">Cpanel için planlanmış gönderi ayarla</a>"
1674
 
1675
  #: settings/settings-edit.php:381
1676
  msgid ""
1677
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
1678
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
1679
  "</a>"
1680
  msgstr ""
1681
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
1682
  "do-if-hosting-doesnt-support-cron-jobs/\">Eğer web alanımız planlanmış "
1683
  "gönderi desteklemiyorsa ?</a>"
1684
 
2072
 
2073
  #. Plugin URI of the plugin/theme
2074
  #. Author URI of the plugin/theme
2075
+ msgid "https://www.icegram.com/"
2076
+ msgstr "https://www.icegram.com/"
2077
 
2078
  #. Description of the plugin/theme
2079
  msgid ""
languages/email-subscribers.pot CHANGED
@@ -2,15 +2,16 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.3\n"
6
- "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
7
- "POT-Creation-Date: 2017-07-11 12:44:43+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: Tue, 11 Jul 2017 18:14:43 +0530\n"
12
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
13
- "Language-Team: StoreApps <support@storeapps.org>\n"
 
14
 
15
  #: base/es-defined.php:32
16
  msgid ""
@@ -64,221 +65,221 @@ msgstr ""
64
  msgid "<span style=\"color:#993399;\">Immediately</span>"
65
  msgstr ""
66
 
67
- #: classes/es-loadwidget.php:28 classes/es-register.php:931
68
  #: subscribers/view-subscriber-show.php:361
69
  #: subscribers/view-subscriber-show.php:374
70
  msgid "Name"
71
  msgstr ""
72
 
73
- #: classes/es-loadwidget.php:33 classes/es-register.php:936
74
  msgid "Email *"
75
  msgstr ""
76
 
77
- #: classes/es-loadwidget.php:38 classes/es-register.php:941
78
  msgid "Subscribe"
79
  msgstr ""
80
 
81
- #: classes/es-register.php:140 classes/es-register.php:141
82
- #: classes/es-register.php:677
83
  msgid "Email Subscribers"
84
  msgstr ""
85
 
86
- #: classes/es-register.php:143 classes/es-register.php:144
87
  #: subscribers/view-subscriber-show.php:241
88
  msgid "Subscribers"
89
  msgstr ""
90
 
91
- #: classes/es-register.php:146 classes/es-register.php:147
92
  #: compose/compose-show.php:64
93
  msgid "Compose"
94
  msgstr ""
95
 
96
- #: classes/es-register.php:149 classes/es-register.php:150
97
  #: notification/notification-show.php:52
98
  msgid "Post Notifications"
99
  msgstr ""
100
 
101
- #: classes/es-register.php:152 classes/es-register.php:153
102
  #: sendmail/sendmail.php:93 settings/settings-edit.php:327
103
  msgid "Newsletters"
104
  msgstr ""
105
 
106
- #: classes/es-register.php:155 classes/es-register.php:156
107
  #: settings/settings-edit.php:42
108
  msgid "Settings"
109
  msgstr ""
110
 
111
- #: classes/es-register.php:158 classes/es-register.php:159
112
- #: sentmail/sentmail-show.php:96
113
  msgid "Reports"
114
  msgstr ""
115
 
116
- #: classes/es-register.php:161
117
  msgid "Help & Info"
118
  msgstr ""
119
 
120
- #: classes/es-register.php:162
121
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
122
  msgstr ""
123
 
124
- #: classes/es-register.php:173
125
  msgctxt "view-subscriber-enhanced-select"
126
  msgid "Please enter subscriber email address."
127
  msgstr ""
128
 
129
- #: classes/es-register.php:174
130
  msgctxt "view-subscriber-enhanced-select"
131
  msgid "Please select subscriber email status."
132
  msgstr ""
133
 
134
- #: classes/es-register.php:175
135
  msgctxt "view-subscriber-enhanced-select"
136
  msgid "Please select or create group for this subscriber."
137
  msgstr ""
138
 
139
- #: classes/es-register.php:176
140
  msgctxt "view-subscriber-enhanced-select"
141
  msgid "Do you want to delete this record?"
142
  msgstr ""
143
 
144
- #: classes/es-register.php:177
145
  msgctxt "view-subscriber-enhanced-select"
146
  msgid "Please select the bulk action."
147
  msgstr ""
148
 
149
- #: classes/es-register.php:178
150
  msgctxt "view-subscriber-enhanced-select"
151
  msgid "Are you sure you want to delete selected records?"
152
  msgstr ""
153
 
154
- #: classes/es-register.php:179
155
  msgctxt "view-subscriber-enhanced-select"
156
  msgid ""
157
  "Do you want to resend confirmation email? \\nAlso please note, this will "
158
  "update subscriber current status to 'Unconfirmed'."
159
  msgstr ""
160
 
161
- #: classes/es-register.php:180
162
  msgctxt "view-subscriber-enhanced-select"
163
  msgid "Please select new subscriber group."
164
  msgstr ""
165
 
166
- #: classes/es-register.php:181
167
  msgctxt "view-subscriber-enhanced-select"
168
  msgid "Please select new status for subscribers"
169
  msgstr ""
170
 
171
- #: classes/es-register.php:182
172
  msgctxt "view-subscriber-enhanced-select"
173
  msgid "Do you want to update subscribers group?"
174
  msgstr ""
175
 
176
- #: classes/es-register.php:183
177
  msgctxt "view-subscriber-enhanced-select"
178
  msgid "Do you want to update subscribers status?"
179
  msgstr ""
180
 
181
- #: classes/es-register.php:184
182
  msgctxt "view-subscriber-enhanced-select"
183
  msgid ""
184
  "Please select only csv file. Please check official website for csv "
185
  "structure.."
186
  msgstr ""
187
 
188
- #: classes/es-register.php:192
189
  msgctxt "compose-enhanced-select"
190
  msgid "Please enter the Email Subject."
191
  msgstr ""
192
 
193
- #: classes/es-register.php:193
194
  msgctxt "compose-enhanced-select"
195
  msgid "Do you want to delete this record?"
196
  msgstr ""
197
 
198
- #: classes/es-register.php:201
199
  msgctxt "notification-enhanced-select"
200
  msgid "Please select subscribers group."
201
  msgstr ""
202
 
203
- #: classes/es-register.php:202
204
  msgctxt "notification-enhanced-select"
205
  msgid ""
206
  "Please select notification mail subject. Use compose menu to create new."
207
  msgstr ""
208
 
209
- #: classes/es-register.php:203
210
  msgctxt "notification-enhanced-select"
211
  msgid "Please select notification status."
212
  msgstr ""
213
 
214
- #: classes/es-register.php:204
215
  msgctxt "notification-enhanced-select"
216
  msgid "Do you want to delete this record?"
217
  msgstr ""
218
 
219
- #: classes/es-register.php:212
220
  msgctxt "sendmail-enhanced-select"
221
  msgid "Please select your mail subject."
222
  msgstr ""
223
 
224
- #: classes/es-register.php:213
225
  msgctxt "sendmail-enhanced-select"
226
  msgid "Please select your mail type."
227
  msgstr ""
228
 
229
- #: classes/es-register.php:214
230
  msgctxt "sendmail-enhanced-select"
231
  msgid ""
232
  "Have you double checked your selected group? If so, let's go ahead and send "
233
  "this."
234
  msgstr ""
235
 
236
- #: classes/es-register.php:222
237
  msgctxt "sentmail-enhanced-select"
238
  msgid "Do you want to delete this record?"
239
  msgstr ""
240
 
241
- #: classes/es-register.php:223
242
  msgctxt "sentmail-enhanced-select"
243
  msgid "Do you want to delete all records except latest 10?"
244
  msgstr ""
245
 
246
- #: classes/es-register.php:231
247
  msgctxt "cron-enhanced-select"
248
  msgid "Please select enter number of mails you want to send per hour/trigger."
249
  msgstr ""
250
 
251
- #: classes/es-register.php:232
252
  msgctxt "cron-enhanced-select"
253
  msgid "Please enter the mail count, only number."
254
  msgstr ""
255
 
256
- #: classes/es-register.php:245
257
  msgctxt "widget-enhanced-select"
258
  msgid "Please enter email address"
259
  msgstr ""
260
 
261
- #: classes/es-register.php:246
262
  msgctxt "widget-enhanced-select"
263
  msgid "Please provide a valid email address"
264
  msgstr ""
265
 
266
- #: classes/es-register.php:247
267
  msgctxt "widget-enhanced-select"
268
  msgid "loading..."
269
  msgstr ""
270
 
271
- #: classes/es-register.php:248
272
  msgctxt "widget-enhanced-select"
273
  msgid "Cannot create XMLHTTP instance"
274
  msgstr ""
275
 
276
- #: classes/es-register.php:249
277
  msgctxt "widget-enhanced-select"
278
  msgid "Successfully Subscribed."
279
  msgstr ""
280
 
281
- #: classes/es-register.php:250
282
  msgctxt "widget-enhanced-select"
283
  msgid ""
284
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -286,57 +287,57 @@ msgid ""
286
  "mail in your mailbox, please check your spam folder."
287
  msgstr ""
288
 
289
- #: classes/es-register.php:251
290
  msgctxt "widget-enhanced-select"
291
  msgid "Email Address already exists!"
292
  msgstr ""
293
 
294
- #: classes/es-register.php:252
295
  msgctxt "widget-enhanced-select"
296
  msgid "Oops.. Unexpected error occurred."
297
  msgstr ""
298
 
299
- #: classes/es-register.php:253
300
  msgctxt "widget-enhanced-select"
301
  msgid "Invalid email address"
302
  msgstr ""
303
 
304
- #: classes/es-register.php:254
305
  msgctxt "widget-enhanced-select"
306
  msgid "Please try after some time"
307
  msgstr ""
308
 
309
- #: classes/es-register.php:255
310
  msgctxt "widget-enhanced-select"
311
  msgid "There was a problem with the request"
312
  msgstr ""
313
 
314
- #: classes/es-register.php:262
315
  msgctxt "widget-page-enhanced-select"
316
  msgid "Please enter email address"
317
  msgstr ""
318
 
319
- #: classes/es-register.php:263
320
  msgctxt "widget-page-enhanced-select"
321
  msgid "Please provide a valid email address"
322
  msgstr ""
323
 
324
- #: classes/es-register.php:264
325
  msgctxt "widget-page-enhanced-select"
326
  msgid "loading..."
327
  msgstr ""
328
 
329
- #: classes/es-register.php:265
330
  msgctxt "widget-page-enhanced-select"
331
  msgid "Cannot create XMLHTTP instance"
332
  msgstr ""
333
 
334
- #: classes/es-register.php:266
335
  msgctxt "widget-page-enhanced-select"
336
  msgid "Successfully Subscribed."
337
  msgstr ""
338
 
339
- #: classes/es-register.php:267
340
  msgctxt "widget-page-enhanced-select"
341
  msgid ""
342
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -344,153 +345,158 @@ msgid ""
344
  "mail in your mailbox, please check your spam folder."
345
  msgstr ""
346
 
347
- #: classes/es-register.php:268
348
  msgctxt "widget-page-enhanced-select"
349
  msgid "Email Address already exists!"
350
  msgstr ""
351
 
352
- #: classes/es-register.php:269
353
  msgctxt "widget-page-enhanced-select"
354
  msgid "Oops.. Unexpected error occurred."
355
  msgstr ""
356
 
357
- #: classes/es-register.php:270
358
  msgctxt "widget-page-enhanced-select"
359
  msgid "Invalid email address"
360
  msgstr ""
361
 
362
- #: classes/es-register.php:271
363
  msgctxt "widget-page-enhanced-select"
364
  msgid "Please try after some time"
365
  msgstr ""
366
 
367
- #: classes/es-register.php:272
368
  msgctxt "widget-page-enhanced-select"
369
  msgid "There was a problem with the request"
370
  msgstr ""
371
 
372
- #: classes/es-register.php:677
 
 
 
 
 
373
  msgid "is getting even better!"
374
  msgstr ""
375
 
376
- #: classes/es-register.php:678
377
  msgid "But I need you to"
378
  msgstr ""
379
 
380
- #: classes/es-register.php:678
381
  msgid "help me prioritize"
382
  msgstr ""
383
 
384
- #: classes/es-register.php:678
385
  msgid "Please send your response today."
386
  msgstr ""
387
 
388
- #: classes/es-register.php:685
389
  msgid "Here's how you use ES:"
390
  msgstr ""
391
 
392
- #: classes/es-register.php:690
393
  msgid "Used Post Notifications more often than Newsletter"
394
  msgstr ""
395
 
396
- #: classes/es-register.php:692
397
  msgid "Used Newsletter more often than Post Notifications"
398
  msgstr ""
399
 
400
- #: classes/es-register.php:694
401
  msgid "Used Post Notification &amp; Newsletter equally"
402
  msgstr ""
403
 
404
- #: classes/es-register.php:698
405
  msgid "Have "
406
  msgstr ""
407
 
408
- #: classes/es-register.php:698
409
  msgid " Active Subscribers"
410
  msgstr ""
411
 
412
- #: classes/es-register.php:699
413
  msgid "Post "
414
  msgstr ""
415
 
416
- #: classes/es-register.php:699
417
  msgid " blog per week"
418
  msgstr ""
419
 
420
- #: classes/es-register.php:703
421
  msgid "Send emails via Cron"
422
  msgstr ""
423
 
424
- #: classes/es-register.php:705
425
  msgid "Send emails Immediately"
426
  msgstr ""
427
 
428
- #: classes/es-register.php:722
429
  msgid "How soon do you want these new features?"
430
  msgstr ""
431
 
432
- #: classes/es-register.php:726
433
  msgid "Beautiful Email Designs"
434
  msgstr ""
435
 
436
- #: classes/es-register.php:727 classes/es-register.php:732
437
- #: classes/es-register.php:741 classes/es-register.php:746
438
  msgid "Right now!"
439
  msgstr ""
440
 
441
- #: classes/es-register.php:728 classes/es-register.php:733
442
- #: classes/es-register.php:742 classes/es-register.php:747
443
  msgid "Soon"
444
  msgstr ""
445
 
446
- #: classes/es-register.php:729 classes/es-register.php:734
447
- #: classes/es-register.php:743 classes/es-register.php:748
448
  msgid "Later"
449
  msgstr ""
450
 
451
- #: classes/es-register.php:731
452
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
453
  msgstr ""
454
 
455
- #: classes/es-register.php:740
456
  msgid "Discard Fake / Bouncing Emails"
457
  msgstr ""
458
 
459
- #: classes/es-register.php:745
460
  msgid "Advanced Reporting"
461
  msgstr ""
462
 
463
- #: classes/es-register.php:768
464
  msgid "Thank you!"
465
  msgstr ""
466
 
467
- #: classes/es-register.php:769
468
  msgid "No issues, have a nice day!"
469
  msgstr ""
470
 
471
- #: classes/es-register.php:979
472
  msgid "Widget Title"
473
  msgstr ""
474
 
475
- #: classes/es-register.php:983
476
  msgid "Short description about subscription form"
477
  msgstr ""
478
 
479
- #: classes/es-register.php:987
480
  msgid "Display Name Field"
481
  msgstr ""
482
 
483
- #: classes/es-register.php:989 settings/settings-edit.php:145
484
  #: settings/settings-edit.php:220 subscribers/view-subscriber-sync.php:107
485
  msgid "YES"
486
  msgstr ""
487
 
488
- #: classes/es-register.php:990 settings/settings-edit.php:146
489
  #: settings/settings-edit.php:221 subscribers/view-subscriber-sync.php:106
490
  msgid "NO"
491
  msgstr ""
492
 
493
- #: classes/es-register.php:994
494
  msgid "Subscriber Group"
495
  msgstr ""
496
 
@@ -511,8 +517,8 @@ msgstr ""
511
  #: notification/notification-add.php:113
512
  #: notification/notification-edit.php:124
513
  #: notification/notification-show.php:54 sendmail/sendmail.php:94
514
- #: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
515
- #: sentmail/sentmail-show.php:97 settings/settings-edit.php:43
516
  #: subscribers/view-subscriber-add.php:114
517
  #: subscribers/view-subscriber-edit.php:113
518
  #: subscribers/view-subscriber-export.php:38
@@ -549,8 +555,8 @@ msgstr ""
549
  #: compose/compose-add.php:93 compose/compose-edit.php:104
550
  msgid ""
551
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
552
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
553
- "###POSTDESC###, ###POSTFULL### (For Post Notification only)"
554
  msgstr ""
555
 
556
  #: compose/compose-add.php:93 compose/compose-edit.php:104
@@ -558,8 +564,8 @@ msgid "Available Keywords"
558
  msgstr ""
559
 
560
  #: compose/compose-add.php:97 compose/compose-edit.php:108
561
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
562
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
563
  #: subscribers/view-subscriber-show.php:362
564
  #: subscribers/view-subscriber-show.php:375
565
  msgid "Status"
@@ -640,13 +646,13 @@ msgstr ""
640
  msgid "Delete"
641
  msgstr ""
642
 
643
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
644
- #: sentmail/sentmail-show.php:124
645
  msgid "Preview"
646
  msgstr ""
647
 
648
  #: compose/compose-show.php:111 notification/notification-show.php:143
649
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
650
  #: subscribers/view-subscriber-show.php:432
651
  msgid "No records available."
652
  msgstr ""
@@ -1010,42 +1016,42 @@ msgstr ""
1010
  msgid "Oops.. Unexpected error occurred. Please try again."
1011
  msgstr ""
1012
 
1013
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1014
  msgid " &lt;&lt; "
1015
  msgstr ""
1016
 
1017
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1018
  msgid " &gt;&gt; "
1019
  msgstr ""
1020
 
1021
- #: sentmail/deliverreport-show.php:60
1022
  msgid "Delivery Report"
1023
  msgstr ""
1024
 
1025
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1026
  #: subscribers/view-subscriber-export.php:45
1027
  #: subscribers/view-subscriber-export.php:53
1028
  msgid "Sno"
1029
  msgstr ""
1030
 
1031
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1032
  msgid "Email"
1033
  msgstr ""
1034
 
1035
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1036
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1037
  msgid "Sent"
1038
  msgstr ""
1039
 
1040
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1041
  msgid "Sent Date"
1042
  msgstr ""
1043
 
1044
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1045
  msgid "Viewed Status"
1046
  msgstr ""
1047
 
1048
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1049
  msgid "Viewed Date"
1050
  msgstr ""
1051
 
@@ -1057,32 +1063,32 @@ msgstr ""
1057
  msgid "Successfully deleted all reports except latest 10."
1058
  msgstr ""
1059
 
1060
- #: sentmail/sentmail-show.php:100
1061
  msgid ""
1062
  "It will show reports for all Newsletters & Post Notification emails sent."
1063
  msgstr ""
1064
 
1065
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1066
  msgid "View Reports"
1067
  msgstr ""
1068
 
1069
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
1070
  msgid "Type"
1071
  msgstr ""
1072
 
1073
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1074
  msgid "Start Date"
1075
  msgstr ""
1076
 
1077
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1078
  msgid "End Date"
1079
  msgstr ""
1080
 
1081
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1082
  msgid "Total"
1083
  msgstr ""
1084
 
1085
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1086
  #: subscribers/view-subscriber-export.php:48
1087
  #: subscribers/view-subscriber-export.php:56
1088
  #: subscribers/view-subscriber-show.php:365
@@ -1090,11 +1096,11 @@ msgstr ""
1090
  msgid "Action"
1091
  msgstr ""
1092
 
1093
- #: sentmail/sentmail-show.php:193
1094
  msgid "Optimize Table & Delete Records"
1095
  msgstr ""
1096
 
1097
- #: sentmail/sentmail-show.php:202
1098
  msgid ""
1099
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1100
  "button to delete all reports except latest 10."
@@ -1143,13 +1149,13 @@ msgid ""
1143
  msgstr ""
1144
 
1145
  #: settings/settings-edit.php:92
1146
- msgid "Mail Type"
1147
  msgstr ""
1148
 
1149
  #: settings/settings-edit.php:93
1150
  msgid ""
1151
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1152
- "Option 3 & 4 is to send mails with PHP method mail()."
1153
  msgstr ""
1154
 
1155
  #: settings/settings-edit.php:97
@@ -1169,26 +1175,24 @@ msgid "4. PHP PLAINTEXT MAIL"
1169
  msgstr ""
1170
 
1171
  #: settings/settings-edit.php:107
1172
- msgid "Opt-In Option"
1173
  msgstr ""
1174
 
1175
  #: settings/settings-edit.php:108
1176
  msgid ""
1177
- "Double Opt In means subscribers need to confirm their email address by an "
1178
- "activation link sent them on a activation email message.<br />Single Opt In "
1179
- "means subscribers do not need to confirm their email address."
 
 
1180
  msgstr ""
1181
 
1182
  #: settings/settings-edit.php:112
1183
- msgid "Double Opt In"
1184
  msgstr ""
1185
 
1186
- #: settings/settings-edit.php:113 subscribers/view-subscriber-add.php:151
1187
- #: subscribers/view-subscriber-edit.php:150
1188
- #: subscribers/view-subscriber-import.php:178
1189
- #: subscribers/view-subscriber-show.php:312
1190
- #: subscribers/view-subscriber-show.php:339
1191
- msgid "Single Opt In"
1192
  msgstr ""
1193
 
1194
  #: settings/settings-edit.php:119
@@ -1224,7 +1228,7 @@ msgid ""
1224
  msgstr ""
1225
 
1226
  #: settings/settings-edit.php:139
1227
- msgid "Notify admin when a new subscriber signs up"
1228
  msgstr ""
1229
 
1230
  #: settings/settings-edit.php:140
@@ -1234,24 +1238,23 @@ msgid ""
1234
  msgstr ""
1235
 
1236
  #: settings/settings-edit.php:152
1237
- msgid "Admin Email Subject when a new subscriber signs up"
1238
  msgstr ""
1239
 
1240
  #: settings/settings-edit.php:153
1241
  msgid ""
1242
- "Enter the subject for the admin email which will be sent whenever a new "
1243
- "email is added and confirmed."
1244
  msgstr ""
1245
 
1246
  #: settings/settings-edit.php:159
1247
- msgid "Admin Email Content when a new subscriber signs up"
1248
  msgstr ""
1249
 
1250
  #: settings/settings-edit.php:160
1251
  msgid ""
1252
- "Enter the email content for the admin email which will be sent whenever a "
1253
- "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, "
1254
- "###GROUP###)"
1255
  msgstr ""
1256
 
1257
  #: settings/settings-edit.php:167
@@ -1259,8 +1262,7 @@ msgid "Sent Report Subject"
1259
  msgstr ""
1260
 
1261
  #: settings/settings-edit.php:168
1262
- msgid ""
1263
- "Enter the subject for the sent email report. It will be emailed to Admin."
1264
  msgstr ""
1265
 
1266
  #: settings/settings-edit.php:174
@@ -1269,32 +1271,32 @@ msgstr ""
1269
 
1270
  #: settings/settings-edit.php:175
1271
  msgid ""
1272
- "Enter the content for the sent email report. It will be emailed to Admin. "
1273
- "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1274
  msgstr ""
1275
 
1276
  #: settings/settings-edit.php:186
1277
- msgid "Double Opt In Email Subject (Confirmation Email)"
1278
  msgstr ""
1279
 
1280
  #: settings/settings-edit.php:187
1281
  msgid ""
1282
- "Enter the subject for the confirmation email to be sent for Double Opt In "
1283
- "whenever a user signs up."
1284
  msgstr ""
1285
 
1286
  #: settings/settings-edit.php:193
1287
- msgid "Double Opt In Email Content (Confirmation Email)"
1288
  msgstr ""
1289
 
1290
  #: settings/settings-edit.php:194
1291
  msgid ""
1292
- "Enter the content for the confirmation email to be sent for Double Opt In "
1293
- "whenever a user signs up. (Keyword: ###NAME###, ###LINK###)"
1294
  msgstr ""
1295
 
1296
  #: settings/settings-edit.php:200
1297
- msgid "Double Opt In Confirmation Link"
1298
  msgstr ""
1299
 
1300
  #: settings/settings-edit.php:201
@@ -1304,7 +1306,7 @@ msgstr ""
1304
  #: settings/settings-edit.php:207
1305
  msgid ""
1306
  "Text to display after an email address is successfully subscribed from "
1307
- "Double Opt In (confirmation) Email"
1308
  msgstr ""
1309
 
1310
  #: settings/settings-edit.php:208
@@ -1314,7 +1316,7 @@ msgid ""
1314
  msgstr ""
1315
 
1316
  #: settings/settings-edit.php:215
1317
- msgid "Subscriber Welcome Email"
1318
  msgstr ""
1319
 
1320
  #: settings/settings-edit.php:216
@@ -1324,25 +1326,25 @@ msgid ""
1324
  msgstr ""
1325
 
1326
  #: settings/settings-edit.php:227
1327
- msgid "Subscriber Welcome Email Subject"
1328
  msgstr ""
1329
 
1330
  #: settings/settings-edit.php:228
1331
  msgid ""
1332
- "Enter the subject for the subscriber welcome email. This will be sent "
1333
- "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1334
- "(if Single Opt In) successfully."
1335
  msgstr ""
1336
 
1337
  #: settings/settings-edit.php:234
1338
- msgid "Subscriber Welcome Email Content"
1339
  msgstr ""
1340
 
1341
  #: settings/settings-edit.php:235
1342
  msgid ""
1343
- "Enter the content for the subscriber welcome email whenever a user's email "
1344
- "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1345
- "successfully. (Keyword: ###NAME###, ###GROUP###, ###LINK###)"
1346
  msgstr ""
1347
 
1348
  #: settings/settings-edit.php:243
@@ -1351,7 +1353,7 @@ msgstr ""
1351
 
1352
  #: settings/settings-edit.php:244
1353
  msgid ""
1354
- "The unsubscribe link gets added automatically to all emails that are sent "
1355
  "from this plugin. It is a readonly field and you are advised not to modify "
1356
  "it."
1357
  msgstr ""
@@ -1362,8 +1364,8 @@ msgstr ""
1362
 
1363
  #: settings/settings-edit.php:251
1364
  msgid ""
1365
- "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1366
- "link in the emails. (Keyword: ###LINK###)"
1367
  msgstr ""
1368
 
1369
  #: settings/settings-edit.php:257
@@ -1371,17 +1373,19 @@ msgid "Text to display after an email address is unsubscribed"
1371
  msgstr ""
1372
 
1373
  #: settings/settings-edit.php:258
1374
- msgid "This text will be displayed once user clicks on unsubscribe link."
 
 
1375
  msgstr ""
1376
 
1377
  #: settings/settings-edit.php:265
1378
- msgid "Error in the Confirmation Link"
1379
  msgstr ""
1380
 
1381
  #: settings/settings-edit.php:266
1382
  msgid ""
1383
  "Default message to display if there is any issue while clicking on "
1384
- "confirmation link from the Double Opt In (confirmation) Emails."
1385
  msgstr ""
1386
 
1387
  #: settings/settings-edit.php:272
@@ -1391,7 +1395,7 @@ msgstr ""
1391
  #: settings/settings-edit.php:273
1392
  msgid ""
1393
  "Default message to display if there is any issue while clicking on "
1394
- "unsubscribe link from the Emails."
1395
  msgstr ""
1396
 
1397
  #: settings/settings-edit.php:285
@@ -1452,17 +1456,17 @@ msgid "Number of emails that you want to trigger per hour."
1452
  msgstr ""
1453
 
1454
  #: settings/settings-edit.php:372
1455
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
1456
  msgstr ""
1457
 
1458
  #: settings/settings-edit.php:377
1459
- msgid "Admin Report"
1460
  msgstr ""
1461
 
1462
  #: settings/settings-edit.php:378
1463
  msgid ""
1464
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
1465
- "###DATE###, ###SUBJECT###, ###COUNT###)"
1466
  msgstr ""
1467
 
1468
  #: settings/settings-edit.php:388
@@ -1471,46 +1475,46 @@ msgstr ""
1471
 
1472
  #: settings/settings-edit.php:389
1473
  msgid ""
1474
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1475
  "schedule-cron-emails/\">What is Cron?</a>"
1476
  msgstr ""
1477
 
1478
  #: settings/settings-edit.php:390
1479
  msgid ""
1480
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1481
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1482
  msgstr ""
1483
 
1484
  #: settings/settings-edit.php:391
1485
  msgid ""
1486
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1487
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1488
  msgstr ""
1489
 
1490
  #: settings/settings-edit.php:392
1491
  msgid ""
1492
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
1493
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
1494
  "</a>"
1495
  msgstr ""
1496
 
1497
- #: settings/settings-edit.php:506
1498
  msgid "Please enter sender of notifications from name."
1499
  msgstr ""
1500
 
1501
- #: settings/settings-edit.php:511
1502
  msgid "Please enter sender of notifications from email."
1503
  msgstr ""
1504
 
1505
- #: settings/settings-edit.php:555
1506
  msgid "Please enter valid mail count."
1507
  msgstr ""
1508
 
1509
- #: settings/settings-edit.php:568
1510
  msgid "Settings Saved."
1511
  msgstr ""
1512
 
1513
- #: settings/settings-edit.php:571
1514
  msgid "Oops, unable to update."
1515
  msgstr ""
1516
 
@@ -1612,6 +1616,14 @@ msgstr ""
1612
  msgid "Unsubscribed"
1613
  msgstr ""
1614
 
 
 
 
 
 
 
 
 
1615
  #: subscribers/view-subscriber-add.php:158
1616
  msgid "Select (or) Create Group for Subscriber"
1617
  msgstr ""
@@ -1934,11 +1946,11 @@ msgstr ""
1934
  msgid "Email Subscribers & Newsletters"
1935
  msgstr ""
1936
 
1937
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3.3) #-#-#-#-#
1938
  #. Plugin URI of the plugin/theme
1939
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3.3) #-#-#-#-#
1940
  #. Author URI of the plugin/theme
1941
- msgid "http://www.icegram.com/"
1942
  msgstr ""
1943
 
1944
  #. Description of the plugin/theme
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
6
+ "Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
7
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: Wed, 26 Jul 2017 17:30:36 +0530\n"
12
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
13
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
14
+ "com>\n"
15
 
16
  #: base/es-defined.php:32
17
  msgid ""
65
  msgid "<span style=\"color:#993399;\">Immediately</span>"
66
  msgstr ""
67
 
68
+ #: classes/es-loadwidget.php:28 classes/es-register.php:972
69
  #: subscribers/view-subscriber-show.php:361
70
  #: subscribers/view-subscriber-show.php:374
71
  msgid "Name"
72
  msgstr ""
73
 
74
+ #: classes/es-loadwidget.php:33 classes/es-register.php:977
75
  msgid "Email *"
76
  msgstr ""
77
 
78
+ #: classes/es-loadwidget.php:38 classes/es-register.php:982
79
  msgid "Subscribe"
80
  msgstr ""
81
 
82
+ #: classes/es-register.php:142 classes/es-register.php:143
83
+ #: classes/es-register.php:719
84
  msgid "Email Subscribers"
85
  msgstr ""
86
 
87
+ #: classes/es-register.php:145 classes/es-register.php:146
88
  #: subscribers/view-subscriber-show.php:241
89
  msgid "Subscribers"
90
  msgstr ""
91
 
92
+ #: classes/es-register.php:148 classes/es-register.php:149
93
  #: compose/compose-show.php:64
94
  msgid "Compose"
95
  msgstr ""
96
 
97
+ #: classes/es-register.php:151 classes/es-register.php:152
98
  #: notification/notification-show.php:52
99
  msgid "Post Notifications"
100
  msgstr ""
101
 
102
+ #: classes/es-register.php:154 classes/es-register.php:155
103
  #: sendmail/sendmail.php:93 settings/settings-edit.php:327
104
  msgid "Newsletters"
105
  msgstr ""
106
 
107
+ #: classes/es-register.php:157 classes/es-register.php:158
108
  #: settings/settings-edit.php:42
109
  msgid "Settings"
110
  msgstr ""
111
 
112
+ #: classes/es-register.php:160 classes/es-register.php:161
113
+ #: sentmail/sentmail-show.php:93
114
  msgid "Reports"
115
  msgstr ""
116
 
117
+ #: classes/es-register.php:163
118
  msgid "Help & Info"
119
  msgstr ""
120
 
121
+ #: classes/es-register.php:164
122
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
123
  msgstr ""
124
 
125
+ #: classes/es-register.php:175
126
  msgctxt "view-subscriber-enhanced-select"
127
  msgid "Please enter subscriber email address."
128
  msgstr ""
129
 
130
+ #: classes/es-register.php:176
131
  msgctxt "view-subscriber-enhanced-select"
132
  msgid "Please select subscriber email status."
133
  msgstr ""
134
 
135
+ #: classes/es-register.php:177
136
  msgctxt "view-subscriber-enhanced-select"
137
  msgid "Please select or create group for this subscriber."
138
  msgstr ""
139
 
140
+ #: classes/es-register.php:178
141
  msgctxt "view-subscriber-enhanced-select"
142
  msgid "Do you want to delete this record?"
143
  msgstr ""
144
 
145
+ #: classes/es-register.php:179
146
  msgctxt "view-subscriber-enhanced-select"
147
  msgid "Please select the bulk action."
148
  msgstr ""
149
 
150
+ #: classes/es-register.php:180
151
  msgctxt "view-subscriber-enhanced-select"
152
  msgid "Are you sure you want to delete selected records?"
153
  msgstr ""
154
 
155
+ #: classes/es-register.php:181
156
  msgctxt "view-subscriber-enhanced-select"
157
  msgid ""
158
  "Do you want to resend confirmation email? \\nAlso please note, this will "
159
  "update subscriber current status to 'Unconfirmed'."
160
  msgstr ""
161
 
162
+ #: classes/es-register.php:182
163
  msgctxt "view-subscriber-enhanced-select"
164
  msgid "Please select new subscriber group."
165
  msgstr ""
166
 
167
+ #: classes/es-register.php:183
168
  msgctxt "view-subscriber-enhanced-select"
169
  msgid "Please select new status for subscribers"
170
  msgstr ""
171
 
172
+ #: classes/es-register.php:184
173
  msgctxt "view-subscriber-enhanced-select"
174
  msgid "Do you want to update subscribers group?"
175
  msgstr ""
176
 
177
+ #: classes/es-register.php:185
178
  msgctxt "view-subscriber-enhanced-select"
179
  msgid "Do you want to update subscribers status?"
180
  msgstr ""
181
 
182
+ #: classes/es-register.php:186
183
  msgctxt "view-subscriber-enhanced-select"
184
  msgid ""
185
  "Please select only csv file. Please check official website for csv "
186
  "structure.."
187
  msgstr ""
188
 
189
+ #: classes/es-register.php:194
190
  msgctxt "compose-enhanced-select"
191
  msgid "Please enter the Email Subject."
192
  msgstr ""
193
 
194
+ #: classes/es-register.php:195
195
  msgctxt "compose-enhanced-select"
196
  msgid "Do you want to delete this record?"
197
  msgstr ""
198
 
199
+ #: classes/es-register.php:203
200
  msgctxt "notification-enhanced-select"
201
  msgid "Please select subscribers group."
202
  msgstr ""
203
 
204
+ #: classes/es-register.php:204
205
  msgctxt "notification-enhanced-select"
206
  msgid ""
207
  "Please select notification mail subject. Use compose menu to create new."
208
  msgstr ""
209
 
210
+ #: classes/es-register.php:205
211
  msgctxt "notification-enhanced-select"
212
  msgid "Please select notification status."
213
  msgstr ""
214
 
215
+ #: classes/es-register.php:206
216
  msgctxt "notification-enhanced-select"
217
  msgid "Do you want to delete this record?"
218
  msgstr ""
219
 
220
+ #: classes/es-register.php:214
221
  msgctxt "sendmail-enhanced-select"
222
  msgid "Please select your mail subject."
223
  msgstr ""
224
 
225
+ #: classes/es-register.php:215
226
  msgctxt "sendmail-enhanced-select"
227
  msgid "Please select your mail type."
228
  msgstr ""
229
 
230
+ #: classes/es-register.php:216
231
  msgctxt "sendmail-enhanced-select"
232
  msgid ""
233
  "Have you double checked your selected group? If so, let's go ahead and send "
234
  "this."
235
  msgstr ""
236
 
237
+ #: classes/es-register.php:224
238
  msgctxt "sentmail-enhanced-select"
239
  msgid "Do you want to delete this record?"
240
  msgstr ""
241
 
242
+ #: classes/es-register.php:225
243
  msgctxt "sentmail-enhanced-select"
244
  msgid "Do you want to delete all records except latest 10?"
245
  msgstr ""
246
 
247
+ #: classes/es-register.php:233
248
  msgctxt "cron-enhanced-select"
249
  msgid "Please select enter number of mails you want to send per hour/trigger."
250
  msgstr ""
251
 
252
+ #: classes/es-register.php:234
253
  msgctxt "cron-enhanced-select"
254
  msgid "Please enter the mail count, only number."
255
  msgstr ""
256
 
257
+ #: classes/es-register.php:247
258
  msgctxt "widget-enhanced-select"
259
  msgid "Please enter email address"
260
  msgstr ""
261
 
262
+ #: classes/es-register.php:248
263
  msgctxt "widget-enhanced-select"
264
  msgid "Please provide a valid email address"
265
  msgstr ""
266
 
267
+ #: classes/es-register.php:249
268
  msgctxt "widget-enhanced-select"
269
  msgid "loading..."
270
  msgstr ""
271
 
272
+ #: classes/es-register.php:250
273
  msgctxt "widget-enhanced-select"
274
  msgid "Cannot create XMLHTTP instance"
275
  msgstr ""
276
 
277
+ #: classes/es-register.php:251
278
  msgctxt "widget-enhanced-select"
279
  msgid "Successfully Subscribed."
280
  msgstr ""
281
 
282
+ #: classes/es-register.php:252
283
  msgctxt "widget-enhanced-select"
284
  msgid ""
285
  "Your subscription was successful! Within a few minutes, kindly check the "
287
  "mail in your mailbox, please check your spam folder."
288
  msgstr ""
289
 
290
+ #: classes/es-register.php:253
291
  msgctxt "widget-enhanced-select"
292
  msgid "Email Address already exists!"
293
  msgstr ""
294
 
295
+ #: classes/es-register.php:254
296
  msgctxt "widget-enhanced-select"
297
  msgid "Oops.. Unexpected error occurred."
298
  msgstr ""
299
 
300
+ #: classes/es-register.php:255
301
  msgctxt "widget-enhanced-select"
302
  msgid "Invalid email address"
303
  msgstr ""
304
 
305
+ #: classes/es-register.php:256
306
  msgctxt "widget-enhanced-select"
307
  msgid "Please try after some time"
308
  msgstr ""
309
 
310
+ #: classes/es-register.php:257
311
  msgctxt "widget-enhanced-select"
312
  msgid "There was a problem with the request"
313
  msgstr ""
314
 
315
+ #: classes/es-register.php:264
316
  msgctxt "widget-page-enhanced-select"
317
  msgid "Please enter email address"
318
  msgstr ""
319
 
320
+ #: classes/es-register.php:265
321
  msgctxt "widget-page-enhanced-select"
322
  msgid "Please provide a valid email address"
323
  msgstr ""
324
 
325
+ #: classes/es-register.php:266
326
  msgctxt "widget-page-enhanced-select"
327
  msgid "loading..."
328
  msgstr ""
329
 
330
+ #: classes/es-register.php:267
331
  msgctxt "widget-page-enhanced-select"
332
  msgid "Cannot create XMLHTTP instance"
333
  msgstr ""
334
 
335
+ #: classes/es-register.php:268
336
  msgctxt "widget-page-enhanced-select"
337
  msgid "Successfully Subscribed."
338
  msgstr ""
339
 
340
+ #: classes/es-register.php:269
341
  msgctxt "widget-page-enhanced-select"
342
  msgid ""
343
  "Your subscription was successful! Within a few minutes, kindly check the "
345
  "mail in your mailbox, please check your spam folder."
346
  msgstr ""
347
 
348
+ #: classes/es-register.php:270
349
  msgctxt "widget-page-enhanced-select"
350
  msgid "Email Address already exists!"
351
  msgstr ""
352
 
353
+ #: classes/es-register.php:271
354
  msgctxt "widget-page-enhanced-select"
355
  msgid "Oops.. Unexpected error occurred."
356
  msgstr ""
357
 
358
+ #: classes/es-register.php:272
359
  msgctxt "widget-page-enhanced-select"
360
  msgid "Invalid email address"
361
  msgstr ""
362
 
363
+ #: classes/es-register.php:273
364
  msgctxt "widget-page-enhanced-select"
365
  msgid "Please try after some time"
366
  msgstr ""
367
 
368
+ #: classes/es-register.php:274
369
  msgctxt "widget-page-enhanced-select"
370
  msgid "There was a problem with the request"
371
  msgstr ""
372
 
373
+ #: classes/es-register.php:702
374
+ msgctxt "timezone date format"
375
+ msgid "Y-m-d"
376
+ msgstr ""
377
+
378
+ #: classes/es-register.php:719
379
  msgid "is getting even better!"
380
  msgstr ""
381
 
382
+ #: classes/es-register.php:720
383
  msgid "But I need you to"
384
  msgstr ""
385
 
386
+ #: classes/es-register.php:720
387
  msgid "help me prioritize"
388
  msgstr ""
389
 
390
+ #: classes/es-register.php:720
391
  msgid "Please send your response today."
392
  msgstr ""
393
 
394
+ #: classes/es-register.php:727
395
  msgid "Here's how you use ES:"
396
  msgstr ""
397
 
398
+ #: classes/es-register.php:732
399
  msgid "Used Post Notifications more often than Newsletter"
400
  msgstr ""
401
 
402
+ #: classes/es-register.php:734
403
  msgid "Used Newsletter more often than Post Notifications"
404
  msgstr ""
405
 
406
+ #: classes/es-register.php:736
407
  msgid "Used Post Notification &amp; Newsletter equally"
408
  msgstr ""
409
 
410
+ #: classes/es-register.php:740
411
  msgid "Have "
412
  msgstr ""
413
 
414
+ #: classes/es-register.php:740
415
  msgid " Active Subscribers"
416
  msgstr ""
417
 
418
+ #: classes/es-register.php:741
419
  msgid "Post "
420
  msgstr ""
421
 
422
+ #: classes/es-register.php:741
423
  msgid " blog per week"
424
  msgstr ""
425
 
426
+ #: classes/es-register.php:745
427
  msgid "Send emails via Cron"
428
  msgstr ""
429
 
430
+ #: classes/es-register.php:747
431
  msgid "Send emails Immediately"
432
  msgstr ""
433
 
434
+ #: classes/es-register.php:764
435
  msgid "How soon do you want these new features?"
436
  msgstr ""
437
 
438
+ #: classes/es-register.php:768
439
  msgid "Beautiful Email Designs"
440
  msgstr ""
441
 
442
+ #: classes/es-register.php:769 classes/es-register.php:774
443
+ #: classes/es-register.php:779 classes/es-register.php:784
444
  msgid "Right now!"
445
  msgstr ""
446
 
447
+ #: classes/es-register.php:770 classes/es-register.php:775
448
+ #: classes/es-register.php:780 classes/es-register.php:785
449
  msgid "Soon"
450
  msgstr ""
451
 
452
+ #: classes/es-register.php:771 classes/es-register.php:776
453
+ #: classes/es-register.php:781 classes/es-register.php:786
454
  msgid "Later"
455
  msgstr ""
456
 
457
+ #: classes/es-register.php:773
458
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
459
  msgstr ""
460
 
461
+ #: classes/es-register.php:778
462
  msgid "Discard Fake / Bouncing Emails"
463
  msgstr ""
464
 
465
+ #: classes/es-register.php:783
466
  msgid "Advanced Reporting"
467
  msgstr ""
468
 
469
+ #: classes/es-register.php:811
470
  msgid "Thank you!"
471
  msgstr ""
472
 
473
+ #: classes/es-register.php:812
474
  msgid "No issues, have a nice day!"
475
  msgstr ""
476
 
477
+ #: classes/es-register.php:1020
478
  msgid "Widget Title"
479
  msgstr ""
480
 
481
+ #: classes/es-register.php:1024
482
  msgid "Short description about subscription form"
483
  msgstr ""
484
 
485
+ #: classes/es-register.php:1028
486
  msgid "Display Name Field"
487
  msgstr ""
488
 
489
+ #: classes/es-register.php:1030 settings/settings-edit.php:145
490
  #: settings/settings-edit.php:220 subscribers/view-subscriber-sync.php:107
491
  msgid "YES"
492
  msgstr ""
493
 
494
+ #: classes/es-register.php:1031 settings/settings-edit.php:146
495
  #: settings/settings-edit.php:221 subscribers/view-subscriber-sync.php:106
496
  msgid "NO"
497
  msgstr ""
498
 
499
+ #: classes/es-register.php:1035
500
  msgid "Subscriber Group"
501
  msgstr ""
502
 
517
  #: notification/notification-add.php:113
518
  #: notification/notification-edit.php:124
519
  #: notification/notification-show.php:54 sendmail/sendmail.php:94
520
+ #: sentmail/deliverreport-show.php:58 sentmail/sentmail-preview.php:28
521
+ #: sentmail/sentmail-show.php:94 settings/settings-edit.php:43
522
  #: subscribers/view-subscriber-add.php:114
523
  #: subscribers/view-subscriber-edit.php:113
524
  #: subscribers/view-subscriber-export.php:38
555
  #: compose/compose-add.php:93 compose/compose-edit.php:104
556
  msgid ""
557
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
558
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
559
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
560
  msgstr ""
561
 
562
  #: compose/compose-add.php:93 compose/compose-edit.php:104
564
  msgstr ""
565
 
566
  #: compose/compose-add.php:97 compose/compose-edit.php:108
567
+ #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:81
568
+ #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
569
  #: subscribers/view-subscriber-show.php:362
570
  #: subscribers/view-subscriber-show.php:375
571
  msgid "Status"
646
  msgid "Delete"
647
  msgstr ""
648
 
649
+ #: compose/compose-show.php:103 sentmail/sentmail-show.php:108
650
+ #: sentmail/sentmail-show.php:121
651
  msgid "Preview"
652
  msgstr ""
653
 
654
  #: compose/compose-show.php:111 notification/notification-show.php:143
655
+ #: sentmail/deliverreport-show.php:124 sentmail/sentmail-show.php:180
656
  #: subscribers/view-subscriber-show.php:432
657
  msgid "No records available."
658
  msgstr ""
1016
  msgid "Oops.. Unexpected error occurred. Please try again."
1017
  msgstr ""
1018
 
1019
+ #: sentmail/deliverreport-show.php:47 sentmail/sentmail-show.php:83
1020
  msgid " &lt;&lt; "
1021
  msgstr ""
1022
 
1023
+ #: sentmail/deliverreport-show.php:48 sentmail/sentmail-show.php:84
1024
  msgid " &gt;&gt; "
1025
  msgstr ""
1026
 
1027
+ #: sentmail/deliverreport-show.php:57
1028
  msgid "Delivery Report"
1029
  msgstr ""
1030
 
1031
+ #: sentmail/deliverreport-show.php:68 sentmail/deliverreport-show.php:79
1032
  #: subscribers/view-subscriber-export.php:45
1033
  #: subscribers/view-subscriber-export.php:53
1034
  msgid "Sno"
1035
  msgstr ""
1036
 
1037
+ #: sentmail/deliverreport-show.php:69 sentmail/deliverreport-show.php:80
1038
  msgid "Email"
1039
  msgstr ""
1040
 
1041
+ #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1042
+ #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1043
  msgid "Sent"
1044
  msgstr ""
1045
 
1046
+ #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1047
  msgid "Sent Date"
1048
  msgstr ""
1049
 
1050
+ #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
1051
  msgid "Viewed Status"
1052
  msgstr ""
1053
 
1054
+ #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1055
  msgid "Viewed Date"
1056
  msgstr ""
1057
 
1063
  msgid "Successfully deleted all reports except latest 10."
1064
  msgstr ""
1065
 
1066
+ #: sentmail/sentmail-show.php:97
1067
  msgid ""
1068
  "It will show reports for all Newsletters & Post Notification emails sent."
1069
  msgstr ""
1070
 
1071
+ #: sentmail/sentmail-show.php:107 sentmail/sentmail-show.php:120
1072
  msgid "View Reports"
1073
  msgstr ""
1074
 
1075
+ #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1076
  msgid "Type"
1077
  msgstr ""
1078
 
1079
+ #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
1080
  msgid "Start Date"
1081
  msgstr ""
1082
 
1083
+ #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
1084
  msgid "End Date"
1085
  msgstr ""
1086
 
1087
+ #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1088
  msgid "Total"
1089
  msgstr ""
1090
 
1091
+ #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1092
  #: subscribers/view-subscriber-export.php:48
1093
  #: subscribers/view-subscriber-export.php:56
1094
  #: subscribers/view-subscriber-show.php:365
1096
  msgid "Action"
1097
  msgstr ""
1098
 
1099
+ #: sentmail/sentmail-show.php:190
1100
  msgid "Optimize Table & Delete Records"
1101
  msgstr ""
1102
 
1103
+ #: sentmail/sentmail-show.php:199
1104
  msgid ""
1105
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1106
  "button to delete all reports except latest 10."
1149
  msgstr ""
1150
 
1151
  #: settings/settings-edit.php:92
1152
+ msgid "Email Type"
1153
  msgstr ""
1154
 
1155
  #: settings/settings-edit.php:93
1156
  msgid ""
1157
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1158
+ "Option 3 & 4 is to send emails with PHP method mail()."
1159
  msgstr ""
1160
 
1161
  #: settings/settings-edit.php:97
1175
  msgstr ""
1176
 
1177
  #: settings/settings-edit.php:107
1178
+ msgid "Opt-In Type"
1179
  msgstr ""
1180
 
1181
  #: settings/settings-edit.php:108
1182
  msgid ""
1183
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
1184
+ "soon as they subscribe to your list. They have to confirm their subscription "
1185
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1186
+ "subscriber is not asked to confirm their email address. They are subscribed "
1187
+ "directly in the list."
1188
  msgstr ""
1189
 
1190
  #: settings/settings-edit.php:112
1191
+ msgid "Double Opt-In"
1192
  msgstr ""
1193
 
1194
+ #: settings/settings-edit.php:113
1195
+ msgid "Single Opt-In"
 
 
 
 
1196
  msgstr ""
1197
 
1198
  #: settings/settings-edit.php:119
1228
  msgstr ""
1229
 
1230
  #: settings/settings-edit.php:139
1231
+ msgid "Notify Admin when a new subscriber signs up"
1232
  msgstr ""
1233
 
1234
  #: settings/settings-edit.php:140
1238
  msgstr ""
1239
 
1240
  #: settings/settings-edit.php:152
1241
+ msgid "Admin Email Subject on new subscriber sign up"
1242
  msgstr ""
1243
 
1244
  #: settings/settings-edit.php:153
1245
  msgid ""
1246
+ "Subject for the admin email whenever a new subscriber signs up and is "
1247
+ "confirmed."
1248
  msgstr ""
1249
 
1250
  #: settings/settings-edit.php:159
1251
+ msgid "Admin Email Content on new subscriber signs up"
1252
  msgstr ""
1253
 
1254
  #: settings/settings-edit.php:160
1255
  msgid ""
1256
+ "Content for the admin email whenever a new subscriber signs up and is "
1257
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
 
1258
  msgstr ""
1259
 
1260
  #: settings/settings-edit.php:167
1262
  msgstr ""
1263
 
1264
  #: settings/settings-edit.php:168
1265
+ msgid "Subject for the email report which will be sent to admin."
 
1266
  msgstr ""
1267
 
1268
  #: settings/settings-edit.php:174
1271
 
1272
  #: settings/settings-edit.php:175
1273
  msgid ""
1274
+ "Content for the email report which will be sent to admin.<br />(Available "
1275
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1276
  msgstr ""
1277
 
1278
  #: settings/settings-edit.php:186
1279
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
1280
  msgstr ""
1281
 
1282
  #: settings/settings-edit.php:187
1283
  msgid ""
1284
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1285
+ "subscriber signs up."
1286
  msgstr ""
1287
 
1288
  #: settings/settings-edit.php:193
1289
+ msgid "Double Opt-In Email Content (Confirmation Email)"
1290
  msgstr ""
1291
 
1292
  #: settings/settings-edit.php:194
1293
  msgid ""
1294
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
1295
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
1296
  msgstr ""
1297
 
1298
  #: settings/settings-edit.php:200
1299
+ msgid "Double Opt-In Confirmation Link"
1300
  msgstr ""
1301
 
1302
  #: settings/settings-edit.php:201
1306
  #: settings/settings-edit.php:207
1307
  msgid ""
1308
  "Text to display after an email address is successfully subscribed from "
1309
+ "Double Opt-In (Confirmation) Email"
1310
  msgstr ""
1311
 
1312
  #: settings/settings-edit.php:208
1316
  msgstr ""
1317
 
1318
  #: settings/settings-edit.php:215
1319
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
1320
  msgstr ""
1321
 
1322
  #: settings/settings-edit.php:216
1326
  msgstr ""
1327
 
1328
  #: settings/settings-edit.php:227
1329
+ msgid "Subject for Welcome Email"
1330
  msgstr ""
1331
 
1332
  #: settings/settings-edit.php:228
1333
  msgid ""
1334
+ "Subject for the subscriber welcome email. This will be sent whenever a "
1335
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1336
+ "Opt-In) successfully."
1337
  msgstr ""
1338
 
1339
  #: settings/settings-edit.php:234
1340
+ msgid "Email Content for Welcome Email"
1341
  msgstr ""
1342
 
1343
  #: settings/settings-edit.php:235
1344
  msgid ""
1345
+ "Content for the subscriber welcome email whenever a user's email is either "
1346
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1347
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
1348
  msgstr ""
1349
 
1350
  #: settings/settings-edit.php:243
1353
 
1354
  #: settings/settings-edit.php:244
1355
  msgid ""
1356
+ "This unsubscribe link is automatically added to all the emails that are sent "
1357
  "from this plugin. It is a readonly field and you are advised not to modify "
1358
  "it."
1359
  msgstr ""
1364
 
1365
  #: settings/settings-edit.php:251
1366
  msgid ""
1367
+ "The text for the unsubscribe link. This text is automatically added with "
1368
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
1369
  msgstr ""
1370
 
1371
  #: settings/settings-edit.php:257
1373
  msgstr ""
1374
 
1375
  #: settings/settings-edit.php:258
1376
+ msgid ""
1377
+ "This text will be displayed once user clicks on unsubscribe link from the "
1378
+ "email."
1379
  msgstr ""
1380
 
1381
  #: settings/settings-edit.php:265
1382
+ msgid "Error in the Subscribe / Confirmation Link"
1383
  msgstr ""
1384
 
1385
  #: settings/settings-edit.php:266
1386
  msgid ""
1387
  "Default message to display if there is any issue while clicking on "
1388
+ "subscribe / confirmation link from the Double Opt-In (Confirmation) emails."
1389
  msgstr ""
1390
 
1391
  #: settings/settings-edit.php:272
1395
  #: settings/settings-edit.php:273
1396
  msgid ""
1397
  "Default message to display if there is any issue while clicking on "
1398
+ "unsubscribe link from the emails."
1399
  msgstr ""
1400
 
1401
  #: settings/settings-edit.php:285
1456
  msgstr ""
1457
 
1458
  #: settings/settings-edit.php:372
1459
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1460
  msgstr ""
1461
 
1462
  #: settings/settings-edit.php:377
1463
+ msgid "Cron Report"
1464
  msgstr ""
1465
 
1466
  #: settings/settings-edit.php:378
1467
  msgid ""
1468
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
1469
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
1470
  msgstr ""
1471
 
1472
  #: settings/settings-edit.php:388
1475
 
1476
  #: settings/settings-edit.php:389
1477
  msgid ""
1478
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1479
  "schedule-cron-emails/\">What is Cron?</a>"
1480
  msgstr ""
1481
 
1482
  #: settings/settings-edit.php:390
1483
  msgid ""
1484
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1485
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1486
  msgstr ""
1487
 
1488
  #: settings/settings-edit.php:391
1489
  msgid ""
1490
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1491
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
1492
  msgstr ""
1493
 
1494
  #: settings/settings-edit.php:392
1495
  msgid ""
1496
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
1497
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
1498
  "</a>"
1499
  msgstr ""
1500
 
1501
+ #: settings/settings-edit.php:507
1502
  msgid "Please enter sender of notifications from name."
1503
  msgstr ""
1504
 
1505
+ #: settings/settings-edit.php:512
1506
  msgid "Please enter sender of notifications from email."
1507
  msgstr ""
1508
 
1509
+ #: settings/settings-edit.php:556
1510
  msgid "Please enter valid mail count."
1511
  msgstr ""
1512
 
1513
+ #: settings/settings-edit.php:569
1514
  msgid "Settings Saved."
1515
  msgstr ""
1516
 
1517
+ #: settings/settings-edit.php:572
1518
  msgid "Oops, unable to update."
1519
  msgstr ""
1520
 
1616
  msgid "Unsubscribed"
1617
  msgstr ""
1618
 
1619
+ #: subscribers/view-subscriber-add.php:151
1620
+ #: subscribers/view-subscriber-edit.php:150
1621
+ #: subscribers/view-subscriber-import.php:178
1622
+ #: subscribers/view-subscriber-show.php:312
1623
+ #: subscribers/view-subscriber-show.php:339
1624
+ msgid "Single Opt In"
1625
+ msgstr ""
1626
+
1627
  #: subscribers/view-subscriber-add.php:158
1628
  msgid "Select (or) Create Group for Subscriber"
1629
  msgstr ""
1946
  msgid "Email Subscribers & Newsletters"
1947
  msgstr ""
1948
 
1949
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3.4) #-#-#-#-#
1950
  #. Plugin URI of the plugin/theme
1951
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3.4) #-#-#-#-#
1952
  #. Author URI of the plugin/theme
1953
+ msgid "https://www.icegram.com/"
1954
  msgstr ""
1955
 
1956
  #. Description of the plugin/theme
query/db_default.php CHANGED
@@ -26,26 +26,26 @@ class es_cls_default {
26
  $unsublink = $home_url . "?es=unsubscribe&db=###DBID###&email=###EMAIL###&guid=###GUID###";
27
 
28
  $default = array();
29
- $default['ig_es_fromname'] = "Admin";
30
  $default['ig_es_fromemail'] = $admin_email;
31
  $default['ig_es_emailtype'] = "WP HTML MAIL";
32
  $default['ig_es_notifyadmin'] = "YES";
33
  $default['ig_es_adminemail'] = $admin_email;
34
- $default['ig_es_admin_new_sub_subject'] = $blogname . " New email subscription";
35
- $default['ig_es_admin_new_sub_content'] = "Hi Admin, \r\n\r\nWe have received a request to subscribe new email address to receive emails from our website. \r\n\r\nName : ###NAME###\r\nEmail: ###EMAIL###\r\nGroup: ###GROUP### \r\n\r\nThank You\r\n".$blogname;
36
  $default['ig_es_welcomeemail'] = "YES";
37
- $default['ig_es_welcomesubject'] = $blogname . " Welcome to our newsletter";
38
- $default['ig_es_welcomecontent'] = "Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website in group ###GROUP###. \r\n\r\nThank You\r\n".$blogname." \r\n\r\n No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
39
  $default['ig_es_optintype'] = "Double Opt In";
40
- $default['ig_es_confirmsubject'] = $blogname . " confirm subscription";
41
- $default['ig_es_confirmcontent'] = "Hi ###NAME###, \r\n\r\nA subscription request for this email address was received. Please confirm it by <a href='###LINK###'>clicking here</a>.\r\n\r\nIf you still cannot subscribe, please click this link : \r\n ###LINK### \r\n\r\nThank You\r\n".$blogname;
42
  $default['ig_es_optinlink'] = $optinlink;
43
  $default['ig_es_unsublink'] = $unsublink;
44
  $default['ig_es_unsubcontent'] = "No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
45
  $default['ig_es_unsubtext'] = "Thank You, You have been successfully unsubscribed. You will no longer hear from us.";
46
- $default['ig_es_successmsg'] = "Thank You, You have been successfully subscribed.";
47
- $default['ig_es_suberror'] = "Oops.. This subscription cant be completed, sorry. The email address is blocked or already subscribed. Thank you.";
48
- $default['ig_es_unsuberror'] = "Oops.. We are getting some technical error. Please try again or contact admin.";
49
 
50
  foreach ( $default as $option_name => $option_value ) {
51
  update_option( $option_name, $option_value );
26
  $unsublink = $home_url . "?es=unsubscribe&db=###DBID###&email=###EMAIL###&guid=###GUID###";
27
 
28
  $default = array();
29
+ $default['ig_es_fromname'] = $blogname;
30
  $default['ig_es_fromemail'] = $admin_email;
31
  $default['ig_es_emailtype'] = "WP HTML MAIL";
32
  $default['ig_es_notifyadmin'] = "YES";
33
  $default['ig_es_adminemail'] = $admin_email;
34
+ $default['ig_es_admin_new_sub_subject'] = $blogname . " - New email subscription";
35
+ $default['ig_es_admin_new_sub_content'] = "Hi Admin,\r\n\r\nCongratulations! You have a new subscriber.\r\n\r\nName : ###NAME###\r\nEmail: ###EMAIL###\r\nGroup: ###GROUP###\r\n\r\nHave a nice day :)\r\n".$blogname;
36
  $default['ig_es_welcomeemail'] = "YES";
37
+ $default['ig_es_welcomesubject'] = $blogname . " - Welcome!";
38
+ $default['ig_es_welcomecontent'] = "Hi ###NAME###,\r\n\r\nThank you for subscribing to us.\r\n\r\nYou are subscribed in group - ###GROUP###.\r\n\r\nBest,\r\n".$blogname."\r\n\r\nGot subscribed to ".$blogname." by mistake?. Click <a href='###LINK###'>here</a> to unsubscribe.";
39
  $default['ig_es_optintype'] = "Double Opt In";
40
+ $default['ig_es_confirmsubject'] = $blogname . " - Please confirm your subscription";
41
+ $default['ig_es_confirmcontent'] = "Hi ###NAME###,\r\n\r\nWe have received a subscription request from this email address. Please confirm it by <a href='###LINK###'>clicking here</a>.\r\n\r\nIf you still cannot subscribe, please copy this link and paste it in your browser :\r\n###LINK### \r\n\r\nThank You\r\n".$blogname;
42
  $default['ig_es_optinlink'] = $optinlink;
43
  $default['ig_es_unsublink'] = $unsublink;
44
  $default['ig_es_unsubcontent'] = "No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
45
  $default['ig_es_unsubtext'] = "Thank You, You have been successfully unsubscribed. You will no longer hear from us.";
46
+ $default['ig_es_successmsg'] = "You have been successfully subscribed.";
47
+ $default['ig_es_suberror'] = "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked.";
48
+ $default['ig_es_unsuberror'] = "Oops.. There was some technical error. Please try again later or contact us.";
49
 
50
  foreach ( $default as $option_name => $option_value ) {
51
  update_option( $option_name, $option_value );
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Email Subscribers & Newsletters ===
2
  Contributors: icegram, storeapps, niravmehta, Mansi Shah, akash123dhawade, ravioza
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
4
- Author URI: http://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
  Tested up to: 4.8
8
- Stable tag: 3.3.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
11
 
@@ -18,7 +18,7 @@ Email Subscribers is a complete newsletter plugin which lets you **collect leads
18
  > This works very well indeed... It **does all the necessary things for a newsletter/email list(s)**... **It is simple, clean, easy to engage, and looks good**... I was also easily able to do some styling on the input forms by adding its widget css into my child's style.css file and add and/or change some properties and values... Thanks much for making this available and staying on top of it... :-)
19
  > - [crzyhrse](https://wordpress.org/support/topic/very-well-indeed)
20
 
21
- ### Perfect Plugin for All your Newsletter Needs
22
 
23
  Email Subscribers is a fully featured subscription plugin specially created keeping in mind all the needs and requirements of a **regular blogger, website owner, marketer and developers**. It helps you achieve all the things you need to build a list and keep them engaged within a single plugin.
24
 
@@ -32,7 +32,7 @@ Email Subscribers is a fully featured subscription plugin specially created keep
32
  I am very satisfied with this easy and complete plugin/widget. In 5 minutes or less I configured it and is working 100%. I had to delete what I was using from jetpack because it just stop working and I could not figured out why. So this one seems to be the right for me. Thanks
33
  > - [Vsoraya](https://wordpress.org/support/topic/perfect-and-easy-9/)
34
 
35
- ### Complete Feature List of Email Subscribers
36
 
37
  * Send **notification emails** to subscribers when new posts are published.
38
  * Option to **schedule mail (Cron job option)** or **send them manually**.
@@ -54,7 +54,7 @@ I am very satisfied with this easy and complete plugin/widget. In 5 minutes or l
54
  > I have tried quite a few subscribe by email type plugins and this by far blows them all out of the water. Beautiful emails and and great backend design for the admin. This works so nice and works well with SMTP solutions
55
  > - [Mike Price](https://wordpress.org/support/topic/best-email-subscriber-plugin/)
56
 
57
- ### Start Collecting Leads Anywhere on Your Website
58
 
59
  Email subscribers lets you collect leads from anyplace on your website. You can either directly insert the subscription form as a shortcode, show it as a widget or simple add it to your site’s theme using php.
60
 
@@ -75,7 +75,7 @@ Add following line of PHP code directly in your theme :
75
  > Works as expected. Great way to build an email list on your own site. It allows my clients to manage their own lists via login. I love the automatic notifications to subscribers when new posts are created. Looking forward to a “premium” paid version that includes email templates.
76
  > - [jj9617](https://wordpress.org/support/topic/great-plugin-10646/)
77
 
78
- ### Send Automated Emails as soon as a New Blog Post is Published
79
 
80
  As soon as you publish a new blogpost, email subscribers will automatically send the people on your list a notification, informing them about the new blogpost.
81
 
@@ -83,7 +83,7 @@ As soon as you publish a new blogpost, email subscribers will automatically send
83
  > I highly recommend this product. It does everything it says it will do, is easily adaptable to your website, and Mansi’s level of support is fantastic. Unlike some of the other similar plugins, this one gives you total control over who requests to subscribe to your newsletter or blog.
84
  > - [ForPm](https://wordpress.org/support/topic/great-product-and-support-11/)
85
 
86
- ### It’s a One-time Setup
87
 
88
  Once you setup a ‘New blogpost’ notification mail, you won’t have to look at it ever again. Email Subscribers will detect everytime a new blog article is published on your website and then send an notification email to your list informing them about the article.
89
 
@@ -91,7 +91,7 @@ Once you setup a ‘New blogpost’ notification mail, you won’t have to look
91
  > **Easy to configure, tweak and manage**. And works like a charm
92
  > - [Aleksander](https://wordpress.org/support/topic/easy-to-use-but-super-powerfull/)
93
 
94
- ### Create Beautiful Newsletters Within Minutes
95
 
96
  Email subscribers has a HTML editor which lets you create elegant newsletter, emails and send them to your subscribers. You can add images, infographics, links, content etc and make your newsletters engaging for your subscribers.
97
 
@@ -99,19 +99,19 @@ Email subscribers has a HTML editor which lets you create elegant newsletter, em
99
  > Found this plugin, most impressed, simple to set up, easy to use and the support is overwhelming
100
  > - [Closeburn](https://wordpress.org/support/topic/impressive-and-simple/)
101
 
102
- ### Send/Schedule Emails either Automatically or Manually
103
 
104
  Using Email subscribers you can either choose to send the newsletters/ emails manually or schedule them using a cron job.
105
 
106
- ### Detailed Documentation
107
 
108
- Email subscribers has a vast, well documented series of article that can help you understand each feature in detail. Please go ahead and read it incase of any questions : [Email Subscribers Documentation](http://www.icegram.com/knowledgebase_category/email-subscribers).
109
 
110
  > **Hitman of email subscribing** -
111
  > the best plugin for getting subscribers.Combine it with any popup and you don’t need anything else.the help (FAQ) section is really detailed.
112
  > - [DrowsyReader](https://wordpress.org/support/topic/hitman-of-email-subscribing/)
113
 
114
- ### Friendly Approachable Support
115
 
116
  Don’t believe it? Have a look at the review section. The support guys are friendly and ever willing to assist you with whatever be your query. Feel free to contact them with both pre-sales, after-sales questions.
117
 
@@ -119,27 +119,27 @@ Don’t believe it? Have a look at the review section. The support guys are frie
119
  > Had 3 questions about the plugin, got extensive support with each one. Continue doing what you’re doing! Thanks a lot! 5/5
120
  > - [DomLaurin](https://wordpress.org/support/topic/lightning-support/)
121
 
122
- ### Get more benefits by using these free plugins
123
 
124
- **Use Email Subscribers with it's Free Addon - Email Subscribers - Group Selector**
125
 
126
  [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/) will extend Email Subscribers Form functionality by providing an grouping option right next to the form. The user can then subscribe to whichever group most appeals to him.
127
 
128
  For example: Subscribe either to pop music or to rock music.
129
 
130
- **Get more form styles using the Free Addon Rainmaker**
131
 
132
  Email subscribers easily integrates with another light weight plugin called [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/stats/). This plugin provides you **multiple, beautiful form design templates**. It also **lets you redirect the user to another url as soon as they subscribe to your form**.
133
 
134
  Using Rainmaker, you can extend the core features of Email subscribers making the forms even more useful and templates even more elegant.
135
 
136
- ### Help Fellow WordPressers by Writing a Review
137
 
138
  If you like Email Subscribers, please leave a [5 star](https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform) review on WordPress. That helps fellow website owners access Email Subscribers easily and benefit from it!
139
 
140
- ### Translators
141
 
142
- **Translations inside plugin**
143
 
144
  * Catalan (ca) - Jordi Jorda
145
  * Czech (cs_CZ) - Martin & Tomas
@@ -153,18 +153,30 @@ If you like Email Subscribers, please leave a [5 star](https://wordpress.org/sup
153
  * Swedish (sv_SE) - Rune Svennelid
154
  * Turkish (tr_TR) - [Erkan ORUÇ](http://designerkan.com/)
155
 
156
- **Translations on [translate.wordpress.org](https://translate.wordpress.org/)**
157
 
158
  * Dutch Nederlands - [Erwin](https://profiles.wordpress.org/erwindouwes/) , [mesan00](https://profiles.wordpress.org/mesan00) ([nl_NL](https://translate.wordpress.org/locale/nl/default/wp-plugins/email-subscribers))
159
  * Czech - Martin & Tomas ([cs_CZ](https://translate.wordpress.org/locale/cs/default/wp-plugins/email-subscribers))
160
  * Italian - [daepa](https://profiles.wordpress.org/daepa/) ([it_IT](https://translate.wordpress.org/locale/it/default/wp-plugins/email-subscribers))
161
  * Lithuanian - [kubandrius](https://profiles.wordpress.org/kubandrius/) ([lt_LT](https://translate.wordpress.org/locale/lt/default/wp-plugins/email-subscribers))
162
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  == Installation ==
164
 
165
  Option 1:
166
 
167
- 1. Go to WordPress Dashboard->Plugins->Add New
168
  2. Search Email Subscribers plugin using search option
169
  3. Find the plugin and click Install Now button
170
  4. After installation, click on Activate Plugin link to activate the plugin.
@@ -180,7 +192,7 @@ Option 2:
180
  Option 3:
181
 
182
  1. Download the plugin email-subscribers.zip
183
- 2. Go to WordPress Dashboard->Plugins->Add New
184
  3. Click on Upload Plugin link from top
185
  4. Upload the downloaded email-subscribers.zip file and click on Install Now
186
  5. After installation, click on Activate Plugin link to activate the plugin.
@@ -189,95 +201,95 @@ Option 3:
189
 
190
  = 1. How to install and activate Email Subscribers on multisite installation? =
191
 
192
- Refer [here](http://www.icegram.com/documentation/es-how-to-install-and-activate-plugin-single-multisite/).
193
 
194
  = 2. How to add subscription box to your website? =
195
 
196
- Refer [here](http://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website/).
197
 
198
  = 3. How to modify the existing emails like emails like Confirmation, Welcome, Admin emails and Cron Settings and Assign User Roles? =
199
 
200
- Refer [here](http://www.icegram.com/documentation/es-general-plugin-settings/).
201
 
202
  = 4. How to Import and export email address? =
203
 
204
- Refer [here](http://www.icegram.com/documentation/es-how-to-import-or-export-email-address-to-subscriber-list/).
205
 
206
  = 5. How to change/update/translate any strings from the plugin? =
207
 
208
- Refer steps from [here](http://www.icegram.com/documentation/es-how-to-change-update-translate-any-texts-from-email-subscribers/).
209
 
210
  = 6. How to add unsubscribe link in emails? =
211
 
212
- Refer [here](http://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/).
213
 
214
  = 7. How to Compose and Send Newsletter Emails =
215
 
216
- Refer [here](http://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/).
217
 
218
  = 8. How to Configure and Send Post Notification emails to subscribers when new posts are published? =
219
 
220
- Refer [here](http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/).
221
 
222
  = 9. What are the available keywords in the Post Notifications? =
223
 
224
- Refer [here](http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/).
225
 
226
  = 10. How to send a sample new post notification email to testgroup/myself? =
227
 
228
- Refer [here](http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
229
 
230
  = 11. How to check sent emails reports? =
231
 
232
- Refer [here](http://www.icegram.com/documentation/es-how-to-check-sent-emails/).
233
 
234
  = 12. How to Add/Update Existing Subscribers Group & Status? =
235
 
236
- Refer [here](http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/).
237
 
238
  = 13. Subscribers are not receiving Emails =
239
 
240
- Check steps from [here](http://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/).
241
 
242
  = 14. How to show subscribe form inside a popup? =
243
 
244
- Refer [here](http://www.icegram.com/documentation/es-how-to-show-subscribe-form-inside-a-popup/).
245
 
246
  = 15. How to use Rainmaker’s form in Email Subscribers? =
247
 
248
- Refer [here](http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
249
 
250
  = 16. How to Redirect Subscribers to a new page/url after successful sign up? =
251
 
252
- Refer [here](http://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/).
253
 
254
  = 17. How to add captcha in Subscribe form of Email Subscribers? =
255
 
256
- Refer [here](http://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/).
257
 
258
  = 18. How to Schedule Cron Emails/auto emails? =
259
 
260
- Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/).
261
 
262
  = 17. How to Schedule Cron Emails in cPanel? =
263
 
264
- Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/).
265
 
266
  = 18. How to Schedule Cron Emails in Parallels Plesk? =
267
 
268
- Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/).
269
 
270
  = 19. What to do if Hosting doesn’t support Cron Jobs? =
271
 
272
- Refer [here](http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/).
273
 
274
  = 20. CSS Help =
275
 
276
- Refer [here](http://www.icegram.com/documentation/es-css-help/).
277
 
278
  = 21. Email Subscribers FAQ =
279
 
280
- Refer [here](http://www.icegram.com/documentation/es-faq/).
281
 
282
  = 22. How to add group selection in front end subscription box =
283
 
@@ -309,13 +321,23 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
309
 
310
  == Changelog ==
311
 
 
 
 
 
 
 
 
 
 
 
312
  = 3.3.3 (11.07.2017) =
313
 
314
  * Fix: Settings used to get reset to default values when upgraded to a version higher than version 3.3
315
 
316
  = 3.3.2 (10.07.2017) =
317
 
318
- * New: Improvements in default Post Notification & Newsletter templates created on first install of plugin
319
  * Update: Mention while creating emails (under Compose) that Available Keywords are for Post Notifications only
320
  * Update: POT file
321
  * New: Translation for Norwegian (nb_NO) language added (Thanks to Helge Rosseboe)
@@ -588,13 +610,23 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
588
 
589
  == Upgrade Notice ==
590
 
 
 
 
 
 
 
 
 
 
 
591
  = 3.3.3 (11.07.2017) =
592
 
593
- * Fix: Settings used to get resetted to default values when upgraded to a version higher than version 3.3
594
 
595
  = 3.3.2 (10.07.2017) =
596
 
597
- * New: Improvements in default Post Notification & Newsletter templates created on first install of plugin
598
  * Update: Mention while creating emails (under Compose) that Available Keywords are for Post Notifications only
599
  * Update: POT file
600
  * New: Translation for Norwegian (nb_NO) language added (Thanks to Helge Rosseboe)
1
  === Email Subscribers & Newsletters ===
2
  Contributors: icegram, storeapps, niravmehta, Mansi Shah, akash123dhawade, ravioza
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
4
+ Author URI: https://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
  Tested up to: 4.8
8
+ Stable tag: 3.3.4
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
11
 
18
  > This works very well indeed... It **does all the necessary things for a newsletter/email list(s)**... **It is simple, clean, easy to engage, and looks good**... I was also easily able to do some styling on the input forms by adding its widget css into my child's style.css file and add and/or change some properties and values... Thanks much for making this available and staying on top of it... :-)
19
  > - [crzyhrse](https://wordpress.org/support/topic/very-well-indeed)
20
 
21
+ **Perfect Plugin for All your Newsletter Needs**
22
 
23
  Email Subscribers is a fully featured subscription plugin specially created keeping in mind all the needs and requirements of a **regular blogger, website owner, marketer and developers**. It helps you achieve all the things you need to build a list and keep them engaged within a single plugin.
24
 
32
  I am very satisfied with this easy and complete plugin/widget. In 5 minutes or less I configured it and is working 100%. I had to delete what I was using from jetpack because it just stop working and I could not figured out why. So this one seems to be the right for me. Thanks
33
  > - [Vsoraya](https://wordpress.org/support/topic/perfect-and-easy-9/)
34
 
35
+ **Complete Feature List of Email Subscribers**
36
 
37
  * Send **notification emails** to subscribers when new posts are published.
38
  * Option to **schedule mail (Cron job option)** or **send them manually**.
54
  > I have tried quite a few subscribe by email type plugins and this by far blows them all out of the water. Beautiful emails and and great backend design for the admin. This works so nice and works well with SMTP solutions
55
  > - [Mike Price](https://wordpress.org/support/topic/best-email-subscriber-plugin/)
56
 
57
+ **Start Collecting Leads Anywhere on Your Website**
58
 
59
  Email subscribers lets you collect leads from anyplace on your website. You can either directly insert the subscription form as a shortcode, show it as a widget or simple add it to your site’s theme using php.
60
 
75
  > Works as expected. Great way to build an email list on your own site. It allows my clients to manage their own lists via login. I love the automatic notifications to subscribers when new posts are created. Looking forward to a “premium” paid version that includes email templates.
76
  > - [jj9617](https://wordpress.org/support/topic/great-plugin-10646/)
77
 
78
+ **Send Automated Emails as soon as a New Blog Post is Published**
79
 
80
  As soon as you publish a new blogpost, email subscribers will automatically send the people on your list a notification, informing them about the new blogpost.
81
 
83
  > I highly recommend this product. It does everything it says it will do, is easily adaptable to your website, and Mansi’s level of support is fantastic. Unlike some of the other similar plugins, this one gives you total control over who requests to subscribe to your newsletter or blog.
84
  > - [ForPm](https://wordpress.org/support/topic/great-product-and-support-11/)
85
 
86
+ **It’s a One-time Setup**
87
 
88
  Once you setup a ‘New blogpost’ notification mail, you won’t have to look at it ever again. Email Subscribers will detect everytime a new blog article is published on your website and then send an notification email to your list informing them about the article.
89
 
91
  > **Easy to configure, tweak and manage**. And works like a charm
92
  > - [Aleksander](https://wordpress.org/support/topic/easy-to-use-but-super-powerfull/)
93
 
94
+ **Create Beautiful Newsletters Within Minutes**
95
 
96
  Email subscribers has a HTML editor which lets you create elegant newsletter, emails and send them to your subscribers. You can add images, infographics, links, content etc and make your newsletters engaging for your subscribers.
97
 
99
  > Found this plugin, most impressed, simple to set up, easy to use and the support is overwhelming
100
  > - [Closeburn](https://wordpress.org/support/topic/impressive-and-simple/)
101
 
102
+ **Send/Schedule Emails either Automatically or Manually**
103
 
104
  Using Email subscribers you can either choose to send the newsletters/ emails manually or schedule them using a cron job.
105
 
106
+ **Detailed Documentation**
107
 
108
+ Email subscribers has a vast, well documented series of article that can help you understand each feature in detail. Please go ahead and read it incase of any questions : [Email Subscribers Documentation](https://www.icegram.com/knowledgebase_category/email-subscribers).
109
 
110
  > **Hitman of email subscribing** -
111
  > the best plugin for getting subscribers.Combine it with any popup and you don’t need anything else.the help (FAQ) section is really detailed.
112
  > - [DrowsyReader](https://wordpress.org/support/topic/hitman-of-email-subscribing/)
113
 
114
+ **Friendly Approachable Support**
115
 
116
  Don’t believe it? Have a look at the review section. The support guys are friendly and ever willing to assist you with whatever be your query. Feel free to contact them with both pre-sales, after-sales questions.
117
 
119
  > Had 3 questions about the plugin, got extensive support with each one. Continue doing what you’re doing! Thanks a lot! 5/5
120
  > - [DomLaurin](https://wordpress.org/support/topic/lightning-support/)
121
 
122
+ **Get more benefits by using Email Subscribers with these free plugins**
123
 
124
+ **Email Subscribers - Group Selector**
125
 
126
  [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/) will extend Email Subscribers Form functionality by providing an grouping option right next to the form. The user can then subscribe to whichever group most appeals to him.
127
 
128
  For example: Subscribe either to pop music or to rock music.
129
 
130
+ **Get more form styles by using Rainmaker**
131
 
132
  Email subscribers easily integrates with another light weight plugin called [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/stats/). This plugin provides you **multiple, beautiful form design templates**. It also **lets you redirect the user to another url as soon as they subscribe to your form**.
133
 
134
  Using Rainmaker, you can extend the core features of Email subscribers making the forms even more useful and templates even more elegant.
135
 
136
+ **Help Fellow WordPressers by Writing a Review**
137
 
138
  If you like Email Subscribers, please leave a [5 star](https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform) review on WordPress. That helps fellow website owners access Email Subscribers easily and benefit from it!
139
 
140
+ **Translators**
141
 
142
+ Translations inside plugin :
143
 
144
  * Catalan (ca) - Jordi Jorda
145
  * Czech (cs_CZ) - Martin & Tomas
153
  * Swedish (sv_SE) - Rune Svennelid
154
  * Turkish (tr_TR) - [Erkan ORUÇ](http://designerkan.com/)
155
 
156
+ Translations on [translate.wordpress.org](https://translate.wordpress.org/) :
157
 
158
  * Dutch Nederlands - [Erwin](https://profiles.wordpress.org/erwindouwes/) , [mesan00](https://profiles.wordpress.org/mesan00) ([nl_NL](https://translate.wordpress.org/locale/nl/default/wp-plugins/email-subscribers))
159
  * Czech - Martin & Tomas ([cs_CZ](https://translate.wordpress.org/locale/cs/default/wp-plugins/email-subscribers))
160
  * Italian - [daepa](https://profiles.wordpress.org/daepa/) ([it_IT](https://translate.wordpress.org/locale/it/default/wp-plugins/email-subscribers))
161
  * Lithuanian - [kubandrius](https://profiles.wordpress.org/kubandrius/) ([lt_LT](https://translate.wordpress.org/locale/lt/default/wp-plugins/email-subscribers))
162
 
163
+ You too can contribute to translations and make it 100% complete. Contribute from here - [Translate Email Subscribers into your language](https://translate.wordpress.org/projects/wp-plugins/email-subscribers)
164
+
165
+ **Some of our other free plugins on WordPress.org**
166
+
167
+ 1. [Icegram](https://wordpress.org/plugins/icegram/) - Popups, Welcome Bar, Optins and Lead Generation Plugin
168
+ 2. [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) - Best Forms Plugin on WordPress
169
+ 3. [Email Subscribers – Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/)
170
+ 4. [News Announcement Scroll](https://wordpress.org/plugins/news-announcement-scroll/)
171
+ 5. [Temporary Login Without Password](https://wordpress.org/plugins/temporary-login-without-password/)
172
+
173
+ **Check out our paid plugins from here - [Icegram.com](https://www.icegram.com/)**
174
+
175
  == Installation ==
176
 
177
  Option 1:
178
 
179
+ 1. Go to WordPress Dashboard. Locate Plugins -> Add New
180
  2. Search Email Subscribers plugin using search option
181
  3. Find the plugin and click Install Now button
182
  4. After installation, click on Activate Plugin link to activate the plugin.
192
  Option 3:
193
 
194
  1. Download the plugin email-subscribers.zip
195
+ 2. Go to WordPress Dashboard. Locate Plugins -> Add New
196
  3. Click on Upload Plugin link from top
197
  4. Upload the downloaded email-subscribers.zip file and click on Install Now
198
  5. After installation, click on Activate Plugin link to activate the plugin.
201
 
202
  = 1. How to install and activate Email Subscribers on multisite installation? =
203
 
204
+ Refer [here](https://www.icegram.com/documentation/es-how-to-install-and-activate-plugin-single-multisite/).
205
 
206
  = 2. How to add subscription box to your website? =
207
 
208
+ Refer [here](https://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website/).
209
 
210
  = 3. How to modify the existing emails like emails like Confirmation, Welcome, Admin emails and Cron Settings and Assign User Roles? =
211
 
212
+ Refer [here](https://www.icegram.com/documentation/es-general-plugin-settings/).
213
 
214
  = 4. How to Import and export email address? =
215
 
216
+ Refer [here](https://www.icegram.com/documentation/es-how-to-import-or-export-email-address-to-subscriber-list/).
217
 
218
  = 5. How to change/update/translate any strings from the plugin? =
219
 
220
+ Refer steps from [here](https://www.icegram.com/documentation/es-how-to-change-update-translate-any-texts-from-email-subscribers/).
221
 
222
  = 6. How to add unsubscribe link in emails? =
223
 
224
+ Refer [here](https://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/).
225
 
226
  = 7. How to Compose and Send Newsletter Emails =
227
 
228
+ Refer [here](https://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/).
229
 
230
  = 8. How to Configure and Send Post Notification emails to subscribers when new posts are published? =
231
 
232
+ Refer [here](https://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/).
233
 
234
  = 9. What are the available keywords in the Post Notifications? =
235
 
236
+ Refer [here](https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/).
237
 
238
  = 10. How to send a sample new post notification email to testgroup/myself? =
239
 
240
+ Refer [here](https://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
241
 
242
  = 11. How to check sent emails reports? =
243
 
244
+ Refer [here](https://www.icegram.com/documentation/es-how-to-check-sent-emails/).
245
 
246
  = 12. How to Add/Update Existing Subscribers Group & Status? =
247
 
248
+ Refer [here](https://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/).
249
 
250
  = 13. Subscribers are not receiving Emails =
251
 
252
+ Check steps from [here](https://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/).
253
 
254
  = 14. How to show subscribe form inside a popup? =
255
 
256
+ Refer [here](https://www.icegram.com/documentation/es-how-to-show-subscribe-form-inside-a-popup/).
257
 
258
  = 15. How to use Rainmaker’s form in Email Subscribers? =
259
 
260
+ Refer [here](https://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
261
 
262
  = 16. How to Redirect Subscribers to a new page/url after successful sign up? =
263
 
264
+ Refer [here](https://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/).
265
 
266
  = 17. How to add captcha in Subscribe form of Email Subscribers? =
267
 
268
+ Refer [here](https://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/).
269
 
270
  = 18. How to Schedule Cron Emails/auto emails? =
271
 
272
+ Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails/).
273
 
274
  = 17. How to Schedule Cron Emails in cPanel? =
275
 
276
+ Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/).
277
 
278
  = 18. How to Schedule Cron Emails in Parallels Plesk? =
279
 
280
+ Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/).
281
 
282
  = 19. What to do if Hosting doesn’t support Cron Jobs? =
283
 
284
+ Refer [here](https://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/).
285
 
286
  = 20. CSS Help =
287
 
288
+ Refer [here](https://www.icegram.com/documentation/es-css-help/).
289
 
290
  = 21. Email Subscribers FAQ =
291
 
292
+ Refer [here](https://www.icegram.com/documentation/es-faq/).
293
 
294
  = 22. How to add group selection in front end subscription box =
295
 
321
 
322
  == Changelog ==
323
 
324
+ = 3.3.4 (26.07.2017) =
325
+
326
+ * New: Keyword ###POSTAUTHOR### to display Post Author name in Post Notification emails
327
+ * New: Improvements in default settings and the email content created on first install of plugin (New users only)
328
+ * New: Display Blog Name in FROM name instead of Admin (New users only)
329
+ * Update: POT file
330
+ * Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
331
+ * Tweak: Do not highlight 'Reports' menu in Grey color
332
+ * Tweak: Documentation links
333
+
334
  = 3.3.3 (11.07.2017) =
335
 
336
  * Fix: Settings used to get reset to default values when upgraded to a version higher than version 3.3
337
 
338
  = 3.3.2 (10.07.2017) =
339
 
340
+ * New: Improvements in default Post Notification & Newsletter templates created on first install of plugin (New users only)
341
  * Update: Mention while creating emails (under Compose) that Available Keywords are for Post Notifications only
342
  * Update: POT file
343
  * New: Translation for Norwegian (nb_NO) language added (Thanks to Helge Rosseboe)
610
 
611
  == Upgrade Notice ==
612
 
613
+ = 3.3.4 (26.07.2017) =
614
+
615
+ * New: Keyword ###POSTAUTHOR### to display Post Author name in Post Notification emails
616
+ * New: Improvements in default settings and the email content created on first install of plugin (New users only)
617
+ * New: Display Blog Name in FROM name instead of Admin (New users only)
618
+ * Update: POT file
619
+ * Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
620
+ * Tweak: Do not highlight 'Reports' menu in Grey color
621
+ * Tweak: Documentation links
622
+
623
  = 3.3.3 (11.07.2017) =
624
 
625
+ * Fix: Settings used to get reset to default values when upgraded to a version higher than version 3.3
626
 
627
  = 3.3.2 (10.07.2017) =
628
 
629
+ * New: Improvements in default Post Notification & Newsletter templates created on first install of plugin (New users only)
630
  * Update: Mention while creating emails (under Compose) that Available Keywords are for Post Notifications only
631
  * Update: POT file
632
  * New: Translation for Norwegian (nb_NO) language added (Thanks to Helge Rosseboe)
sentmail/deliverreport-show.php CHANGED
@@ -28,9 +28,6 @@ if ($sentguid == '') {
28
  margin-left:2px;
29
  margin-right:2px;
30
  }
31
- .current {
32
- background: none repeat scroll 0 0 #BBBBBB;
33
- }
34
  </style>
35
 
36
  <?php
28
  margin-left:2px;
29
  margin-right:2px;
30
  }
 
 
 
31
  </style>
32
 
33
  <?php
sentmail/sentmail-show.php CHANGED
@@ -63,9 +63,6 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
63
  margin-left:2px;
64
  margin-right:2px;
65
  }
66
- .current {
67
- background: none repeat scroll 0 0 #BBBBBB;
68
- }
69
  </style>
70
 
71
  <?php
63
  margin-left:2px;
64
  margin-right:2px;
65
  }
 
 
 
66
  </style>
67
 
68
  <?php
settings/settings-edit.php CHANGED
@@ -89,8 +89,8 @@ if ( ! class_exists( 'ES_Settings' ) ) {
89
  </tr>
90
  <tr class="es-admin active-settings">
91
  <th scope="row">
92
- <label for="elp"><?php echo __( 'Mail Type', ES_TDOMAIN ); ?>
93
- <p class="description"><?php echo __( 'Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 is to send mails with PHP method mail().', ES_TDOMAIN ); ?></p></label>
94
  </th>
95
  <td>
96
  <select name="es_c_mailtype" id="es_c_mailtype">
@@ -104,13 +104,13 @@ if ( ! class_exists( 'ES_Settings' ) ) {
104
  <!-------------------------------------------------------------------------------->
105
  <tr class="es-admin active-settings">
106
  <th scope="row">
107
- <label for="elp"><?php echo __( 'Opt-In Option', ES_TDOMAIN ); ?>
108
- <p class="description"><?php echo __( 'Double Opt In means subscribers need to confirm their email address by an activation link sent them on a activation email message.<br />Single Opt In means subscribers do not need to confirm their email address.', ES_TDOMAIN ); ?></p></label>
109
  </th>
110
  <td>
111
  <select name="es_c_optinoption" id="es_c_optinoption">
112
- <option value='Double Opt In' <?php if($this->form['ig_es_optintype'] == 'Double Opt In') { echo 'selected' ; } ?>><?php echo __( 'Double Opt In', ES_TDOMAIN ); ?></option>
113
- <option value='Single Opt In' <?php if($this->form['ig_es_optintype'] == 'Single Opt In') { echo 'selected' ; } ?>><?php echo __( 'Single Opt In', ES_TDOMAIN ); ?></option>
114
  </select>
115
  </td>
116
  </tr>
@@ -136,7 +136,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
136
  </tr>
137
  <tr class="es-admin active-settings">
138
  <th scope="row">
139
- <label for="elp"><?php echo __( 'Notify admin when a new subscriber signs up', ES_TDOMAIN ); ?>
140
  <p class="description"><?php echo __( 'To send admin email notifications for the new subscriber. This option must be set to YES.', ES_TDOMAIN ); ?></p>
141
  </label>
142
  </th>
@@ -149,15 +149,15 @@ if ( ! class_exists( 'ES_Settings' ) ) {
149
  </tr>
150
  <tr class="es-admin active-settings">
151
  <th scope="row">
152
- <label for="elp"><?php echo __( 'Admin Email Subject when a new subscriber signs up', ES_TDOMAIN ); ?>
153
- <p class="description"><?php echo __( 'Enter the subject for the admin email which will be sent whenever a new email is added and confirmed.', ES_TDOMAIN ); ?></p></label>
154
  </th>
155
  <td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($this->form['ig_es_admin_new_sub_subject'])); ?>" size="60" maxlength="225" /></td>
156
  </tr>
157
  <tr class="es-admin active-settings">
158
  <th scope="row">
159
- <label for="elp"><?php echo __( 'Admin Email Content when a new subscriber signs up', ES_TDOMAIN ); ?>
160
- <p class="description"><?php echo __( 'Enter the email content for the admin email which will be sent whenever a new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, ###GROUP###)', ES_TDOMAIN ); ?></p></label>
161
  </th>
162
  <td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($this->form['ig_es_admin_new_sub_content'])); ?></textarea></td>
163
  </tr>
@@ -165,14 +165,14 @@ if ( ! class_exists( 'ES_Settings' ) ) {
165
  <tr class="es-admin active-settings">
166
  <th scope="row">
167
  <label for="elp"><?php echo __( 'Sent Report Subject', ES_TDOMAIN ); ?>
168
- <p class="description"><?php echo __( 'Enter the subject for the sent email report. It will be emailed to Admin.', ES_TDOMAIN ); ?></p></label>
169
  </th>
170
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($this->form['ig_es_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
171
  </tr>
172
  <tr class="es-admin active-settings">
173
  <th scope="row">
174
  <label for="elp"><?php echo __( 'Sent Report Content', ES_TDOMAIN ); ?>
175
- <p class="description"><?php echo __( 'Enter the content for the sent email report. It will be emailed to Admin. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)', ES_TDOMAIN ); ?></p></label>
176
  </th>
177
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($this->form['ig_es_sentreport'])); ?></textarea></td>
178
  </tr>
@@ -183,28 +183,28 @@ if ( ! class_exists( 'ES_Settings' ) ) {
183
  ?>
184
  <tr class="es-signup-confirmation hidden">
185
  <th scope="row">
186
- <label for="elp"><?php echo __( 'Double Opt In Email Subject (Confirmation Email)', ES_TDOMAIN ); ?>
187
- <p class="description"><?php echo __( 'Enter the subject for the confirmation email to be sent for Double Opt In whenever a user signs up.', ES_TDOMAIN ); ?></p></label>
188
  </th>
189
  <td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($this->form['ig_es_confirmsubject'])); ?>" size="60" maxlength="225" /></td>
190
  </tr>
191
  <tr class="es-signup-confirmation hidden">
192
  <th scope="row">
193
- <label for="elp"><?php echo __('Double Opt In Email Content (Confirmation Email)', ES_TDOMAIN); ?>
194
- <p class="description"><?php echo __( 'Enter the content for the confirmation email to be sent for Double Opt In whenever a user signs up. (Keyword: ###NAME###, ###LINK###)', ES_TDOMAIN ); ?></p></label>
195
  </th>
196
  <td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($this->form['ig_es_confirmcontent'])); ?></textarea></td>
197
  </tr>
198
  <tr class="es-signup-confirmation hidden">
199
  <th scope="row">
200
- <label for="elp"><?php echo __( 'Double Opt In Confirmation Link', ES_TDOMAIN ); ?><p class="description">
201
  <?php echo __( 'It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
202
  </th>
203
  <td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($this->form['ig_es_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
204
  </tr>
205
  <tr class="es-signup-confirmation hidden">
206
  <th scope="row">
207
- <label for="elp"><?php echo __( 'Text to display after an email address is successfully subscribed from Double Opt In (confirmation) Email', ES_TDOMAIN ); ?>
208
  <p class="description"><?php echo __( 'This text will be displayed once user clicks on email confirmation link from the Double Opt In (confirmation) Email.', ES_TDOMAIN ); ?></p></label>
209
  </th>
210
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($this->form['ig_es_successmsg'])); ?></textarea></td>
@@ -212,7 +212,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
212
  <!-------------------------------------------------------------------------------->
213
  <tr class="es-signup-confirmation hidden">
214
  <th scope="row">
215
- <label for="elp"><?php echo __( 'Subscriber Welcome Email', ES_TDOMAIN ); ?>
216
  <p class="description"><?php echo __( 'To send welcome email to subscriber after successful signup. This option must be set to YES.', ES_TDOMAIN ); ?></p></label>
217
  </th>
218
  <td>
@@ -224,15 +224,15 @@ if ( ! class_exists( 'ES_Settings' ) ) {
224
  </tr>
225
  <tr class="es-signup-confirmation hidden">
226
  <th scope="row">
227
- <label for="elp"><?php echo __( 'Subscriber Welcome Email Subject', ES_TDOMAIN ); ?>
228
- <p class="description"><?php echo __( 'Enter the subject for the subscriber welcome email. This will be sent whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully.', ES_TDOMAIN ); ?></p></label>
229
  </th>
230
  <td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($this->form['ig_es_welcomesubject'])); ?>" size="60" maxlength="225" /></td>
231
  </tr>
232
  <tr class="es-signup-confirmation hidden">
233
  <th scope="row">
234
- <label for="elp"><?php echo __( 'Subscriber Welcome Email Content', ES_TDOMAIN ); ?>
235
- <p class="description"><?php echo __( 'Enter the content for the subscriber welcome email whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: ###NAME###, ###GROUP###, ###LINK###)', ES_TDOMAIN ); ?></p>
236
  </label>
237
  </th>
238
  <td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($this->form['ig_es_welcomecontent'])); ?></textarea></td>
@@ -241,36 +241,36 @@ if ( ! class_exists( 'ES_Settings' ) ) {
241
  <tr class="es-signup-confirmation hidden">
242
  <th scope="row">
243
  <label for="elp"><?php echo __( 'Unsubscribe Link', ES_TDOMAIN ); ?>
244
- <p class="description"><?php echo __( 'The unsubscribe link gets added automatically to all emails that are sent from this plugin. It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
245
  </th>
246
  <td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($this->form['ig_es_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
247
  </tr>
248
  <tr class="es-signup-confirmation hidden">
249
  <th scope="row">
250
  <label for="elp"><?php echo __( 'Unsubscribe Text in Email', ES_TDOMAIN ); ?>
251
- <p class="description"><?php echo __( 'Enter the text for the unsubscribe link. This text is added with unsubscribe link in the emails. (Keyword: ###LINK###)', ES_TDOMAIN ); ?></p></label>
252
  </th>
253
  <td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($this->form['ig_es_unsubcontent'])); ?></textarea></td>
254
  </tr>
255
  <tr class="es-signup-confirmation hidden">
256
  <th scope="row">
257
  <label for="elp"><?php echo __( 'Text to display after an email address is unsubscribed', ES_TDOMAIN ); ?>
258
- <p class="description"><?php echo __( 'This text will be displayed once user clicks on unsubscribe link.', ES_TDOMAIN ); ?></p></label>
259
  </th>
260
  <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($this->form['ig_es_unsubtext'])); ?></textarea></td>
261
  </tr>
262
  <!-------------------------------------------------------------------------------->
263
  <tr class="es-signup-confirmation hidden">
264
  <th scope="row">
265
- <label for="elp"><?php echo __( 'Error in the Confirmation Link', ES_TDOMAIN ); ?>
266
- <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on confirmation link from the Double Opt In (confirmation) Emails.', ES_TDOMAIN ); ?></p></label>
267
  </th>
268
  <td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($this->form['ig_es_suberror'])); ?></textarea></td>
269
  </tr>
270
  <tr class="es-signup-confirmation hidden">
271
  <th scope="row">
272
  <label for="elp"><?php echo __( 'Error in the Unsubscribe Link', ES_TDOMAIN ); ?>
273
- <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on unsubscribe link from the Emails.', ES_TDOMAIN ); ?></p></label>
274
  </th>
275
  <td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($this->form['ig_es_unsuberror'])); ?></textarea></td>
276
  </tr>
@@ -369,13 +369,13 @@ if ( ! class_exists( 'ES_Settings' ) ) {
369
  </th>
370
  <td>
371
  <input type="number" name="es_cron_mailcount" id="es_cron_mailcount" value="<?php echo $this->form['ig_es_cron_mailcount']; ?>" maxlength="3" />
372
- <p class="description"><?php echo __( '(Your web host has limits. We suggest 50 emails per hour to be safe)', ES_TDOMAIN ) ?></p>
373
  </td>
374
  </tr>
375
  <tr class="es-cron hidden">
376
  <th scope="row">
377
- <label for="tag-image"><?php echo __( 'Admin Report', ES_TDOMAIN ); ?>
378
- <p class="description"><?php echo __( 'Email to admin whenever cron URL is triggered from your server. (Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)', ES_TDOMAIN ); ?></p>
379
  </label>
380
  </th>
381
  <td>
@@ -386,10 +386,10 @@ if ( ! class_exists( 'ES_Settings' ) ) {
386
  <td colspan=2>
387
  <div class="tool-box">
388
  <h3><?php echo __( 'What is Cron (auto emails) and how to setup Cron Job?', ES_TDOMAIN ); ?></h3>
389
- <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/">What is Cron?</a>', ES_TDOMAIN ); ?></li>
390
- <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/">Setup cron job in Plesk</a>', ES_TDOMAIN ); ?></li>
391
- <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/">Setup cron job in cPanal</a>', ES_TDOMAIN ); ?></li>
392
- <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/">Hosting does not support cron jobs?</a>', ES_TDOMAIN ); ?></li><br>
393
  </div>
394
  </td>
395
  </tr>
@@ -487,9 +487,10 @@ if ( ! class_exists( 'ES_Settings' ) ) {
487
  }
488
  $form['ig_es_cron_mailcount'] = $es_cron_mailcount;
489
 
 
490
  $es_cron_adminmail = get_option('ig_es_cron_adminmail', '');
491
  if($es_cron_adminmail == "") {
492
- add_option('ig_es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the email ###SUBJECT###. And it sent email to ###COUNT### recipient. \r\n\r\nThank You");
493
  $es_cron_adminmail = get_option('ig_es_cron_adminmail');
494
  }
495
  $form['ig_es_cron_adminmail'] = $es_cron_adminmail;
89
  </tr>
90
  <tr class="es-admin active-settings">
91
  <th scope="row">
92
+ <label for="elp"><?php echo __( 'Email Type', ES_TDOMAIN ); ?>
93
+ <p class="description"><?php echo __( 'Option 1 & 2 is to send emails with default Wordpress method wp_mail(). Option 3 & 4 is to send emails with PHP method mail().', ES_TDOMAIN ); ?></p></label>
94
  </th>
95
  <td>
96
  <select name="es_c_mailtype" id="es_c_mailtype">
104
  <!-------------------------------------------------------------------------------->
105
  <tr class="es-admin active-settings">
106
  <th scope="row">
107
+ <label for="elp"><?php echo __( 'Opt-In Type', ES_TDOMAIN ); ?>
108
+ <p class="description"><?php echo __( 'Double Opt-In : In this type, the subscriber is sent an activation link as soon as they subscribe to your list. They have to confirm their subscription by clicking on the activation link.<br />Single Opt-In : In this type, the subscriber is not asked to confirm their email address. They are subscribed directly in the list.', ES_TDOMAIN ); ?></p></label>
109
  </th>
110
  <td>
111
  <select name="es_c_optinoption" id="es_c_optinoption">
112
+ <option value='Double Opt In' <?php if($this->form['ig_es_optintype'] == 'Double Opt In') { echo 'selected' ; } ?>><?php echo __( 'Double Opt-In', ES_TDOMAIN ); ?></option>
113
+ <option value='Single Opt In' <?php if($this->form['ig_es_optintype'] == 'Single Opt In') { echo 'selected' ; } ?>><?php echo __( 'Single Opt-In', ES_TDOMAIN ); ?></option>
114
  </select>
115
  </td>
116
  </tr>
136
  </tr>
137
  <tr class="es-admin active-settings">
138
  <th scope="row">
139
+ <label for="elp"><?php echo __( 'Notify Admin when a new subscriber signs up', ES_TDOMAIN ); ?>
140
  <p class="description"><?php echo __( 'To send admin email notifications for the new subscriber. This option must be set to YES.', ES_TDOMAIN ); ?></p>
141
  </label>
142
  </th>
149
  </tr>
150
  <tr class="es-admin active-settings">
151
  <th scope="row">
152
+ <label for="elp"><?php echo __( 'Admin Email Subject on new subscriber sign up', ES_TDOMAIN ); ?>
153
+ <p class="description"><?php echo __( 'Subject for the admin email whenever a new subscriber signs up and is confirmed.', ES_TDOMAIN ); ?></p></label>
154
  </th>
155
  <td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($this->form['ig_es_admin_new_sub_subject'])); ?>" size="60" maxlength="225" /></td>
156
  </tr>
157
  <tr class="es-admin active-settings">
158
  <th scope="row">
159
+ <label for="elp"><?php echo __( 'Admin Email Content on new subscriber signs up', ES_TDOMAIN ); ?>
160
+ <p class="description"><?php echo __( 'Content for the admin email whenever a new subscriber signs up and is confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)', ES_TDOMAIN ); ?></p></label>
161
  </th>
162
  <td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($this->form['ig_es_admin_new_sub_content'])); ?></textarea></td>
163
  </tr>
165
  <tr class="es-admin active-settings">
166
  <th scope="row">
167
  <label for="elp"><?php echo __( 'Sent Report Subject', ES_TDOMAIN ); ?>
168
+ <p class="description"><?php echo __( 'Subject for the email report which will be sent to admin.', ES_TDOMAIN ); ?></p></label>
169
  </th>
170
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($this->form['ig_es_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
171
  </tr>
172
  <tr class="es-admin active-settings">
173
  <th scope="row">
174
  <label for="elp"><?php echo __( 'Sent Report Content', ES_TDOMAIN ); ?>
175
+ <p class="description"><?php echo __( 'Content for the email report which will be sent to admin.<br />(Available Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)', ES_TDOMAIN ); ?></p></label>
176
  </th>
177
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($this->form['ig_es_sentreport'])); ?></textarea></td>
178
  </tr>
183
  ?>
184
  <tr class="es-signup-confirmation hidden">
185
  <th scope="row">
186
+ <label for="elp"><?php echo __( 'Double Opt-In Email Subject (Confirmation Email)', ES_TDOMAIN ); ?>
187
+ <p class="description"><?php echo __( 'Subject for the confirmation email to be sent for Double Opt-In whenever a subscriber signs up.', ES_TDOMAIN ); ?></p></label>
188
  </th>
189
  <td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($this->form['ig_es_confirmsubject'])); ?>" size="60" maxlength="225" /></td>
190
  </tr>
191
  <tr class="es-signup-confirmation hidden">
192
  <th scope="row">
193
+ <label for="elp"><?php echo __('Double Opt-In Email Content (Confirmation Email)', ES_TDOMAIN); ?>
194
+ <p class="description"><?php echo __( 'Content for the confirmation email to be sent for Double Opt-In whenever a subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)', ES_TDOMAIN ); ?></p></label>
195
  </th>
196
  <td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($this->form['ig_es_confirmcontent'])); ?></textarea></td>
197
  </tr>
198
  <tr class="es-signup-confirmation hidden">
199
  <th scope="row">
200
+ <label for="elp"><?php echo __( 'Double Opt-In Confirmation Link', ES_TDOMAIN ); ?><p class="description">
201
  <?php echo __( 'It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
202
  </th>
203
  <td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($this->form['ig_es_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
204
  </tr>
205
  <tr class="es-signup-confirmation hidden">
206
  <th scope="row">
207
+ <label for="elp"><?php echo __( 'Text to display after an email address is successfully subscribed from Double Opt-In (Confirmation) Email', ES_TDOMAIN ); ?>
208
  <p class="description"><?php echo __( 'This text will be displayed once user clicks on email confirmation link from the Double Opt In (confirmation) Email.', ES_TDOMAIN ); ?></p></label>
209
  </th>
210
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($this->form['ig_es_successmsg'])); ?></textarea></td>
212
  <!-------------------------------------------------------------------------------->
213
  <tr class="es-signup-confirmation hidden">
214
  <th scope="row">
215
+ <label for="elp"><?php echo __( 'Send Welcome Email to New Subscribers after Sign Up?', ES_TDOMAIN ); ?>
216
  <p class="description"><?php echo __( 'To send welcome email to subscriber after successful signup. This option must be set to YES.', ES_TDOMAIN ); ?></p></label>
217
  </th>
218
  <td>
224
  </tr>
225
  <tr class="es-signup-confirmation hidden">
226
  <th scope="row">
227
+ <label for="elp"><?php echo __( 'Subject for Welcome Email', ES_TDOMAIN ); ?>
228
+ <p class="description"><?php echo __( 'Subject for the subscriber welcome email. This will be sent whenever a user\'s email is either confirmed (if Double Opt-In) / subscribed (if Single Opt-In) successfully.', ES_TDOMAIN ); ?></p></label>
229
  </th>
230
  <td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($this->form['ig_es_welcomesubject'])); ?>" size="60" maxlength="225" /></td>
231
  </tr>
232
  <tr class="es-signup-confirmation hidden">
233
  <th scope="row">
234
+ <label for="elp"><?php echo __( 'Email Content for Welcome Email', ES_TDOMAIN ); ?>
235
+ <p class="description"><?php echo __( 'Content for the subscriber welcome email whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully.<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)', ES_TDOMAIN ); ?></p>
236
  </label>
237
  </th>
238
  <td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($this->form['ig_es_welcomecontent'])); ?></textarea></td>
241
  <tr class="es-signup-confirmation hidden">
242
  <th scope="row">
243
  <label for="elp"><?php echo __( 'Unsubscribe Link', ES_TDOMAIN ); ?>
244
+ <p class="description"><?php echo __( 'This unsubscribe link is automatically added to all the emails that are sent from this plugin. It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
245
  </th>
246
  <td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($this->form['ig_es_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
247
  </tr>
248
  <tr class="es-signup-confirmation hidden">
249
  <th scope="row">
250
  <label for="elp"><?php echo __( 'Unsubscribe Text in Email', ES_TDOMAIN ); ?>
251
+ <p class="description"><?php echo __( 'The text for the unsubscribe link. This text is automatically added with unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)', ES_TDOMAIN ); ?></p></label>
252
  </th>
253
  <td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($this->form['ig_es_unsubcontent'])); ?></textarea></td>
254
  </tr>
255
  <tr class="es-signup-confirmation hidden">
256
  <th scope="row">
257
  <label for="elp"><?php echo __( 'Text to display after an email address is unsubscribed', ES_TDOMAIN ); ?>
258
+ <p class="description"><?php echo __( 'This text will be displayed once user clicks on unsubscribe link from the email.', ES_TDOMAIN ); ?></p></label>
259
  </th>
260
  <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($this->form['ig_es_unsubtext'])); ?></textarea></td>
261
  </tr>
262
  <!-------------------------------------------------------------------------------->
263
  <tr class="es-signup-confirmation hidden">
264
  <th scope="row">
265
+ <label for="elp"><?php echo __( 'Error in the Subscribe / Confirmation Link', ES_TDOMAIN ); ?>
266
+ <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on subscribe / confirmation link from the Double Opt-In (Confirmation) emails.', ES_TDOMAIN ); ?></p></label>
267
  </th>
268
  <td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($this->form['ig_es_suberror'])); ?></textarea></td>
269
  </tr>
270
  <tr class="es-signup-confirmation hidden">
271
  <th scope="row">
272
  <label for="elp"><?php echo __( 'Error in the Unsubscribe Link', ES_TDOMAIN ); ?>
273
+ <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on unsubscribe link from the emails.', ES_TDOMAIN ); ?></p></label>
274
  </th>
275
  <td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($this->form['ig_es_unsuberror'])); ?></textarea></td>
276
  </tr>
369
  </th>
370
  <td>
371
  <input type="number" name="es_cron_mailcount" id="es_cron_mailcount" value="<?php echo $this->form['ig_es_cron_mailcount']; ?>" maxlength="3" />
372
+ <p class="description"><?php echo __( '(Your web host has limits. We suggest 50 emails per hour to be safe.)', ES_TDOMAIN ) ?></p>
373
  </td>
374
  </tr>
375
  <tr class="es-cron hidden">
376
  <th scope="row">
377
+ <label for="tag-image"><?php echo __( 'Cron Report', ES_TDOMAIN ); ?>
378
+ <p class="description"><?php echo __( 'Email to admin whenever a cron URL is triggered from your server. (Available Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)', ES_TDOMAIN ); ?></p>
379
  </label>
380
  </th>
381
  <td>
386
  <td colspan=2>
387
  <div class="tool-box">
388
  <h3><?php echo __( 'What is Cron (auto emails) and how to setup Cron Job?', ES_TDOMAIN ); ?></h3>
389
+ <li><?php echo __( '<a target="_blank" href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails/">What is Cron?</a>', ES_TDOMAIN ); ?></li>
390
+ <li><?php echo __( '<a target="_blank" href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/">Setup cron job in Plesk</a>', ES_TDOMAIN ); ?></li>
391
+ <li><?php echo __( '<a target="_blank" href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/">Setup cron job in cPanal</a>', ES_TDOMAIN ); ?></li>
392
+ <li><?php echo __( '<a target="_blank" href="https://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/">Hosting does not support cron jobs?</a>', ES_TDOMAIN ); ?></li><br>
393
  </div>
394
  </td>
395
  </tr>
487
  }
488
  $form['ig_es_cron_mailcount'] = $es_cron_mailcount;
489
 
490
+ $blogname = get_option('blogname');
491
  $es_cron_adminmail = get_option('ig_es_cron_adminmail', '');
492
  if($es_cron_adminmail == "") {
493
+ add_option('ig_es_cron_adminmail', "Hi Admin,\r\n\r\nCron URL has been triggered successfully on ###DATE### for the email ###SUBJECT###. And it sent email to ###COUNT### recipient(s).\r\n\r\nBest,\r\n".$blogname."");
494
  $es_cron_adminmail = get_option('ig_es_cron_adminmail');
495
  }
496
  $form['ig_es_cron_adminmail'] = $es_cron_adminmail;
subscribers/view-subscriber-import.php CHANGED
@@ -155,7 +155,7 @@ if ( ! defined( 'ABSPATH' ) ) {
155
  <?php echo __( 'Select CSV file', ES_TDOMAIN ); ?>
156
  <p class="description">
157
  <?php echo __( 'Check CSV structure ', ES_TDOMAIN ); ?>
158
- <a target="_blank" href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/"><?php echo __( 'from here', ES_TDOMAIN ); ?></a>
159
  </p>
160
  </label>
161
  </th>
155
  <?php echo __( 'Select CSV file', ES_TDOMAIN ); ?>
156
  <p class="description">
157
  <?php echo __( 'Check CSV structure ', ES_TDOMAIN ); ?>
158
+ <a target="_blank" href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/"><?php echo __( 'from here', ES_TDOMAIN ); ?></a>
159
  </p>
160
  </label>
161
  </th>