Email Subscribers & Newsletters - Version 3.3.5

Version Description

(21.08.2017) =

  • New: UI & structure for Help & Info page
  • Fix: Some users were getting error - Cannot modify header information headers already sent - when publishing/accessing a post
  • Fix: Unable to select Opt In type from Settings
  • Fix: In-built translations were not loading
  • Fix: CSS getting included in all admin pages
  • Fix: Missing tag on Help & Info menu
  • Fix: Enable to translate 'Add Subscription Form' FAQ on Help & Info page
  • Update: Improvement in logic to get post author name for keyword ###POSTAUTHOR###
  • Update: Improved default content for welcome email
  • Update: Do not include ###GROUP### name by default in welcome email. Admin can add ###GROUP### name manually using keyword (New users only)
  • Update: Text improvement at few places
  • Update: POT file
  • Tweak: Show Cron menu before User Roles menu in Email Subscribers -> Settings for better accessibility
  • Tweak: Use email dashicon instead of mail image for Email Subscribers menu
  • Tweak: Use search dashicon instead of preview image for Reports menu
  • Tweak: Use no dashicon instead of delete image for Reports menu
Download this release

Release Info

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

Code changes from version 3.3.4 to 3.3.5

changelog.txt CHANGED
@@ -4,6 +4,25 @@ 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
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ************************************************************Version 3.3.5************************************************************
8
+
9
+ * New: UI & structure for Help & Info page
10
+ * Fix: Some users were getting error - Cannot modify header information – headers already sent - when publishing/accessing a post
11
+ * Fix: Unable to select Opt In type from Settings
12
+ * Fix: In-built translations were not loading
13
+ * Fix: CSS getting included in all admin pages
14
+ * Fix: Missing </span> tag on Help & Info menu
15
+ * Fix: Enable to translate 'Add Subscription Form' FAQ on Help & Info page
16
+ * Update: Improvement in logic to get post author name for keyword ###POSTAUTHOR###
17
+ * Update: Improved default content for welcome email
18
+ * Update: Do not include ###GROUP### name by default in welcome email. Admin can add ###GROUP### name manually using keyword (New users only)
19
+ * Update: Text improvement at few places
20
+ * Update: POT file
21
+ * Tweak: Show Cron menu before User Roles menu in Email Subscribers -> Settings for better accessibility
22
+ * Tweak: Use email dashicon instead of mail image for Email Subscribers menu
23
+ * Tweak: Use search dashicon instead of preview image for Reports menu
24
+ * Tweak: Use no dashicon instead of delete image for Reports menu
25
+
26
  ************************************************************Version 3.3.4************************************************************
27
 
28
  * New: Keyword ###POSTAUTHOR### to display Post Author name in Post Notification emails
classes/es-register.php CHANGED
@@ -140,7 +140,7 @@ class es_cls_registerhook {
140
  }
141
 
142
  add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
143
- __( 'Email Subscribers', 'email-subscribers' ), 'admin_dashboard', 'email-subscribers', array( 'es_cls_registerhook', 'es_admin_option'), ES_URL.'images/mail.png', 51 );
144
 
145
  add_submenu_page('email-subscribers', __( 'Subscribers', ES_TDOMAIN ),
146
  __( 'Subscribers', ES_TDOMAIN ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
@@ -161,7 +161,7 @@ class es_cls_registerhook {
161
  __( 'Reports', ES_TDOMAIN ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ));
162
 
163
  add_submenu_page('email-subscribers', __( 'Help & Info', ES_TDOMAIN ),
164
- __( '<span style="color:#f18500;font-weight:bolder;">Help & Info', ES_TDOMAIN ), 'edit_posts', 'es-general-information', array( 'es_cls_intermediate', 'es_information' ));
165
  }
166
 
167
  public static function es_load_scripts() {
@@ -495,6 +495,11 @@ class es_cls_registerhook {
495
 
496
  // Function to show any notices in admin section
497
  public static function es_add_admin_notices() {
 
 
 
 
 
498
  ?>
499
  <style type="text/css">
500
  a.es-admin-btn {
@@ -515,7 +520,6 @@ class es_cls_registerhook {
515
  margin-left: 20px;
516
  font-weight: 400;
517
  }
518
-
519
  a.es-admin-btn:hover {
520
  color: #FFF;
521
  background-color: #363b3f;
@@ -570,6 +574,14 @@ class es_cls_registerhook {
570
  box-shadow: none;
571
  padding: 0 3.6em;
572
  }
 
 
 
 
 
 
 
 
573
  .es-button.secondary {
574
  color: #545454!important;
575
  border-color: #d9dcda!important;
@@ -660,10 +672,10 @@ class es_cls_registerhook {
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">
@@ -671,11 +683,6 @@ class es_cls_registerhook {
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();
@@ -690,13 +697,11 @@ class es_cls_registerhook {
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');
@@ -705,46 +710,55 @@ class es_cls_registerhook {
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">
717
  <div class="es-form-wrapper">
718
  <div class="es-form-headline">
719
- <div class="es-mainheadline"><?php _e('Email Subscribers', ES_TDOMAIN); ?> <u><?php _e('is getting even better!', ES_TDOMAIN); ?></u></div>
720
- <div class="es-subheadline"><?php _e('But I need you to', ES_TDOMAIN); ?> <strong><?php _e('help me prioritize', ES_TDOMAIN); ?></strong>! <?php _e('Please send your response today.', ES_TDOMAIN); ?></div>
721
  </div>
722
  <form name="es-survey-form" action="#" method="POST" accept-charset="utf-8">
723
  <div class="es-container-1 es-clearfix">
724
  <div class="es-form-field es-left">
725
  <div class="es-profile">
726
  <div class="es-profile-info">
727
- <div style="font-size: 1.218em;padding-bottom: 0.5em;display: block;font-weight: bold;color: #ffd3a2;"><?php echo __("Here's how you use ES:",ES_TDOMAIN); ?></div>
728
  <ul style="margin: 0 0.5em;">
729
  <li class="es-profile-txt">
730
  <?php
731
- if($es_data['post_notification'] > $es_data['newsletter']){
732
- _e('Used Post Notifications more often than Newsletter', ES_TDOMAIN);
733
  } else if($es_data['newsletter'] > $es_data['post_notification']){
734
- _e('Used Newsletter more often than Post Notifications', ES_TDOMAIN);
735
  } else{
736
- _e('Used Post Notification &amp; Newsletter equally', ES_TDOMAIN);
 
 
 
 
 
 
 
 
 
 
 
737
  }
738
  ?>
739
  </li>
740
- <li class="es-profile-txt"> <?php echo __('Have ',ES_TDOMAIN) .$es_data['es_active_subscribers'] . __(' Active Subscribers', ES_TDOMAIN); ?></li>
741
- <li class="es-profile-txt"> <?php echo __('Post ',ES_TDOMAIN) .$es_data['es_avg_post_cnt'] . __(' blog per week', ES_TDOMAIN); ?></li>
742
  <li class="es-profile-txt">
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
  ?>
750
  </li>
@@ -755,50 +769,51 @@ class es_cls_registerhook {
755
  <input type="hidden" name="es_data[data][es_active_subscribers]" value="<?php echo $es_data['es_active_subscribers']; ?>">
756
  <input type="hidden" name="es_data[data][es_total_subscribers]" value="<?php echo $es_data['es_total_subscribers']; ?>">
757
  <input type="hidden" name="es_data[data][es_avg_post_cnt]" value="<?php echo $es_data['es_avg_post_cnt']; ?>">
758
- <input type="hidden" name="es_data[es-survey-version]" value="0.2">
 
759
  </ul>
760
  </div>
761
  </div>
762
  </div>
763
  <div class="es-form-field es-right">
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>
771
- <label title="days"><input type="radio" name="es_data[design_tmpl]" value="2"><?php _e('Later', ES_TDOMAIN); ?></label>
772
  </li>
773
- <li class="es-list-item"><?php _e('Spam Check, Scheduling... (Better Email Delivery)', ES_TDOMAIN); ?><br>
774
- <label><input type="radio" name="es_data[email_control]" value="0"><?php _e('Right now!', 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>
781
- <label><input type="radio" name="es_data[cleanup]" value="2"><?php _e('Later', ES_TDOMAIN); ?></label>
782
  </li>
783
- <li class="es-list-item"><?php _e('Advanced Reporting', ES_TDOMAIN); ?><br>
784
- <label><input type="radio" name="es_data[report]" value="0"><?php _e('Right now!', 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>
@@ -807,9 +822,9 @@ class es_cls_registerhook {
807
  <div class="es-rocket"><img src="<?php echo ES_URL?>images/es-growth-rocket.png"/></div>
808
  </div>
809
  <div class="es-msg-wrap">
810
- <div class="es-logo-wrapper"><img style="width:5%;" src="<?php echo ES_URL ?>images/icon-128x128.png"></div>
811
- <div class="es-msg-text es-yes"><?php _e('Thank you!', ES_TDOMAIN); ?></div>
812
- <div class="es-msg-text es-no"><?php _e('No issues, have a nice day!', ES_TDOMAIN); ?></div>
813
  </div>
814
  </div>
815
 
@@ -886,7 +901,7 @@ class es_cls_registerhook {
886
  $response = wp_remote_request( $url, $options );
887
  if ( wp_remote_retrieve_response_code( $response ) == 200 ) {
888
  $data = json_decode($response['body'], true);
889
- if ( $data != 'error' ) {
890
  if(!empty($data) && !empty($data['success'])){
891
  update_option('es_survey_done', true);
892
  }
140
  }
141
 
142
  add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
143
+ __( 'Email Subscribers', 'email-subscribers' ), 'admin_dashboard', 'email-subscribers', array( 'es_cls_registerhook', 'es_admin_option'), 'dashicons-email', 51 );
144
 
145
  add_submenu_page('email-subscribers', __( 'Subscribers', ES_TDOMAIN ),
146
  __( 'Subscribers', ES_TDOMAIN ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
161
  __( 'Reports', ES_TDOMAIN ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ));
162
 
163
  add_submenu_page('email-subscribers', __( 'Help & Info', ES_TDOMAIN ),
164
+ __( '<span style="color:#f18500;font-weight:bolder;">Help & Info</span>', ES_TDOMAIN ), 'edit_posts', 'es-general-information', array( 'es_cls_intermediate', 'es_information' ));
165
  }
166
 
167
  public static function es_load_scripts() {
495
 
496
  // Function to show any notices in admin section
497
  public static function es_add_admin_notices() {
498
+
499
+ $screen = get_current_screen();
500
+ if( stripos($screen->id, 'email-subscribers' ) === false ) return;
501
+ if( get_option('es_survey_done') == 1 ) return;
502
+
503
  ?>
504
  <style type="text/css">
505
  a.es-admin-btn {
520
  margin-left: 20px;
521
  font-weight: 400;
522
  }
 
523
  a.es-admin-btn:hover {
524
  color: #FFF;
525
  background-color: #363b3f;
574
  box-shadow: none;
575
  padding: 0 3.6em;
576
  }
577
+ .es-heading {
578
+ font-size: 1.218em;
579
+ padding-bottom: 0.5em;
580
+ padding-top: 0.5em;
581
+ display: block;
582
+ font-weight: bold;
583
+ color: #ffd3a2;
584
+ }
585
  .es-button.secondary {
586
  color: #545454!important;
587
  border-color: #d9dcda!important;
672
  line-height: 0;
673
  height: 0;
674
  }
 
675
  .es-survey-next {
676
  text-decoration: none;
677
  color: #fff;
678
+ margin-top: -1em!important;
679
  }
680
  </style>
681
  <script type="text/javascript">
683
  jQuery('.es-list-item:nth-child(2)').show();
684
  jQuery('.es-list-item:nth-child(2)').addClass('current');
685
  jQuery('.es-form-container').on('click', '.es-survey-next', function(){
 
 
 
 
 
686
  jQuery('.es-list-item.current').hide();
687
  jQuery('.es-list-item.current').next().show().addClass('current');
688
  jQuery('.es-list-item.current').prev('.es-list-item').hide();
697
 
698
  <?php
699
 
700
+ // 13th June 17 - 0.1
701
  // updated on 5th July 17 - 0.2
702
  // updated on 26th July 17 - 0.2
703
+ // updated on 19th Aug 17 - 0.3
704
  $es_data = es_cls_dbquery::es_survey_res();
 
 
 
705
 
706
  // Check days passed from this update (v3.3.4)
707
  $timezone_format = _x('Y-m-d', 'timezone date format');
710
 
711
  if ( $es_update_date === false ) {
712
  $es_update_date = $es_current_date;
713
+ add_option( 'ig_es_update_v_3_3_4_date',$es_update_date );
714
  }
715
 
716
  $date_diff = floor( ( strtotime($es_current_date) - strtotime($es_update_date) ) / (3600 * 24) );
717
+ if($date_diff < 30) return;
718
 
719
  ?>
720
 
721
  <div class="es-form-container wrap">
722
  <div class="es-form-wrapper">
723
  <div class="es-form-headline">
724
+ <div class="es-mainheadline"><?php echo __( 'Email Subscribers', ES_TDOMAIN ); ?> <u><?php echo __( 'is getting even better!', ES_TDOMAIN ); ?></u></div>
725
+ <div class="es-subheadline"><?php echo __( 'But I need you to', ES_TDOMAIN ); ?> <strong><?php echo __( 'help me prioritize', ES_TDOMAIN ); ?></strong>! <?php echo __( 'Please send your response today.', ES_TDOMAIN ); ?></div>
726
  </div>
727
  <form name="es-survey-form" action="#" method="POST" accept-charset="utf-8">
728
  <div class="es-container-1 es-clearfix">
729
  <div class="es-form-field es-left">
730
  <div class="es-profile">
731
  <div class="es-profile-info">
732
+ <div class="es-heading"><?php echo __( "Here's how you use ES:",ES_TDOMAIN ); ?></div>
733
  <ul style="margin: 0 0.5em;">
734
  <li class="es-profile-txt">
735
  <?php
736
+ if( $es_data['post_notification'] > $es_data['newsletter'] ) {
737
+ echo __( 'Post Notifications more often than Newsletter', ES_TDOMAIN );
738
  } else if($es_data['newsletter'] > $es_data['post_notification']){
739
+ echo __( 'Newsletter more often than Post Notifications', ES_TDOMAIN );
740
  } else{
741
+ echo __( 'Post Notification &amp; Newsletter equally', ES_TDOMAIN );
742
+ }
743
+ ?>
744
+ </li>
745
+ <li class="es-profile-txt"> <?php echo __('Have ',ES_TDOMAIN ) .$es_data['es_active_subscribers'] . __(' Active Subscribers', ES_TDOMAIN); ?></li>
746
+ <li class="es-profile-txt"> <?php echo __('Post ',ES_TDOMAIN ) .$es_data['es_avg_post_cnt'] . __(' blog per week', ES_TDOMAIN); ?></li>
747
+ <li class="es-profile-txt">
748
+ <?php
749
+ if( $es_data['cron'] > $es_data['immediately'] ) {
750
+ echo __( 'Send emails via Cron', ES_TDOMAIN );
751
+ } else {
752
+ echo __( 'Send emails Immediately', ES_TDOMAIN );
753
  }
754
  ?>
755
  </li>
 
 
756
  <li class="es-profile-txt">
757
  <?php
758
+ if ( $es_data['es_opt_in_type'] == 'Double Opt In' ) {
759
+ echo __( 'Using Double Opt In', ES_TDOMAIN );
760
  } else {
761
+ echo __( 'Using Single Opt In', ES_TDOMAIN );
762
  }
763
  ?>
764
  </li>
769
  <input type="hidden" name="es_data[data][es_active_subscribers]" value="<?php echo $es_data['es_active_subscribers']; ?>">
770
  <input type="hidden" name="es_data[data][es_total_subscribers]" value="<?php echo $es_data['es_total_subscribers']; ?>">
771
  <input type="hidden" name="es_data[data][es_avg_post_cnt]" value="<?php echo $es_data['es_avg_post_cnt']; ?>">
772
+ <input type="hidden" name="es_data[data][es_opt_in_type]" value="<?php echo $es_data['es_opt_in_type']; ?>">
773
+ <input type="hidden" name="es_data[es-survey-version]" value="0.3">
774
  </ul>
775
  </div>
776
  </div>
777
  </div>
778
  <div class="es-form-field es-right">
779
+ <div class="es-heading"><?php echo __( 'How soon do you want these new features?', ES_TDOMAIN ); ?></div>
780
  <div class="es-right-info">
781
  <div class="es-left">
782
+ <ul style="margin-top:0;"><span class="es-counter">
783
+ <li class="es-list-item"><?php echo __( 'Beautiful Email Designs', ES_TDOMAIN ); ?><br>
784
+ <label title="days"><input checked="" type="radio" name="es_data[design_tmpl]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
785
+ <label title="days"><input type="radio" name="es_data[design_tmpl]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
786
+ <label title="days"><input type="radio" name="es_data[design_tmpl]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
787
  </li>
788
+ <li class="es-list-item"><?php echo __( 'Spam Check, Scheduling... (Better Email Delivery)', ES_TDOMAIN); ?><br>
789
+ <label title="days"><input type="radio" name="es_data[email_control]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
790
+ <label title="days"><input checked="" type="radio" name="es_data[email_control]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
791
+ <label title="days"><input type="radio" name="es_data[email_control]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
792
  </li>
793
+ <li class="es-list-item"><?php echo __( 'Discard Fake / Bouncing Emails', ES_TDOMAIN); ?><br>
794
+ <label title="days"><input type="radio" name="es_data[cleanup]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
795
+ <label title="days"><input checked="" type="radio" name="es_data[cleanup]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
796
+ <label title="days"><input type="radio" name="es_data[cleanup]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
797
  </li>
798
+ <li class="es-list-item"><?php echo __( 'Advanced Reporting', ES_TDOMAIN ); ?><br>
799
+ <label title="days"><input type="radio" name="es_data[report]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
800
+ <label title="days"><input type="radio" name="es_data[report]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
801
+ <label title="days"><input checked="" type="radio" name="es_data[report]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
802
  </li>
803
  <li class="es-list-item">
804
  <div>
805
+ <input style="width: 70%;vertical-align: middle;display: inline-block;" placeholder="Enter your email to get early access" type="email" name="es_data[email]" value="<?php echo get_option( 'admin_email' ); ?>">
806
  <div class="" style="display: inline-block;margin-left: 0.4em;width: 23%;vertical-align: middle;">
807
  <input data-val="yes" type="submit" id="es-yes" value="Alright, Send It All" class="es-button button primary">
808
  </div>
809
  <div class="es-loader-wrapper"><img src="<?php echo ES_URL ?>images/spinner-2x.gif"></div>
810
+ <a id="es-no" data-val="no" class=""><?php echo __( 'Nah, I don\'t like improvements', ES_TDOMAIN ); ?></a>
811
  </div>
812
  </li>
813
  </ul>
814
  </div>
815
  <div class="es-right">
816
+ <a href="#" class="es-survey-next button primary"><?php echo __( 'Next', ES_TDOMAIN ); ?> </a>
817
  </div>
818
  </div>
819
  </div>
822
  <div class="es-rocket"><img src="<?php echo ES_URL?>images/es-growth-rocket.png"/></div>
823
  </div>
824
  <div class="es-msg-wrap">
825
+ <div class="es-logo-wrapper"><img style="width:5%;" src="<?php echo ES_URL ?>images/es-logo-128x128.png"></div>
826
+ <div class="es-msg-text es-yes"><?php echo __( 'Thank you!', ES_TDOMAIN ); ?></div>
827
+ <div class="es-msg-text es-no"><?php echo __( 'No issues, have a nice day!', ES_TDOMAIN ); ?></div>
828
  </div>
829
  </div>
830
 
901
  $response = wp_remote_request( $url, $options );
902
  if ( wp_remote_retrieve_response_code( $response ) == 200 ) {
903
  $data = json_decode($response['body'], true);
904
+ if ( empty($data['error']) ) {
905
  if(!empty($data) && !empty($data['success'])){
906
  update_option('es_survey_done', true);
907
  }
classes/es-sendmail.php CHANGED
@@ -325,13 +325,11 @@ class es_cls_sendmail {
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);
@@ -512,18 +510,18 @@ class es_cls_sendmail {
512
  if( $type == "newsletter" || $type == "notification" ) {
513
  $count = $count - 1;
514
  es_cls_sentmail::es_sentmail_ups($sendguid, $subject);
515
- if($adminmail != "") {
516
 
517
  $subject = get_option('ig_es_sentreport_subject', 'nosubjectexists');
518
  if ( $subject == "" || $subject == "nosubjectexists") {
519
  $subject = es_cls_common::es_sent_report_subject();
520
  }
521
 
522
- if($mailsenttype == "Cron") {
523
  $subject = $subject . " - Cron Email scheduled";
524
  }
525
 
526
- if($htmlmail) {
527
  $reportmail = get_option('ig_es_sentreport', 'nooptionexists');
528
  if ( $reportmail == "" || $reportmail == "nooptionexists") {
529
  $reportmail = es_cls_common::es_sent_report_html();
325
  $post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
326
  }
327
 
328
+ // To get post author name for ###POSTAUTHOR###
329
+ $post_author_id = $post->post_author;
330
+ $post_author = get_the_author_meta( 'display_name' , $post_author_id );
331
 
332
+ $content = str_replace('###POSTAUTHOR###', $post_author, $content);
 
 
 
333
  $content = str_replace('###POSTTITLE###', $post_title, $content);
334
  $content = str_replace('###POSTLINK###', $post_link, $content);
335
  $content = str_replace('###POSTIMAGE###', $post_thumbnail_link, $content);
510
  if( $type == "newsletter" || $type == "notification" ) {
511
  $count = $count - 1;
512
  es_cls_sentmail::es_sentmail_ups($sendguid, $subject);
513
+ if( $adminmail != "" ) {
514
 
515
  $subject = get_option('ig_es_sentreport_subject', 'nosubjectexists');
516
  if ( $subject == "" || $subject == "nosubjectexists") {
517
  $subject = es_cls_common::es_sent_report_subject();
518
  }
519
 
520
+ if( $mailsenttype == "Cron" ) {
521
  $subject = $subject . " - Cron Email scheduled";
522
  }
523
 
524
+ if( $htmlmail ) {
525
  $reportmail = get_option('ig_es_sentreport', 'nooptionexists');
526
  if ( $reportmail == "" || $reportmail == "nooptionexists") {
527
  $reportmail = es_cls_common::es_sent_report_html();
email-subscribers.php CHANGED
@@ -3,11 +3,11 @@
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
12
  * Domain Path: /languages/
13
  * License: GPLv3
@@ -41,14 +41,48 @@ add_action( 'wp_ajax_es_submit_survey', array( 'es_cls_registerhook', 'es_submit
41
 
42
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
43
 
 
44
  function es_textdomain() {
45
  load_plugin_textdomain( 'email-subscribers' , false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
46
  }
47
 
48
- add_action( 'plugins_loaded', 'es_textdomain' );
49
  add_action( 'transition_post_status', array( 'es_cls_sendmail', 'es_prepare_notification' ), 10, 3 );
50
 
51
  add_action( 'user_register', 'es_sync_registereduser' );
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  register_activation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_activation' ) );
54
  register_deactivation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_deactivation' ) );
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.5
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.4
10
+ * Tested up to: 4.8.1
11
  * Text Domain: email-subscribers
12
  * Domain Path: /languages/
13
  * License: GPLv3
41
 
42
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
43
 
44
+ add_action( 'plugins_loaded', 'es_textdomain' );
45
  function es_textdomain() {
46
  load_plugin_textdomain( 'email-subscribers' , false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
47
  }
48
 
 
49
  add_action( 'transition_post_status', array( 'es_cls_sendmail', 'es_prepare_notification' ), 10, 3 );
50
 
51
  add_action( 'user_register', 'es_sync_registereduser' );
52
 
53
+ // To store current date and version in db with each update
54
+ add_action( 'upgrader_process_complete', 'es_update_current_version_and_date', 10, 2 );
55
+ function es_update_current_version_and_date( $upgrader_object, $options ) {
56
+
57
+ // The path to our plugin's main file
58
+ $our_plugin = plugin_basename( __FILE__ );
59
+
60
+ // If an update has taken place and the updated type is plugins and the plugins element exists
61
+ if( $options['action'] == 'update' && $options['type'] == 'plugin' && isset( $options['plugins'] ) ) {
62
+
63
+ // Iterate through the plugins being updated and check if ours is there
64
+ foreach( $options['plugins'] as $plugin ) {
65
+
66
+ if( $plugin == $our_plugin ) {
67
+ $es_plugin_meta_data = get_plugin_data( WP_PLUGIN_DIR.'/email-subscribers/email-subscribers.php' );
68
+ $es_current_version = $es_plugin_meta_data['Version'];
69
+
70
+ $timezone_format = _x('Y-m-d H:i:s', 'timezone date format');
71
+ $es_current_date = date_i18n($timezone_format);
72
+
73
+ $es_current_version_date_details = array(
74
+ 'es_current_version' => '',
75
+ 'es_current_date' => ''
76
+ );
77
+
78
+ $es_current_version_date_details['es_current_version'] = $es_current_version;
79
+ $es_current_version_date_details['es_current_date'] = $es_current_date;
80
+
81
+ update_option( 'ig_es_current_version_date_details', $es_current_version_date_details );
82
+ }
83
+ }
84
+ }
85
+ }
86
+
87
  register_activation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_activation' ) );
88
  register_deactivation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_deactivation' ) );
help/help.php CHANGED
@@ -7,17 +7,20 @@ if ( ! defined( 'ABSPATH' ) ) {
7
 
8
  ?>
9
 
10
- <div class="about_wrap">
11
 
12
  <style>
13
- .about_wrap {
14
- right: 1.3em;
15
  background-color: transparent;
 
16
  margin: 25px 40px 0 20px;
17
  box-shadow: none;
18
  -webkit-box-shadow: none;
19
  }
20
- .about_header .wrap .button-hero {
 
 
 
21
  color: #FFFFFF!important;
22
  border-color: #03a025!important;
23
  background: #03a025 !important;
@@ -26,35 +29,158 @@ if ( ! defined( 'ABSPATH' ) ) {
26
  height: 2em;
27
  line-height: 1em;
28
  }
29
- .about_header .wrap .button-hero:hover {
30
  color: #FFF!important;
31
  background: #0AAB2E!important;
32
  border-color: #0AAB2E!important;
33
  }
34
- .about_header {
35
  background-color: #FFF;
36
- padding: 1em 1em 0.5em 1em;
37
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
38
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
39
  }
40
-
 
 
41
  .es-ltr {
42
  width: 20em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  }
44
  </style>
45
 
46
- <div class="about_header">
 
 
 
 
 
47
  <h1><?php echo __( 'Welcome to Email Subscribers!', ES_TDOMAIN ); ?></h1>
48
- <div><?php echo __( 'Thanks for installing and we hope you will enjoy using Email Subscribers.', ES_TDOMAIN ); ?></div>
49
- <div class="wrap">
50
  <table class="form-table">
51
  <tr>
52
- <th scope="row"><?php echo __( 'For more help and tips...', ES_TDOMAIN ); ?></th>
53
  <td>
54
  <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
55
- <input class="es-ltr" type="text" name="email" id="email" placeholder="Email" />
56
  <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
57
- <input type="submit" name="submit" id="submit" class="button button-hero" value="Subscribe">
58
  <br/>
59
  <div id="klawoo_response"></div>
60
  </form>
@@ -62,8 +188,16 @@ if ( ! defined( 'ABSPATH' ) ) {
62
  </tr>
63
  </table>
64
  </div>
 
 
 
 
 
 
 
 
65
  </div>
66
- <div class="wrap" style="text-align:right;">
67
  <?php echo sprintf(__( 'Like Email Subscribers? If yes, then consider %s to support further developments.', ES_TDOMAIN ), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA" target="_blank">' . __( 'donating to us', ES_TDOMAIN ) .'</a>' ); ?>
68
  </div>
69
 
@@ -95,95 +229,224 @@ if ( ! defined( 'ABSPATH' ) ) {
95
  });
96
  </script>
97
 
98
- <br/>
99
- <h1><?php echo __( 'Frequently Asked Questions', ES_TDOMAIN ); ?></h1>
100
- </div>
101
 
102
- <div class="wrap about-wrap">
103
- <style>
104
- .es_faq_list {
105
- margin-left: 1em;
106
- }
107
- .es_faq {
108
- margin-bottom: 1.3em;
109
- font-weight: 700;
110
- }
111
-
112
- </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
 
114
- <?php $subbox_code = esc_html( '<?php es_subbox($namefield = "YES", $desc = "", $group = "Public"); ?>' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>
122
- b) Go to Dashboard->Appearance->Widgets. Click on widget Email subscribers and click Add Widget button or drag it to the sidebar on the right <i>Or</i><br>
123
- c) Copy and past this php code to your desired template location : <strong>'. $subbox_code .'</strong>', ES_TDOMAIN ); ?>
 
 
 
 
 
 
 
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>
7
 
8
  ?>
9
 
10
+ <div class="wrap about-wrap es">
11
 
12
  <style>
13
+ .wrap.about-wrap {
 
14
  background-color: transparent;
15
+ position: relative;
16
  margin: 25px 40px 0 20px;
17
  box-shadow: none;
18
  -webkit-box-shadow: none;
19
  }
20
+ .about-wrap.es {
21
+ max-width: 100%
22
+ }
23
+ .about-header .wrap .button-hero {
24
  color: #FFFFFF!important;
25
  border-color: #03a025!important;
26
  background: #03a025 !important;
29
  height: 2em;
30
  line-height: 1em;
31
  }
32
+ .about-header .wrap .button-hero:hover {
33
  color: #FFF!important;
34
  background: #0AAB2E!important;
35
  border-color: #0AAB2E!important;
36
  }
37
+ .about-header {
38
  background-color: #FFF;
39
+ padding: 1em 1em 2.5em 1em;
40
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
41
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
42
  }
43
+ .wrap.klawoo-form {
44
+ margin: 20px 20px 0 2px;
45
+ }
46
  .es-ltr {
47
  width: 20em;
48
+ height: 2em;
49
+ }
50
+ .es-about-text {
51
+ margin: 0;
52
+ font-size: 1.3em;
53
+ padding-top: 1em;
54
+ }
55
+ .wrap.about-wrap h1 {
56
+ font-size: 2.5em;
57
+ line-height: 0.9em;
58
+ }
59
+ .feature-section.col>div {
60
+ position: relative;
61
+ width: 29.95%;
62
+ margin-right: 4.999999999%;
63
+ float: left
64
+ }
65
+ .feature-section.col.two-col>div {
66
+ width: 45.95%
67
+ }
68
+ .feature-section.col img {
69
+ width: 150px;
70
+ border: none;
71
+ }
72
+ .feature-section.col p {
73
+ margin-bottom: 1.5em
74
+ }
75
+ .about-wrap .feature-section h4 {
76
+ margin-top: .4em
77
+ }
78
+ .about-wrap.es .feature-section {
79
+ display: block!important
80
+ }
81
+ .about-wrap [class$=col] .last-feature {
82
+ margin-right: 0
83
+ }
84
+ .about-wrap .es-badge,.es-support {
85
+ position: absolute;
86
+ top: 0;
87
+ }
88
+ .about-wrap .es-badge {
89
+ right: 1.3em;
90
+ color: #E1564B;
91
+ background-color: transparent;
92
+ padding-top: 100px;
93
+ box-shadow: none;
94
+ -webkit-box-shadow: none;
95
+ background-image: url(../wp-content/plugins/email-subscribers/images/es-logo-64x64.png);
96
+ }
97
+ .es-badge {
98
+ background: url(../wp-content/plugins/email-subscribers/images/es-logo-64x64.png) center no-repeat;
99
+ color: #FFF;
100
+ font-size: 12px;
101
+ text-align: center;
102
+ font-weight: 600;
103
+ margin: 5px 0 0;
104
+ padding-top: 110px;
105
+ height: 24px;
106
+ display: inline-block;
107
+ width: 150px;
108
+ text-rendering: optimizeLegibility;
109
+ box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
110
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
111
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
112
+ }
113
+ .es-support {
114
+ color: #000;
115
+ margin: 178px 0 0;
116
+ height: 10px;
117
+ width: 180px;
118
+ text-rendering: optimizeLegibility;
119
+ text-align: right;
120
+ right: 0;
121
+ margin-top: 140px;
122
+ padding-right: 1em;
123
+ }
124
+ .es-contact-us {
125
+ font-size: 20px;
126
+ line-height: 1.5em;
127
+ font-weight: 800;
128
+ margin-right: 20px;
129
+ }
130
+ .es-contact-us a {
131
+ color: #E1564B;
132
+ }
133
+ .es-donate-link {
134
+ text-align: right;
135
+ font-size: 0.8em;
136
+ margin-top: 1em;
137
+ }
138
+ .es-esaf-integration {
139
+ width: 75% !important;
140
+ }
141
+ .es-ig-integration {
142
+ width: 100% !important;
143
+ }
144
+ .es-rm-integration {
145
+ width: 79% !important;
146
+ }
147
+ .es-integration-guide {
148
+ text-align:justify;
149
+ }
150
+
151
+ .es_feature, .es_summary {
152
+ line-height: 1.7em!important;
153
+ }
154
+ .es_summary {
155
+ margin-left: 0em!important;
156
+ }
157
+ .es_feature_list, .es_faq_list {
158
+ list-style-type:disc;
159
+ margin-left: 1.5em!important;
160
+ }
161
+ .es_faq {
162
+ margin-bottom: 1em;
163
+ font-weight: 700;
164
  }
165
  </style>
166
 
167
+ <?php
168
+ $es_plugin_data = get_plugin_data( WP_PLUGIN_DIR.'/email-subscribers/email-subscribers.php' );
169
+ $es_current_version = $es_plugin_data['Version'];
170
+ ?>
171
+
172
+ <div class="about-header">
173
  <h1><?php echo __( 'Welcome to Email Subscribers!', ES_TDOMAIN ); ?></h1>
174
+ <div class="es-about-text"><?php echo __( 'Thanks for installing and we hope you will enjoy using Email Subscribers.', ES_TDOMAIN ); ?></div>
175
+ <div class="wrap klawoo-form">
176
  <table class="form-table">
177
  <tr>
178
+ <th scope="row"><?php echo __( 'Get more help and tips...', ES_TDOMAIN ); ?></th>
179
  <td>
180
  <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
181
+ <input class="es-ltr" type="text" name="email" id="email" placeholder="Your Email" />
182
  <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
183
+ <input type="submit" name="submit" id="submit" class="button button-hero" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
184
  <br/>
185
  <div id="klawoo_response"></div>
186
  </form>
188
  </tr>
189
  </table>
190
  </div>
191
+ <div class="es-badge">
192
+ <?php echo sprintf(__( "Version: %s", ES_TDOMAIN ), $es_current_version ); ?>
193
+ </div>
194
+ <div class="es-support">
195
+ <?php echo __( 'Questions? Need Help?', ES_TDOMAIN ); ?>
196
+ <div id="es-contact-us" class="es-contact-us"><a href="https://wordpress.org/support/plugin/email-subscribers" target="_blank"><?php echo __( "Contact Us", ES_TDOMAIN ); ?></a>
197
+ </div>
198
+ </div>
199
  </div>
200
+ <div class="es-donate-link">
201
  <?php echo sprintf(__( 'Like Email Subscribers? If yes, then consider %s to support further developments.', ES_TDOMAIN ), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA" target="_blank">' . __( 'donating to us', ES_TDOMAIN ) .'</a>' ); ?>
202
  </div>
203
 
229
  });
230
  </script>
231
 
232
+ <?php $subbox_code = esc_html( '<?php es_subbox($namefield = "YES", $desc = "", $group = "Public"); ?>' ); ?>
 
 
233
 
234
+ <div class="feature-section col two-col">
235
+ <div class="col">
236
+ <h3><?php echo __( 'Description', ES_TDOMAIN ); ?></h3>
237
+ <p class="es_summary">
238
+ <?php echo __( 'Email Subscribers is a complete newsletter plugin which lets you collect leads, send automated new blog post notification emails, create & send newsletters and manage all this in one single place.', ES_TDOMAIN ); ?>
239
+ </p>
240
+ <h3><?php echo __( 'Feature Overview', ES_TDOMAIN ); ?></h3>
241
+ <ul class="es_feature_list">
242
+ <li class="es_feature">
243
+ <?php echo __( 'Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Code).', ES_TDOMAIN ); ?>
244
+ </li>
245
+ <li class="es_feature">
246
+ <?php echo __( 'Configure double Opt-In and Single Opt-In facility for subscribers.', ES_TDOMAIN ); ?>
247
+ </li>
248
+ <li class="es_feature">
249
+ <?php echo __( 'Send automatic welcome email to subscribers.', ES_TDOMAIN ); ?>
250
+ </li>
251
+ <li class="es_feature">
252
+ <?php echo __( 'Send new post notification emails to subscribers when new posts are published on your website.', ES_TDOMAIN ); ?>
253
+ </li>
254
+ <li class="es_feature">
255
+ <?php echo __( 'Schedule email (Cron job) or send them manually.', ES_TDOMAIN ); ?>
256
+ </li>
257
+ <li class="es_feature">
258
+ <?php echo __( 'Send email notification to admin when a new user signs up.', ES_TDOMAIN ); ?>
259
+ </li>
260
+ <li class="es_feature">
261
+ <?php echo __( 'Automatically add Unsubscribe link in the email.', ES_TDOMAIN ); ?>
262
+ </li>
263
+ <li class="es_feature">
264
+ <?php echo __( 'Easily migrate subscribers from another app using Import & Export.', ES_TDOMAIN ); ?>
265
+ </li>
266
+ <li class="es_feature">
267
+ <?php echo __( 'Use HTML editor to compose newsletters and post notifications.', ES_TDOMAIN ); ?>
268
+ </li>
269
+ <li class="es_feature">
270
+ <?php echo __( 'Send newsletters to different groups.', ES_TDOMAIN ); ?>
271
+ </li>
272
+ <li class="es_feature">
273
+ <?php echo __( 'Get detailed sent email reports.', ES_TDOMAIN ); ?>
274
+ </li>
275
+ <li class="es_feature">
276
+ <?php echo __( 'Control user access (User Roles and Capabilities).', ES_TDOMAIN ); ?>
277
+ </li>
278
+ <li class="es_feature">
279
+ <?php echo __( 'Supports localization and internationalization.', ES_TDOMAIN ); ?>
280
+ </li>
281
+ </ul>
282
+ </div>
283
 
284
+ <div class="col last-feature">
285
+ <div class="es-form-setup">
286
+ <h3><?php echo __( 'Add Subscribe form', ES_TDOMAIN ); ?></h3>
287
+ <p class="es_faq" style="margin-left: 0em!important;">
288
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Add Subscription box to website?', ES_TDOMAIN ) . '</a>' ); ?>
289
+ </p>
290
+ <p style="line-height: 1.7em;font-size: 0.8em;margin-left: 0em!important;">
291
+ <?php echo sprintf(__( 'Use any of the following 3 methods :<br>
292
+ a) Shortcode in any page/post : <strong>[email-subscribers namefield="YES" desc="" group="Public"]</strong> <i>Or</i><br>
293
+ b) Go to Appearance -> Widgets. Click on widget Email subscribers and drag it to the sidebar on the right <i>Or</i><br>
294
+ c) Copy and past this php code to your desired template location : <strong>%s</strong>', ES_TDOMAIN ), esc_html( '<?php es_subbox($namefield = "YES", $desc = "", $group = "Public"); ?>' ) ); ?>
295
+ </p>
296
+ <h4> <?php echo __( 'Additional form settings', ES_TDOMAIN ); ?></h4>
297
+ <ul class="es_faq_list">
298
+ <li class="es_faq">
299
+ <?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/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Redirect Subscribers to a new page/url after successful sign up?', ES_TDOMAIN ) . '</a>' ); ?>
300
+ </li>
301
+ <li class="es_faq">
302
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to add captcha in Subscribe form of Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
303
+ </li>
304
+ </ul>
305
+ </div>
306
+ <br />
307
+ <div class="es-setting">
308
+ <h3><?php echo __( 'General Plugin Settings', ES_TDOMAIN ); ?></h3>
309
+ <ul class="es_faq_list">
310
+ <li class="es_faq">
311
+ <?php echo sprintf(__( 'Modify %s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-general-plugin-settings/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'default text, email contents', ES_TDOMAIN ) . '</a>' . __( ' (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User Roles', ES_TDOMAIN ) ); ?>
312
+ </li>
313
+ <li class="es_faq">
314
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
315
+ </li>
316
+ <li class="es_faq">
317
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Add/Update Existing Subscribers Group & Status?', ES_TDOMAIN ) . '</a>' ); ?>
318
+ </li>
319
+ <li class="es_faq">
320
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-change-update-translate-any-texts-from-email-subscribers/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to change/update/translate any texts from the plugin?', ES_TDOMAIN ) . '</a>' ); ?>
321
+ </li>
322
+ <li class="es_faq">
323
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to add Unsubscribe link in emails?', ES_TDOMAIN ) . '</a>' ); ?>
324
+ </li>
325
+ </ul>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ <hr />
330
+ <div class="feature-section col three-col">
331
+ <div class="col-1">
332
+ <div class="es-usage">
333
+ <h3><?php echo __( 'Usage', ES_TDOMAIN ); ?></h3>
334
+ <ul class="es_faq_list">
335
+ <li class="es_faq">
336
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-compose-and-send-newsletter-emails/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Compose and Send Newsletter Emails', ES_TDOMAIN ) . '</a>' ); ?>
337
+ </li>
338
+ <li class="es_faq">
339
+ <?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/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Compose and Send Post Notification Emails when new posts are published', ES_TDOMAIN ) . '</a>' ); ?>
340
+ </li>
341
+ <li class="es_faq">
342
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Keywords in the Post Notifications', ES_TDOMAIN ) . '</a>' ); ?>
343
+ </li>
344
+ <li class="es_faq">
345
+ <?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/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Send a test post notification email to myself/testgroup', ES_TDOMAIN ) . '</a>' ); ?>
346
+ </li>
347
+ <li class="es_faq">
348
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-check-sent-emails/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Check sent emails', ES_TDOMAIN ) . '</a>' ); ?>
349
+ </li>
350
+ </ul>
351
+ </div>
352
+ </div>
353
+ <div class="col-2">
354
+ <div class="es-cron-job">
355
+ <h3><?php echo __( 'Cron Job Setup', ES_TDOMAIN ); ?></h3>
356
+ <ul class="es_faq_list">
357
+ <li class="es_faq">
358
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Schedule Cron Emails?', ES_TDOMAIN ) . '</a>' ); ?>
359
+ </li>
360
+ <li class="es_faq">
361
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Schedule Cron Emails in cPanel', ES_TDOMAIN ) . '</a>' ); ?>
362
+ </li>
363
+ <li class="es_faq">
364
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Schedule Cron Emails in Parallels Plesk', ES_TDOMAIN ) . '</a>' ); ?>
365
+ </li>
366
+ <li class="es_faq">
367
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Hosting doesn’t support Cron Jobs?', ES_TDOMAIN ) . '</a>' ); ?>
368
+ </li>
369
+ </ul>
370
+ </div>
371
+ </div>
372
+ <div class="col-3 last-feature">
373
+ <div class="es-troubleshooting-steps">
374
+ <h3><?php echo __( 'Troubleshooting Steps', ES_TDOMAIN ); ?></h3>
375
+ <ul class="es_faq_list">
376
+ <li class="es_faq">
377
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Subscribers are not receiving Emails?', ES_TDOMAIN ) . '</a>' ); ?>
378
+ </li>
379
+ <li class="es_faq">
380
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-css-help/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'CSS Help', ES_TDOMAIN ) . '</a>' ); ?>
381
+ <li class="es_faq">
382
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-faq/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'FAQ\'s', ES_TDOMAIN ) . '</a>' ); ?>
383
+ </li>
384
+ </ul>
385
+ </div>
386
+ </div>
387
+ </div>
388
+ <hr />
389
+ <h2><?php echo __( 'Want to do more? Here\'s how..', ES_TDOMAIN ); ?></h2>
390
+ <div class="feature-section col three-col">
391
+ <div class="col-1">
392
+ <h3 style="text-align:left;"><?php echo __( 'Allow Subscribers to get subscribed to any group', ES_TDOMAIN ); ?></h3>
393
+ <div>
394
+ <img class="es-esaf-integration" alt="Group Selector" src="<?php echo ES_URL; ?>images/es-esaf-integration.png" />
395
+ </div>
396
+ <p class="es-integration-guide">
397
+ <?php echo __( 'Using our free ', ES_TDOMAIN ); ?>
398
+ <a target="_blank" href="https://wordpress.org/plugins/email-subscribers-advanced-form/"><?php echo __( 'Group Selector', ES_TDOMAIN ); ?></a>
399
+ <?php echo __( 'plugin, you can extend Email Subscribers Form functionality by providing an grouping option right next to the form.', ES_TDOMAIN ); ?>
400
+ </p>
401
+ <p class="es-integration-guide">
402
+ <?php echo __( 'The user can then subscribe to whichever group most appeals to them.', ES_TDOMAIN ); ?>
403
+ </p>
404
+ <p class="es-integration-guide">
405
+ <?php echo __( 'For example: Subscribe either to Updates or to Offers.', ES_TDOMAIN ); ?>
406
+ </p>
407
+ </div>
408
+ <div class="col-2">
409
+ <h3 style="text-align:left;"><?php echo __( 'Show your subscribe form inside attractive popups', ES_TDOMAIN ); ?></h3>
410
+ <div>
411
+ <img class="es-ig-integration" alt="Icegram" src="<?php echo ES_URL; ?>images/es-ig-integration.png" />
412
+ </div>
413
+ <p class="es-integration-guide">
414
+ <?php echo __( 'Don\'t limit your subscriber form to a widget. Embed it within popups, hello bars, slide-ins, sidebars, full screen popups etc.', ES_TDOMAIN ); ?>
415
+ </p>
416
+ <p class="es-integration-guide">
417
+ <?php echo __( 'Using Email Subscribers you can achieve this easily with our free plugin ', ES_TDOMAIN ); ?>
418
+ <a target="_blank" href="https://wordpress.org/plugins/icegram/"><?php echo __( 'Icegram', ES_TDOMAIN ); ?></a>
419
+ </p>
420
+ <p class="es-integration-guide">
421
+ <?php echo __( 'Icegram\'s beautiful designs instantly capture user attention and help increase sign-ups to your WordPress website.', ES_TDOMAIN ); ?>
422
+ </p>
423
+ <p class="es_faq es-integration-guide">
424
+ <?php echo sprintf(__( 'How to %s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-show-subscribe-form-inside-a-popup/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'show subscribe form inside a popup', ES_TDOMAIN ) . '</a>' ); ?>
425
+ </p>
426
+ </div>
427
+ <div class="col-3 last-feature">
428
+ <h3 style="text-align:left;"><?php echo __( 'Get beautiful and elegant form styles', ES_TDOMAIN ); ?></h3>
429
 
430
+ <div>
431
+ <img class="es-rm-integration" alt="Rainmaker" src="<?php echo ES_URL; ?>images/es-rm-integration.png" />
432
+ </div>
433
+ <p class="es-integration-guide">
434
+ <?php echo __( 'Email subscribers easily integrates with another free plugin ', ES_TDOMAIN ); ?>
435
+ <a target="_blank" href="https://wordpress.org/plugins/icegram-rainmaker/"><?php echo __( 'Rainmaker', ES_TDOMAIN ); ?></a>
436
+ </p>
437
+ <p class="es-integration-guide">
438
+ <?php echo __( 'Rainmaker extends the core features of Email Subscribers and provides elegant form styles.', ES_TDOMAIN ); ?>
439
+ </p>
440
+ <p>
441
+ <?php echo __( 'These styles are well designed and beautify your subscription form making it more appealing.', ES_TDOMAIN ); ?>
442
+ </p>
443
+ <p class="es_faq es-integration-guide">
444
+ <?php echo sprintf(__( 'How to %s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'add Rainmaker’s form in Email Subscribers', ES_TDOMAIN ) . '</a>' ); ?>
445
  </p>
446
+ </div>
447
+ </div>
448
+
449
+
450
+ </div>
451
+ <div style="height:10px;"></div>
452
+ <p class="description"><?php echo ES_OFFICIAL; ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
images/arrow1.jpg DELETED
Binary file
images/arrow2.jpg DELETED
Binary file
images/delete.gif DELETED
Binary file
images/edit.gif DELETED
Binary file
images/es-esaf-integration.png ADDED
Binary file
images/es-ig-integration.png ADDED
Binary file
images/{icon-128x128.png → es-logo-128x128.png} RENAMED
File without changes
images/es-logo-64x64.png ADDED
Binary file
images/es-rm-integration.png ADDED
Binary file
images/mail-big.png DELETED
Binary file
images/mail.png DELETED
Binary file
images/preview.gif DELETED
Binary file
images/uparrow.jpg DELETED
Binary file
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,11 +1,12 @@
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"
8
- "Language-Team: Icegram <hello@icegram.com>\n"
 
9
  "Language: Catalan\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
@@ -22,957 +23,879 @@ msgstr ""
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ca_ES"
24
 
25
- #: classes/es-register.php:461
26
- msgid ""
27
- "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
28
- "instantly"
29
  msgstr ""
30
- "Email Subscribers recomana connector gratuït <b> Rainmaker </ b> per "
31
- "recollir els cables a l'instant"
32
-
33
- #: classes/es-register.php:462
34
- msgid "Yes, I want this"
35
- msgstr "Sí, vull això"
36
 
37
- #: classes/es-register.php:462
38
- msgid "No, I don't want it"
39
- msgstr "No, jo no ho vull"
40
-
41
- #: base/es-defined.php:32
42
- msgid ""
43
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
44
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
45
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
46
- "</a> rating. A huge thank you from Icegram in advance!"
47
  msgstr ""
48
- "Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
49
- "nos una <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
50
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
51
- "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
52
 
53
- #: classes/es-common.php:13
54
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
55
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
56
 
57
- #: classes/es-common.php:16
58
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
59
- msgstr "<span style=\"color:#FF0000\">Per confirmar</span>"
60
 
61
- #: classes/es-common.php:19
62
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
63
- msgstr "<span style=\"color:#999900\">Cancel·lat</span>"
64
 
65
- #: classes/es-common.php:22
66
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
67
- msgstr "Opt in sencill"
 
68
 
69
- #: classes/es-common.php:25
70
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
71
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Vist</span>"
72
 
73
- #: classes/es-common.php:28
74
- msgid "<span style=\"color:#999900;\">Nodata</span>"
75
- msgstr "<span style=\"color:#999900;\">No hi ha dades</span>"
 
 
76
 
77
- #: classes/es-common.php:31
78
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
79
- msgstr "<span style=\"color:#FF0000\">Desactivat</span>"
80
 
81
- #: classes/es-common.php:34
82
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
83
- msgstr "<span style=\"color:#FF0000\">A la cua</span>"
 
 
 
 
 
84
 
85
- #: classes/es-common.php:37
86
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
87
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviat</span>"
88
 
89
- #: classes/es-common.php:40
90
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
91
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
92
 
93
- #: classes/es-common.php:43
94
- msgid "<span style=\"color:#993399;\">Immediately</span>"
95
- msgstr "Immediatament"
 
 
96
 
97
- #: classes/es-loadwidget.php:28 classes/es-register.php:552
98
- #: subscribers/view-subscriber-show.php:354
99
- #: subscribers/view-subscriber-show.php:368
100
- msgid "Name"
101
- msgstr "Nom"
102
 
103
- #: classes/es-loadwidget.php:33 classes/es-register.php:557
104
- msgid "Email *"
105
- msgstr "Email*"
 
 
106
 
107
- #: classes/es-loadwidget.php:38 classes/es-register.php:562
108
- msgid "Subscribe"
109
- msgstr "Subscriure"
110
 
111
- #: classes/es-register.php:144 classes/es-register.php:145
112
- msgid "Email Subscribers"
113
- msgstr "Email Subscribers"
 
 
114
 
115
- #: classes/es-register.php:147 classes/es-register.php:148
116
- #: subscribers/view-subscriber-show.php:241
117
- msgid "Subscribers"
118
- msgstr "Subscriptors"
119
 
120
- #: classes/es-register.php:150 classes/es-register.php:151
121
- #: compose/compose-show.php:64
122
- msgid "Compose"
123
- msgstr "Compondre"
 
124
 
125
- #: classes/es-register.php:153 classes/es-register.php:154
126
- #: notification/notification-show.php:52
127
- msgid "Post Notifications"
128
- msgstr "Notificacions de les entrades"
129
 
130
- #: classes/es-register.php:156 classes/es-register.php:157
131
- #: sendmail/sendmail.php:93
132
- msgid "Newsletters"
133
- msgstr "Butlletins"
 
134
 
135
- #: classes/es-register.php:159 classes/es-register.php:160
136
- #: cron/cron-add.php:79
137
- msgid "Cron Settings"
138
- msgstr "configuració del cron"
139
 
140
- #: classes/es-register.php:162 classes/es-register.php:163
141
- #: settings/settings-edit.php:197
142
- msgid "Email Settings"
143
- msgstr "Configuració del email"
 
144
 
145
- #: classes/es-register.php:165 classes/es-register.php:166
146
- #: roles/roles-add.php:110
147
- msgid "User Roles"
148
- msgstr "Funcions d'usuari"
149
 
150
- #: classes/es-register.php:168 classes/es-register.php:169
151
- #: sentmail/sentmail-show.php:96
152
- msgid "Reports"
153
- msgstr "Informes"
154
 
155
- #: classes/es-register.php:171
156
- msgid "Help & Info"
157
- msgstr "Ajuda i informació"
 
 
 
158
 
159
- #: classes/es-register.php:172
160
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
161
- msgstr "Ajuda i informació"
162
 
163
- #: classes/es-register.php:183
164
- msgctxt "view-subscriber-enhanced-select"
165
- msgid "Please enter subscriber email address."
166
- msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
 
 
167
 
168
- #: classes/es-register.php:184
169
- msgctxt "view-subscriber-enhanced-select"
170
- msgid "Please select subscriber email status."
171
- msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
 
 
172
 
173
- #: classes/es-register.php:185
174
- msgctxt "view-subscriber-enhanced-select"
175
- msgid "Please select or create group for this subscriber."
176
- msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
 
177
 
178
- #: classes/es-register.php:186
179
- msgctxt "view-subscriber-enhanced-select"
180
- msgid "Do you want to delete this record?"
181
- msgstr "Vols eliminar aquest registre?"
 
182
 
183
- #: classes/es-register.php:187
184
- msgctxt "view-subscriber-enhanced-select"
185
- msgid "Please select the bulk action."
186
- msgstr "Selecciona l'acció bulk"
187
 
188
- #: classes/es-register.php:188
189
- msgctxt "view-subscriber-enhanced-select"
190
- msgid "Are you sure you want to delete selected records?"
191
- msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
 
192
 
193
- #: classes/es-register.php:189
194
- msgctxt "view-subscriber-enhanced-select"
195
  msgid ""
196
- "Do you want to resend confirmation email? \\nAlso please note, this will "
197
- "update subscriber current status to 'Unconfirmed'."
198
  msgstr ""
199
- "Vols tornar a enviar correu electrònic de confirmació? \\ També tingues en "
200
- "compte que això actualitzarà l'estat actual d'abonats a \"no confirmats\"."
201
 
202
- #: classes/es-register.php:190
203
- msgctxt "view-subscriber-enhanced-select"
204
- msgid "Please select new subscriber group."
205
- msgstr "Seleccioneu nou grup d'abonats."
206
 
207
- #: classes/es-register.php:191
208
- msgctxt "view-subscriber-enhanced-select"
209
- msgid "Please select new status for subscribers"
210
- msgstr "Seleccioneu nou estatus per a subscriptors"
211
 
212
- #: classes/es-register.php:192
213
- msgctxt "view-subscriber-enhanced-select"
214
- msgid "Do you want to update subscribers group?"
215
- msgstr "Vols actualitzar el grup de subscriptors?"
 
216
 
217
- #: classes/es-register.php:193
218
- msgctxt "view-subscriber-enhanced-select"
219
- msgid "Do you want to update subscribers status?"
220
- msgstr "Vols actualitzar l'estat dels subscriptors?"
 
 
 
221
 
222
- #: classes/es-register.php:194
223
- msgctxt "view-subscriber-enhanced-select"
224
- msgid "Do you want to export the emails?"
225
- msgstr "Vols exportar els missatges de correu electrònic?"
 
 
 
226
 
227
- #: classes/es-register.php:195
228
- msgctxt "view-subscriber-enhanced-select"
229
  msgid ""
230
- "Please select only csv file. Please check official website for csv structure."
231
- "."
 
 
232
  msgstr ""
233
- "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
234
- "l'estructura csv .."
235
 
236
- #: classes/es-register.php:203
237
- msgctxt "compose-enhanced-select"
238
- msgid "Please enter name for configuration."
239
- msgstr "Introdueix el nom per a la configuració."
 
 
 
240
 
241
- #: classes/es-register.php:204
242
- msgctxt "compose-enhanced-select"
243
- msgid "Please select template for this configuration."
244
- msgstr "Seleccioneu la plantilla per a aquesta configuració."
245
 
246
- #: classes/es-register.php:205
247
- msgctxt "compose-enhanced-select"
248
- msgid "Do you want to delete this record?"
249
- msgstr "Vols eliminar aquest registre?"
250
 
251
- #: classes/es-register.php:213
252
- msgctxt "notification-enhanced-select"
253
- msgid "Please select subscribers group."
254
- msgstr "Selecciona el grup de subscriptors."
255
 
256
- #: classes/es-register.php:214
257
- msgctxt "notification-enhanced-select"
258
- msgid "Please select notification mail subject. Use compose menu to create new."
259
  msgstr ""
260
- "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
261
- "composició per crear-ne de nous."
262
 
263
- #: classes/es-register.php:215
264
- msgctxt "notification-enhanced-select"
265
- msgid "Please select notification status."
266
- msgstr "Seleccioneu l'estat de la notificació."
267
 
268
- #: classes/es-register.php:216
269
- msgctxt "notification-enhanced-select"
270
- msgid "Do you want to delete this record?"
271
- msgstr "Vols eliminar aquest registre?"
272
 
273
- #: classes/es-register.php:224
274
- msgctxt "sendmail-enhanced-select"
275
- msgid "Please select your mail subject."
276
- msgstr "Si us plau selecciona l'assumpte del teu email."
277
 
278
- #: classes/es-register.php:225
279
- msgctxt "sendmail-enhanced-select"
280
- msgid "Please select your mail type."
281
- msgstr "Si us plau selecciona el teu tipus de correu."
282
 
283
- #: classes/es-register.php:226
284
- msgctxt "sendmail-enhanced-select"
285
- msgid ""
286
- "Have you double checked your selected group? If so, let's go ahead and send "
287
- "this."
288
  msgstr ""
289
- "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
290
- "endavant i l'enviarem."
291
 
292
- #: classes/es-register.php:234
293
- msgctxt "sentmail-enhanced-select"
294
- msgid "Do you want to delete this record?"
295
- msgstr "Vols eliminar aquest registre?"
296
 
297
- #: classes/es-register.php:235
298
- msgctxt "sentmail-enhanced-select"
299
- msgid "Do you want to delete all records except latest 10?"
300
- msgstr "Vols eliminar tots els registres excepte els 10 últims?"
301
 
302
- #: classes/es-register.php:243
303
- msgctxt "cron-enhanced-select"
304
- msgid "Please select enter number of mails you want to send per hour/trigger."
305
  msgstr ""
306
- "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
307
- "hora / gallet."
308
 
309
- #: classes/es-register.php:244
310
- msgctxt "cron-enhanced-select"
311
- msgid "Please enter the mail count, only number."
312
- msgstr "Si us plau, introdueixi el recompte d'emails, només número."
313
 
314
- #: classes/es-register.php:257
315
- msgctxt "widget-enhanced-select"
316
- msgid "Please enter email address"
317
- msgstr "Si us plau, entra l'adreça d'email"
318
 
319
- #: classes/es-register.php:258
320
- msgctxt "widget-enhanced-select"
321
- msgid "Please provide a valid email address"
322
- msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
323
 
324
- #: classes/es-register.php:259
325
- msgctxt "widget-enhanced-select"
326
- msgid "loading..."
327
- msgstr "Carregant..."
328
 
329
- #: classes/es-register.php:260
330
- msgctxt "widget-enhanced-select"
331
- msgid "Cannot create XMLHTTP instance"
332
- msgstr "No es pot crear la instància XMLHTTP"
333
 
334
- #: classes/es-register.php:261
335
- msgctxt "widget-enhanced-select"
336
- msgid "Successfully Subscribed."
337
- msgstr "Subscripció exitosa"
338
 
339
- #: classes/es-register.php:262
340
- msgctxt "widget-enhanced-select"
341
  msgid ""
342
- "Your subscription was successful! Within a few minutes, kindly check the "
343
- "mail in your mailbox and confirm your subscription. If you can't see the "
344
- "mail in your mailbox, please check your spam folder."
345
  msgstr ""
346
- "La seva subscripció s'ha realitzat correctament! D'aquí a uns minuts, tingui "
347
- "l'amabilitat de comprovar el correu a la seva bústia i confirmar la "
348
- "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
349
- "plau revisi la seva carpeta de correu no desitjat (Spam)."
350
 
351
- #: classes/es-register.php:263
352
- msgctxt "widget-enhanced-select"
353
- msgid "Email Address already exists!"
354
- msgstr "Aquesta adreça de correu electrònic ja existeix!"
355
 
356
- #: classes/es-register.php:264
357
- msgctxt "widget-enhanced-select"
358
- msgid "Oops.. Unexpected error occurred."
359
- msgstr "Vaja... S'ha produït un error inesperat."
360
 
361
- #: classes/es-register.php:265
362
- msgctxt "widget-enhanced-select"
363
- msgid "Invalid email address"
364
- msgstr "l'Adreça de correu electrònic no és vàlida"
365
 
366
- #: classes/es-register.php:266
367
- msgctxt "widget-enhanced-select"
368
- msgid "Please try after some time"
369
- msgstr "Torna-ho a provar d'aquí a una estona"
370
 
371
- #: classes/es-register.php:267
372
- msgctxt "widget-enhanced-select"
373
- msgid "There was a problem with the request"
374
- msgstr "Hi ha un problema amb la sol·licitud"
375
 
376
- #: classes/es-register.php:274
377
- msgctxt "widget-page-enhanced-select"
378
- msgid "Please enter email address"
379
- msgstr "Si us plau, entra l'adreça d'email"
 
 
380
 
381
- #: classes/es-register.php:275
382
- msgctxt "widget-page-enhanced-select"
383
- msgid "Please provide a valid email address"
384
- msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
385
 
386
- #: classes/es-register.php:276
387
- msgctxt "widget-page-enhanced-select"
388
- msgid "loading..."
389
- msgstr "Carregant..."
390
 
391
- #: classes/es-register.php:277
392
- msgctxt "widget-page-enhanced-select"
393
- msgid "Cannot create XMLHTTP instance"
394
- msgstr "No es pot crear la instància XMLHTTP"
 
 
395
 
396
- #: classes/es-register.php:278
397
- msgctxt "widget-page-enhanced-select"
398
- msgid "Successfully Subscribed."
399
- msgstr "Subscripció exitosa"
400
 
401
- #: classes/es-register.php:279
402
- msgctxt "widget-page-enhanced-select"
403
  msgid ""
404
- "Your subscription was successful! Within a few minutes, kindly check the "
405
- "mail in your mailbox and confirm your subscription. If you can't see the "
406
- "mail in your mailbox, please check your spam folder."
407
  msgstr ""
408
- "La seva subscripció s'ha realitzat correctament! D'aquí a uns minuts, tingui "
409
- "l'amabilitat de comprovar el correu a la seva bústia i confirmar la "
410
- "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
411
- "plau revisi la seva carpeta de correu no desitjat (Spam)."
412
 
413
- #: classes/es-register.php:280
414
- msgctxt "widget-page-enhanced-select"
415
- msgid "Email Address already exists!"
416
- msgstr "Aquesta adreça de correu electrònic ja existeix!"
417
 
418
- #: classes/es-register.php:281
419
- msgctxt "widget-page-enhanced-select"
420
- msgid "Oops.. Unexpected error occurred."
421
- msgstr "Vaja... S'ha produït un error inesperat."
422
 
423
- #: classes/es-register.php:282
424
- msgctxt "widget-page-enhanced-select"
425
- msgid "Invalid email address"
426
- msgstr "l'Adreça de correu electrònic no és vàlida"
 
427
 
428
- #: classes/es-register.php:283
429
- msgctxt "widget-page-enhanced-select"
430
- msgid "Please try after some time"
431
- msgstr "Torna-ho a provar d'aquí a una estona"
432
 
433
- #: classes/es-register.php:284
434
- msgctxt "widget-page-enhanced-select"
435
- msgid "There was a problem with the request"
436
- msgstr "Hi ha un problema amb la sol·licitud"
437
 
438
- #: classes/es-register.php:600
439
- msgid "Widget Title"
440
- msgstr "Títol del widget"
441
 
442
- #: classes/es-register.php:604
443
- msgid "Short description about subscription form"
444
- msgstr "Breu descripció sobre el formulari de subscripció"
445
 
446
- #: classes/es-register.php:608
447
- msgid "Display Name Field"
448
- msgstr "Mostra nom del camp"
449
 
450
- #: classes/es-register.php:610 settings/settings-edit.php:290
451
- #: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
452
- msgid "YES"
453
- msgstr "Si"
454
 
455
- #: classes/es-register.php:611 settings/settings-edit.php:291
456
- #: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
457
- msgid "NO"
458
- msgstr "No"
459
 
460
- #: classes/es-register.php:615
461
- msgid "Subscriber Group"
462
- msgstr "Grup de subscriptor"
463
 
464
- #: compose/compose-add.php:31 compose/compose-edit.php:48
465
- msgid "Please enter template heading."
466
- msgstr "Si us plau, introdueix títol de la plantilla."
467
 
468
- #: compose/compose-add.php:43
469
- msgid "Template successfully created. "
470
- msgstr "Plantilla creada correctament."
471
 
472
- #: compose/compose-add.php:74
473
- msgid "Add new Email"
474
- msgstr "Afegir un email nou"
 
 
 
 
 
 
 
 
475
 
476
- #: compose/compose-add.php:75 compose/compose-edit.php:86
477
- #: compose/compose-preview.php:28 compose/compose-show.php:66
478
- #: cron/cron-add.php:80 notification/notification-add.php:113
479
- #: notification/notification-edit.php:124
480
- #: notification/notification-show.php:54 roles/roles-add.php:111
481
- #: sendmail/sendmail.php:94 sentmail/deliverreport-show.php:61
482
- #: sentmail/sentmail-preview.php:28 sentmail/sentmail-show.php:97
483
- #: settings/settings-edit.php:198 subscribers/view-subscriber-add.php:114
484
- #: subscribers/view-subscriber-edit.php:113
485
- #: subscribers/view-subscriber-export.php:30
486
- #: subscribers/view-subscriber-import.php:146
487
- #: subscribers/view-subscriber-show.php:246
488
- #: subscribers/view-subscriber-sync.php:92
489
- msgid "Help"
490
- msgstr "Ajuda"
491
 
492
- #: compose/compose-add.php:78 compose/compose-edit.php:89
493
- msgid "Select your Mail Template"
494
- msgstr "Selecciona la teva plantilla de correu"
495
 
496
- #: compose/compose-add.php:80 compose/compose-edit.php:91
497
- msgid "Newsletter"
498
- msgstr "Butlletí de notícies"
499
 
500
- #: compose/compose-add.php:81 compose/compose-edit.php:92
501
- msgid "Post Notification"
502
- msgstr "Notificació de l'entrada"
 
503
 
504
- #: compose/compose-add.php:85 compose/compose-edit.php:96
505
- msgid "Enter your Email Subject"
506
- msgstr "Entra el subject del teu email"
507
 
508
- #: compose/compose-add.php:87 compose/compose-edit.php:98
509
- msgid "Keyword: ###POSTTITLE###"
510
- msgstr "Paraula clau: ###POSTTITLE###"
 
 
511
 
512
- #: compose/compose-add.php:89 compose/compose-edit.php:100
513
- msgid "Enter Content for your Email"
514
- msgstr "Entra el contingut del teu email"
515
 
516
- #: compose/compose-add.php:93 compose/compose-edit.php:104
517
- #, c-format
518
- msgid ""
519
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
520
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
521
- "###POSTDESC###, ###POSTFULL###"
522
  msgstr ""
523
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
524
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
525
- "###POSTDESC###, ###POSTFULL###"
526
 
527
- #: compose/compose-add.php:93 compose/compose-edit.php:104
528
- msgid "Available Keywords"
529
- msgstr "Paraules clau disponibles"
530
 
531
- #: compose/compose-add.php:97 compose/compose-edit.php:108
532
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
533
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
534
- #: subscribers/view-subscriber-show.php:355
535
- #: subscribers/view-subscriber-show.php:369
536
- msgid "Status"
537
- msgstr "Estat"
538
 
539
- #: compose/compose-add.php:99 compose/compose-edit.php:110
540
- msgid "Published"
541
- msgstr "Publicat"
542
 
543
- #: compose/compose-add.php:101 compose/compose-edit.php:112
544
- msgid "Please select your mail status"
545
- msgstr "Si us plau selecciona el teu estat del correu"
546
 
547
- #: compose/compose-add.php:105 compose/compose-edit.php:117
548
- #: cron/cron-add.php:120 notification/notification-add.php:253
549
- #: notification/notification-edit.php:290 roles/roles-add.php:207
550
- #: subscribers/view-subscriber-edit.php:191
551
- msgid "Save"
552
- msgstr "Desar"
553
 
554
- #: compose/compose-edit.php:20 compose/compose-preview.php:18
555
- #: compose/compose-show.php:33 notification/notification-edit.php:20
556
- #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
557
- #: sentmail/sentmail-show.php:22 settings/settings-edit.php:20
558
- #: subscribers/view-subscriber-edit.php:22
559
- msgid "Oops, selected details does not exists."
560
- msgstr "Vaja, les dades seleccionades no existeixen."
561
 
562
- #: compose/compose-edit.php:61
563
- msgid "Template successfully updated. "
564
- msgstr "Plantilla actualitzada correctament."
565
 
566
- #: compose/compose-edit.php:84
567
- msgid "Edit Email"
568
- msgstr "Editar email"
569
 
570
- #: compose/compose-edit.php:85 compose/compose-show.php:65
571
- #: notification/notification-edit.php:123
572
- #: notification/notification-show.php:53
573
- msgid "Add New"
574
- msgstr "Afegir nou"
575
 
576
- #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
577
- msgid "Preview Mail"
578
- msgstr "Visió prèvia del correu"
579
 
580
- #: compose/compose-preview.php:40 compose/compose-show.php:101
581
- #: notification/notification-show.php:100
582
- #: subscribers/view-subscriber-show.php:399
583
- msgid "Edit"
584
- msgstr "Editar"
585
 
586
- #: compose/compose-show.php:14 sendmail/sendmail.php:18
587
- #: subscribers/view-subscriber-show.php:17
588
- msgid "Click Here"
589
- msgstr "Clica aquí"
590
 
591
- #: compose/compose-show.php:47 notification/notification-show.php:35
592
- #: sentmail/sentmail-show.php:36
593
- msgid "Selected record deleted."
594
- msgstr "Eliminat el registre seleccionat ."
595
 
596
- #: compose/compose-show.php:77 compose/compose-show.php:84
597
- #: notification/notification-show.php:68 notification/notification-show.php:76
598
- msgid "Email Subject"
599
- msgstr "Subjecte del email"
600
 
601
- #: compose/compose-show.php:78 compose/compose-show.php:85
602
- msgid "Email Template"
603
- msgstr "Olantilla del email"
604
 
605
- #: compose/compose-show.php:79 compose/compose-show.php:86
606
- msgid "Actions"
607
- msgstr "Accions"
608
 
609
- #: compose/compose-show.php:102 notification/notification-show.php:103
610
- #: subscribers/view-subscriber-show.php:278
611
- #: subscribers/view-subscriber-show.php:404
612
- msgid "Delete"
613
- msgstr "Esborrar"
614
 
615
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
616
- #: sentmail/sentmail-show.php:124
617
- msgid "Preview"
618
- msgstr "Vista previa"
619
 
620
- #: compose/compose-show.php:111 notification/notification-show.php:143
621
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
622
- #: subscribers/view-subscriber-show.php:427
623
- msgid "No records available."
624
- msgstr "No hi ha registres disponibles."
625
 
626
- #: cron/cron-add.php:24
627
- msgid "Please enter valid mail count."
628
- msgstr "Si us plau, introdueix un compte de correu electrònic vàlid."
629
 
630
- #: cron/cron-add.php:34
631
- msgid "Successfully updated."
632
- msgstr "S'ha actualitzat correctament."
633
 
634
- #: cron/cron-add.php:87
635
- msgid "Cron job URL"
636
- msgstr "URL de treball del Cron"
637
 
638
- #: cron/cron-add.php:88
639
  msgid ""
640
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
641
- "modify it."
642
  msgstr ""
643
- "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
644
- "recomana no modificar-lo."
645
 
646
- #: cron/cron-add.php:97
647
- msgid "Email Count"
648
- msgstr "Comte de correu electrònic"
649
 
650
- #: cron/cron-add.php:98
651
- msgid "Number of emails that you want to trigger per hour."
652
- msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
 
 
653
 
654
- #: cron/cron-add.php:103
655
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
 
656
  msgstr ""
657
- "(El seu amfitrió (host) té límits. Suggerim 50 correus electrònics per hora "
658
- "per estar segur)"
659
 
660
- #: cron/cron-add.php:108
661
- msgid "Admin Report"
662
- msgstr "Informe d'Administració"
663
 
664
- #: cron/cron-add.php:109
665
- msgid ""
666
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
667
- "###DATE###, ###SUBJECT###, ###COUNT###)"
668
  msgstr ""
669
- "Correu electrònic a l'administrador cada vegada que s'activa l'URL cron des "
670
- "del seu servidor. (Paraules clau: ###DATE###, ###SUBJECT###, ###COUNT###)"
671
 
672
- #: cron/cron-add.php:126
673
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
674
- msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
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
 
709
- #: export/export-email-address.php:33 export/export-email-address.php:37
710
- msgid "Unexpected url submit has been detected"
711
- msgstr "Inesperada URL s'ha detectat al enviar"
712
 
713
- #: help/help.php:47
714
- msgid "Welcome to Email Subscribers!"
715
- msgstr "Benvingut a Email Subscribers!"
716
 
717
- #: help/help.php:48
718
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
719
- msgstr "Gràcies per instal·lar-lo i esperem que gaudeixi d'Email Subscribers."
 
720
 
721
- #: help/help.php:52
722
- msgid "For more help and tips..."
723
- msgstr "Per obtenir més ajuda i consells ..."
724
-
725
- #: help/help.php:67
726
- #, c-format
727
- msgid "Like Email Subscribers? Please consider %s."
728
- msgstr "T'agrada Email Subscribers? Si us plau, consideri %s"
729
-
730
- #: help/help.php:67
731
- msgid "contributing to us"
732
- msgstr "contribuir amb nosaltres"
733
-
734
- #: help/help.php:99
735
- msgid "Frequently Asked Questions"
736
- msgstr "Preguntes més freqüents (FAQ)"
737
-
738
- #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
739
- #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
740
- #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
741
- #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
742
- #: help/help.php:172 help/help.php:175 help/help.php:178
743
- #, c-format
744
- msgid "%s"
745
- msgstr "%s"
746
 
747
- #: help/help.php:118
748
- msgid "How to Add Subscription box to website?"
749
- msgstr "Com afegir el quadre de subscripció a la pàgina web?"
750
 
751
- #: help/help.php:127
752
- msgid "General Plugin Settings"
753
- msgstr "Configuració general del Plugin"
754
 
755
- #: help/help.php:127
756
- msgid ""
757
- " (How to modify the existing email content like Confirmation email, Welcome "
758
- "email, Admin emails)"
759
  msgstr ""
760
- "(Com modificar el contingut de correu electrònic existent com el correu "
761
- "electrònic de confirmació, el correu electrònic de benvinguda, missatges de "
762
- "correu electrònic d'administrador)"
763
 
764
- #: help/help.php:130
765
- msgid "How to Import or Export Email Addresses?"
766
- msgstr "Com importar o exportar adreces d'email?"
767
 
768
- #: help/help.php:133
769
- msgid "How to change/update/translate any texts from Email Subscribers?"
770
- msgstr "Com canviar / actualitzar / traduir els textos d'Email Subscribers?"
771
 
772
- #: help/help.php:136
773
- msgid "How to add Unsubscribe link in emails?"
774
- msgstr "Com afegir el link \"Donar-se de baixa\" en els correus electrònics?"
775
 
776
- #: help/help.php:139
777
- msgid "What are Static Templates and Dynamic Templates?"
778
- msgstr "Què són plantilles estàtiques i plantilles dinàmiques?"
779
 
780
- #: help/help.php:142
781
- msgid "How to Compose and Send Newsletter Emails?"
782
- msgstr "Com redactar i enviar butlletins?"
783
 
784
- #: help/help.php:145
785
- msgid ""
786
- "How to Configure and Send Post Notification emails to subscribers when new "
787
- "posts are published?"
788
  msgstr ""
789
- "Com configurar i enviar missatges de correu electrònic de notificació de "
790
- "correus als subscriptors quan es publiquin nous missatges?"
791
 
792
- #: help/help.php:148
793
- msgid "How to Send a sample new post notification email to testgroup/myself?"
794
  msgstr ""
795
- "Com enviar un correu electrònic de notificació de mostra de nou post per "
796
- "TestGroup / a mi mateix?"
797
 
798
- #: help/help.php:151
799
- msgid "How to check Sent emails reports?"
800
- msgstr "Com omprovar els informes dels correus electrònics enviats?"
801
 
802
- #: help/help.php:154
803
- msgid "How to Add/Update Existing Subscribers Group?"
804
- msgstr "Com afegir / actualitzar un grup de subscriptors existent?"
805
 
806
- #: help/help.php:157
807
- msgid "Subscribers are not receiving Emails?"
808
- msgstr "Els subscriptors no estan rebent missatges de correu electrònic?"
809
 
810
- #: help/help.php:160
811
- msgid "How to show subscribe form inside a popup?"
812
- msgstr "Com mostrar el formulari de subscripció a l'interior d'una finestra emergent?"
813
 
814
- #: help/help.php:163
815
- msgid "How to use Rainmaker’s form in Email Subscribers?"
816
- msgstr "Com utilitzar el formulari Rainmaker a Email Subscribers?"
817
 
818
- #: help/help.php:166
819
- msgid "How to Schedule Cron Mails?"
820
- msgstr "Com programar Cron Mails?"
821
 
822
- #: help/help.php:169
823
- msgid "How to Schedule Cron Emails in cPanel?"
824
- msgstr "Com programar Cron emails a cPanel?"
825
 
826
- #: help/help.php:172
827
- msgid "How to Schedule Cron Emails in Parallels Plesk?"
828
- msgstr "Com programar Cron emails a Parallels Plesk?"
829
 
830
- #: help/help.php:175
831
- msgid "What to do if Hosting doesn’t support Cron Jobs?"
832
- msgstr "Què fer si el teu Hosting no és compatible amb Cron Jobs?"
 
833
 
834
- #: help/help.php:178
835
- msgid "Commonly Asked Questions"
836
- msgstr "Preguntes comuns"
 
837
 
838
- #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:55
839
- #: job/es-unsubscribe.php:62
840
- msgid ""
841
- "Oops.. We are getting some technical error. Please try again or contact "
842
- "admin."
843
  msgstr ""
844
- "Vaja... Estem rebent algun error tècnic. Intenteu-ho de nou o poseu-vos en "
845
- "contacte amb l'administrador."
846
 
847
- #: job/es-optin.php:61
848
- msgid "This email address has already been confirmed."
849
- msgstr "Aquesta adreça de correu electrònic ja ha estat confirmada."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
 
851
- #: notification/notification-add.php:33
852
  msgid "Please select subscribers group."
853
  msgstr "Si us plau, seleccioneu el grup de subscriptors."
854
 
855
- #: notification/notification-add.php:39
856
  msgid "Please select notification status."
857
  msgstr "Seleccioneu l'estat de la notificació."
858
 
859
- #: notification/notification-add.php:45 notification/notification-edit.php:61
860
  msgid "Please select notification mail subject. Use compose menu to create new."
861
  msgstr ""
862
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
863
  "composició per crear-ne de nous."
864
 
865
- #: notification/notification-add.php:51 notification/notification-edit.php:67
866
  msgid "Please select post categories."
867
  msgstr "Seleccioneu les categories de correus."
868
 
869
- #: notification/notification-add.php:71
870
  msgid "Notification successfully created. "
871
  msgstr "Notificació creada correctament."
872
 
873
- #: notification/notification-add.php:112
874
  msgid "Add Notification"
875
  msgstr "Afegir notificació"
876
 
877
- #: notification/notification-add.php:120
 
 
 
 
 
 
 
 
 
 
 
 
878
  msgid "Select Subscribers Group"
879
  msgstr "Seleccioneu Grup Subscriptors"
880
 
881
- #: notification/notification-add.php:124 notification/notification-add.php:148
882
- #: notification/notification-edit.php:135
883
- #: notification/notification-edit.php:168 sendmail/sendmail.php:110
884
- #: sendmail/sendmail.php:137 sendmail/sendmail.php:151
885
- #: subscribers/view-subscriber-add.php:162
886
- #: subscribers/view-subscriber-edit.php:162
887
- #: subscribers/view-subscriber-import.php:190
888
- #: subscribers/view-subscriber-sync.php:119
889
  msgid "Select"
890
  msgstr "seleccionar"
891
 
892
- #: notification/notification-add.php:142
893
- #: notification/notification-edit.php:162
894
  msgid "Select Notification Email Subject"
895
  msgstr "Selecciona notificació assumpte del correu"
896
 
897
- #: notification/notification-add.php:143
898
- #: notification/notification-edit.php:163
899
  msgid "(Use compose menu to create new)"
900
  msgstr "(Utilitzeu el menú de composició per crear-ne de nou)"
901
 
902
- #: notification/notification-add.php:167
903
- #: notification/notification-edit.php:190
904
  msgid "Select Post Categories"
905
  msgstr "Seleccioneu categoria de correu"
906
 
907
- #: notification/notification-add.php:195
908
- #: notification/notification-edit.php:225
909
  msgid "Check All"
910
  msgstr "Seleccionar-ho tot"
911
 
912
- #: notification/notification-add.php:196
913
- #: notification/notification-edit.php:226
914
  msgid "Uncheck All"
915
  msgstr "Deseleccionar-ho tot"
916
 
917
- #: notification/notification-add.php:202
918
- #: notification/notification-edit.php:233
919
  msgid "Select your Custom Post Type"
920
  msgstr "Seleccioni el seu tipus personalitzat del Post"
921
 
922
- #: notification/notification-add.php:203
923
- #: notification/notification-edit.php:234
924
  msgid "(Optional)"
925
  msgstr "(Opcional)"
926
 
927
- #: notification/notification-add.php:232
928
- #: notification/notification-edit.php:268
929
  msgid "No Custom Post Types Available"
930
  msgstr "Sense tipus de Post personalitzats disponibles"
931
 
932
- #: notification/notification-add.php:239
933
- #: notification/notification-edit.php:275
934
  msgid "Select Notification Status when a new post is published"
935
  msgstr "Tria un estat de notificació quan es publica una nova entrada"
936
 
937
- #: notification/notification-add.php:243
938
- #: notification/notification-edit.php:279
939
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
940
  msgid "Send email immediately"
941
  msgstr "Enviar email immediatamanet"
942
 
943
- #: notification/notification-add.php:244
944
- #: notification/notification-edit.php:280
945
- #: notification/notification-show.php:132
946
  msgid "Add to cron and send email via cron job"
947
  msgstr "Afegir a cron i enviar correu electrònic a través de cron"
948
 
949
- #: notification/notification-add.php:245
950
- #: notification/notification-edit.php:281
951
  msgid "Disable email notification"
952
  msgstr "Desactivar la notificació de correu electrònic"
953
 
954
- #: notification/notification-edit.php:49
955
- msgid "Please select subscribers group"
956
- msgstr "Selecciona el grup de subscriptors"
 
 
957
 
958
- #: notification/notification-edit.php:55
959
- msgid "Please select notification status"
960
- msgstr "Selecciona l'estat de notificació"
 
 
 
961
 
962
- #: notification/notification-edit.php:89
963
- msgid "Notification successfully updated. "
964
- msgstr "Notificació actualitzada correctament."
 
965
 
966
- #: notification/notification-edit.php:122
967
- msgid "Edit Notification"
968
- msgstr "Editar la notificació"
 
969
 
970
- #: notification/notification-edit.php:131
971
- #: subscribers/view-subscriber-show.php:280
972
- msgid "Update Subscribers Group"
973
- msgstr "Actualitzar grups de subscriptors"
974
 
975
- #: notification/notification-show.php:57
976
  msgid ""
977
  "Use this to setup and send notification emails to your subscribers when a "
978
  "new post is published in your blog."
@@ -980,277 +903,94 @@ msgstr ""
980
  "Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
981
  "electrònic als subscriptors quan es publica una nova entrada al bloc."
982
 
983
- #: notification/notification-show.php:69 notification/notification-show.php:77
 
 
 
 
 
 
984
  msgid "Subscribers Group"
985
  msgstr "Grups de subscriptors"
986
 
987
- #: notification/notification-show.php:70 notification/notification-show.php:78
 
988
  msgid "Post Categories / Custom Post Types"
989
  msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
990
 
991
- #: notification/notification-show.php:71 notification/notification-show.php:79
 
992
  msgid "Notification Status"
993
  msgstr "Estat de la notificació"
994
 
995
- #: roles/roles-add.php:53
996
- msgid "Role Updated. "
997
- msgstr "Rol actualitzat"
998
-
999
- #: roles/roles-add.php:114
1000
- msgid "Select user roles who can access following menus. Only Admin can change this."
1001
- msgstr ""
1002
- "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
1003
- "administrador pot canviar això."
1004
-
1005
- #: roles/roles-add.php:121
1006
- msgid "Subscribers Menu"
1007
- msgstr "Menú dels subscriptors"
1008
-
1009
- #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
1010
- #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
1011
- #: roles/roles-add.php:197
1012
- msgid "Administrator Only"
1013
- msgstr "Només l'administrador"
1014
-
1015
- #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
1016
- #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
1017
- #: roles/roles-add.php:198
1018
- msgid "Administrator/Editor"
1019
- msgstr "Administrador/editor"
1020
-
1021
- #: roles/roles-add.php:127 roles/roles-add.php:139 roles/roles-add.php:151
1022
- #: roles/roles-add.php:163 roles/roles-add.php:175 roles/roles-add.php:187
1023
- #: roles/roles-add.php:199
1024
- msgid "Administrator/Editor/Author/Contributor"
1025
- msgstr "Administrador/editor/autor/contribuidor"
1026
-
1027
- #: roles/roles-add.php:133
1028
- msgid "Compose Menu"
1029
- msgstr "Manú per compondre"
1030
-
1031
- #: roles/roles-add.php:145
1032
- msgid "Post Notifications Menu"
1033
- msgstr "Menú de notificacionns"
1034
-
1035
- #: roles/roles-add.php:157
1036
- msgid "Newsletters + Cron Settings Menu"
1037
- msgstr "Butlletins + Menu de configuració del Cron"
1038
-
1039
- #: roles/roles-add.php:169
1040
- msgid "Email Settings Menu"
1041
- msgstr "Menú de configuració del email"
1042
-
1043
- #: roles/roles-add.php:181
1044
- msgid "Reports Menu"
1045
- msgstr "menú d'informes"
1046
-
1047
- #: roles/roles-add.php:193
1048
- msgid "Help & Info Menu"
1049
- msgstr "Menú d'ajuda i informació"
1050
-
1051
- #: sendmail/sendmail.php:40
1052
- msgid "Please select your mail subject."
1053
- msgstr "Selecciona l'assumpte del email"
1054
-
1055
- #: sendmail/sendmail.php:46
1056
- msgid "Please select your mail type."
1057
- msgstr "Selecciona el tipus d'email"
1058
-
1059
- #: sendmail/sendmail.php:52
1060
- msgid "Please select your group."
1061
- msgstr "Selecciona el teu grup"
1062
-
1063
- #: sendmail/sendmail.php:59
1064
- msgid "Mail sent successfully. "
1065
- msgstr "Correu enviat satisfactòriament"
1066
-
1067
- #: sendmail/sendmail.php:63
1068
- msgid "Click here to check Statistics"
1069
- msgstr "Cliqueu aquí per comprovar les estadístiques"
1070
-
1071
- #: sendmail/sendmail.php:69
1072
- msgid "Oops.. We are getting some error. mail not sending."
1073
- msgstr "Vaja... Estem rebent algun error. El correu no s'envia."
1074
-
1075
- #: sendmail/sendmail.php:97
1076
- msgid "Use this to send newsletter emails to your subscribers."
1077
- msgstr ""
1078
- "Utilitzeu aquesta opció per enviar butlletins pel correu electrònic als seus "
1079
- "subscriptors."
1080
-
1081
- #: sendmail/sendmail.php:105
1082
- msgid "Select Email Subject from available list"
1083
- msgstr "Seleccioneu Assumpte del correu de la llista disponible"
1084
-
1085
- #: sendmail/sendmail.php:132
1086
- msgid "Select Email Type"
1087
- msgstr "Seleccionar el tipus de correu electrònic"
1088
-
1089
- #: sendmail/sendmail.php:139
1090
- msgid "Send email via cron job"
1091
- msgstr "Enviar email via cron"
1092
-
1093
- #: sendmail/sendmail.php:146
1094
- msgid "Select Subscribers group to Send Email"
1095
- msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
1096
-
1097
- #: sendmail/sendmail.php:178
1098
- msgid "Recipients : 0 "
1099
- msgstr "Destinataris: 0"
1100
-
1101
- #: sendmail/sendmail.php:180
1102
- #, c-format
1103
- msgid "Recipients : %s"
1104
- msgstr "Destinataris : %s"
1105
-
1106
- #: sendmail/sendmail.php:183
1107
- msgid ""
1108
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1109
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1110
- "</strong><br>Click on Help for more information."
1111
- msgstr ""
1112
- "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1113
- "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1114
- "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1115
-
1116
- #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1117
- msgid "Send Email"
1118
- msgstr "Enviar el correu electrònic"
1119
-
1120
- #: sendmail/sendmail.php:199
1121
- msgid "Reset"
1122
- msgstr "restablir"
1123
-
1124
- #: sentmail/deliverreport-show.php:14
1125
- msgid "Oops.. Unexpected error occurred. Please try again."
1126
- msgstr "Vaja... S'ha produït un error inesperat. Si us plau torna-ho a provar."
1127
-
1128
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1129
- msgid " &lt;&lt; "
1130
- msgstr " &lt;&lt; "
1131
-
1132
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1133
- msgid " &gt;&gt; "
1134
- msgstr " &gt;&gt; "
1135
-
1136
- #: sentmail/deliverreport-show.php:60
1137
- msgid "Delivery Report"
1138
- msgstr "Informe de lliurament"
1139
-
1140
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1141
- #: subscribers/view-subscriber-export.php:37
1142
- #: subscribers/view-subscriber-export.php:45
1143
- #: subscribers/view-subscriber-show.php:352
1144
- #: subscribers/view-subscriber-show.php:366
1145
- msgid "Sno"
1146
- msgstr "Sno"
1147
-
1148
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1149
- msgid "Email"
1150
- msgstr "Email"
1151
-
1152
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1153
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1154
- msgid "Sent"
1155
- msgstr "Enviat"
1156
-
1157
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1158
- msgid "Sent Date"
1159
- msgstr "data d'enviament"
1160
-
1161
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1162
- msgid "Viewed Status"
1163
- msgstr "Veure status"
1164
-
1165
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1166
- msgid "Viewed Date"
1167
- msgstr "Veure data"
1168
-
1169
- #: sentmail/sentmail-preview.php:42
1170
- msgid "Back"
1171
- msgstr "Enrera"
1172
-
1173
- #: sentmail/sentmail-show.php:43
1174
- msgid "Successfully deleted all reports except latest 10."
1175
- msgstr "S'han eliminat tots els informes excepte els 10 últims."
1176
 
1177
- #: sentmail/sentmail-show.php:100
1178
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1179
- msgstr "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
 
 
1180
 
1181
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1182
- msgid "View Reports"
1183
- msgstr "Veure informes"
 
 
1184
 
1185
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
1186
- msgid "Type"
1187
- msgstr "Tipus"
1188
 
1189
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1190
- msgid "Start Date"
1191
- msgstr "Data d'inici"
1192
 
1193
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1194
- msgid "End Date"
1195
- msgstr "Data final"
1196
 
1197
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1198
- msgid "Total"
1199
- msgstr "Total"
1200
 
1201
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1202
- #: subscribers/view-subscriber-export.php:40
1203
- #: subscribers/view-subscriber-export.php:48
1204
- #: subscribers/view-subscriber-show.php:358
1205
- #: subscribers/view-subscriber-show.php:372
1206
- msgid "Action"
1207
- msgstr "Acció"
1208
 
1209
- #: sentmail/sentmail-show.php:193
1210
- msgid "Optimize Table & Delete Records"
1211
- msgstr "Optimitzar la taula i eliminar registres"
1212
 
1213
- #: sentmail/sentmail-show.php:202
1214
  msgid ""
1215
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1216
- "button to delete all reports except latest 10."
1217
  msgstr ""
1218
- "Nota: Si us plau, feu clic al botó <strong> Optimitzar la taula i eliminar "
1219
- "registres </ strong> per eliminar tots els informes excepte els 10 últims."
1220
-
1221
- #: settings/setting-sync.php:16
1222
- msgid "Table sync completed successfully."
1223
- msgstr "Taula de sincronització completada amb èxit."
1224
-
1225
- #: settings/setting-sync.php:29
1226
- msgid "Sync plugin tables"
1227
- msgstr "Taules de sincronització de plugin"
1228
-
1229
- #: settings/setting-sync.php:33
1230
- msgid "Click to sync tables"
1231
- msgstr "Clica per sincronitzar les taules"
1232
-
1233
- #: settings/settings-edit.php:117
1234
- msgid "Please enter sender of notifications from name."
1235
- msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
1236
 
1237
- #: settings/settings-edit.php:122
1238
- msgid "Please enter sender of notifications from email."
1239
- msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
1240
 
1241
- #: settings/settings-edit.php:155
1242
- msgid "Settings Saved."
1243
- msgstr "Configuració guardada"
1244
 
1245
- #: settings/settings-edit.php:158
1246
- msgid "Oops, unable to update."
1247
- msgstr "Vaja, no es pot actualitzar."
1248
 
1249
- #: settings/settings-edit.php:205
1250
  msgid "Sender of Notifications"
1251
  msgstr "Remitent de Notificacions"
1252
 
1253
- #: settings/settings-edit.php:206
1254
  msgid ""
1255
  "Choose a FROM name and FROM email address for all the emails to be sent from "
1256
  "this plugin."
@@ -1258,67 +998,38 @@ msgstr ""
1258
  "Triar un remitent i una adreça de correu electrònic per a tots els correus "
1259
  "electrònics per ser enviats des d'aquest plugin."
1260
 
1261
- #: settings/settings-edit.php:216
1262
- msgid "Mail Type"
1263
- msgstr "tipus de correu"
1264
-
1265
- #: settings/settings-edit.php:217
1266
- msgid ""
1267
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1268
- "Option 3 & 4 is to send mails with PHP method mail()."
1269
- msgstr ""
1270
- "Opció 1 i 2 és per a enviar correus amb Wordpress mètode wp_mail () per "
1271
- "defecte. Opció 3 i 4 és per a enviar correus electrònics amb el mètode de "
1272
- "PHP ()."
1273
-
1274
- #: settings/settings-edit.php:221
1275
  msgid "1. WP HTML MAIL"
1276
  msgstr "1. WP HTML MAIL"
1277
 
1278
- #: settings/settings-edit.php:222
1279
  msgid "2. WP PLAINTEXT MAIL"
1280
  msgstr "2. WP TEXT PLA MAIL"
1281
 
1282
- #: settings/settings-edit.php:223
1283
  msgid "3. PHP HTML MAIL"
1284
  msgstr "3. PHP HTML MAIL"
1285
 
1286
- #: settings/settings-edit.php:224
1287
  msgid "4. PHP PLAINTEXT MAIL"
1288
  msgstr "4. PHP TEXT PLA MAIL"
1289
 
1290
- #: settings/settings-edit.php:231
1291
- msgid "Opt-In Option"
1292
- msgstr "Opció Opt-in"
1293
-
1294
- #: settings/settings-edit.php:232
1295
- msgid ""
1296
- "Double Opt In means subscribers need to confirm their email address by an "
1297
- "activation link sent them on a activation email message.<br />Single Opt In "
1298
- "means subscribers do not need to confirm their email address."
1299
- msgstr ""
1300
- "Doble OPT in significa que necessiten confirmar la seva adreça de correu "
1301
- "electrònic per un enllaç d'activació que li enviem en un missatge de correu "
1302
- "electrònic d'activació. <br /> Simple OPT in vol dir que no necessiten "
1303
- "confirmar la seva adreça de correu electrònic."
1304
-
1305
- #: settings/settings-edit.php:236
1306
  msgid "Double Opt In"
1307
  msgstr "Doble Opt In"
1308
 
1309
- #: settings/settings-edit.php:237 subscribers/view-subscriber-add.php:151
1310
- #: subscribers/view-subscriber-edit.php:150
1311
- #: subscribers/view-subscriber-import.php:178
1312
- #: subscribers/view-subscriber-show.php:303
1313
- #: subscribers/view-subscriber-show.php:330
1314
  msgid "Single Opt In"
1315
  msgstr "Opt In sencill"
1316
 
1317
- #: settings/settings-edit.php:243
1318
  msgid "Image Size"
1319
  msgstr "Mida de la imatge"
1320
 
1321
- #: settings/settings-edit.php:244
1322
  msgid ""
1323
  "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1324
  "Emails."
@@ -1326,61 +1037,61 @@ msgstr ""
1326
  "Selecciona la mida de la imatge per ###POSTIMAGE### que es mostra en els "
1327
  "missatges de notificació"
1328
 
1329
- #: settings/settings-edit.php:248
1330
  msgid "Full Size"
1331
  msgstr "mida completa"
1332
 
1333
- #: settings/settings-edit.php:249
1334
  msgid "Medium Size"
1335
  msgstr "Mida mitjana"
1336
 
1337
- #: settings/settings-edit.php:250
1338
  msgid "Thumbnail"
1339
  msgstr "Miniatura"
1340
 
1341
- #: settings/settings-edit.php:256
1342
- msgid "Double Opt In Email Subject (Confirmation Email)"
1343
- msgstr "Assumpte del correu de Double Opt-in (correu electrònic de confirmació)"
1344
 
1345
- #: settings/settings-edit.php:257
1346
  msgid ""
1347
- "Enter the subject for the confirmation email to be sent for Double Opt In "
1348
- "whenever a user signs up."
1349
- msgstr ""
1350
- "Introduïu l'assumpte del correu electrònic de confirmació que s'enviarà per "
1351
- "Double Opt-in cada vegada que un usuari s'inscriu."
1352
-
1353
- #: settings/settings-edit.php:263
1354
- msgid "Double Opt In Email Content (Confirmation Email)"
1355
  msgstr ""
1356
- "Contingut del correu electrònic de Double Opt-in (correu electrònic de "
1357
- "confirmació)"
1358
 
1359
- #: settings/settings-edit.php:264
1360
  msgid ""
1361
- "Enter the content for the confirmation email to be sent for Double Opt In "
1362
- "whenever a user signs up. (Keyword: ###NAME###, ###LINK###)"
1363
  msgstr ""
1364
- "Introduir el contingut del missatge de confirmació que s'enviarà per Double "
1365
- "Opt-in cada vegada que un usuari s'inscriu. (Keyword: ###NAME###, ###LINK###)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1366
 
1367
- #: settings/settings-edit.php:270
1368
- msgid "Double Opt In Confirmation Link"
1369
- msgstr "Enllaç de confirmació en Double Opt In"
1370
 
1371
- #: settings/settings-edit.php:271
1372
  msgid "It is a readonly field and you are advised not to modify it."
1373
  msgstr "És un camp de només lectura i se li recomana no modificar-lo."
1374
 
1375
- #: settings/settings-edit.php:277
1376
- msgid ""
1377
- "Text to display after an email address is successfully subscribed from "
1378
- "Double Opt In (confirmation) Email"
1379
- msgstr ""
1380
- "Text a mostrar després que una adreça de correu electrònica s'ha subscrit "
1381
- "amb èxit per Doble Opt In (confirmació)"
1382
-
1383
- #: settings/settings-edit.php:278
1384
  msgid ""
1385
  "This text will be displayed once user clicks on email confirmation link from "
1386
  "the Double Opt In (confirmation) Email."
@@ -1388,11 +1099,7 @@ msgstr ""
1388
  "Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
1389
  "confirmació del correu electrònic pel Doble Opt In (confirmació)"
1390
 
1391
- #: settings/settings-edit.php:285
1392
- msgid "Subscriber Welcome Email"
1393
- msgstr " Correu electrònic de benvinguda al subscriptor"
1394
-
1395
- #: settings/settings-edit.php:286
1396
  msgid ""
1397
  "To send welcome email to subscriber after successful signup. This option "
1398
  "must be set to YES."
@@ -1400,366 +1107,239 @@ msgstr ""
1400
  "Per enviar correu electrònic de benvinguda al subscriptor després del "
1401
  "registre amb èxit. Aquesta opció ha d'estar a YES."
1402
 
1403
- #: settings/settings-edit.php:297
1404
- msgid "Subscriber Welcome Email Subject"
1405
- msgstr "Assumpte del correu electrònic de benvinguda"
1406
-
1407
- #: settings/settings-edit.php:298
1408
- msgid ""
1409
- "Enter the subject for the subscriber welcome email. This will be sent "
1410
- "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1411
- "(if Single Opt In) successfully."
1412
- msgstr ""
1413
- "Introduïu l'assumpte per al subscriptor de correu electrònic de benvinguda. "
1414
- "Aquest serà enviat cada vegada que el correu electrònic d'un usuari s'ha "
1415
- "confirmat bé (en Double Opt-in) / subscrit (en single Opt-in) amb èxit."
1416
-
1417
- #: settings/settings-edit.php:304
1418
- msgid "Subscriber Welcome Email Content"
1419
- msgstr "Contingut del correu de benvimguda al subscriptor"
1420
-
1421
- #: settings/settings-edit.php:305
1422
- msgid ""
1423
- "Enter the content for the subscriber welcome email whenever a user's email "
1424
- "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1425
- "successfully. (Keyword: ###NAME###, ###LINK###)"
1426
- msgstr ""
1427
- "Introduir el contingut per el correu electrònic de benvinguda al subscriptor "
1428
- "cada vegada que el correu electrònic d'un usuari o bé s'ha confirmar (en "
1429
- "Double Opt-in) / subscrit (en Single Opt-in) amb èxit. (Keyword: ###NAME###, "
1430
- "###LINK###)"
1431
-
1432
- #: settings/settings-edit.php:313
1433
  msgid "Unsubscribe Link"
1434
  msgstr "Enllaç per a donar-se de baixa"
1435
 
1436
- #: settings/settings-edit.php:314
1437
- msgid ""
1438
- "The unsubscribe link gets added automatically to all emails that are sent "
1439
- "from this plugin. It is a readonly field and you are advised not to modify "
1440
- "it."
1441
- msgstr ""
1442
- "L'enllaç de cancel·lació s'agrega automàticament a tots els correus "
1443
- "electrònics que s'envien des d'aquest plugin. És un camp de només lectura i "
1444
- "se li recomana no modificar-lo."
1445
-
1446
- #: settings/settings-edit.php:320
1447
  msgid "Unsubscribe Text in Email"
1448
  msgstr "Text de donar-se de baixa en el correu electrònic"
1449
 
1450
- #: settings/settings-edit.php:321
1451
- msgid ""
1452
- "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1453
- "link in the emails. (Keyword: ###LINK###)"
1454
- msgstr ""
1455
- "Introduïu el text per a l'enllaç de cancel·lació. Aquest text s'afegeix amb "
1456
- "l'enllaç de cancel·lació en els correus electrònics. (Paraula clau: "
1457
- "###LINK###)"
1458
-
1459
- #: settings/settings-edit.php:327
1460
  msgid "Text to display after an email address is unsubscribed"
1461
  msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
1462
 
1463
- #: settings/settings-edit.php:328
1464
- msgid "This text will be displayed once user clicks on unsubscribe link."
1465
- msgstr ""
1466
- "Aquest text es mostrarà un cop que l'usuari fa clic a l'enllaç per donar-se "
1467
- "de baixa."
1468
-
1469
- #: settings/settings-edit.php:335
1470
- msgid "Error in the Confirmation Link"
1471
- msgstr "Error amb l'enllaç de confirmació"
1472
-
1473
- #: settings/settings-edit.php:336
1474
- msgid ""
1475
- "Default message to display if there is any issue while clicking on "
1476
- "confirmation link from the Double Opt In (confirmation) Emails."
1477
- msgstr ""
1478
- "Missatge predeterminat que es mostra si hi ha algun problema mentre fa clic "
1479
- "a l'enllaç de confirmació de l'adreça de correu electrònic pel Double Opt In "
1480
- "(confirmació)."
1481
-
1482
- #: settings/settings-edit.php:342
1483
  msgid "Error in the Unsubscribe Link"
1484
  msgstr "Error amb l'enllaç de baixa"
1485
 
1486
- #: settings/settings-edit.php:343
1487
- msgid ""
1488
- "Default message to display if there is any issue while clicking on "
1489
- "unsubscribe link from the Emails."
1490
- msgstr ""
1491
- "Missatge predeterminat que es mostra si hi ha algun problema mentre fa clic "
1492
- "a l'enllaç per donar-se de baixa dels correus electrònics."
1493
-
1494
- #: settings/settings-edit.php:350
1495
- msgid "Admin Email Addresses"
1496
- msgstr "Adreces email dels administradors"
1497
-
1498
- #: settings/settings-edit.php:351
1499
- msgid ""
1500
- "Enter the admin email addresses that should receive notifications (separated "
1501
- "by comma)."
1502
  msgstr ""
1503
- "Introduïu les adreces de correu electrònic d'administració que han de rebre "
1504
- "notificacions (separades per comes)."
1505
 
1506
- #: settings/settings-edit.php:357
1507
- msgid "Notify admin when a new subscriber signs up"
1508
- msgstr "Notificar al administrador quan un nou subscriptor es registri"
1509
 
1510
- #: settings/settings-edit.php:358
1511
- msgid ""
1512
- "To send admin email notifications for the new subscriber. This option must "
1513
- "be set to YES."
1514
- msgstr ""
1515
- "Per enviar notificacions per correu electrònic a l'administrador per un nou "
1516
- "subscrit. Aquesta opció ha d'estar a YES."
1517
 
1518
- #: settings/settings-edit.php:370
1519
- msgid "Admin Email Subject when a new subscriber signs up"
1520
- msgstr ""
1521
- "Assumpte del correu electrònic a l'administrador quan un nou subscriptor es "
1522
- "dóna d'alta"
1523
 
1524
- #: settings/settings-edit.php:371
1525
- msgid ""
1526
- "Enter the subject for the admin email which will be sent whenever a new "
1527
- "email is added and confirmed."
1528
- msgstr ""
1529
- "Introduïu l'assumpte del correu electrònic a l'administrador que serà enviat "
1530
- "cada vegada que s'afegeix i es confirma un nou correu electrònic.."
1531
 
1532
- #: settings/settings-edit.php:377
1533
- msgid "Admin Email Content when a new subscriber signs up"
1534
- msgstr ""
1535
- "Contingut del correu electrònic a l'administrador quan un nou subscriptor es "
1536
- "dóna d'alta"
1537
 
1538
- #: settings/settings-edit.php:378
1539
- msgid ""
1540
- "Enter the email content for the admin email which will be sent whenever a "
1541
- "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1542
- msgstr ""
1543
- "Introduïu el contingut del correu electrònic per a l'administrador que "
1544
- "s'enviarà cada vegada que s'afegeix i es confirma un nou correu electrònic. "
1545
- "(Keyword: ###NAME###, ###EMAIL###)"
1546
 
1547
- #: settings/settings-edit.php:385
1548
- msgid "Sent Report Subject"
1549
- msgstr "Assumpte del informe enviat"
 
1550
 
1551
- #: settings/settings-edit.php:386
1552
- msgid "Enter the subject for the sent email report. It will be emailed to Admin."
1553
- msgstr ""
1554
- "Introduïu l'assumpte per a l'informe de correu electrònic que serà enviat a "
1555
- "l'Admin."
1556
 
1557
- #: settings/settings-edit.php:392
1558
- msgid "Sent Report Content"
1559
- msgstr "Contingut del informe enviat"
1560
 
1561
- #: settings/settings-edit.php:393
1562
  msgid ""
1563
- "Enter the content for the sent email report. It will be emailed to Admin. "
1564
- "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1565
  msgstr ""
1566
- "Introduir el contingut de l'informe de correu electrònic que serà enviat a "
1567
- "l'Admin. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1568
-
1569
- #: settings/settings-edit.php:403
1570
- msgid "Save Settings"
1571
- msgstr "Desa la configuració"
1572
-
1573
- #: subscribers/view-subscriber-add.php:36
1574
- #: subscribers/view-subscriber-edit.php:54
1575
- msgid "Please enter subscriber email address."
1576
- msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1577
 
1578
- #: subscribers/view-subscriber-add.php:49
1579
- msgid "Please select or create your group for this email."
1580
- msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
1581
 
1582
- #: subscribers/view-subscriber-add.php:56
1583
- msgid ""
1584
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1585
- "the group name."
1586
- msgstr ""
1587
- "Error: Els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no estan "
1588
- "permesos en el nom del grup."
1589
 
1590
- #: subscribers/view-subscriber-add.php:66
1591
- msgid "Subscriber has been saved."
1592
- msgstr "El subscriptor s'ha guardat"
1593
 
1594
- #: subscribers/view-subscriber-add.php:68
1595
- msgid "Subscriber already exists."
1596
- msgstr "Aquest subscriptor ja existeix"
1597
 
1598
- #: subscribers/view-subscriber-add.php:71
1599
- msgid "Invalid Email."
1600
- msgstr "Email no vàlid"
1601
 
1602
- #: subscribers/view-subscriber-add.php:110
1603
- #: subscribers/view-subscriber-edit.php:109
1604
- #: subscribers/view-subscriber-export.php:27
1605
- #: subscribers/view-subscriber-import.php:143
1606
- #: subscribers/view-subscriber-show.php:242
1607
- #: subscribers/view-subscriber-sync.php:89
1608
- msgid "Add New Subscriber"
1609
- msgstr "Afegir nou subscriptor"
1610
 
1611
- #: subscribers/view-subscriber-add.php:111
1612
- #: subscribers/view-subscriber-edit.php:110
1613
- #: subscribers/view-subscriber-export.php:28
1614
- #: subscribers/view-subscriber-import.php:210
1615
- #: subscribers/view-subscriber-show.php:243
1616
- #: subscribers/view-subscriber-sync.php:90
1617
- msgid "Import"
1618
- msgstr "Importar"
1619
 
1620
- #: subscribers/view-subscriber-add.php:112
1621
- #: subscribers/view-subscriber-edit.php:111
1622
- #: subscribers/view-subscriber-import.php:144
1623
- #: subscribers/view-subscriber-show.php:244
1624
- #: subscribers/view-subscriber-sync.php:91
1625
- msgid "Export"
1626
- msgstr "Exportar"
1627
 
1628
- #: subscribers/view-subscriber-add.php:113
1629
- #: subscribers/view-subscriber-edit.php:112
1630
- #: subscribers/view-subscriber-export.php:29
1631
- #: subscribers/view-subscriber-import.php:145
1632
- #: subscribers/view-subscriber-show.php:245
1633
- #: subscribers/view-subscriber-sync.php:143
1634
- msgid "Sync"
1635
- msgstr "Sincronitzar"
1636
 
1637
- #: subscribers/view-subscriber-add.php:123
1638
- msgid "Enter Subscriber's Full name"
1639
- msgstr "Entra el nom complet del subscriptor"
1640
 
1641
- #: subscribers/view-subscriber-add.php:133
1642
- msgid "Enter Subscriber's Email Address"
1643
- msgstr "Entra l'adreça email del subscriptor"
1644
 
1645
- #: subscribers/view-subscriber-add.php:143
1646
- msgid "Select Subscriber's Status"
1647
- msgstr "Selecciona l'estat del subscriptor"
1648
 
1649
- #: subscribers/view-subscriber-add.php:148
1650
- #: subscribers/view-subscriber-edit.php:147
1651
- #: subscribers/view-subscriber-import.php:175
1652
- #: subscribers/view-subscriber-show.php:300
1653
- #: subscribers/view-subscriber-show.php:327
1654
- msgid "Confirmed"
1655
- msgstr "Confirmat"
1656
 
1657
- #: subscribers/view-subscriber-add.php:149
1658
- #: subscribers/view-subscriber-edit.php:148
1659
- #: subscribers/view-subscriber-import.php:176
1660
- #: subscribers/view-subscriber-show.php:301
1661
- #: subscribers/view-subscriber-show.php:328
1662
- msgid "Unconfirmed"
1663
- msgstr "Per confirmar"
1664
 
1665
- #: subscribers/view-subscriber-add.php:150
1666
- #: subscribers/view-subscriber-edit.php:149
1667
- #: subscribers/view-subscriber-import.php:177
1668
- #: subscribers/view-subscriber-show.php:302
1669
- #: subscribers/view-subscriber-show.php:329
1670
- msgid "Unsubscribed"
1671
- msgstr "No subscrit"
1672
 
1673
- #: subscribers/view-subscriber-add.php:158
1674
- msgid "Select (or) Create Group for Subscriber"
1675
- msgstr "Seleccionar (o) Crear grup de subscriptors"
1676
 
1677
- #: subscribers/view-subscriber-add.php:174
1678
- #: subscribers/view-subscriber-import.php:202
1679
- msgid "(or)"
1680
- msgstr "(o)"
1681
 
1682
- #: subscribers/view-subscriber-add.php:183
1683
- msgid "Add Subscriber"
1684
- msgstr "Afegit subscriptor"
1685
 
1686
- #: subscribers/view-subscriber-edit.php:64
1687
- msgid "Error: Special characters are not allowed in the group name."
1688
- msgstr "Error: Caràcters especials no estan permesos en el nom del grup."
1689
 
1690
- #: subscribers/view-subscriber-edit.php:74
1691
- msgid "Subscriber details updated."
1692
- msgstr "Dades del subscriptor guardades"
 
1693
 
1694
- #: subscribers/view-subscriber-edit.php:76
1695
- msgid "Subscriber already exists for this group."
1696
- msgstr "Aquest subscriptor ja existeix en aquest grup"
1697
 
1698
- #: subscribers/view-subscriber-edit.php:108
1699
- msgid "Edit Subscriber"
1700
- msgstr "Edita subscriptor"
 
 
 
1701
 
1702
- #: subscribers/view-subscriber-edit.php:122
1703
- msgid "Subscriber's Full Name"
1704
- msgstr "Nom complet del subscriptor"
 
1705
 
1706
- #: subscribers/view-subscriber-edit.php:132
1707
- msgid "Subscriber's Email Address"
1708
- msgstr "Adreça email del subscriptor"
1709
 
1710
- #: subscribers/view-subscriber-edit.php:142
1711
- msgid "Update Subscriber's Status"
1712
- msgstr "Actualitza l'estat del subscriptor"
1713
 
1714
- #: subscribers/view-subscriber-edit.php:157
1715
- msgid "Update Subscriber's Group"
1716
- msgstr "Actualitza el grup del subscriptor "
1717
 
1718
- #: subscribers/view-subscriber-export.php:26
1719
- msgid "Export Email Addresses"
1720
- msgstr "Exportar adreces d'email"
 
 
 
1721
 
1722
- #: subscribers/view-subscriber-export.php:38
1723
- #: subscribers/view-subscriber-export.php:46
1724
- msgid "Type of List to Export"
1725
- msgstr "Tipus de llista per exportar"
1726
 
1727
- #: subscribers/view-subscriber-export.php:39
1728
- #: subscribers/view-subscriber-export.php:47
1729
- msgid "Total Emails Count"
1730
- msgstr "Comptador de correus electrònics."
 
 
 
1731
 
1732
- #: subscribers/view-subscriber-export.php:53
1733
- msgid "1"
1734
- msgstr "1"
1735
 
1736
- #: subscribers/view-subscriber-export.php:54
1737
- msgid "Active Subscribers List"
1738
- msgstr "Llista de subscriptors actius"
1739
 
1740
- #: subscribers/view-subscriber-export.php:56
1741
- #: subscribers/view-subscriber-export.php:62
1742
- #: subscribers/view-subscriber-export.php:68
1743
- msgid "Click to Export in CSV"
1744
- msgstr "Feu clic a Exportar a CSV"
1745
 
1746
- #: subscribers/view-subscriber-export.php:59
1747
- msgid "2"
1748
- msgstr "2"
1749
 
1750
- #: subscribers/view-subscriber-export.php:60
1751
- msgid "WordPress Registered Users"
1752
- msgstr "Usuaris registrats de WordPress"
1753
 
1754
- #: subscribers/view-subscriber-export.php:65
1755
- msgid "3"
1756
- msgstr "3"
1757
 
1758
- #: subscribers/view-subscriber-export.php:66
1759
- msgid "Commented Authors"
1760
- msgstr "Autors dels comentaris"
1761
 
1762
- #: subscribers/view-subscriber-import.php:44
1763
  msgid ""
1764
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1765
  "the Group name."
@@ -1767,231 +1347,882 @@ msgstr ""
1767
  "Error: els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no es permeten "
1768
  "en el nom del grup"
1769
 
1770
- #: subscribers/view-subscriber-import.php:92
1771
  msgid "email imported."
1772
  msgstr "email importat"
1773
 
1774
- #: subscribers/view-subscriber-import.php:93
1775
  msgid "email already exists."
1776
  msgstr "Aquest email ja existeix"
1777
 
1778
- #: subscribers/view-subscriber-import.php:94
1779
  msgid "email are invalid."
1780
  msgstr "aquest email no és vàlid"
1781
 
1782
- #: subscribers/view-subscriber-import.php:97
1783
- #: subscribers/view-subscriber-import.php:126
1784
  msgid "Click here"
1785
  msgstr "Clica aquí"
1786
 
1787
- #: subscribers/view-subscriber-import.php:97
1788
- #: subscribers/view-subscriber-import.php:126
1789
  msgid " to view details."
1790
  msgstr "per veure els detalls."
1791
 
1792
- #: subscribers/view-subscriber-import.php:105
1793
  msgid "File Upload Failed."
1794
  msgstr "Ha fallat la pujada del fitxer"
1795
 
1796
- #: subscribers/view-subscriber-import.php:142
1797
  msgid "Import Email Addresses"
1798
  msgstr "Importar adreces d'email"
1799
 
1800
- #: subscribers/view-subscriber-import.php:155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1801
  msgid "Select CSV file"
1802
  msgstr "Seleccionar fitxer CSV"
1803
 
1804
- #: subscribers/view-subscriber-import.php:157
1805
  msgid "Check CSV structure "
1806
  msgstr "Comprovi estructura CSV"
1807
 
1808
- #: subscribers/view-subscriber-import.php:158
1809
  msgid "from here"
1810
  msgstr "Des d'aquí"
1811
 
1812
- #: subscribers/view-subscriber-import.php:169
1813
  msgid "Select Subscribers Email Status"
1814
  msgstr "Seleccioni l'estat dels emails dels subscriptors"
1815
 
1816
- #: subscribers/view-subscriber-import.php:185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1817
  msgid "Select (or) Create Group for Subscribers"
1818
  msgstr "Selecciona o crea grup pels subscriptors"
1819
 
1820
- #: subscribers/view-subscriber-show.php:45
1821
- msgid "Selected details does not exists."
1822
- msgstr "Les dades seleccionades no existeixen."
 
1823
 
1824
- #: subscribers/view-subscriber-show.php:56
1825
- #: subscribers/view-subscriber-show.php:95
1826
- msgid "Record deleted."
1827
- msgstr "Registre eliminat."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1828
 
1829
- #: subscribers/view-subscriber-show.php:67
1830
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1831
  msgstr ""
1832
  "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
1833
  "Opt-in a Double Opt In."
1834
 
1835
- #: subscribers/view-subscriber-show.php:75
1836
- #: subscribers/view-subscriber-show.php:134
1837
  msgid "Confirmation emails Resent Successfully."
1838
  msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
1839
 
1840
- #: subscribers/view-subscriber-show.php:100
1841
- #: subscribers/view-subscriber-show.php:139
1842
- #: subscribers/view-subscriber-show.php:177
1843
- #: subscribers/view-subscriber-show.php:216
1844
  msgid "No record was selected."
1845
  msgstr "No has seleccionat cap registre"
1846
 
1847
- #: subscribers/view-subscriber-show.php:115
1848
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1849
  msgstr ""
1850
  "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
1851
  "Double Opt In."
1852
 
1853
- #: subscribers/view-subscriber-show.php:163
1854
  msgid "Subscribers Group updated."
1855
  msgstr "Grup de subscriptors actualitzat"
1856
 
1857
- #: subscribers/view-subscriber-show.php:168
1858
  msgid "Please select New group to update."
1859
  msgstr "Selecciona nou grup per actualitzar."
1860
 
1861
- #: subscribers/view-subscriber-show.php:202
1862
  msgid "Subscribers Status updated."
1863
  msgstr "Estat des subscriptors actualitzat."
1864
 
1865
- #: subscribers/view-subscriber-show.php:207
1866
  msgid "Please select New Status to update."
1867
  msgstr "Selecciona nou estat per actualitzar"
1868
 
1869
- #: subscribers/view-subscriber-show.php:277
 
 
 
 
 
1870
  msgid "Bulk Actions"
1871
  msgstr "Accions en bloc"
1872
 
1873
- #: subscribers/view-subscriber-show.php:279
1874
- #: subscribers/view-subscriber-show.php:412
1875
  msgid "Resend Confirmation"
1876
  msgstr "Reenvia confirmació"
1877
 
1878
- #: subscribers/view-subscriber-show.php:281
1879
  msgid "Update Subscribers Status"
1880
  msgstr "Actualitzar l'estat dels subscriptors"
1881
 
1882
- #: subscribers/view-subscriber-show.php:284
1883
  msgid "Select Group"
1884
  msgstr "Selecciona un grup"
1885
 
1886
- #: subscribers/view-subscriber-show.php:299
1887
  msgid "Select Status"
1888
  msgstr "Selecciona estat"
1889
 
1890
- #: subscribers/view-subscriber-show.php:305
1891
  msgid "Apply"
1892
  msgstr "Aplicar"
1893
 
1894
- #: subscribers/view-subscriber-show.php:309
1895
  msgid "All Groups"
1896
  msgstr "Tots els grups"
1897
 
1898
- #: subscribers/view-subscriber-show.php:326
1899
  msgid "All Status"
1900
  msgstr "Tots els estats"
1901
 
1902
- #: subscribers/view-subscriber-show.php:333
1903
- msgid "1 to 200 emails"
1904
- msgstr "1 a 200 emails"
1905
 
1906
- #: subscribers/view-subscriber-show.php:334
1907
- msgid "201 to 400"
1908
- msgstr "201 a 400"
 
1909
 
1910
- #: subscribers/view-subscriber-show.php:335
1911
- msgid "401 to 600"
1912
- msgstr "401 a 600"
 
1913
 
1914
- #: subscribers/view-subscriber-show.php:336
1915
- msgid "601 to 800"
1916
- msgstr "601 a 800"
 
1917
 
1918
- #: subscribers/view-subscriber-show.php:337
1919
- msgid "801 to 1000"
1920
- msgstr "801 a 1000"
1921
 
1922
- #: subscribers/view-subscriber-show.php:338
1923
- msgid "1001 to 2000"
1924
- msgstr "1001 a 2000"
 
1925
 
1926
- #: subscribers/view-subscriber-show.php:339
1927
- msgid "2001 to 5000"
1928
- msgstr "2001 a 5000"
 
1929
 
1930
- #: subscribers/view-subscriber-show.php:340
1931
- msgid "5001 to 10000"
1932
- msgstr "5001 a 10000"
1933
 
1934
- #: subscribers/view-subscriber-show.php:341
1935
- msgid "Display All"
1936
- msgstr "Mostra-ho tot"
 
 
1937
 
1938
- #: subscribers/view-subscriber-show.php:353
1939
- #: subscribers/view-subscriber-show.php:367
1940
- msgid "Email Address"
1941
- msgstr "Adreça del correu electrònic"
1942
 
1943
- #: subscribers/view-subscriber-show.php:356
1944
- #: subscribers/view-subscriber-show.php:370
1945
- msgid "Group"
1946
- msgstr "Grup"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1947
 
1948
- #: subscribers/view-subscriber-show.php:357
1949
- #: subscribers/view-subscriber-show.php:371
1950
- msgid "Signup Date<br>(YYYY-MM-DD)"
1951
- msgstr "data de registre<br>(AAAA-MM-DD)"
 
 
 
1952
 
1953
- #: subscribers/view-subscriber-sync.php:36
1954
  msgid "Please select default group to newly registered user."
1955
  msgstr ""
1956
  "Si us plau, seleccioneu el grup per defecte per l'usuari recentment "
1957
  "registrat."
1958
 
1959
- #: subscribers/view-subscriber-sync.php:50
1960
  msgid "Emails Successfully Synced."
1961
  msgstr "Els correus electrònics sincronitzats amb èxit ."
1962
 
1963
- #: subscribers/view-subscriber-sync.php:88
1964
  msgid "Sync Email"
1965
  msgstr "sincronització del correu electrònic"
1966
 
1967
- #: subscribers/view-subscriber-sync.php:101
1968
  msgid "Sync newly registered users to subscribers list"
1969
  msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
1970
 
1971
- #: subscribers/view-subscriber-sync.php:114
1972
  msgid "Select group to add newly registered users to"
1973
  msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
1974
 
1975
- #. Plugin Name of the plugin/theme
1976
- msgid "Email Subscribers & Newsletters"
1977
- msgstr "Email Subscribers & Newsletters"
 
 
 
 
1978
 
1979
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.4) #-#-#-#-#
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 ""
1988
- "Add subscription forms on website, send HTML newsletters & automatically "
1989
- "notify subscribers about new blog posts once it is published."
1990
  msgstr ""
1991
- "Afegir formularis de subscripció a la pàgina web, enviar butlletins HTML i "
1992
- "notificar als subscriptors automàticament sobre nous missatges al blog una "
1993
- "vegada que es publiquen."
1994
 
1995
- #. Author of the plugin/theme
1996
- msgid "Icegram"
1997
- msgstr "Icegram"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:25:45 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
  "Language: Catalan\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
  "X-Loco-Target-Locale: ca_ES"
25
 
26
+ #. URI of the plugin
27
+ msgid "https://www.icegram.com"
 
 
28
  msgstr ""
 
 
 
 
 
 
29
 
30
+ #: ../email-subscribers.php:70
31
+ msgctxt "timezone date format"
32
+ msgid "Y-m-d H:i:s"
 
 
 
 
 
 
 
33
  msgstr ""
 
 
 
 
34
 
35
+ #: ../settings/settings-edit.php:23
36
+ msgid "Admin"
37
+ msgstr ""
38
 
39
+ #: ../settings/settings-edit.php:24
40
+ msgid "Signup Confirmation"
41
+ msgstr ""
42
 
43
+ #: ../settings/settings-edit.php:25
44
+ msgid "Cron"
45
+ msgstr ""
46
 
47
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
48
+ #: register.php:158
49
+ msgid "Settings"
50
+ msgstr ""
51
 
52
+ #: ../settings/settings-edit.php:92
53
+ msgid "Email Type"
54
+ msgstr ""
55
 
56
+ #: ../settings/settings-edit.php:93
57
+ msgid ""
58
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
59
+ "Option 3 & 4 is to send emails with PHP method mail()."
60
+ msgstr ""
61
 
62
+ #: ../settings/settings-edit.php:107
63
+ msgid "Opt-In Type"
64
+ msgstr ""
65
 
66
+ #: ../settings/settings-edit.php:108
67
+ msgid ""
68
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
69
+ "soon as they subscribe to your list. They have to confirm their subscription "
70
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
71
+ "subscriber is not asked to confirm their email address. They are subscribed "
72
+ "directly in the list."
73
+ msgstr ""
74
 
75
+ #: ../settings/settings-edit.php:139
76
+ msgid "Notify Admin when a new subscriber signs up"
77
+ msgstr ""
78
 
79
+ #: ../settings/settings-edit.php:152
80
+ msgid "Admin Email Subject on new subscriber sign up"
81
+ msgstr ""
82
 
83
+ #: ../settings/settings-edit.php:153
84
+ msgid ""
85
+ "Subject for the admin email whenever a new subscriber signs up and is "
86
+ "confirmed."
87
+ msgstr ""
88
 
89
+ #: ../settings/settings-edit.php:159
90
+ msgid "Admin Email Content on new subscriber signs up"
91
+ msgstr ""
 
 
92
 
93
+ #: ../settings/settings-edit.php:160
94
+ msgid ""
95
+ "Content for the admin email whenever a new subscriber signs up and is "
96
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
97
+ msgstr ""
98
 
99
+ #: ../settings/settings-edit.php:168
100
+ msgid "Subject for the email report which will be sent to admin."
101
+ msgstr ""
102
 
103
+ #: ../settings/settings-edit.php:175
104
+ msgid ""
105
+ "Content for the email report which will be sent to admin.<br />(Available "
106
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
107
+ msgstr ""
108
 
109
+ #: ../settings/settings-edit.php:186
110
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
111
+ msgstr ""
 
112
 
113
+ #: ../settings/settings-edit.php:187
114
+ msgid ""
115
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
116
+ "subscriber signs up."
117
+ msgstr ""
118
 
119
+ #: ../settings/settings-edit.php:193
120
+ msgid "Double Opt-In Email Content (Confirmation Email)"
121
+ msgstr ""
 
122
 
123
+ #: ../settings/settings-edit.php:194
124
+ msgid ""
125
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
126
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
127
+ msgstr ""
128
 
129
+ #: ../settings/settings-edit.php:200
130
+ msgid "Double Opt-In Confirmation Link"
131
+ msgstr ""
 
132
 
133
+ #: ../settings/settings-edit.php:207
134
+ msgid ""
135
+ "Text to display after an email address is successfully subscribed from "
136
+ "Double Opt-In (Confirmation) Email"
137
+ msgstr ""
138
 
139
+ #: ../settings/settings-edit.php:215
140
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
141
+ msgstr ""
 
142
 
143
+ #: ../settings/settings-edit.php:227
144
+ msgid "Subject for Welcome Email"
145
+ msgstr ""
 
146
 
147
+ #: ../settings/settings-edit.php:228
148
+ msgid ""
149
+ "Subject for the subscriber welcome email. This will be sent whenever a "
150
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
151
+ "Opt-In) successfully."
152
+ msgstr ""
153
 
154
+ #: ../settings/settings-edit.php:234
155
+ msgid "Email Content for Welcome Email"
156
+ msgstr ""
157
 
158
+ #: ../settings/settings-edit.php:235
159
+ msgid ""
160
+ "Content for the subscriber welcome email whenever a user's email is either "
161
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
162
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
163
+ msgstr ""
164
 
165
+ #: ../settings/settings-edit.php:244
166
+ msgid ""
167
+ "This unsubscribe link is automatically added to all the emails that are sent "
168
+ "from this plugin. It is a readonly field and you are advised not to modify "
169
+ "it."
170
+ msgstr ""
171
 
172
+ #: ../settings/settings-edit.php:251
173
+ msgid ""
174
+ "The text for the unsubscribe link. This text is automatically added with "
175
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
176
+ msgstr ""
177
 
178
+ #: ../settings/settings-edit.php:258
179
+ msgid ""
180
+ "This text will be displayed once user clicks on unsubscribe link from the "
181
+ "email."
182
+ msgstr ""
183
 
184
+ #: ../settings/settings-edit.php:265
185
+ msgid "Error in the Subscribe / Confirmation Link"
186
+ msgstr ""
 
187
 
188
+ #: ../settings/settings-edit.php:266
189
+ msgid ""
190
+ "Default message to display if there is any issue while clicking on subscribe "
191
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
192
+ msgstr ""
193
 
194
+ #: ../settings/settings-edit.php:273
 
195
  msgid ""
196
+ "Default message to display if there is any issue while clicking on "
197
+ "unsubscribe link from the emails."
198
  msgstr ""
 
 
199
 
200
+ #: ../settings/settings-edit.php:372
201
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
202
+ msgstr ""
 
203
 
204
+ #: ../settings/settings-edit.php:377
205
+ msgid "Cron Report"
206
+ msgstr ""
 
207
 
208
+ #: ../settings/settings-edit.php:378
209
+ msgid ""
210
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
211
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
212
+ msgstr ""
213
 
214
+ #: ../settings/settings-edit.php:389
215
+ msgid ""
216
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
217
+ "schedule-cron-emails/?"
218
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
219
+ "Cron?</a>"
220
+ msgstr ""
221
 
222
+ #: ../settings/settings-edit.php:390
223
+ msgid ""
224
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
225
+ "schedule-cron-emails-in-cpanel/?"
226
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
227
+ "job in cPanel</a>"
228
+ msgstr ""
229
 
230
+ #: ../settings/settings-edit.php:391
 
231
  msgid ""
232
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
233
+ "schedule-cron-emails-in-parallels-plesk/?"
234
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
235
+ "job in Plesk</a>"
236
  msgstr ""
 
 
237
 
238
+ #: ../settings/settings-edit.php:392
239
+ msgid ""
240
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
241
+ "if-hosting-doesnt-support-cron-jobs/?"
242
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
243
+ "does not support cron jobs?</a>"
244
+ msgstr ""
245
 
246
+ #: ../subscribers/view-subscriber-show.php:252
247
+ #, php-format
248
+ msgid "Total Subscribers: %s"
249
+ msgstr ""
250
 
251
+ #: ../subscribers/view-subscriber-show.php:254
252
+ #, php-format
253
+ msgid "Active Subscribers: %s"
254
+ msgstr ""
255
 
256
+ #: ../subscribers/view-subscriber-show.php:342
257
+ msgid "1 to 500 emails"
258
+ msgstr ""
 
259
 
260
+ #: ../subscribers/view-subscriber-show.php:343
261
+ msgid "501 to 1000"
 
262
  msgstr ""
 
 
263
 
264
+ #: ../subscribers/view-subscriber-show.php:344
265
+ msgid "1001 to 1500"
266
+ msgstr ""
 
267
 
268
+ #: ../subscribers/view-subscriber-show.php:345
269
+ msgid "1501 to 2000"
270
+ msgstr ""
 
271
 
272
+ #: ../subscribers/view-subscriber-show.php:346
273
+ msgid "2001 to 4000"
274
+ msgstr ""
 
275
 
276
+ #: ../subscribers/view-subscriber-show.php:347
277
+ msgid "4001 to 6000"
278
+ msgstr ""
 
279
 
280
+ #: ../subscribers/view-subscriber-show.php:348
281
+ msgid "6001 to 10000"
 
 
 
282
  msgstr ""
 
 
283
 
284
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
285
+ #: show.php:377
286
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
287
+ msgstr ""
288
 
289
+ #: ../subscribers/view-subscriber-export.php:62
290
+ msgid "All Subscribers"
291
+ msgstr ""
 
292
 
293
+ #: ../subscribers/view-subscriber-export.php:68
294
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
 
295
  msgstr ""
 
 
296
 
297
+ #: ../subscribers/view-subscriber-export.php:74
298
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
299
+ msgstr ""
 
300
 
301
+ #: ../subscribers/view-subscriber-export.php:79
302
+ msgid "4"
303
+ msgstr ""
 
304
 
305
+ #: ../subscribers/view-subscriber-export.php:85
306
+ msgid "5"
307
+ msgstr ""
 
308
 
309
+ #: ../compose/compose-edit.php:61
310
+ msgid "Successfully updated. "
311
+ msgstr ""
 
312
 
313
+ #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
314
+ msgid "Select your Email Template"
315
+ msgstr ""
 
316
 
317
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
318
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
319
+ msgstr ""
 
320
 
321
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
322
+ #, php-format
323
  msgid ""
324
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
325
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
326
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
327
  msgstr ""
 
 
 
 
328
 
329
+ #: ../compose/compose-add.php:43
330
+ msgid "Successfully created. "
331
+ msgstr ""
 
332
 
333
+ #: ../help/help.php:178
334
+ msgid "Get more help and tips..."
335
+ msgstr ""
 
336
 
337
+ #: ../help/help.php:192
338
+ #, php-format
339
+ msgid "Version: %s"
340
+ msgstr ""
341
 
342
+ #: ../help/help.php:195
343
+ msgid "Questions? Need Help?"
344
+ msgstr ""
 
345
 
346
+ #: ../help/help.php:196
347
+ msgid "Contact Us"
348
+ msgstr ""
 
349
 
350
+ #: ../help/help.php:201
351
+ #, php-format
352
+ msgid ""
353
+ "Like Email Subscribers? If yes, then consider %s to support further "
354
+ "developments."
355
+ msgstr ""
356
 
357
+ #: ../help/help.php:201
358
+ msgid "donating to us"
359
+ msgstr ""
 
360
 
361
+ #: ../help/help.php:236
362
+ msgid "Description"
363
+ msgstr ""
 
364
 
365
+ #: ../help/help.php:238
366
+ msgid ""
367
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
368
+ "leads, send automated new blog post notification emails, create & send "
369
+ "newsletters and manage all this in one single place."
370
+ msgstr ""
371
 
372
+ #: ../help/help.php:240
373
+ msgid "Feature Overview"
374
+ msgstr ""
 
375
 
376
+ #: ../help/help.php:243
 
377
  msgid ""
378
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
379
+ "Code)."
 
380
  msgstr ""
 
 
 
 
381
 
382
+ #: ../help/help.php:246
383
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
384
+ msgstr ""
 
385
 
386
+ #: ../help/help.php:249
387
+ msgid "Send automatic welcome email to subscribers."
388
+ msgstr ""
 
389
 
390
+ #: ../help/help.php:252
391
+ msgid ""
392
+ "Send new post notification emails to subscribers when new posts are "
393
+ "published on your website."
394
+ msgstr ""
395
 
396
+ #: ../help/help.php:255
397
+ msgid "Schedule email (Cron job) or send them manually."
398
+ msgstr ""
 
399
 
400
+ #: ../help/help.php:258
401
+ msgid "Send email notification to admin when a new user signs up."
402
+ msgstr ""
 
403
 
404
+ #: ../help/help.php:261
405
+ msgid "Automatically add Unsubscribe link in the email."
406
+ msgstr ""
407
 
408
+ #: ../help/help.php:264
409
+ msgid "Easily migrate subscribers from another app using Import & Export."
410
+ msgstr ""
411
 
412
+ #: ../help/help.php:267
413
+ msgid "Use HTML editor to compose newsletters and post notifications."
414
+ msgstr ""
415
 
416
+ #: ../help/help.php:270
417
+ msgid "Send newsletters to different groups."
418
+ msgstr ""
 
419
 
420
+ #: ../help/help.php:273
421
+ msgid "Get detailed sent email reports."
422
+ msgstr ""
 
423
 
424
+ #: ../help/help.php:276
425
+ msgid "Control user access (User Roles and Capabilities)."
426
+ msgstr ""
427
 
428
+ #: ../help/help.php:279
429
+ msgid "Supports localization and internationalization."
430
+ msgstr ""
431
 
432
+ #: ../help/help.php:286
433
+ msgid "Add Subscribe form"
434
+ msgstr ""
435
 
436
+ #: ../help/help.php:291
437
+ #, php-format
438
+ msgid ""
439
+ "Use any of the following 3 methods :<br>\n"
440
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
441
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
442
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
443
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
444
+ " c) Copy and past this php code to your desired template location : "
445
+ "<strong>%s</strong>"
446
+ msgstr ""
447
 
448
+ #: ../help/help.php:296
449
+ msgid "Additional form settings"
450
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
451
 
452
+ #: ../help/help.php:299
453
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
454
+ msgstr ""
455
 
456
+ #: ../help/help.php:302
457
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
458
+ msgstr ""
459
 
460
+ #: ../help/help.php:311
461
+ #, php-format
462
+ msgid "Modify %s"
463
+ msgstr ""
464
 
465
+ #: ../help/help.php:311
466
+ msgid "default text, email contents"
467
+ msgstr ""
468
 
469
+ #: ../help/help.php:311
470
+ msgid ""
471
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
472
+ "Roles"
473
+ msgstr ""
474
 
475
+ #: ../help/help.php:317
476
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
477
+ msgstr ""
478
 
479
+ #: ../help/help.php:320
480
+ msgid "How to change/update/translate any texts from the plugin?"
 
 
 
 
481
  msgstr ""
 
 
 
482
 
483
+ #: ../help/help.php:333
484
+ msgid "Usage"
485
+ msgstr ""
486
 
487
+ #: ../help/help.php:336
488
+ msgid "Compose and Send Newsletter Emails"
489
+ msgstr ""
 
 
 
 
490
 
491
+ #: ../help/help.php:339
492
+ msgid "Compose and Send Post Notification Emails when new posts are published"
493
+ msgstr ""
494
 
495
+ #: ../help/help.php:342
496
+ msgid "Keywords in the Post Notifications"
497
+ msgstr ""
498
 
499
+ #: ../help/help.php:345
500
+ msgid "Send a test post notification email to myself/testgroup"
501
+ msgstr ""
 
 
 
502
 
503
+ #: ../help/help.php:348
504
+ msgid "Check sent emails"
505
+ msgstr ""
 
 
 
 
506
 
507
+ #: ../help/help.php:355
508
+ msgid "Cron Job Setup"
509
+ msgstr ""
510
 
511
+ #: ../help/help.php:358
512
+ msgid "How to Schedule Cron Emails?"
513
+ msgstr ""
514
 
515
+ #: ../help/help.php:361
516
+ msgid "Schedule Cron Emails in cPanel"
517
+ msgstr ""
 
 
518
 
519
+ #: ../help/help.php:364
520
+ msgid "Schedule Cron Emails in Parallels Plesk"
521
+ msgstr ""
522
 
523
+ #: ../help/help.php:367
524
+ msgid "Hosting doesn’t support Cron Jobs?"
525
+ msgstr ""
 
 
526
 
527
+ #: ../help/help.php:374
528
+ msgid "Troubleshooting Steps"
529
+ msgstr ""
 
530
 
531
+ #: ../help/help.php:380
532
+ msgid "CSS Help"
533
+ msgstr ""
 
534
 
535
+ #: ../help/help.php:382
536
+ msgid "FAQ's"
537
+ msgstr ""
 
538
 
539
+ #: ../help/help.php:389
540
+ msgid "Want to do more? Here's how.."
541
+ msgstr ""
542
 
543
+ #: ../help/help.php:392
544
+ msgid "Allow Subscribers to get subscribed to any group"
545
+ msgstr ""
546
 
547
+ #: ../help/help.php:397
548
+ msgid "Using our free "
549
+ msgstr ""
 
 
550
 
551
+ #: ../help/help.php:398
552
+ msgid "Group Selector"
553
+ msgstr ""
 
554
 
555
+ #: ../help/help.php:399
556
+ msgid ""
557
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
558
+ "grouping option right next to the form."
559
+ msgstr ""
560
 
561
+ #: ../help/help.php:402
562
+ msgid "The user can then subscribe to whichever group most appeals to them."
563
+ msgstr ""
564
 
565
+ #: ../help/help.php:405
566
+ msgid "For example: Subscribe either to Updates or to Offers."
567
+ msgstr ""
568
 
569
+ #: ../help/help.php:409
570
+ msgid "Show your subscribe form inside attractive popups"
571
+ msgstr ""
572
 
573
+ #: ../help/help.php:414
574
  msgid ""
575
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
576
+ "bars, slide-ins, sidebars, full screen popups etc."
577
  msgstr ""
 
 
578
 
579
+ #: ../help/help.php:417
580
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
581
+ msgstr ""
582
 
583
+ #: ../help/help.php:421
584
+ msgid ""
585
+ "Icegram's beautiful designs instantly capture user attention and help "
586
+ "increase sign-ups to your WordPress website."
587
+ msgstr ""
588
 
589
+ #: ../help/help.php:424 ../help/help.php:444
590
+ #, php-format
591
+ msgid "How to %s"
592
  msgstr ""
 
 
593
 
594
+ #: ../help/help.php:424
595
+ msgid "show subscribe form inside a popup"
596
+ msgstr ""
597
 
598
+ #: ../help/help.php:428
599
+ msgid "Get beautiful and elegant form styles"
 
 
600
  msgstr ""
 
 
601
 
602
+ #: ../help/help.php:434
603
+ msgid "Email subscribers easily integrates with another free plugin "
604
+ msgstr ""
605
 
606
+ #: ../help/help.php:435
607
+ msgid "Rainmaker"
 
 
608
  msgstr ""
 
 
609
 
610
+ #: ../help/help.php:438
611
  msgid ""
612
+ "Rainmaker extends the core features of Email Subscribers and provides "
613
+ "elegant form styles."
614
  msgstr ""
 
 
615
 
616
+ #: ../help/help.php:441
617
  msgid ""
618
+ "These styles are well designed and beautify your subscription form making it "
619
+ "more appealing."
620
  msgstr ""
 
 
621
 
622
+ #: ../help/help.php:444
623
+ msgid "add Rainmaker’s form in Email Subscribers"
 
 
624
  msgstr ""
 
 
 
625
 
626
+ #: ../sendmail/sendmail.php:59
627
+ msgid "Email sent successfully. "
628
+ msgstr ""
629
 
630
+ #: ../classes/es-register.php:164
631
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
632
+ msgstr ""
633
 
634
+ #: ../classes/es-register.php:194
635
+ msgctxt "compose-enhanced-select"
636
+ msgid "Please enter the Email Subject."
637
+ msgstr ""
638
 
639
+ #: ../classes/es-register.php:707
640
+ msgctxt "timezone date format"
641
+ msgid "Y-m-d"
642
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
643
 
644
+ #: ../classes/es-register.php:724
645
+ msgid "is getting even better!"
646
+ msgstr ""
647
 
648
+ #: ../classes/es-register.php:725
649
+ msgid "But I need you to"
650
+ msgstr ""
651
 
652
+ #: ../classes/es-register.php:725
653
+ msgid "help me prioritize"
 
 
654
  msgstr ""
 
 
 
655
 
656
+ #: ../classes/es-register.php:725
657
+ msgid "Please send your response today."
658
+ msgstr ""
659
 
660
+ #: ../classes/es-register.php:732
661
+ msgid "Here's how you use ES:"
662
+ msgstr ""
663
 
664
+ #: ../classes/es-register.php:737
665
+ msgid "Post Notifications more often than Newsletter"
666
+ msgstr ""
667
 
668
+ #: ../classes/es-register.php:739
669
+ msgid "Newsletter more often than Post Notifications"
670
+ msgstr ""
671
 
672
+ #: ../classes/es-register.php:741
673
+ msgid "Post Notification &amp; Newsletter equally"
674
+ msgstr ""
675
 
676
+ #: ../classes/es-register.php:745
677
+ msgid "Have "
 
 
678
  msgstr ""
 
 
679
 
680
+ #: ../classes/es-register.php:745
681
+ msgid " Active Subscribers"
682
  msgstr ""
 
 
683
 
684
+ #: ../classes/es-register.php:746
685
+ msgid "Post "
686
+ msgstr ""
687
 
688
+ #: ../classes/es-register.php:746
689
+ msgid " blog per week"
690
+ msgstr ""
691
 
692
+ #: ../classes/es-register.php:750
693
+ msgid "Send emails via Cron"
694
+ msgstr ""
695
 
696
+ #: ../classes/es-register.php:752
697
+ msgid "Send emails Immediately"
698
+ msgstr ""
699
 
700
+ #: ../classes/es-register.php:759
701
+ msgid "Using Double Opt In"
702
+ msgstr ""
703
 
704
+ #: ../classes/es-register.php:761
705
+ msgid "Using Single Opt In"
706
+ msgstr ""
707
 
708
+ #: ../classes/es-register.php:779
709
+ msgid "How soon do you want these new features?"
710
+ msgstr ""
711
 
712
+ #: ../classes/es-register.php:783
713
+ msgid "Beautiful Email Designs"
714
+ msgstr ""
715
 
716
+ #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
717
+ #: register.php:794 ../classes/es-register.php:799
718
+ msgid "Right now!"
719
+ msgstr ""
720
 
721
+ #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
722
+ #: register.php:795 ../classes/es-register.php:800
723
+ msgid "Soon"
724
+ msgstr ""
725
 
726
+ #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
727
+ #: register.php:796 ../classes/es-register.php:801
728
+ msgid "Later"
 
 
729
  msgstr ""
 
 
730
 
731
+ #: ../classes/es-register.php:788
732
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
733
+ msgstr ""
734
+
735
+ #: ../classes/es-register.php:793
736
+ msgid "Discard Fake / Bouncing Emails"
737
+ msgstr ""
738
+
739
+ #: ../classes/es-register.php:798
740
+ msgid "Advanced Reporting"
741
+ msgstr ""
742
+
743
+ #: ../classes/es-register.php:810
744
+ msgid "Nah, I don't like improvements"
745
+ msgstr ""
746
+
747
+ #: ../classes/es-register.php:816
748
+ msgid "Next"
749
+ msgstr ""
750
+
751
+ #: ../classes/es-register.php:826
752
+ msgid "Thank you!"
753
+ msgstr ""
754
+
755
+ #: ../classes/es-register.php:827
756
+ msgid "No issues, have a nice day!"
757
+ msgstr ""
758
 
759
+ #: ../notification/notification-add.php:33
760
  msgid "Please select subscribers group."
761
  msgstr "Si us plau, seleccioneu el grup de subscriptors."
762
 
763
+ #: ../notification/notification-add.php:39
764
  msgid "Please select notification status."
765
  msgstr "Seleccioneu l'estat de la notificació."
766
 
767
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
768
  msgid "Please select notification mail subject. Use compose menu to create new."
769
  msgstr ""
770
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
771
  "composició per crear-ne de nous."
772
 
773
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
774
  msgid "Please select post categories."
775
  msgstr "Seleccioneu les categories de correus."
776
 
777
+ #: ../notification/notification-add.php:71
778
  msgid "Notification successfully created. "
779
  msgstr "Notificació creada correctament."
780
 
781
+ #: ../notification/notification-add.php:112
782
  msgid "Add Notification"
783
  msgstr "Afegir notificació"
784
 
785
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
786
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
787
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
788
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
789
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
790
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
791
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
792
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
793
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
794
+ msgid "Help"
795
+ msgstr "Ajuda"
796
+
797
+ #: ../notification/notification-add.php:120
798
  msgid "Select Subscribers Group"
799
  msgstr "Seleccioneu Grup Subscriptors"
800
 
801
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
802
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
803
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
804
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
805
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
806
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
 
 
807
  msgid "Select"
808
  msgstr "seleccionar"
809
 
810
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
811
+ #: 162
812
  msgid "Select Notification Email Subject"
813
  msgstr "Selecciona notificació assumpte del correu"
814
 
815
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
816
+ #: 163
817
  msgid "(Use compose menu to create new)"
818
  msgstr "(Utilitzeu el menú de composició per crear-ne de nou)"
819
 
820
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
821
+ #: 190
822
  msgid "Select Post Categories"
823
  msgstr "Seleccioneu categoria de correu"
824
 
825
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
826
+ #: 225
827
  msgid "Check All"
828
  msgstr "Seleccionar-ho tot"
829
 
830
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
831
+ #: 226
832
  msgid "Uncheck All"
833
  msgstr "Deseleccionar-ho tot"
834
 
835
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
836
+ #: 233
837
  msgid "Select your Custom Post Type"
838
  msgstr "Seleccioni el seu tipus personalitzat del Post"
839
 
840
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
841
+ #: 234
842
  msgid "(Optional)"
843
  msgstr "(Opcional)"
844
 
845
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
846
+ #: 268
847
  msgid "No Custom Post Types Available"
848
  msgstr "Sense tipus de Post personalitzats disponibles"
849
 
850
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
851
+ #: 275
852
  msgid "Select Notification Status when a new post is published"
853
  msgstr "Tria un estat de notificació quan es publica una nova entrada"
854
 
855
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
856
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
 
857
  msgid "Send email immediately"
858
  msgstr "Enviar email immediatamanet"
859
 
860
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
861
+ #: 132 ../notification/notification-edit.php:280
 
862
  msgid "Add to cron and send email via cron job"
863
  msgstr "Afegir a cron i enviar correu electrònic a través de cron"
864
 
865
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
866
+ #: 281
867
  msgid "Disable email notification"
868
  msgstr "Desactivar la notificació de correu electrònic"
869
 
870
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
871
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
872
+ #: 117 ../compose/compose-add.php:105
873
+ msgid "Save"
874
+ msgstr "Desar"
875
 
876
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
877
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
878
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
879
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
880
+ msgid "Oops, selected details does not exists."
881
+ msgstr "Vaja, les dades seleccionades no existeixen."
882
 
883
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
884
+ #: compose/compose-show.php:47
885
+ msgid "Selected record deleted."
886
+ msgstr "Eliminat el registre seleccionat ."
887
 
888
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
889
+ #: classes/es-register.php:152
890
+ msgid "Post Notifications"
891
+ msgstr "Notificacions de les entrades"
892
 
893
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
894
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
895
+ msgid "Add New"
896
+ msgstr "Afegir nou"
897
 
898
+ #: ../notification/notification-show.php:57
899
  msgid ""
900
  "Use this to setup and send notification emails to your subscribers when a "
901
  "new post is published in your blog."
903
  "Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
904
  "electrònic als subscriptors quan es publica una nova entrada al bloc."
905
 
906
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
907
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:84
908
+ msgid "Email Subject"
909
+ msgstr "Subjecte del email"
910
+
911
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
912
+ #: 77
913
  msgid "Subscribers Group"
914
  msgstr "Grups de subscriptors"
915
 
916
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
917
+ #: 78
918
  msgid "Post Categories / Custom Post Types"
919
  msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
920
 
921
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
922
+ #: 79
923
  msgid "Notification Status"
924
  msgstr "Estat de la notificació"
925
 
926
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
927
+ #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
928
+ msgid "Edit"
929
+ msgstr "Editar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
930
 
931
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
932
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
933
+ #: php:102
934
+ msgid "Delete"
935
+ msgstr "Esborrar"
936
 
937
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
938
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
939
+ #: 432 ../compose/compose-show.php:111
940
+ msgid "No records available."
941
+ msgstr "No hi ha registres disponibles."
942
 
943
+ #: ../notification/notification-edit.php:49
944
+ msgid "Please select subscribers group"
945
+ msgstr "Selecciona el grup de subscriptors"
946
 
947
+ #: ../notification/notification-edit.php:55
948
+ msgid "Please select notification status"
949
+ msgstr "Selecciona l'estat de notificació"
950
 
951
+ #: ../notification/notification-edit.php:89
952
+ msgid "Notification successfully updated. "
953
+ msgstr "Notificació actualitzada correctament."
954
 
955
+ #: ../notification/notification-edit.php:122
956
+ msgid "Edit Notification"
957
+ msgstr "Editar la notificació"
958
 
959
+ #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
960
+ #: php:289
961
+ msgid "Update Subscribers Group"
962
+ msgstr "Actualitzar grups de subscriptors"
 
 
 
963
 
964
+ #. Plugin Name of the plugin/theme
965
+ msgid "Email Subscribers & Newsletters"
966
+ msgstr "Email Subscribers & Newsletters"
967
 
968
+ #. Description of the plugin/theme
969
  msgid ""
970
+ "Add subscription forms on website, send HTML newsletters & automatically "
971
+ "notify subscribers about new blog posts once it is published."
972
  msgstr ""
973
+ "Afegir formularis de subscripció a la pàgina web, enviar butlletins HTML i "
974
+ "notificar als subscriptors automàticament sobre nous missatges al blog una "
975
+ "vegada que es publiquen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
976
 
977
+ #. Author of the plugin/theme
978
+ msgid "Icegram"
979
+ msgstr "Icegram"
980
 
981
+ #: ../settings/settings-edit.php:26
982
+ msgid "User Roles"
983
+ msgstr "Funcions d'usuari"
984
 
985
+ #: ../settings/settings-edit.php:67
986
+ msgid "Save Settings"
987
+ msgstr "Desa la configuració"
988
 
989
+ #: ../settings/settings-edit.php:81
990
  msgid "Sender of Notifications"
991
  msgstr "Remitent de Notificacions"
992
 
993
+ #: ../settings/settings-edit.php:82
994
  msgid ""
995
  "Choose a FROM name and FROM email address for all the emails to be sent from "
996
  "this plugin."
998
  "Triar un remitent i una adreça de correu electrònic per a tots els correus "
999
  "electrònics per ser enviats des d'aquest plugin."
1000
 
1001
+ #: ../settings/settings-edit.php:97
 
 
 
 
 
 
 
 
 
 
 
 
 
1002
  msgid "1. WP HTML MAIL"
1003
  msgstr "1. WP HTML MAIL"
1004
 
1005
+ #: ../settings/settings-edit.php:98
1006
  msgid "2. WP PLAINTEXT MAIL"
1007
  msgstr "2. WP TEXT PLA MAIL"
1008
 
1009
+ #: ../settings/settings-edit.php:99
1010
  msgid "3. PHP HTML MAIL"
1011
  msgstr "3. PHP HTML MAIL"
1012
 
1013
+ #: ../settings/settings-edit.php:100
1014
  msgid "4. PHP PLAINTEXT MAIL"
1015
  msgstr "4. PHP TEXT PLA MAIL"
1016
 
1017
+ #: ../settings/settings-edit.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1018
  msgid "Double Opt In"
1019
  msgstr "Doble Opt In"
1020
 
1021
+ #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:
1022
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
1023
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
1024
+ #: subscriber-edit.php:150
 
1025
  msgid "Single Opt In"
1026
  msgstr "Opt In sencill"
1027
 
1028
+ #: ../settings/settings-edit.php:119
1029
  msgid "Image Size"
1030
  msgstr "Mida de la imatge"
1031
 
1032
+ #: ../settings/settings-edit.php:120
1033
  msgid ""
1034
  "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1035
  "Emails."
1037
  "Selecciona la mida de la imatge per ###POSTIMAGE### que es mostra en els "
1038
  "missatges de notificació"
1039
 
1040
+ #: ../settings/settings-edit.php:124
1041
  msgid "Full Size"
1042
  msgstr "mida completa"
1043
 
1044
+ #: ../settings/settings-edit.php:125
1045
  msgid "Medium Size"
1046
  msgstr "Mida mitjana"
1047
 
1048
+ #: ../settings/settings-edit.php:126
1049
  msgid "Thumbnail"
1050
  msgstr "Miniatura"
1051
 
1052
+ #: ../settings/settings-edit.php:132
1053
+ msgid "Admin Email Addresses"
1054
+ msgstr "Adreces email dels administradors"
1055
 
1056
+ #: ../settings/settings-edit.php:133
1057
  msgid ""
1058
+ "Enter the admin email addresses that should receive notifications (separated "
1059
+ "by comma)."
 
 
 
 
 
 
1060
  msgstr ""
1061
+ "Introduïu les adreces de correu electrònic d'administració que han de rebre "
1062
+ "notificacions (separades per comes)."
1063
 
1064
+ #: ../settings/settings-edit.php:140
1065
  msgid ""
1066
+ "To send admin email notifications for the new subscriber. This option must "
1067
+ "be set to YES."
1068
  msgstr ""
1069
+ "Per enviar notificacions per correu electrònic a l'administrador per un nou "
1070
+ "subscrit. Aquesta opció ha d'estar a YES."
1071
+
1072
+ #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
1073
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
1074
+ msgid "YES"
1075
+ msgstr "Si"
1076
+
1077
+ #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
1078
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
1079
+ msgid "NO"
1080
+ msgstr "No"
1081
+
1082
+ #: ../settings/settings-edit.php:167
1083
+ msgid "Sent Report Subject"
1084
+ msgstr "Assumpte del informe enviat"
1085
 
1086
+ #: ../settings/settings-edit.php:174
1087
+ msgid "Sent Report Content"
1088
+ msgstr "Contingut del informe enviat"
1089
 
1090
+ #: ../settings/settings-edit.php:201
1091
  msgid "It is a readonly field and you are advised not to modify it."
1092
  msgstr "És un camp de només lectura i se li recomana no modificar-lo."
1093
 
1094
+ #: ../settings/settings-edit.php:208
 
 
 
 
 
 
 
 
1095
  msgid ""
1096
  "This text will be displayed once user clicks on email confirmation link from "
1097
  "the Double Opt In (confirmation) Email."
1099
  "Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
1100
  "confirmació del correu electrònic pel Doble Opt In (confirmació)"
1101
 
1102
+ #: ../settings/settings-edit.php:216
 
 
 
 
1103
  msgid ""
1104
  "To send welcome email to subscriber after successful signup. This option "
1105
  "must be set to YES."
1107
  "Per enviar correu electrònic de benvinguda al subscriptor després del "
1108
  "registre amb èxit. Aquesta opció ha d'estar a YES."
1109
 
1110
+ #: ../settings/settings-edit.php:243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  msgid "Unsubscribe Link"
1112
  msgstr "Enllaç per a donar-se de baixa"
1113
 
1114
+ #: ../settings/settings-edit.php:250
 
 
 
 
 
 
 
 
 
 
1115
  msgid "Unsubscribe Text in Email"
1116
  msgstr "Text de donar-se de baixa en el correu electrònic"
1117
 
1118
+ #: ../settings/settings-edit.php:257
 
 
 
 
 
 
 
 
 
1119
  msgid "Text to display after an email address is unsubscribed"
1120
  msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
1121
 
1122
+ #: ../settings/settings-edit.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1123
  msgid "Error in the Unsubscribe Link"
1124
  msgstr "Error amb l'enllaç de baixa"
1125
 
1126
+ #: ../settings/settings-edit.php:285
1127
+ msgid "Select user roles who can access following menus. Only Admin can change this."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1128
  msgstr ""
1129
+ "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
1130
+ "administrador pot canviar això."
1131
 
1132
+ #: ../settings/settings-edit.php:291
1133
+ msgid "Subscribers Menu"
1134
+ msgstr "Menú dels subscriptors"
1135
 
1136
+ #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1137
+ #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1138
+ #: settings/settings-edit.php:343
1139
+ msgid "Administrator Only"
1140
+ msgstr "Només l'administrador"
 
 
1141
 
1142
+ #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
1143
+ #: settings/settings-edit.php:320 ../settings/settings-edit.php:332 ..
1144
+ #: settings/settings-edit.php:344
1145
+ msgid "Administrator/Editor"
1146
+ msgstr "Administrador/editor"
1147
 
1148
+ #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
1149
+ #: settings/settings-edit.php:321 ../settings/settings-edit.php:333 ..
1150
+ #: settings/settings-edit.php:345
1151
+ msgid "Administrator/Editor/Author/Contributor"
1152
+ msgstr "Administrador/editor/autor/contribuidor"
 
 
1153
 
1154
+ #: ../settings/settings-edit.php:303
1155
+ msgid "Compose Menu"
1156
+ msgstr "Manú per compondre"
 
 
1157
 
1158
+ #: ../settings/settings-edit.php:315
1159
+ msgid "Post Notifications Menu"
1160
+ msgstr "Menú de notificacionns"
 
 
 
 
 
1161
 
1162
+ #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
1163
+ #: register.php:154 ../classes/es-register.php:155
1164
+ msgid "Newsletters"
1165
+ msgstr "Butlletins"
1166
 
1167
+ #: ../settings/settings-edit.php:339
1168
+ msgid "Reports Menu"
1169
+ msgstr "menú d'informes"
 
 
1170
 
1171
+ #: ../settings/settings-edit.php:356
1172
+ msgid "Cron job URL"
1173
+ msgstr "URL de treball del Cron"
1174
 
1175
+ #: ../settings/settings-edit.php:357
1176
  msgid ""
1177
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1178
+ "modify it."
1179
  msgstr ""
1180
+ "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
1181
+ "recomana no modificar-lo."
 
 
 
 
 
 
 
 
 
1182
 
1183
+ #: ../settings/settings-edit.php:366
1184
+ msgid "Email Count"
1185
+ msgstr "Comte de correu electrònic"
1186
 
1187
+ #: ../settings/settings-edit.php:367
1188
+ msgid "Number of emails that you want to trigger per hour."
1189
+ msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
 
 
 
 
1190
 
1191
+ #: ../settings/settings-edit.php:388
1192
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1193
+ msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
1194
 
1195
+ #: ../settings/settings-edit.php:507
1196
+ msgid "Please enter sender of notifications from name."
1197
+ msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
1198
 
1199
+ #: ../settings/settings-edit.php:512
1200
+ msgid "Please enter sender of notifications from email."
1201
+ msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
1202
 
1203
+ #: ../settings/settings-edit.php:556
1204
+ msgid "Please enter valid mail count."
1205
+ msgstr "Si us plau, introdueix un compte de correu electrònic vàlid."
 
 
 
 
 
1206
 
1207
+ #: ../settings/settings-edit.php:569
1208
+ msgid "Settings Saved."
1209
+ msgstr "Configuració guardada"
 
 
 
 
 
1210
 
1211
+ #: ../settings/settings-edit.php:572
1212
+ msgid "Oops, unable to update."
1213
+ msgstr "Vaja, no es pot actualitzar."
 
 
 
 
1214
 
1215
+ #: ../settings/setting-sync.php:16
1216
+ msgid "Table sync completed successfully."
1217
+ msgstr "Taula de sincronització completada amb èxit."
 
 
 
 
 
1218
 
1219
+ #: ../settings/setting-sync.php:29
1220
+ msgid "Sync plugin tables"
1221
+ msgstr "Taules de sincronització de plugin"
1222
 
1223
+ #: ../settings/setting-sync.php:33
1224
+ msgid "Click to sync tables"
1225
+ msgstr "Clica per sincronitzar les taules"
1226
 
1227
+ #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1228
+ msgid "Preview Mail"
1229
+ msgstr "Visió prèvia del correu"
1230
 
1231
+ #: ../sentmail/sentmail-preview.php:42
1232
+ msgid "Back"
1233
+ msgstr "Enrera"
 
 
 
 
1234
 
1235
+ #: ../sentmail/sentmail-show.php:43
1236
+ msgid "Successfully deleted all reports except latest 10."
1237
+ msgstr "S'han eliminat tots els informes excepte els 10 últims."
 
 
 
 
1238
 
1239
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1240
+ msgid " &lt;&lt; "
1241
+ msgstr " &lt;&lt; "
 
 
 
 
1242
 
1243
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1244
+ msgid " &gt;&gt; "
1245
+ msgstr " &gt;&gt; "
1246
 
1247
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1248
+ #: register.php:161
1249
+ msgid "Reports"
1250
+ msgstr "Informes"
1251
 
1252
+ #: ../sentmail/sentmail-show.php:97
1253
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1254
+ msgstr "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
1255
 
1256
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1257
+ msgid "View Reports"
1258
+ msgstr "Veure informes"
1259
 
1260
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1261
+ #: compose/compose-show.php:103
1262
+ msgid "Preview"
1263
+ msgstr "Vista previa"
1264
 
1265
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1266
+ msgid "Type"
1267
+ msgstr "Tipus"
1268
 
1269
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1270
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1271
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1272
+ #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1273
+ msgid "Status"
1274
+ msgstr "Estat"
1275
 
1276
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1277
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
1278
+ msgid "Sent"
1279
+ msgstr "Enviat"
1280
 
1281
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1282
+ msgid "Start Date"
1283
+ msgstr "Data d'inici"
1284
 
1285
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1286
+ msgid "End Date"
1287
+ msgstr "Data final"
1288
 
1289
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1290
+ msgid "Total"
1291
+ msgstr "Total"
1292
 
1293
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1294
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
1295
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1296
+ #: subscriber-export.php:56
1297
+ msgid "Action"
1298
+ msgstr "Acció"
1299
 
1300
+ #: ../sentmail/sentmail-show.php:190
1301
+ msgid "Optimize Table & Delete Records"
1302
+ msgstr "Optimitzar la taula i eliminar registres"
 
1303
 
1304
+ #: ../sentmail/sentmail-show.php:199
1305
+ msgid ""
1306
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1307
+ "button to delete all reports except latest 10."
1308
+ msgstr ""
1309
+ "Nota: Si us plau, feu clic al botó <strong> Optimitzar la taula i eliminar "
1310
+ "registres </ strong> per eliminar tots els informes excepte els 10 últims."
1311
 
1312
+ #: ../sentmail/deliverreport-show.php:14
1313
+ msgid "Oops.. Unexpected error occurred. Please try again."
1314
+ msgstr "Vaja... S'ha produït un error inesperat. Si us plau torna-ho a provar."
1315
 
1316
+ #: ../sentmail/deliverreport-show.php:57
1317
+ msgid "Delivery Report"
1318
+ msgstr "Informe de lliurament"
1319
 
1320
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
1321
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
1322
+ #: export.php:53
1323
+ msgid "Sno"
1324
+ msgstr "Sno"
1325
 
1326
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
1327
+ msgid "Email"
1328
+ msgstr "Email"
1329
 
1330
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
1331
+ msgid "Sent Date"
1332
+ msgstr "data d'enviament"
1333
 
1334
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1335
+ msgid "Viewed Status"
1336
+ msgstr "Veure status"
1337
 
1338
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
1339
+ msgid "Viewed Date"
1340
+ msgstr "Veure data"
1341
 
1342
+ #: ../subscribers/view-subscriber-import.php:44
1343
  msgid ""
1344
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1345
  "the Group name."
1347
  "Error: els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no es permeten "
1348
  "en el nom del grup"
1349
 
1350
+ #: ../subscribers/view-subscriber-import.php:92
1351
  msgid "email imported."
1352
  msgstr "email importat"
1353
 
1354
+ #: ../subscribers/view-subscriber-import.php:93
1355
  msgid "email already exists."
1356
  msgstr "Aquest email ja existeix"
1357
 
1358
+ #: ../subscribers/view-subscriber-import.php:94
1359
  msgid "email are invalid."
1360
  msgstr "aquest email no és vàlid"
1361
 
1362
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1363
+ #: import.php:126
1364
  msgid "Click here"
1365
  msgstr "Clica aquí"
1366
 
1367
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1368
+ #: import.php:126
1369
  msgid " to view details."
1370
  msgstr "per veure els detalls."
1371
 
1372
+ #: ../subscribers/view-subscriber-import.php:105
1373
  msgid "File Upload Failed."
1374
  msgstr "Ha fallat la pujada del fitxer"
1375
 
1376
+ #: ../subscribers/view-subscriber-import.php:142
1377
  msgid "Import Email Addresses"
1378
  msgstr "Importar adreces d'email"
1379
 
1380
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1381
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1382
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
1383
+ #: subscribers/view-subscriber-sync.php:89
1384
+ msgid "Add New Subscriber"
1385
+ msgstr "Afegir nou subscriptor"
1386
+
1387
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1388
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
1389
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1390
+ msgid "Export"
1391
+ msgstr "Exportar"
1392
+
1393
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1394
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1395
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1396
+ #: subscribers/view-subscriber-sync.php:143
1397
+ msgid "Sync"
1398
+ msgstr "Sincronitzar"
1399
+
1400
+ #: ../subscribers/view-subscriber-import.php:155
1401
  msgid "Select CSV file"
1402
  msgstr "Seleccionar fitxer CSV"
1403
 
1404
+ #: ../subscribers/view-subscriber-import.php:157
1405
  msgid "Check CSV structure "
1406
  msgstr "Comprovi estructura CSV"
1407
 
1408
+ #: ../subscribers/view-subscriber-import.php:158
1409
  msgid "from here"
1410
  msgstr "Des d'aquí"
1411
 
1412
+ #: ../subscribers/view-subscriber-import.php:169
1413
  msgid "Select Subscribers Email Status"
1414
  msgstr "Seleccioni l'estat dels emails dels subscriptors"
1415
 
1416
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1417
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1418
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1419
+ msgid "Confirmed"
1420
+ msgstr "Confirmat"
1421
+
1422
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1423
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1424
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1425
+ msgid "Unconfirmed"
1426
+ msgstr "Per confirmar"
1427
+
1428
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1429
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1430
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1431
+ msgid "Unsubscribed"
1432
+ msgstr "No subscrit"
1433
+
1434
+ #: ../subscribers/view-subscriber-import.php:185
1435
  msgid "Select (or) Create Group for Subscribers"
1436
  msgstr "Selecciona o crea grup pels subscriptors"
1437
 
1438
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1439
+ #: add.php:174
1440
+ msgid "(or)"
1441
+ msgstr "(o)"
1442
 
1443
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1444
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1445
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1446
+ #: subscribers/view-subscriber-sync.php:90
1447
+ msgid "Import"
1448
+ msgstr "Importar"
1449
+
1450
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1451
+ #: sendmail/sendmail.php:18
1452
+ msgid "Click Here"
1453
+ msgstr "Clica aquí"
1454
+
1455
+ #: ../subscribers/view-subscriber-show.php:45
1456
+ msgid "Selected details does not exists."
1457
+ msgstr "Les dades seleccionades no existeixen."
1458
+
1459
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1460
+ #: php:95
1461
+ msgid "Record deleted."
1462
+ msgstr "Registre eliminat."
1463
 
1464
+ #: ../subscribers/view-subscriber-show.php:67
1465
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1466
  msgstr ""
1467
  "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
1468
  "Opt-in a Double Opt In."
1469
 
1470
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1471
+ #: php:134
1472
  msgid "Confirmation emails Resent Successfully."
1473
  msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
1474
 
1475
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1476
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1477
+ #: subscriber-show.php:216
 
1478
  msgid "No record was selected."
1479
  msgstr "No has seleccionat cap registre"
1480
 
1481
+ #: ../subscribers/view-subscriber-show.php:115
1482
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1483
  msgstr ""
1484
  "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
1485
  "Double Opt In."
1486
 
1487
+ #: ../subscribers/view-subscriber-show.php:163
1488
  msgid "Subscribers Group updated."
1489
  msgstr "Grup de subscriptors actualitzat"
1490
 
1491
+ #: ../subscribers/view-subscriber-show.php:168
1492
  msgid "Please select New group to update."
1493
  msgstr "Selecciona nou grup per actualitzar."
1494
 
1495
+ #: ../subscribers/view-subscriber-show.php:202
1496
  msgid "Subscribers Status updated."
1497
  msgstr "Estat des subscriptors actualitzat."
1498
 
1499
+ #: ../subscribers/view-subscriber-show.php:207
1500
  msgid "Please select New Status to update."
1501
  msgstr "Selecciona nou estat per actualitzar"
1502
 
1503
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1504
+ #: classes/es-register.php:146
1505
+ msgid "Subscribers"
1506
+ msgstr "Subscriptors"
1507
+
1508
+ #: ../subscribers/view-subscriber-show.php:286
1509
  msgid "Bulk Actions"
1510
  msgstr "Accions en bloc"
1511
 
1512
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1513
+ #: show.php:417
1514
  msgid "Resend Confirmation"
1515
  msgstr "Reenvia confirmació"
1516
 
1517
+ #: ../subscribers/view-subscriber-show.php:290
1518
  msgid "Update Subscribers Status"
1519
  msgstr "Actualitzar l'estat dels subscriptors"
1520
 
1521
+ #: ../subscribers/view-subscriber-show.php:293
1522
  msgid "Select Group"
1523
  msgstr "Selecciona un grup"
1524
 
1525
+ #: ../subscribers/view-subscriber-show.php:308
1526
  msgid "Select Status"
1527
  msgstr "Selecciona estat"
1528
 
1529
+ #: ../subscribers/view-subscriber-show.php:314
1530
  msgid "Apply"
1531
  msgstr "Aplicar"
1532
 
1533
+ #: ../subscribers/view-subscriber-show.php:318
1534
  msgid "All Groups"
1535
  msgstr "Tots els grups"
1536
 
1537
+ #: ../subscribers/view-subscriber-show.php:335
1538
  msgid "All Status"
1539
  msgstr "Tots els estats"
1540
 
1541
+ #: ../subscribers/view-subscriber-show.php:349
1542
+ msgid "Display All"
1543
+ msgstr "Mostra-ho tot"
1544
 
1545
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1546
+ #: show.php:373
1547
+ msgid "Email Address"
1548
+ msgstr "Adreça del correu electrònic"
1549
 
1550
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1551
+ #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1552
+ msgid "Name"
1553
+ msgstr "Nom"
1554
 
1555
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1556
+ #: show.php:376
1557
+ msgid "Group"
1558
+ msgstr "Grup"
1559
 
1560
+ #: ../subscribers/view-subscriber-export.php:34
1561
+ msgid "Export Email Addresses"
1562
+ msgstr "Exportar adreces d'email"
1563
 
1564
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1565
+ #: export.php:54
1566
+ msgid "Type of List to Export"
1567
+ msgstr "Tipus de llista per exportar"
1568
 
1569
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1570
+ #: export.php:55
1571
+ msgid "Total Emails Count"
1572
+ msgstr "Comptador de correus electrònics."
1573
 
1574
+ #: ../subscribers/view-subscriber-export.php:61
1575
+ msgid "1"
1576
+ msgstr "1"
1577
 
1578
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1579
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1580
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1581
+ msgid "Click to Export in CSV"
1582
+ msgstr "Feu clic a Exportar a CSV"
1583
 
1584
+ #: ../subscribers/view-subscriber-export.php:67
1585
+ msgid "2"
1586
+ msgstr "2"
 
1587
 
1588
+ #: ../subscribers/view-subscriber-export.php:73
1589
+ msgid "3"
1590
+ msgstr "3"
1591
+
1592
+ #: ../subscribers/view-subscriber-export.php:80
1593
+ msgid "WordPress Registered Users"
1594
+ msgstr "Usuaris registrats de WordPress"
1595
+
1596
+ #: ../subscribers/view-subscriber-export.php:86
1597
+ msgid "Commented Authors"
1598
+ msgstr "Autors dels comentaris"
1599
+
1600
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1601
+ #: php:54
1602
+ msgid "Please enter subscriber email address."
1603
+ msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1604
+
1605
+ #: ../subscribers/view-subscriber-add.php:49
1606
+ msgid "Please select or create your group for this email."
1607
+ msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
1608
+
1609
+ #: ../subscribers/view-subscriber-add.php:56
1610
+ msgid ""
1611
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1612
+ "the group name."
1613
+ msgstr ""
1614
+ "Error: Els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no estan "
1615
+ "permesos en el nom del grup."
1616
+
1617
+ #: ../subscribers/view-subscriber-add.php:66
1618
+ msgid "Subscriber has been saved."
1619
+ msgstr "El subscriptor s'ha guardat"
1620
+
1621
+ #: ../subscribers/view-subscriber-add.php:68
1622
+ msgid "Subscriber already exists."
1623
+ msgstr "Aquest subscriptor ja existeix"
1624
+
1625
+ #: ../subscribers/view-subscriber-add.php:71
1626
+ msgid "Invalid Email."
1627
+ msgstr "Email no vàlid"
1628
+
1629
+ #: ../subscribers/view-subscriber-add.php:123
1630
+ msgid "Enter Subscriber's Full name"
1631
+ msgstr "Entra el nom complet del subscriptor"
1632
+
1633
+ #: ../subscribers/view-subscriber-add.php:133
1634
+ msgid "Enter Subscriber's Email Address"
1635
+ msgstr "Entra l'adreça email del subscriptor"
1636
+
1637
+ #: ../subscribers/view-subscriber-add.php:143
1638
+ msgid "Select Subscriber's Status"
1639
+ msgstr "Selecciona l'estat del subscriptor"
1640
+
1641
+ #: ../subscribers/view-subscriber-add.php:158
1642
+ msgid "Select (or) Create Group for Subscriber"
1643
+ msgstr "Seleccionar (o) Crear grup de subscriptors"
1644
+
1645
+ #: ../subscribers/view-subscriber-add.php:183
1646
+ msgid "Add Subscriber"
1647
+ msgstr "Afegit subscriptor"
1648
+
1649
+ #: ../subscribers/view-subscriber-edit.php:64
1650
+ msgid "Error: Special characters are not allowed in the group name."
1651
+ msgstr "Error: Caràcters especials no estan permesos en el nom del grup."
1652
+
1653
+ #: ../subscribers/view-subscriber-edit.php:74
1654
+ msgid "Subscriber details updated."
1655
+ msgstr "Dades del subscriptor guardades"
1656
+
1657
+ #: ../subscribers/view-subscriber-edit.php:76
1658
+ msgid "Subscriber already exists for this group."
1659
+ msgstr "Aquest subscriptor ja existeix en aquest grup"
1660
+
1661
+ #: ../subscribers/view-subscriber-edit.php:108
1662
+ msgid "Edit Subscriber"
1663
+ msgstr "Edita subscriptor"
1664
+
1665
+ #: ../subscribers/view-subscriber-edit.php:122
1666
+ msgid "Subscriber's Full Name"
1667
+ msgstr "Nom complet del subscriptor"
1668
+
1669
+ #: ../subscribers/view-subscriber-edit.php:132
1670
+ msgid "Subscriber's Email Address"
1671
+ msgstr "Adreça email del subscriptor"
1672
 
1673
+ #: ../subscribers/view-subscriber-edit.php:142
1674
+ msgid "Update Subscriber's Status"
1675
+ msgstr "Actualitza l'estat del subscriptor"
1676
+
1677
+ #: ../subscribers/view-subscriber-edit.php:157
1678
+ msgid "Update Subscriber's Group"
1679
+ msgstr "Actualitza el grup del subscriptor "
1680
 
1681
+ #: ../subscribers/view-subscriber-sync.php:36
1682
  msgid "Please select default group to newly registered user."
1683
  msgstr ""
1684
  "Si us plau, seleccioneu el grup per defecte per l'usuari recentment "
1685
  "registrat."
1686
 
1687
+ #: ../subscribers/view-subscriber-sync.php:50
1688
  msgid "Emails Successfully Synced."
1689
  msgstr "Els correus electrònics sincronitzats amb èxit ."
1690
 
1691
+ #: ../subscribers/view-subscriber-sync.php:88
1692
  msgid "Sync Email"
1693
  msgstr "sincronització del correu electrònic"
1694
 
1695
+ #: ../subscribers/view-subscriber-sync.php:101
1696
  msgid "Sync newly registered users to subscribers list"
1697
  msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
1698
 
1699
+ #: ../subscribers/view-subscriber-sync.php:114
1700
  msgid "Select group to add newly registered users to"
1701
  msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
1702
 
1703
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1704
+ msgid "Please enter template heading."
1705
+ msgstr "Si us plau, introdueix títol de la plantilla."
1706
+
1707
+ #: ../compose/compose-edit.php:84
1708
+ msgid "Edit Email"
1709
+ msgstr "Editar email"
1710
 
1711
+ #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
1712
+ msgid "Newsletter"
1713
+ msgstr "Butlletí de notícies"
 
 
 
1714
 
1715
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
1716
+ msgid "Post Notification"
1717
+ msgstr "Notificació de l'entrada"
1718
+
1719
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1720
+ msgid "Enter your Email Subject"
1721
+ msgstr "Entra el subject del teu email"
1722
+
1723
+ #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1724
+ msgid "Enter Content for your Email"
1725
+ msgstr "Entra el contingut del teu email"
1726
+
1727
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
1728
+ msgid "Available Keywords"
1729
+ msgstr "Paraules clau disponibles"
1730
+
1731
+ #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1732
+ msgid "Published"
1733
+ msgstr "Publicat"
1734
+
1735
+ #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1736
+ msgid "Please select your mail status"
1737
+ msgstr "Si us plau selecciona el teu estat del correu"
1738
+
1739
+ #: ../compose/compose-add.php:74
1740
+ msgid "Add new Email"
1741
+ msgstr "Afegir un email nou"
1742
+
1743
+ #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1744
+ #: register.php:149
1745
+ msgid "Compose"
1746
+ msgstr "Compondre"
1747
+
1748
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1749
+ msgid "Email Template"
1750
+ msgstr "Olantilla del email"
1751
+
1752
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1753
+ msgid "Actions"
1754
+ msgstr "Accions"
1755
+
1756
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1757
+ msgid "Unexpected url submit has been detected"
1758
+ msgstr "Inesperada URL s'ha detectat al enviar"
1759
+
1760
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1761
+ #: 58 ../job/es-optin.php:68
1762
  msgid ""
1763
+ "Oops.. We are getting some technical error. Please try again or contact "
1764
+ "admin."
1765
  msgstr ""
1766
+ "Vaja... Estem rebent algun error tècnic. Intenteu-ho de nou o poseu-vos en "
1767
+ "contacte amb l'administrador."
 
1768
 
1769
+ #: ../job/es-optin.php:61
1770
+ msgid "This email address has already been confirmed."
1771
+ msgstr "Aquesta adreça de correu electrònic ja ha estat confirmada."
1772
+
1773
+ #: ../help/help.php:173
1774
+ msgid "Welcome to Email Subscribers!"
1775
+ msgstr "Benvingut a Email Subscribers!"
1776
+
1777
+ #: ../help/help.php:174
1778
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1779
+ msgstr "Gràcies per instal·lar-lo i esperem que gaudeixi d'Email Subscribers."
1780
+
1781
+ #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1782
+ #: php:38
1783
+ msgid "Subscribe"
1784
+ msgstr "Subscriure"
1785
+
1786
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1787
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1788
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1789
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1790
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1791
+ #: 380 ../help/help.php:382
1792
+ #, php-format
1793
+ msgid "%s"
1794
+ msgstr "%s"
1795
+
1796
+ #: ../help/help.php:288
1797
+ msgid "How to Add Subscription box to website?"
1798
+ msgstr "Com afegir el quadre de subscripció a la pàgina web?"
1799
+
1800
+ #: ../help/help.php:308
1801
+ msgid "General Plugin Settings"
1802
+ msgstr "Configuració general del Plugin"
1803
+
1804
+ #: ../help/help.php:314
1805
+ msgid "How to Import or Export Email Addresses?"
1806
+ msgstr "Com importar o exportar adreces d'email?"
1807
+
1808
+ #: ../help/help.php:323
1809
+ msgid "How to add Unsubscribe link in emails?"
1810
+ msgstr "Com afegir el link \"Donar-se de baixa\" en els correus electrònics?"
1811
+
1812
+ #: ../help/help.php:377
1813
+ msgid "Subscribers are not receiving Emails?"
1814
+ msgstr "Els subscriptors no estan rebent missatges de correu electrònic?"
1815
+
1816
+ #: ../sendmail/sendmail.php:40
1817
+ msgid "Please select your mail subject."
1818
+ msgstr "Selecciona l'assumpte del email"
1819
+
1820
+ #: ../sendmail/sendmail.php:46
1821
+ msgid "Please select your mail type."
1822
+ msgstr "Selecciona el tipus d'email"
1823
+
1824
+ #: ../sendmail/sendmail.php:52
1825
+ msgid "Please select your group."
1826
+ msgstr "Selecciona el teu grup"
1827
+
1828
+ #: ../sendmail/sendmail.php:63
1829
+ msgid "Click here to check Statistics"
1830
+ msgstr "Cliqueu aquí per comprovar les estadístiques"
1831
+
1832
+ #: ../sendmail/sendmail.php:69
1833
+ msgid "Oops.. We are getting some error. mail not sending."
1834
+ msgstr "Vaja... Estem rebent algun error. El correu no s'envia."
1835
+
1836
+ #: ../sendmail/sendmail.php:97
1837
+ msgid "Use this to send newsletter emails to your subscribers."
1838
+ msgstr ""
1839
+ "Utilitzeu aquesta opció per enviar butlletins pel correu electrònic als seus "
1840
+ "subscriptors."
1841
+
1842
+ #: ../sendmail/sendmail.php:105
1843
+ msgid "Select Email Subject from available list"
1844
+ msgstr "Seleccioneu Assumpte del correu de la llista disponible"
1845
+
1846
+ #: ../sendmail/sendmail.php:132
1847
+ msgid "Select Email Type"
1848
+ msgstr "Seleccionar el tipus de correu electrònic"
1849
+
1850
+ #: ../sendmail/sendmail.php:139
1851
+ msgid "Send email via cron job"
1852
+ msgstr "Enviar email via cron"
1853
+
1854
+ #: ../sendmail/sendmail.php:146
1855
+ msgid "Select Subscribers group to Send Email"
1856
+ msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
1857
+
1858
+ #: ../sendmail/sendmail.php:178
1859
+ msgid "Recipients : 0 "
1860
+ msgstr "Destinataris: 0"
1861
+
1862
+ #: ../sendmail/sendmail.php:180
1863
+ #, php-format
1864
+ msgid "Recipients : %s"
1865
+ msgstr "Destinataris : %s"
1866
+
1867
+ #: ../sendmail/sendmail.php:183
1868
+ msgid ""
1869
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1870
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1871
+ "</strong><br>Click on Help for more information."
1872
+ msgstr ""
1873
+ "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1874
+ "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1875
+ "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1876
+
1877
+ #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1878
+ msgid "Send Email"
1879
+ msgstr "Enviar el correu electrònic"
1880
+
1881
+ #: ../sendmail/sendmail.php:199
1882
+ msgid "Reset"
1883
+ msgstr "restablir"
1884
+
1885
+ #: ../base/es-defined.php:32
1886
+ msgid ""
1887
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1888
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1889
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1890
+ "</a> rating. A huge thank you from Icegram in advance!"
1891
+ msgstr ""
1892
+ "Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
1893
+ "nos una <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1894
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1895
+ "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
1896
+
1897
+ #: ../classes/es-common.php:13
1898
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1899
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
1900
+
1901
+ #: ../classes/es-common.php:16
1902
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1903
+ msgstr "<span style=\"color:#FF0000\">Per confirmar</span>"
1904
+
1905
+ #: ../classes/es-common.php:19
1906
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1907
+ msgstr "<span style=\"color:#999900\">Cancel·lat</span>"
1908
+
1909
+ #: ../classes/es-common.php:22
1910
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1911
+ msgstr "Opt in sencill"
1912
+
1913
+ #: ../classes/es-common.php:25
1914
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1915
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Vist</span>"
1916
+
1917
+ #: ../classes/es-common.php:28
1918
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1919
+ msgstr "<span style=\"color:#999900;\">No hi ha dades</span>"
1920
+
1921
+ #: ../classes/es-common.php:31
1922
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1923
+ msgstr "<span style=\"color:#FF0000\">Desactivat</span>"
1924
+
1925
+ #: ../classes/es-common.php:34
1926
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1927
+ msgstr "<span style=\"color:#FF0000\">A la cua</span>"
1928
+
1929
+ #: ../classes/es-common.php:37
1930
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1931
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviat</span>"
1932
+
1933
+ #: ../classes/es-common.php:40
1934
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1935
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1936
+
1937
+ #: ../classes/es-common.php:43
1938
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1939
+ msgstr "Immediatament"
1940
+
1941
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1942
+ #: register.php:724
1943
+ msgid "Email Subscribers"
1944
+ msgstr "Email Subscribers"
1945
+
1946
+ #: ../classes/es-register.php:163
1947
+ msgid "Help & Info"
1948
+ msgstr "Ajuda i informació"
1949
+
1950
+ #: ../classes/es-register.php:175
1951
+ msgctxt "view-subscriber-enhanced-select"
1952
+ msgid "Please enter subscriber email address."
1953
+ msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1954
+
1955
+ #: ../classes/es-register.php:176
1956
+ msgctxt "view-subscriber-enhanced-select"
1957
+ msgid "Please select subscriber email status."
1958
+ msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
1959
+
1960
+ #: ../classes/es-register.php:177
1961
+ msgctxt "view-subscriber-enhanced-select"
1962
+ msgid "Please select or create group for this subscriber."
1963
+ msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
1964
+
1965
+ #: ../classes/es-register.php:178
1966
+ msgctxt "view-subscriber-enhanced-select"
1967
+ msgid "Do you want to delete this record?"
1968
+ msgstr "Vols eliminar aquest registre?"
1969
+
1970
+ #: ../classes/es-register.php:179
1971
+ msgctxt "view-subscriber-enhanced-select"
1972
+ msgid "Please select the bulk action."
1973
+ msgstr "Selecciona l'acció bulk"
1974
+
1975
+ #: ../classes/es-register.php:180
1976
+ msgctxt "view-subscriber-enhanced-select"
1977
+ msgid "Are you sure you want to delete selected records?"
1978
+ msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
1979
+
1980
+ #: ../classes/es-register.php:181
1981
+ msgctxt "view-subscriber-enhanced-select"
1982
+ msgid ""
1983
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1984
+ "update subscriber current status to 'Unconfirmed'."
1985
+ msgstr ""
1986
+ "Vols tornar a enviar correu electrònic de confirmació? \\ També tingues en "
1987
+ "compte que això actualitzarà l'estat actual d'abonats a \"no confirmats\"."
1988
+
1989
+ #: ../classes/es-register.php:182
1990
+ msgctxt "view-subscriber-enhanced-select"
1991
+ msgid "Please select new subscriber group."
1992
+ msgstr "Seleccioneu nou grup d'abonats."
1993
+
1994
+ #: ../classes/es-register.php:183
1995
+ msgctxt "view-subscriber-enhanced-select"
1996
+ msgid "Please select new status for subscribers"
1997
+ msgstr "Seleccioneu nou estatus per a subscriptors"
1998
+
1999
+ #: ../classes/es-register.php:184
2000
+ msgctxt "view-subscriber-enhanced-select"
2001
+ msgid "Do you want to update subscribers group?"
2002
+ msgstr "Vols actualitzar el grup de subscriptors?"
2003
+
2004
+ #: ../classes/es-register.php:185
2005
+ msgctxt "view-subscriber-enhanced-select"
2006
+ msgid "Do you want to update subscribers status?"
2007
+ msgstr "Vols actualitzar l'estat dels subscriptors?"
2008
+
2009
+ #: ../classes/es-register.php:186
2010
+ msgctxt "view-subscriber-enhanced-select"
2011
+ msgid ""
2012
+ "Please select only csv file. Please check official website for csv structure."
2013
+ "."
2014
+ msgstr ""
2015
+ "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
2016
+ "l'estructura csv .."
2017
+
2018
+ #: ../classes/es-register.php:195
2019
+ msgctxt "compose-enhanced-select"
2020
+ msgid "Do you want to delete this record?"
2021
+ msgstr "Vols eliminar aquest registre?"
2022
+
2023
+ #: ../classes/es-register.php:203
2024
+ msgctxt "notification-enhanced-select"
2025
+ msgid "Please select subscribers group."
2026
+ msgstr "Selecciona el grup de subscriptors."
2027
+
2028
+ #: ../classes/es-register.php:204
2029
+ msgctxt "notification-enhanced-select"
2030
+ msgid "Please select notification mail subject. Use compose menu to create new."
2031
+ msgstr ""
2032
+ "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
2033
+ "composició per crear-ne de nous."
2034
+
2035
+ #: ../classes/es-register.php:205
2036
+ msgctxt "notification-enhanced-select"
2037
+ msgid "Please select notification status."
2038
+ msgstr "Seleccioneu l'estat de la notificació."
2039
+
2040
+ #: ../classes/es-register.php:206
2041
+ msgctxt "notification-enhanced-select"
2042
+ msgid "Do you want to delete this record?"
2043
+ msgstr "Vols eliminar aquest registre?"
2044
+
2045
+ #: ../classes/es-register.php:214
2046
+ msgctxt "sendmail-enhanced-select"
2047
+ msgid "Please select your mail subject."
2048
+ msgstr "Si us plau selecciona l'assumpte del teu email."
2049
+
2050
+ #: ../classes/es-register.php:215
2051
+ msgctxt "sendmail-enhanced-select"
2052
+ msgid "Please select your mail type."
2053
+ msgstr "Si us plau selecciona el teu tipus de correu."
2054
+
2055
+ #: ../classes/es-register.php:216
2056
+ msgctxt "sendmail-enhanced-select"
2057
+ msgid ""
2058
+ "Have you double checked your selected group? If so, let's go ahead and send "
2059
+ "this."
2060
+ msgstr ""
2061
+ "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
2062
+ "endavant i l'enviarem."
2063
+
2064
+ #: ../classes/es-register.php:224
2065
+ msgctxt "sentmail-enhanced-select"
2066
+ msgid "Do you want to delete this record?"
2067
+ msgstr "Vols eliminar aquest registre?"
2068
+
2069
+ #: ../classes/es-register.php:225
2070
+ msgctxt "sentmail-enhanced-select"
2071
+ msgid "Do you want to delete all records except latest 10?"
2072
+ msgstr "Vols eliminar tots els registres excepte els 10 últims?"
2073
+
2074
+ #: ../classes/es-register.php:233
2075
+ msgctxt "cron-enhanced-select"
2076
+ msgid "Please select enter number of mails you want to send per hour/trigger."
2077
+ msgstr ""
2078
+ "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
2079
+ "hora / gallet."
2080
+
2081
+ #: ../classes/es-register.php:234
2082
+ msgctxt "cron-enhanced-select"
2083
+ msgid "Please enter the mail count, only number."
2084
+ msgstr "Si us plau, introdueixi el recompte d'emails, només número."
2085
+
2086
+ #: ../classes/es-register.php:247
2087
+ msgctxt "widget-enhanced-select"
2088
+ msgid "Please enter email address"
2089
+ msgstr "Si us plau, entra l'adreça d'email"
2090
+
2091
+ #: ../classes/es-register.php:248
2092
+ msgctxt "widget-enhanced-select"
2093
+ msgid "Please provide a valid email address"
2094
+ msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2095
+
2096
+ #: ../classes/es-register.php:249
2097
+ msgctxt "widget-enhanced-select"
2098
+ msgid "loading..."
2099
+ msgstr "Carregant..."
2100
+
2101
+ #: ../classes/es-register.php:250
2102
+ msgctxt "widget-enhanced-select"
2103
+ msgid "Cannot create XMLHTTP instance"
2104
+ msgstr "No es pot crear la instància XMLHTTP"
2105
+
2106
+ #: ../classes/es-register.php:251
2107
+ msgctxt "widget-enhanced-select"
2108
+ msgid "Successfully Subscribed."
2109
+ msgstr "Subscripció exitosa"
2110
+
2111
+ #: ../classes/es-register.php:252
2112
+ msgctxt "widget-enhanced-select"
2113
+ msgid ""
2114
+ "Your subscription was successful! Within a few minutes, kindly check the "
2115
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2116
+ "mail in your mailbox, please check your spam folder."
2117
+ msgstr ""
2118
+ "La seva subscripció s'ha realitzat correctament! D'aquí a uns minuts, tingui "
2119
+ "l'amabilitat de comprovar el correu a la seva bústia i confirmar la "
2120
+ "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
2121
+ "plau revisi la seva carpeta de correu no desitjat (Spam)."
2122
+
2123
+ #: ../classes/es-register.php:253
2124
+ msgctxt "widget-enhanced-select"
2125
+ msgid "Email Address already exists!"
2126
+ msgstr "Aquesta adreça de correu electrònic ja existeix!"
2127
+
2128
+ #: ../classes/es-register.php:254
2129
+ msgctxt "widget-enhanced-select"
2130
+ msgid "Oops.. Unexpected error occurred."
2131
+ msgstr "Vaja... S'ha produït un error inesperat."
2132
+
2133
+ #: ../classes/es-register.php:255
2134
+ msgctxt "widget-enhanced-select"
2135
+ msgid "Invalid email address"
2136
+ msgstr "l'Adreça de correu electrònic no és vàlida"
2137
+
2138
+ #: ../classes/es-register.php:256
2139
+ msgctxt "widget-enhanced-select"
2140
+ msgid "Please try after some time"
2141
+ msgstr "Torna-ho a provar d'aquí a una estona"
2142
+
2143
+ #: ../classes/es-register.php:257
2144
+ msgctxt "widget-enhanced-select"
2145
+ msgid "There was a problem with the request"
2146
+ msgstr "Hi ha un problema amb la sol·licitud"
2147
+
2148
+ #: ../classes/es-register.php:264
2149
+ msgctxt "widget-page-enhanced-select"
2150
+ msgid "Please enter email address"
2151
+ msgstr "Si us plau, entra l'adreça d'email"
2152
+
2153
+ #: ../classes/es-register.php:265
2154
+ msgctxt "widget-page-enhanced-select"
2155
+ msgid "Please provide a valid email address"
2156
+ msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2157
+
2158
+ #: ../classes/es-register.php:266
2159
+ msgctxt "widget-page-enhanced-select"
2160
+ msgid "loading..."
2161
+ msgstr "Carregant..."
2162
+
2163
+ #: ../classes/es-register.php:267
2164
+ msgctxt "widget-page-enhanced-select"
2165
+ msgid "Cannot create XMLHTTP instance"
2166
+ msgstr "No es pot crear la instància XMLHTTP"
2167
+
2168
+ #: ../classes/es-register.php:268
2169
+ msgctxt "widget-page-enhanced-select"
2170
+ msgid "Successfully Subscribed."
2171
+ msgstr "Subscripció exitosa"
2172
+
2173
+ #: ../classes/es-register.php:269
2174
+ msgctxt "widget-page-enhanced-select"
2175
+ msgid ""
2176
+ "Your subscription was successful! Within a few minutes, kindly check the "
2177
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2178
+ "mail in your mailbox, please check your spam folder."
2179
+ msgstr ""
2180
+ "La seva subscripció s'ha realitzat correctament! D'aquí a uns minuts, tingui "
2181
+ "l'amabilitat de comprovar el correu a la seva bústia i confirmar la "
2182
+ "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
2183
+ "plau revisi la seva carpeta de correu no desitjat (Spam)."
2184
+
2185
+ #: ../classes/es-register.php:270
2186
+ msgctxt "widget-page-enhanced-select"
2187
+ msgid "Email Address already exists!"
2188
+ msgstr "Aquesta adreça de correu electrònic ja existeix!"
2189
+
2190
+ #: ../classes/es-register.php:271
2191
+ msgctxt "widget-page-enhanced-select"
2192
+ msgid "Oops.. Unexpected error occurred."
2193
+ msgstr "Vaja... S'ha produït un error inesperat."
2194
+
2195
+ #: ../classes/es-register.php:272
2196
+ msgctxt "widget-page-enhanced-select"
2197
+ msgid "Invalid email address"
2198
+ msgstr "l'Adreça de correu electrònic no és vàlida"
2199
+
2200
+ #: ../classes/es-register.php:273
2201
+ msgctxt "widget-page-enhanced-select"
2202
+ msgid "Please try after some time"
2203
+ msgstr "Torna-ho a provar d'aquí a una estona"
2204
+
2205
+ #: ../classes/es-register.php:274
2206
+ msgctxt "widget-page-enhanced-select"
2207
+ msgid "There was a problem with the request"
2208
+ msgstr "Hi ha un problema amb la sol·licitud"
2209
+
2210
+ #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
2211
+ msgid "Email *"
2212
+ msgstr "Email*"
2213
+
2214
+ #: ../classes/es-register.php:1035
2215
+ msgid "Widget Title"
2216
+ msgstr "Títol del widget"
2217
+
2218
+ #: ../classes/es-register.php:1039
2219
+ msgid "Short description about subscription form"
2220
+ msgstr "Breu descripció sobre el formulari de subscripció"
2221
+
2222
+ #: ../classes/es-register.php:1043
2223
+ msgid "Display Name Field"
2224
+ msgstr "Mostra nom del camp"
2225
+
2226
+ #: ../classes/es-register.php:1050
2227
+ msgid "Subscriber Group"
2228
+ msgstr "Grup de subscriptor"
languages/email-subscribers-cs_CZ.mo CHANGED
Binary file
languages/email-subscribers-cs_CZ.po CHANGED
@@ -1,1922 +1,2219 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-05-11 05:14:33+00:00\n"
6
- "PO-Revision-Date: 2017-05-27 19:31+0200\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
- "Language-Team: StoreApps <support@storeapps.org>\n"
9
- "Language: cs\n"
10
- "Plural-Forms: nplurals=3; plural=( n == 1 ) ? 0 : ( n >= 2 && n <= 4 ) ? 1 : 2;\n"
 
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 2.0.1\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Loco-Target-Locale: cs_CZ\n"
23
- "X-Poedit-SearchPath-0: ..\n"
24
 
25
- #: base/es-defined.php:32
26
- msgid ""
27
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
28
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
29
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A "
30
- "huge thank you from Icegram in advance!"
31
  msgstr ""
32
- "Pokud se vám líbí <strong> Email Subscribers </strong>, zvažte, prosím, zanechání "
33
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
34
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> hodnocení. "
35
- "Icegram předem mnohokrát děkuje!"
36
-
37
- #: classes/es-register.php:257
38
- msgctxt "widget-enhanced-select"
39
- msgid "Please enter email address"
40
- msgstr "Zadejte emailovou adresu"
41
 
42
- #: classes/es-register.php:258
43
- msgctxt "widget-enhanced-select"
44
- msgid "Please provide a valid email address"
45
- msgstr "Zadejte platnou emailovou adresu"
46
 
47
- #: classes/es-register.php:261
48
- msgctxt "widget-enhanced-select"
49
- msgid "Successfully Subscribed."
50
- msgstr "Úspěšné přihlášení k odběru."
51
 
52
- #: classes/es-register.php:263
53
- msgctxt "widget-enhanced-select"
54
- msgid "Email Address already exists!"
55
- msgstr "Emailová adresa již existuje!"
56
 
57
- #: classes/es-register.php:265
58
- msgctxt "widget-enhanced-select"
59
- msgid "Invalid email address"
60
- msgstr "Neplatná emailová adresa"
61
 
62
- #: classes/es-register.php:266
63
- msgctxt "widget-enhanced-select"
64
- msgid "Please try after some time"
65
- msgstr "Prosím, zkuste to později"
66
 
67
- #: classes/es-register.php:267
68
- msgctxt "widget-enhanced-select"
69
- msgid "There was a problem with the request"
70
- msgstr "Došlo k potížím s požadavkem"
71
 
72
- #: classes/es-register.php:274
73
- msgctxt "widget-page-enhanced-select"
74
- msgid "Please enter email address"
75
- msgstr "Zadejte emailovou adresu"
 
76
 
77
- #: classes/es-register.php:275
78
- msgctxt "widget-page-enhanced-select"
79
- msgid "Please provide a valid email address"
80
- msgstr "Zadejte platnou emailovou adresu"
81
 
82
- #: classes/es-register.php:278
83
- msgctxt "widget-page-enhanced-select"
84
- msgid "Successfully Subscribed."
85
- msgstr "Úspěšné přihlášení k odběru."
 
 
 
 
86
 
87
- #: classes/es-register.php:280
88
- msgctxt "widget-page-enhanced-select"
89
- msgid "Email Address already exists!"
90
- msgstr "Emailová adresa již existuje!"
91
 
92
- #: classes/es-register.php:282
93
- msgctxt "widget-page-enhanced-select"
94
- msgid "Invalid email address"
95
- msgstr "Neplatná emailová adresa"
96
 
97
- #: classes/es-register.php:283
98
- msgctxt "widget-page-enhanced-select"
99
- msgid "Please try after some time"
100
- msgstr "Prosím, zkuste to později"
 
101
 
102
- #: classes/es-register.php:284
103
- msgctxt "widget-page-enhanced-select"
104
- msgid "There was a problem with the request"
105
- msgstr "Došlo k potížím s požadavkem"
106
 
107
- #: classes/es-register.php:460
108
  msgid ""
109
- "<b>FREE</b> plugin: Quickly grow your subscribers list with beautiful and high "
110
- "converting optins."
111
  msgstr ""
112
- "<b>ZDARMA</b> plugin: Rychle rozšiřte seznam odběratelů díky fantastickému "
113
- "nastavení s velkými možnostmi."
114
 
115
- #: classes/es-register.php:461
116
- msgid "Try Icegram"
117
- msgstr "Zkusit Icegram"
118
-
119
- #: classes/es-register.php:461
120
- msgid "No, I don't need it"
121
- msgstr "Ne, nechci ho"
122
 
123
- #: classes/es-register.php:619
124
- msgid "Short description about subscription form"
125
- msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
 
 
126
 
127
- #: cron/cron-add.php:97
128
- msgid "Email Count"
129
- msgstr "Počet emailů"
130
 
131
- #: cron/cron-add.php:98
132
- msgid "Number of emails that you want to trigger per hour."
133
- msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
 
 
134
 
135
- #: help/help.php:178
136
- msgid "CSS Help"
137
- msgstr "CSS Nápověda"
138
 
139
- #: sendmail/sendmail.php:105
140
- msgid "Select Email Subject from available list"
141
- msgstr "Vyberte předmět emailu ze seznamu"
 
 
142
 
143
- #: sendmail/sendmail.php:132
144
- msgid "Select Email Type"
145
- msgstr "Vyberte typ emailu"
146
 
147
- #: sendmail/sendmail.php:146
148
- msgid "Select Subscribers group to Send Email"
149
- msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
 
 
150
 
151
- #: settings/settings-edit.php:231
152
- msgid "Opt-In Option"
153
- msgstr "Nastavení potvrzení"
154
 
155
- #: settings/settings-edit.php:256
156
- msgid "Double Opt In Email Subject (Confirmation Email)"
157
- msgstr "Nastavení předmětu emailu (Potvrzovací email)"
158
 
159
- #: settings/settings-edit.php:257
160
  msgid ""
161
- "Enter the subject for the confirmation email to be sent for Double Opt In whenever "
162
- "a user signs up."
 
163
  msgstr ""
164
- "Zadejte předmět potvrzovacího emailu pro odeslání uživateli při přihlášení "
165
- "dvojitým potvrzením."
166
 
167
- #: settings/settings-edit.php:263
168
- msgid "Double Opt In Email Content (Confirmation Email)"
169
- msgstr "Nastavení obsahu emailu (Potvrzovací email)"
170
 
171
- #: settings/settings-edit.php:264
172
  msgid ""
173
- "Enter the content for the confirmation email to be sent for Double Opt In whenever "
174
- "a user signs up. (Keyword: ###NAME###, ###LINK###)"
 
175
  msgstr ""
176
- "Zadejte obsah potvrzovacího emailu pro odeslání uživateli při přihlášení dvojitým "
177
- "potvrzením. (Klíčové slovo: ###NAME###, ###LINK###)"
178
 
179
- #: settings/settings-edit.php:277
180
  msgid ""
181
- "Text to display after an email address is successfully subscribed from Double Opt "
182
- "In (confirmation) Email"
183
- msgstr "Text se zobrazí po úspěšném přihlášení emailu při dvojitém potvrzení e-mailu"
 
184
 
185
- #: settings/settings-edit.php:298
186
  msgid ""
187
- "Enter the subject for the subscriber welcome email. This will be sent whenever a "
188
- "user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt "
189
- "In) successfully."
190
  msgstr ""
191
- "Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email bude "
192
- "úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení)."
193
 
194
- #: settings/settings-edit.php:305
195
  msgid ""
196
- "Enter the content for the subscriber welcome email whenever a user's email is "
197
- "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
198
- "(Keyword: ###NAME###, ###GROUP###, ###LINK###)"
 
 
 
199
  msgstr ""
200
- "Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email bude "
201
- "úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení). (Klíčové "
202
- "slovo: ###NAME###, ###GROUP###, ###LINK###)"
203
 
204
- #: settings/settings-edit.php:314
205
  msgid ""
206
- "The unsubscribe link gets added automatically to all emails that are sent from "
207
- "this plugin. It is a readonly field and you are advised not to modify it."
208
  msgstr ""
209
- "Odkaz na odhlášení se automaticky přidá do všech emailů odesílaných z tohoto "
210
- "pluginu. Pole je pouze pro čtení a nedoporučuje se, aby jste jej měnili."
211
 
212
- #: settings/settings-edit.php:327
213
- msgid "Text to display after an email address is unsubscribed"
214
- msgstr "Text bude zobrazen po odhlášení emailu"
 
 
215
 
216
- #: settings/settings-edit.php:335
217
- msgid "Error in the Confirmation Link"
218
- msgstr "Chybové hlášení potvrzovacího odkazu"
219
 
220
- #: settings/settings-edit.php:342
221
- msgid "Error in the Unsubscribe Link"
222
- msgstr "Chybové hlášení odhlašovacího odkazu"
223
 
224
- #: settings/settings-edit.php:357
225
- msgid "Notify admin when a new subscriber signs up"
226
- msgstr "Upozornění pro administrátora, když se zaregistruje nový účastník"
 
 
227
 
228
- #: settings/settings-edit.php:370
229
- msgid "Admin Email Subject when a new subscriber signs up"
230
- msgstr "Předmět emailu pro administrátora, když se zaregistruje nový účastník"
 
 
 
 
231
 
232
- #: settings/settings-edit.php:371
233
  msgid ""
234
- "Enter the subject for the admin email which will be sent whenever a new email is "
235
- "added and confirmed."
 
 
236
  msgstr ""
237
- "Zadejte předmět emailu pro administrátora. Bude odeslán jakmile bude do databáze "
238
- "přidán a potvrzen nový e-mail."
239
 
240
- #: settings/settings-edit.php:377
241
- msgid "Admin Email Content when a new subscriber signs up"
242
- msgstr "Obsah emailu pro administrátora, když se zaregistruje nový účastník"
 
 
 
 
243
 
244
- #: settings/settings-edit.php:378
245
  msgid ""
246
- "Enter the email content for the admin email which will be sent whenever a new "
247
- "email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
 
 
 
 
 
 
248
  msgstr ""
249
- "Zadejte obsah emailu pro administrátora. Bude odeslán jakmile bude do databáze "
250
- "přidán a potvrzen nový e-mail. (Klíčová slova: ###NAME###, ###EMAIL###)"
251
 
252
- #: settings/settings-edit.php:386
253
- msgid "Enter the subject for the sent email report. It will be emailed to Admin."
254
  msgstr ""
255
- "Zadejte předmět emailu s přehledem o odeslání. Bude odeslán administrátorovi."
256
 
257
- #: settings/settings-edit.php:393
 
 
 
 
 
258
  msgid ""
259
- "Enter the content for the sent email report. It will be emailed to Admin. "
260
- "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
 
261
  msgstr ""
262
- "Zadejte obsah emailu s přehledem. Bude odeslán administrátorovi. (Klíčová slova: "
263
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
264
 
265
- #: subscribers/view-subscriber-export.php:47
266
- #: subscribers/view-subscriber-export.php:55
267
- msgid "Total Emails Count"
268
- msgstr "Počet emailů celkem"
269
 
270
- #: subscribers/view-subscriber-export.php:62
271
- msgid "All Subscribers"
272
- msgstr "Všichni odběratelé"
273
 
274
- #: subscribers/view-subscriber-export.php:68
275
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
276
- msgstr "Aktivní odběratelé (Status: Potvrzen & Přihlášen)"
 
277
 
278
- #: subscribers/view-subscriber-export.php:74
279
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
280
- msgstr "Neaktivní odběratelé (Status: Nepotvrzen & Odhlášen)"
281
 
282
- #: subscribers/view-subscriber-export.php:79
283
- msgid "4"
284
- msgstr "4"
285
 
286
- #: subscribers/view-subscriber-export.php:85
287
- msgid "5"
288
- msgstr "5"
 
 
 
289
 
290
- #: subscribers/view-subscriber-show.php:252
291
- #, c-format
292
- msgid "Total Subscribers: %s"
293
- msgstr "Celkem odběratelů: %s"
294
 
295
- #: subscribers/view-subscriber-show.php:254
296
- #, c-format
297
- msgid "Active Subscribers: %s"
298
- msgstr "Aktivní odběratelé: %s"
299
 
300
- #: subscribers/view-subscriber-show.php:308
301
- msgid "Select Status"
302
- msgstr "Vybrat status"
 
 
 
303
 
304
- #: subscribers/view-subscriber-show.php:342
305
- msgid "1 to 500 emails"
306
- msgstr "1 až 500 emailů"
307
 
308
- #: subscribers/view-subscriber-show.php:343
309
- msgid "501 to 1000"
310
- msgstr "501 1000"
 
 
311
 
312
- #: subscribers/view-subscriber-show.php:344
313
- msgid "1001 to 1500"
314
- msgstr "1001 až 1500"
315
 
316
- #: subscribers/view-subscriber-show.php:345
317
- msgid "1501 to 2000"
318
- msgstr "1501 až 2000"
319
 
320
- #: subscribers/view-subscriber-show.php:346
321
- msgid "2001 to 4000"
322
- msgstr "2001 4000"
 
 
323
 
324
- #: subscribers/view-subscriber-show.php:347
325
- msgid "4001 to 6000"
326
- msgstr "4001 až 6000"
327
 
328
- #: subscribers/view-subscriber-show.php:348
329
- msgid "6001 to 10000"
330
- msgstr "6001 až 10000"
331
 
332
- #: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
333
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
334
- msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
335
 
336
- #: classes/es-common.php:13
337
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
338
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Potvrzeno</span>"
339
 
340
- #: classes/es-common.php:16
341
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
342
- msgstr "<span style=\"color:#FF0000\">Nepotvrzeno</span>"
343
 
344
- #: classes/es-common.php:19
345
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
346
- msgstr "<span style=\"color:#999900\">Odhlášen/a</span>"
347
 
348
- #: classes/es-common.php:22
349
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
350
- msgstr "<span style=\"color:#0000FF\">Jednoduché potvrzení</span>"
351
 
352
- #: classes/es-common.php:25
353
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
354
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
355
 
356
- #: classes/es-common.php:28
357
- msgid "<span style=\"color:#999900;\">Nodata</span>"
358
- msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
359
 
360
- #: classes/es-common.php:31
361
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
362
- msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
363
 
364
- #: classes/es-common.php:34
365
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
366
- msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
 
 
 
 
 
 
 
 
367
 
368
- #: classes/es-common.php:37
369
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
370
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
371
 
372
- #: classes/es-common.php:40
373
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
374
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
375
 
376
- #: classes/es-common.php:43
377
- msgid "<span style=\"color:#993399;\">Immediately</span>"
378
- msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
379
 
380
- #: classes/es-loadwidget.php:28 classes/es-register.php:567
381
- #: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
382
- msgid "Name"
383
- msgstr "Jméno"
384
 
385
- #: classes/es-loadwidget.php:33 classes/es-register.php:572
386
- msgid "Email *"
387
- msgstr "Email *"
388
 
389
- #: classes/es-loadwidget.php:38 classes/es-register.php:577
390
- msgid "Subscribe"
391
- msgstr "Odebírat"
 
 
392
 
393
- #: classes/es-register.php:144 classes/es-register.php:145
394
- msgid "Email Subscribers"
395
- msgstr "Email Subscribers"
396
 
397
- #: classes/es-register.php:147 classes/es-register.php:148
398
- #: subscribers/view-subscriber-show.php:241
399
- msgid "Subscribers"
400
- msgstr "Odběratelé"
401
 
402
- #: classes/es-register.php:150 classes/es-register.php:151
403
- #: compose/compose-show.php:64
404
- msgid "Compose"
405
- msgstr "Vytvořit"
406
 
407
- #: classes/es-register.php:153 classes/es-register.php:154
408
- #: notification/notification-show.php:52
409
- msgid "Post Notifications"
410
- msgstr "Oznámení o příspěvcích"
411
 
412
- #: classes/es-register.php:156 classes/es-register.php:157 sendmail/sendmail.php:93
413
- msgid "Newsletters"
414
- msgstr "Zpravodaje"
415
 
416
- #: classes/es-register.php:159 classes/es-register.php:160 cron/cron-add.php:79
417
- msgid "Cron Settings"
418
- msgstr "Cron nastavení"
419
 
420
- #: classes/es-register.php:162 classes/es-register.php:163
421
- #: settings/settings-edit.php:197
422
- msgid "Email Settings"
423
- msgstr "Nastavení e-mailu"
424
 
425
- #: classes/es-register.php:165 classes/es-register.php:166 roles/roles-add.php:110
426
- msgid "User Roles"
427
- msgstr "Uživatelské úrovně"
428
 
429
- #: classes/es-register.php:168 classes/es-register.php:169
430
- #: sentmail/sentmail-show.php:96
431
- msgid "Reports"
432
- msgstr "Přehledy"
433
 
434
- #: classes/es-register.php:171
435
- msgid "Help & Info"
436
- msgstr "Nápověda"
437
 
438
- #: classes/es-register.php:172
439
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
440
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Nápověda"
441
 
442
- #: classes/es-register.php:183
443
- msgctxt "view-subscriber-enhanced-select"
444
- msgid "Please enter subscriber email address."
445
- msgstr "Zadejte emailovou adresu odběratele."
446
 
447
- #: classes/es-register.php:184
448
- msgctxt "view-subscriber-enhanced-select"
449
- msgid "Please select subscriber email status."
450
- msgstr "Vyberte stav emailu odběratele."
451
 
452
- #: classes/es-register.php:185
453
- msgctxt "view-subscriber-enhanced-select"
454
- msgid "Please select or create group for this subscriber."
455
- msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
456
 
457
- #: classes/es-register.php:186
458
- msgctxt "view-subscriber-enhanced-select"
459
- msgid "Do you want to delete this record?"
460
- msgstr "Opravdu chcete smazat tento záznam?"
461
 
462
- #: classes/es-register.php:187
463
- msgctxt "view-subscriber-enhanced-select"
464
- msgid "Please select the bulk action."
465
- msgstr "Vyberte hromadnou akci."
466
 
467
- #: classes/es-register.php:188
468
- msgctxt "view-subscriber-enhanced-select"
469
- msgid "Are you sure you want to delete selected records?"
470
- msgstr "Skutečně chcete smazat vybrané záznamy?"
471
 
472
- #: classes/es-register.php:189
473
- msgctxt "view-subscriber-enhanced-select"
474
- msgid ""
475
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
476
- "subscriber current status to 'Unconfirmed'."
477
  msgstr ""
478
- "Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
479
- "současný stav odběratele na „Nepotvrzeno“."
480
 
481
- #: classes/es-register.php:190
482
- msgctxt "view-subscriber-enhanced-select"
483
- msgid "Please select new subscriber group."
484
- msgstr "Vyberte novou skupinu odběratele."
485
 
486
- #: classes/es-register.php:191
487
- msgctxt "view-subscriber-enhanced-select"
488
- msgid "Please select new status for subscribers"
489
- msgstr "Vyberte nový stav odběratele"
 
490
 
491
- #: classes/es-register.php:192
492
- msgctxt "view-subscriber-enhanced-select"
493
- msgid "Do you want to update subscribers group?"
494
- msgstr "Chcete upravit skupinu odběratelů?"
495
 
496
- #: classes/es-register.php:193
497
- msgctxt "view-subscriber-enhanced-select"
498
- msgid "Do you want to update subscribers status?"
499
- msgstr "Chcete upravit stav odběratele?"
500
 
501
- #: classes/es-register.php:194
502
- msgctxt "view-subscriber-enhanced-select"
503
- msgid "Do you want to export the emails?"
504
- msgstr "Chcete exportovat emaily?"
505
 
506
- #: classes/es-register.php:195
507
- msgctxt "view-subscriber-enhanced-select"
508
  msgid ""
509
- "Please select only csv file. Please check official website for csv structure.."
 
510
  msgstr ""
511
- "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru na "
512
- "oficiálních internetových stránkách..."
513
 
514
- #: classes/es-register.php:203
515
- msgctxt "compose-enhanced-select"
516
- msgid "Please enter name for configuration."
517
- msgstr "Zadejte název konfigurace."
518
-
519
- #: classes/es-register.php:204
520
- msgctxt "compose-enhanced-select"
521
- msgid "Please select template for this configuration."
522
- msgstr "Vyberte šablonu pro tuto konfiguraci."
523
-
524
- #: classes/es-register.php:205
525
- msgctxt "compose-enhanced-select"
526
- msgid "Do you want to delete this record?"
527
- msgstr "Chcete smazat tento záznam?"
528
 
529
- #: classes/es-register.php:213
530
- msgctxt "notification-enhanced-select"
531
- msgid "Please select subscribers group."
532
- msgstr "Vyberte skupinu odběratelů."
 
533
 
534
- #: classes/es-register.php:214
535
- msgctxt "notification-enhanced-select"
536
- msgid "Please select notification mail subject. Use compose menu to create new."
537
  msgstr ""
538
- "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu „Vytvořit“."
539
 
540
- #: classes/es-register.php:215
541
- msgctxt "notification-enhanced-select"
542
- msgid "Please select notification status."
543
- msgstr "Vyberte stav oznámení."
544
 
545
- #: classes/es-register.php:216
546
- msgctxt "notification-enhanced-select"
547
- msgid "Do you want to delete this record?"
548
- msgstr "Chcete smazat tento záznam?"
549
 
550
- #: classes/es-register.php:224
551
- msgctxt "sendmail-enhanced-select"
552
- msgid "Please select your mail subject."
553
- msgstr "Vyberte předmět zprávy."
554
 
555
- #: classes/es-register.php:225
556
- msgctxt "sendmail-enhanced-select"
557
- msgid "Please select your mail type."
558
- msgstr "Vyberte typ zprávy."
559
 
560
- #: classes/es-register.php:226
561
- msgctxt "sendmail-enhanced-select"
562
  msgid ""
563
- "Have you double checked your selected group? If so, let's go ahead and send this."
564
- msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
 
565
 
566
- #: classes/es-register.php:234
567
- msgctxt "sentmail-enhanced-select"
568
- msgid "Do you want to delete this record?"
569
- msgstr "Chcete smazat tento záznam?"
 
570
 
571
- #: classes/es-register.php:235
572
- msgctxt "sentmail-enhanced-select"
573
- msgid "Do you want to delete all records except latest 10?"
574
- msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
575
 
576
- #: classes/es-register.php:243
577
- msgctxt "cron-enhanced-select"
578
- msgid "Please select enter number of mails you want to send per hour/trigger."
579
- msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
580
 
581
- #: classes/es-register.php:244
582
- msgctxt "cron-enhanced-select"
583
- msgid "Please enter the mail count, only number."
584
- msgstr "Zadejte počet emailů (pouze číslo)."
585
 
586
- #: classes/es-register.php:259
587
- msgctxt "widget-enhanced-select"
588
- msgid "loading..."
589
- msgstr "načítání..."
590
 
591
- #: classes/es-register.php:260
592
- msgctxt "widget-enhanced-select"
593
- msgid "Cannot create XMLHTTP instance"
594
- msgstr "Nelze vytvořit instanci XMLHTTP"
595
 
596
- #: classes/es-register.php:262
597
- msgctxt "widget-enhanced-select"
598
- msgid ""
599
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
600
- "your mailbox and confirm your subscription. If you can't see the mail in your "
601
- "mailbox, please check your spam folder."
602
  msgstr ""
603
- "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte emaily ve "
604
- "své schránce a potvrďte registraci. Pokud email nenajdete, zkontrolujte prosím "
605
- "složku se spamem."
606
 
607
- #: classes/es-register.php:264
608
- msgctxt "widget-enhanced-select"
609
- msgid "Oops.. Unexpected error occurred."
610
- msgstr "Nastala neočekávaná chyba."
611
 
612
- #: classes/es-register.php:276
613
- msgctxt "widget-page-enhanced-select"
614
- msgid "loading..."
615
- msgstr "načítání..."
616
 
617
- #: classes/es-register.php:277
618
- msgctxt "widget-page-enhanced-select"
619
- msgid "Cannot create XMLHTTP instance"
620
- msgstr "Nelze vytvořit instanci XMLHTTP"
621
 
622
- #: classes/es-register.php:279
623
- msgctxt "widget-page-enhanced-select"
624
- msgid ""
625
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
626
- "your mailbox and confirm your subscription. If you can't see the mail in your "
627
- "mailbox, please check your spam folder."
628
  msgstr ""
629
- "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte emaily ve "
630
- "své schránce a potvrďte registraci. Pokud email nenajdete, zkontrolujte prosím "
631
- "složku se spamem."
632
 
633
- #: classes/es-register.php:281
634
- msgctxt "widget-page-enhanced-select"
635
- msgid "Oops.. Unexpected error occurred."
636
- msgstr "Nastala neočekávaná chyba."
637
 
638
- #: classes/es-register.php:615
639
- msgid "Widget Title"
640
- msgstr "Nadpis widgetu"
641
 
642
- #: classes/es-register.php:623
643
- msgid "Display Name Field"
644
- msgstr "Zobrazit pole „Jméno“"
645
 
646
- #: classes/es-register.php:625 settings/settings-edit.php:290
647
- #: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
648
- msgid "YES"
649
- msgstr "ANO"
650
 
651
- #: classes/es-register.php:626 settings/settings-edit.php:291
652
- #: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
653
- msgid "NO"
654
- msgstr "NE"
655
 
656
- #: classes/es-register.php:630
657
- msgid "Subscriber Group"
658
- msgstr "Skupina odběratelů"
659
 
660
- #: compose/compose-add.php:31 compose/compose-edit.php:48
661
- msgid "Please enter template heading."
662
- msgstr "Vyberte šablonu záhlaví."
663
 
664
- #: compose/compose-add.php:43
665
- msgid "Template successfully created. "
666
- msgstr "Šablona byla úspěšně vytvořena. "
667
 
668
- #: compose/compose-add.php:74
669
- msgid "Add new Email"
670
- msgstr "Přidat nový e-mail"
671
 
672
- #: compose/compose-add.php:75 compose/compose-edit.php:86
673
- #: compose/compose-preview.php:28 compose/compose-show.php:66 cron/cron-add.php:80
674
- #: notification/notification-add.php:113 notification/notification-edit.php:124
675
- #: notification/notification-show.php:54 roles/roles-add.php:111
676
- #: sendmail/sendmail.php:94 sentmail/deliverreport-show.php:61
677
- #: sentmail/sentmail-preview.php:28 sentmail/sentmail-show.php:97
678
- #: settings/settings-edit.php:198 subscribers/view-subscriber-add.php:114
679
- #: subscribers/view-subscriber-edit.php:113 subscribers/view-subscriber-export.php:38
680
- #: subscribers/view-subscriber-import.php:146
681
- #: subscribers/view-subscriber-show.php:246 subscribers/view-subscriber-sync.php:92
682
- msgid "Help"
683
- msgstr "Nápověda"
684
 
685
- #: compose/compose-add.php:78 compose/compose-edit.php:89
686
- msgid "Select your Mail Template"
687
- msgstr "Vyberte šablonu emailu"
688
 
689
- #: compose/compose-add.php:80 compose/compose-edit.php:91
690
- msgid "Newsletter"
691
- msgstr "Zpravodaj"
692
 
693
- #: compose/compose-add.php:81 compose/compose-edit.php:92
694
- msgid "Post Notification"
695
- msgstr "Potvrzení příspěvku"
696
 
697
- #: compose/compose-add.php:85 compose/compose-edit.php:96
698
- msgid "Enter your Email Subject"
699
- msgstr "Zadejte předmět emailu"
 
700
 
701
- #: compose/compose-add.php:87 compose/compose-edit.php:98
702
- msgid "Keyword: ###POSTTITLE###"
703
- msgstr "Klíčové slovo: ###POSTTITLE###"
 
704
 
705
- #: compose/compose-add.php:89 compose/compose-edit.php:100
706
- msgid "Enter Content for your Email"
707
- msgstr "Zadejte obsah emailu"
 
708
 
709
- #: compose/compose-add.php:93 compose/compose-edit.php:104
710
- #, c-format
711
- msgid ""
712
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
713
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
714
- "###POSTFULL###"
715
  msgstr ""
716
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
717
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
718
- "###POSTFULL###"
719
 
720
- #: compose/compose-add.php:93 compose/compose-edit.php:104
721
- msgid "Available Keywords"
722
- msgstr "Dostupná klíčová slova"
723
 
724
- #: compose/compose-add.php:97 compose/compose-edit.php:108
725
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
726
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
727
- #: subscribers/view-subscriber-show.php:362 subscribers/view-subscriber-show.php:375
728
- msgid "Status"
729
- msgstr "Stav"
730
 
731
- #: compose/compose-add.php:99 compose/compose-edit.php:110
732
- msgid "Published"
733
- msgstr "Publikováno"
734
 
735
- #: compose/compose-add.php:101 compose/compose-edit.php:112
736
- msgid "Please select your mail status"
737
- msgstr "Vyberte stav zprávy"
738
 
739
- #: compose/compose-add.php:105 compose/compose-edit.php:117 cron/cron-add.php:120
740
- #: notification/notification-add.php:253 notification/notification-edit.php:290
741
- #: roles/roles-add.php:207 subscribers/view-subscriber-edit.php:191
742
- msgid "Save"
743
- msgstr "Uložit"
744
 
745
- #: compose/compose-edit.php:20 compose/compose-preview.php:18
746
- #: compose/compose-show.php:33 notification/notification-edit.php:20
747
- #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
748
- #: sentmail/sentmail-show.php:22 settings/settings-edit.php:20
749
- #: subscribers/view-subscriber-edit.php:22
750
- msgid "Oops, selected details does not exists."
751
- msgstr "Vybrané podrobnosti neexistují."
752
 
753
- #: compose/compose-edit.php:61
754
- msgid "Template successfully updated. "
755
- msgstr "Šablona byla úspěšně aktualizována. "
756
 
757
- #: compose/compose-edit.php:84
758
- msgid "Edit Email"
759
- msgstr "Upravit e-mail"
760
 
761
- #: compose/compose-edit.php:85 compose/compose-show.php:65
762
- #: notification/notification-edit.php:123 notification/notification-show.php:53
763
- msgid "Add New"
764
- msgstr "Vytvoit"
 
765
 
766
- #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
767
- msgid "Preview Mail"
768
- msgstr "Náhled emailu"
769
 
770
- #: compose/compose-preview.php:40 compose/compose-show.php:101
771
- #: notification/notification-show.php:100 subscribers/view-subscriber-show.php:404
772
- msgid "Edit"
773
- msgstr "Upravit"
774
 
775
- #: compose/compose-show.php:14 sendmail/sendmail.php:18
776
- #: subscribers/view-subscriber-show.php:17
777
- msgid "Click Here"
778
- msgstr "Klikněte zde"
779
 
780
- #: compose/compose-show.php:47 notification/notification-show.php:35
781
- #: sentmail/sentmail-show.php:36
782
- msgid "Selected record deleted."
783
- msgstr "Vybraný záznam byl smazán."
 
 
 
 
 
 
 
784
 
785
- #: compose/compose-show.php:77 compose/compose-show.php:84
786
- #: notification/notification-show.php:68 notification/notification-show.php:76
787
- msgid "Email Subject"
788
- msgstr "Předmět emailu"
789
 
790
- #: compose/compose-show.php:78 compose/compose-show.php:85
791
- msgid "Email Template"
792
- msgstr "Šablona emailu"
 
 
 
 
 
793
 
794
- #: compose/compose-show.php:79 compose/compose-show.php:86
795
- msgid "Actions"
796
- msgstr "Akce"
 
797
 
798
- #: compose/compose-show.php:102 notification/notification-show.php:103
799
- #: subscribers/view-subscriber-show.php:287 subscribers/view-subscriber-show.php:409
800
- msgid "Delete"
801
- msgstr "Smazat"
802
 
803
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
804
- #: sentmail/sentmail-show.php:124
805
- msgid "Preview"
806
- msgstr "Náhled"
807
 
808
- #: compose/compose-show.php:111 notification/notification-show.php:143
809
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
810
- #: subscribers/view-subscriber-show.php:432
811
- msgid "No records available."
812
- msgstr "Žádné záznamy nejsou k dispozici."
813
 
814
- #: cron/cron-add.php:24
815
- msgid "Please enter valid mail count."
816
- msgstr "Zadejte platný počet emailů."
 
817
 
818
- #: cron/cron-add.php:34
819
- msgid "Successfully updated."
820
- msgstr "Úspěšně upraveno."
 
821
 
822
- #: cron/cron-add.php:87
823
- msgid "Cron job URL"
824
- msgstr "URL cronu"
 
825
 
826
- #: cron/cron-add.php:88
827
- msgid ""
828
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
829
- "modify it."
830
- msgstr ""
831
- "Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
832
- "upravovat."
833
 
834
- #: cron/cron-add.php:103
835
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
836
- msgstr "(Web host své limity. Doporučujeme odesílat nejvíce 50 mailů za hodinu.)"
 
837
 
838
- #: cron/cron-add.php:108
839
- msgid "Admin Report"
840
- msgstr "Hlášení pro administrátora"
 
841
 
842
- #: cron/cron-add.php:109
843
- msgid ""
844
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
845
- "###DATE###, ###SUBJECT###, ###COUNT###)"
846
- msgstr ""
847
- "Poslat administrátorovi výše uvedený email kdykoli zapracuje cron URL ve vašem "
848
- "serveru <br /> (klíčová slova: ###DATE###, ###SUBJECT###, ###COUNT###)"
849
 
850
- #: cron/cron-add.php:126
851
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
852
- 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=\"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
887
- msgid "Unexpected url submit has been detected"
888
- msgstr "Byla zjištěna neočekávaná URL adresa"
889
-
890
- #: help/help.php:47
891
- msgid "Welcome to Email Subscribers!"
892
- msgstr "Vítá vás plugin Email Subscribers!"
893
-
894
- #: help/help.php:48
895
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
896
- msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
897
 
898
- #: help/help.php:52
899
- msgid "For more help and tips..."
900
- msgstr "Pro další pomoc a rady..."
901
-
902
- #: help/help.php:67
903
- #, c-format
904
- msgid "Like Email Subscribers? Please consider %s."
905
- msgstr "Zvažte like pro Email Subscribers %s."
906
-
907
- #: help/help.php:67
908
- msgid "contributing to us"
909
- msgstr "kontaktujte nás"
910
-
911
- #: help/help.php:99
912
- msgid "Frequently Asked Questions"
913
- msgstr "Časté dotazy (anglicky)"
914
-
915
- #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
916
- #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
917
- #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
918
- #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
919
- #: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
920
- #, c-format
921
- msgid "%s"
922
- msgstr "%s"
923
 
924
- #: help/help.php:118
925
- msgid "How to Add Subscription box to website?"
926
- msgstr "Jak na web přidat přihlašovací formulář?"
 
927
 
928
- #: help/help.php:127
929
- msgid "General Plugin Settings"
930
- msgstr "Základní nastavení pluginu"
 
931
 
932
- #: help/help.php:127
933
  msgid ""
934
- " (How to modify the existing email content like Confirmation email, Welcome email, "
935
- "Admin emails)"
936
  msgstr ""
937
- " (Jak upravit existující obsah potvrzovacího emailu, uvítacího emailu, emailu pro "
938
- "administrátora)"
939
-
940
- #: help/help.php:130
941
- msgid "How to Import or Export Email Addresses?"
942
- msgstr "Jak importovat nebo exportovat emailové adresy?"
943
-
944
- #: help/help.php:133
945
- msgid "How to change/update/translate any texts from Email Subscribers?"
946
- msgstr "Jak změnit/aktualizovat/přeložit jakýkoliv text v Email Subscribers?"
947
-
948
- #: help/help.php:136
949
- msgid "How to add Unsubscribe link in emails?"
950
- msgstr "Jak do emailů přidat odkaz pro odhlášení?"
951
 
952
- #: help/help.php:139
953
- msgid "What are Static Templates and Dynamic Templates?"
954
- msgstr "Co je statická šablona a dynamická šablona?"
955
-
956
- #: help/help.php:142
957
- msgid "How to Compose and Send Newsletter Emails?"
958
- msgstr "Jak vytvářet a odesílat emaily zpravodajů?"
959
 
960
- #: help/help.php:145
961
- msgid ""
962
- "How to Configure and Send Post Notification emails to subscribers when new posts "
963
- "are published?"
964
- msgstr ""
965
- "Jak nastavit a odesílat emailová oznámení odběratelům, jakmile jsou publikovány "
966
- "nové příspěvky?"
967
 
968
- #: help/help.php:148
969
- msgid "How to Send a sample new post notification email to testgroup/myself?"
970
- msgstr "Jak poslat ukázku nového oznamovacího emailu testovací skupině/sobě?"
 
971
 
972
- #: help/help.php:151
973
- msgid "How to check Sent emails reports?"
974
- msgstr "Jak zkontrolovat přehled odeslaných emailů?"
 
975
 
976
- #: help/help.php:154
977
- msgid "How to Add/Update Existing Subscribers Group?"
978
- msgstr "Jak přidat/aktualizovat existující skupinu odběratelů?"
 
979
 
980
- #: help/help.php:157
981
- msgid "Subscribers are not receiving Emails?"
982
- msgstr "Odběratelé nepřijímají emaily?"
 
 
983
 
984
- #: help/help.php:160
985
- msgid "How to show subscribe form inside a popup?"
986
- msgstr "Jak zobrazit přihlašovací formulář ve vyskakovacím okně?"
 
 
987
 
988
- #: help/help.php:163
989
- msgid "How to use Rainmaker’s form in Email Subscribers?"
990
- msgstr "Jak používat formulář Rainmaker v Email Subscribers?"
991
 
992
- #: help/help.php:166
993
- msgid "How to Schedule Cron Mails?"
994
- msgstr "Jak naplánovat cron emaily?"
995
 
996
- #: help/help.php:169
997
- msgid "How to Schedule Cron Emails in cPanel?"
998
- msgstr "Jak naplánovat cron emaily v cPanelu?"
999
 
1000
- #: help/help.php:172
1001
- msgid "How to Schedule Cron Emails in Parallels Plesk?"
1002
- msgstr "Jak naplánovat cron emaily v Parallels Plesk?"
1003
 
1004
- #: help/help.php:175
1005
- msgid "What to do if Hosting doesn’t support Cron Jobs?"
1006
- msgstr "Co dělat, když hosting nepodporuje crony?"
 
1007
 
1008
- #: help/help.php:180
1009
- msgid "Commonly Asked Questions"
1010
- msgstr "Nejčastější dotazy"
1011
 
1012
- #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:55
1013
- #: job/es-unsubscribe.php:62
1014
  msgid ""
1015
- "Oops.. We are getting some technical error. Please try again or contact admin."
 
1016
  msgstr ""
1017
- "Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na administrátora."
1018
-
1019
- #: job/es-optin.php:61
1020
- msgid "This email address has already been confirmed."
1021
- msgstr "Tato emailová adresa již byla potvrzena."
1022
 
1023
- #: notification/notification-add.php:33
1024
- msgid "Please select subscribers group."
1025
- msgstr "Vyberte skupinu odběratelů."
1026
 
1027
- #: notification/notification-add.php:39
1028
- msgid "Please select notification status."
1029
- msgstr "Vyberte stav oznámení."
1030
 
1031
- #: notification/notification-add.php:45 notification/notification-edit.php:61
1032
- msgid "Please select notification mail subject. Use compose menu to create new."
1033
- msgstr ""
1034
- "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu „Vytvořit“."
1035
 
1036
- #: notification/notification-add.php:51 notification/notification-edit.php:67
1037
- msgid "Please select post categories."
1038
- msgstr "Vyberte rubriky příspěvků."
1039
 
1040
- #: notification/notification-add.php:71
1041
- msgid "Notification successfully created. "
1042
- msgstr "Oznámení bylo úspěšně vytvořeno. "
 
 
 
 
1043
 
1044
- #: notification/notification-add.php:112
1045
- msgid "Add Notification"
1046
- msgstr "Přidat oznámení"
1047
 
1048
- #: notification/notification-add.php:120
1049
- msgid "Select Subscribers Group"
1050
- msgstr "Vyberte skupinu odběratelů"
1051
 
1052
- #: notification/notification-add.php:124 notification/notification-add.php:148
1053
- #: notification/notification-edit.php:135 notification/notification-edit.php:168
1054
- #: sendmail/sendmail.php:110 sendmail/sendmail.php:137 sendmail/sendmail.php:151
1055
- #: subscribers/view-subscriber-add.php:162 subscribers/view-subscriber-edit.php:162
1056
- #: subscribers/view-subscriber-import.php:190
1057
- #: subscribers/view-subscriber-sync.php:119
1058
- msgid "Select"
1059
- msgstr "Vybrat"
1060
 
1061
- #: notification/notification-add.php:142 notification/notification-edit.php:162
1062
- msgid "Select Notification Email Subject"
1063
- msgstr "Vyberte předmět oznamovacího emailu"
1064
 
1065
- #: notification/notification-add.php:143 notification/notification-edit.php:163
1066
- msgid "(Use compose menu to create new)"
1067
- msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
1068
 
1069
- #: notification/notification-add.php:167 notification/notification-edit.php:190
1070
- msgid "Select Post Categories"
1071
- msgstr "Vyberte rubriky příspěvků"
 
 
 
1072
 
1073
- #: notification/notification-add.php:195 notification/notification-edit.php:225
1074
- msgid "Check All"
1075
- msgstr "Označit vše"
1076
 
1077
- #: notification/notification-add.php:196 notification/notification-edit.php:226
1078
- msgid "Uncheck All"
1079
- msgstr "Odznačit vše"
 
 
 
 
1080
 
1081
- #: notification/notification-add.php:202 notification/notification-edit.php:233
1082
- msgid "Select your Custom Post Type"
1083
- msgstr "Vyberte vlastní typ obsahu"
1084
 
1085
- #: notification/notification-add.php:203 notification/notification-edit.php:234
1086
- msgid "(Optional)"
1087
- msgstr "(nepovinné)"
1088
 
1089
- #: notification/notification-add.php:232 notification/notification-edit.php:268
1090
- msgid "No Custom Post Types Available"
1091
- msgstr "Vlastní typ obsahu není dostupný"
1092
 
1093
- #: notification/notification-add.php:239 notification/notification-edit.php:275
1094
- msgid "Select Notification Status when a new post is published"
1095
- msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
1096
 
1097
- #: notification/notification-add.php:243 notification/notification-edit.php:279
1098
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
1099
- msgid "Send email immediately"
1100
- msgstr "Odeslat email okamžitě"
 
 
 
1101
 
1102
- #: notification/notification-add.php:244 notification/notification-edit.php:280
1103
- #: notification/notification-show.php:132
1104
- msgid "Add to cron and send email via cron job"
1105
- msgstr "Přidat do cronu a odeslat cronem"
 
 
 
1106
 
1107
- #: notification/notification-add.php:245 notification/notification-edit.php:281
1108
- msgid "Disable email notification"
1109
- msgstr "Zakázat oznamovací email"
 
1110
 
1111
- #: notification/notification-edit.php:49
1112
- msgid "Please select subscribers group"
1113
- msgstr "Vyberte skupinu odběratelů"
 
1114
 
1115
- #: notification/notification-edit.php:55
1116
- msgid "Please select notification status"
1117
- msgstr "Vyberte stav oznámení"
1118
 
1119
- #: notification/notification-edit.php:89
1120
- msgid "Notification successfully updated. "
1121
- msgstr "Oznámení bylo úspěšně upraveno. "
1122
 
1123
- #: notification/notification-edit.php:122
1124
- msgid "Edit Notification"
1125
- msgstr "Upravit oznámení"
1126
 
1127
- #: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:289
1128
- msgid "Update Subscribers Group"
1129
- msgstr "Upravit skupinu odběratelů"
 
 
 
 
1130
 
1131
- #: notification/notification-show.php:57
1132
  msgid ""
1133
- "Use this to setup and send notification emails to your subscribers when a new post "
1134
- "is published in your blog."
1135
  msgstr ""
1136
- "Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je nový "
1137
- "příspěvek publikován na vašem webu."
1138
 
1139
- #: notification/notification-show.php:69 notification/notification-show.php:77
1140
- msgid "Subscribers Group"
1141
- msgstr "Skupina odběratelů"
1142
 
1143
- #: notification/notification-show.php:70 notification/notification-show.php:78
1144
- msgid "Post Categories / Custom Post Types"
1145
- msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
1146
 
1147
- #: notification/notification-show.php:71 notification/notification-show.php:79
1148
- msgid "Notification Status"
1149
- msgstr "Stav oznámení"
1150
 
1151
- #: roles/roles-add.php:53
1152
- msgid "Role Updated. "
1153
- msgstr "Oprávnění bylo aktualizováno. "
1154
 
1155
- #: roles/roles-add.php:114
1156
  msgid "Select user roles who can access following menus. Only Admin can change this."
1157
  msgstr ""
1158
  "Vyberte uživatelské role, které mají mít přístup k následujícím menu. Pouze "
1159
  "správce zde může provádět změny."
1160
 
1161
- #: roles/roles-add.php:121
1162
  msgid "Subscribers Menu"
1163
  msgstr "Menu odběratelé"
1164
 
1165
- #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
1166
- #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
1167
- #: roles/roles-add.php:197
1168
  msgid "Administrator Only"
1169
  msgstr "Pouze administrátor"
1170
 
1171
- #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
1172
- #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
1173
- #: roles/roles-add.php:198
1174
  msgid "Administrator/Editor"
1175
  msgstr "Administrátor/Editor"
1176
 
1177
- #: roles/roles-add.php:127 roles/roles-add.php:139 roles/roles-add.php:151
1178
- #: roles/roles-add.php:163 roles/roles-add.php:175 roles/roles-add.php:187
1179
- #: roles/roles-add.php:199
1180
  msgid "Administrator/Editor/Author/Contributor"
1181
  msgstr "Administrátor/Editor/Autor/Spolupracovník"
1182
 
1183
- #: roles/roles-add.php:133
1184
  msgid "Compose Menu"
1185
  msgstr "Menu vytvořit"
1186
 
1187
- #: roles/roles-add.php:145
1188
  msgid "Post Notifications Menu"
1189
  msgstr "Oznámení o příspěvcích"
1190
 
1191
- #: roles/roles-add.php:157
1192
- msgid "Newsletters + Cron Settings Menu"
1193
- msgstr "Zpravodaje + Menu nastavení cronu"
1194
-
1195
- #: roles/roles-add.php:169
1196
- msgid "Email Settings Menu"
1197
- msgstr "Menu nastavení emailu"
1198
 
1199
- #: roles/roles-add.php:181
1200
  msgid "Reports Menu"
1201
  msgstr "Menu přehledů"
1202
 
1203
- #: roles/roles-add.php:193
1204
- msgid "Help & Info Menu"
1205
- msgstr "Menu Nápověda"
1206
 
1207
- #: sendmail/sendmail.php:40
1208
- msgid "Please select your mail subject."
1209
- msgstr "Vyberte předmět zprávy."
 
 
 
 
1210
 
1211
- #: sendmail/sendmail.php:46
1212
- msgid "Please select your mail type."
1213
- msgstr "Vyberte typ zprávy."
1214
 
1215
- #: sendmail/sendmail.php:52
1216
- msgid "Please select your group."
1217
- msgstr "Vyberte skupinu."
1218
 
1219
- #: sendmail/sendmail.php:59
1220
- msgid "Mail sent successfully. "
1221
- msgstr "Email byl úspěšně odeslán. "
1222
 
1223
- #: sendmail/sendmail.php:63
1224
- msgid "Click here to check Statistics"
1225
- msgstr "Klikněte zde pro kontrolu statistik"
1226
 
1227
- #: sendmail/sendmail.php:69
1228
- msgid "Oops.. We are getting some error. mail not sending."
1229
- msgstr "Nastala chyba. Zprávy se neodesílají."
1230
 
1231
- #: sendmail/sendmail.php:97
1232
- msgid "Use this to send newsletter emails to your subscribers."
1233
- msgstr "Použijete při odeslání emailů svým odběratelům."
1234
 
1235
- #: sendmail/sendmail.php:139
1236
- msgid "Send email via cron job"
1237
- msgstr "Odeslat email cronem"
1238
 
1239
- #: sendmail/sendmail.php:178
1240
- msgid "Recipients : 0 "
1241
- msgstr "Příjemců: 0 "
1242
 
1243
- #: sendmail/sendmail.php:180
1244
- #, c-format
1245
- msgid "Recipients : %s"
1246
- msgstr "Příjemců: %s"
1247
 
1248
- #: sendmail/sendmail.php:183
1249
- msgid ""
1250
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1251
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click "
1252
- "on Help for more information."
1253
- msgstr ""
1254
- "<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme, "
1255
- "abyste výše změnili typ emailu na cron a zprávy odeslali přes cron.</"
1256
- "strong><br>Pro více informací klikněte na nápovědu."
1257
 
1258
- #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1259
- msgid "Send Email"
1260
- msgstr "Odeslat email"
1261
 
1262
- #: sendmail/sendmail.php:199
1263
- msgid "Reset"
1264
- msgstr "Reset"
1265
 
1266
- #: sentmail/deliverreport-show.php:14
1267
- msgid "Oops.. Unexpected error occurred. Please try again."
1268
- msgstr "Nastala neznámá chyba. Prosím opakujte akci."
1269
 
1270
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
 
 
 
 
1271
  msgid " &lt;&lt; "
1272
  msgstr " &lt;&lt; "
1273
 
1274
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1275
  msgid " &gt;&gt; "
1276
  msgstr " &gt;&gt; "
1277
 
1278
- #: sentmail/deliverreport-show.php:60
1279
- msgid "Delivery Report"
1280
- msgstr "Hlášení o doručení"
1281
-
1282
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1283
- #: subscribers/view-subscriber-export.php:45
1284
- #: subscribers/view-subscriber-export.php:53
1285
- msgid "Sno"
1286
- msgstr "Číslo"
1287
-
1288
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1289
- msgid "Email"
1290
- msgstr "Email"
1291
-
1292
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1293
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1294
- msgid "Sent"
1295
- msgstr "Odeslal"
1296
-
1297
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1298
- msgid "Sent Date"
1299
- msgstr "Datum odeslání"
1300
-
1301
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1302
- msgid "Viewed Status"
1303
- msgstr "Stav zobrazení"
1304
-
1305
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1306
- msgid "Viewed Date"
1307
- msgstr "Datum zobrazení"
1308
-
1309
- #: sentmail/sentmail-preview.php:42
1310
- msgid "Back"
1311
- msgstr "Zpět"
1312
-
1313
- #: sentmail/sentmail-show.php:43
1314
- msgid "Successfully deleted all reports except latest 10."
1315
- msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
1316
 
1317
- #: sentmail/sentmail-show.php:100
1318
  msgid "It will show reports for all Newsletters & Post Notification emails sent."
1319
  msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
1320
 
1321
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1322
  msgid "View Reports"
1323
  msgstr "Zobrazit hlášení"
1324
 
1325
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
 
 
 
 
 
1326
  msgid "Type"
1327
  msgstr "Typ"
1328
 
1329
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
 
 
 
 
 
 
 
 
 
 
 
 
1330
  msgid "Start Date"
1331
  msgstr "Počáteční datum"
1332
 
1333
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1334
  msgid "End Date"
1335
  msgstr "Datum ukončení"
1336
 
1337
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1338
  msgid "Total"
1339
  msgstr "Celkem"
1340
 
1341
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1342
- #: subscribers/view-subscriber-export.php:48
1343
- #: subscribers/view-subscriber-export.php:56 subscribers/view-subscriber-show.php:365
1344
- #: subscribers/view-subscriber-show.php:378
1345
  msgid "Action"
1346
  msgstr "Akce"
1347
 
1348
- #: sentmail/sentmail-show.php:193
1349
  msgid "Optimize Table & Delete Records"
1350
  msgstr "Optimalizovat tabulku a smazat záznamy"
1351
 
1352
- #: sentmail/sentmail-show.php:202
1353
  msgid ""
1354
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1355
- "delete all reports except latest 10."
1356
  msgstr ""
1357
- "Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání záznamů</"
1358
- "strong> pro vymazání všech zpráv kromě posledních 10."
1359
 
1360
- #: settings/setting-sync.php:16
1361
- msgid "Table sync completed successfully."
1362
- msgstr "Synchronizace tabulek byla úspěšná."
1363
-
1364
- #: settings/setting-sync.php:29
1365
- msgid "Sync plugin tables"
1366
- msgstr "Synchronizace tabulek pluginu"
1367
 
1368
- #: settings/setting-sync.php:33
1369
- msgid "Click to sync tables"
1370
- msgstr "Klikněte pro synchronizaci tabulek"
1371
 
1372
- #: settings/settings-edit.php:117
1373
- msgid "Please enter sender of notifications from name."
1374
- msgstr "Zadejte jméno odesílatele oznámení."
 
 
1375
 
1376
- #: settings/settings-edit.php:122
1377
- msgid "Please enter sender of notifications from email."
1378
- msgstr "Zadejte email odesílatele oznámení."
1379
 
1380
- #: settings/settings-edit.php:155
1381
- msgid "Settings Saved."
1382
- msgstr "Nastavení bylo uloženo."
1383
 
1384
- #: settings/settings-edit.php:158
1385
- msgid "Oops, unable to update."
1386
- msgstr "Nelze aktualizovat."
1387
 
1388
- #: settings/settings-edit.php:205
1389
- msgid "Sender of Notifications"
1390
- msgstr "Odesílatel oznámení"
1391
 
1392
- #: settings/settings-edit.php:206
1393
  msgid ""
1394
- "Choose a FROM name and FROM email address for all the emails to be sent from this "
1395
- "plugin."
1396
  msgstr ""
1397
- "Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
1398
- "tohoto pluginu."
1399
 
1400
- #: settings/settings-edit.php:216
1401
- msgid "Mail Type"
1402
- msgstr "Typ emailu"
1403
 
1404
- #: settings/settings-edit.php:217
1405
- msgid ""
1406
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & "
1407
- "4 is to send mails with PHP method mail()."
1408
- msgstr ""
1409
- "Varianty 1 a 2 odesílají emaily výchozí Wordpress metodou wp_mail(). Varianty 3 a "
1410
- "4 odesílají emaily PHP metodou mail()."
1411
 
1412
- #: settings/settings-edit.php:221
1413
- msgid "1. WP HTML MAIL"
1414
- msgstr "1. WP HTML ZPRÁVA"
1415
 
1416
- #: settings/settings-edit.php:222
1417
- msgid "2. WP PLAINTEXT MAIL"
1418
- msgstr "2. WP PROSTÝ TEXT"
 
1419
 
1420
- #: settings/settings-edit.php:223
1421
- msgid "3. PHP HTML MAIL"
1422
- msgstr "3. PHP HTML ZPRÁVA"
 
1423
 
1424
- #: settings/settings-edit.php:224
1425
- msgid "4. PHP PLAINTEXT MAIL"
1426
- msgstr "4. PHP PROSTÝ TEXT"
1427
 
1428
- #: settings/settings-edit.php:232
1429
- msgid ""
1430
- "Double Opt In means subscribers need to confirm their email address by an "
1431
- "activation link sent them on a activation email message.<br />Single Opt In means "
1432
- "subscribers do not need to confirm their email address."
1433
- msgstr ""
1434
- "Dvojité potvrzení, znamená, že požadujete aby odběratelé potvrdili svou emailovou "
1435
- "adresu aktivačním odkazem zaslaným v aktivační emailové zprávě. Jednoduché "
1436
- "potvrzení, znamená že odběratelé nemusí potvrdit svou emailovou adresu."
1437
 
1438
- #: settings/settings-edit.php:236
1439
- msgid "Double Opt In"
1440
- msgstr "Dvojí potvrzení"
 
 
 
1441
 
1442
- #: settings/settings-edit.php:237 subscribers/view-subscriber-add.php:151
1443
- #: subscribers/view-subscriber-edit.php:150
1444
- #: subscribers/view-subscriber-import.php:178
1445
- #: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
1446
- msgid "Single Opt In"
1447
- msgstr "Jednoduché potvrzení"
1448
 
1449
- #: settings/settings-edit.php:243
1450
- msgid "Image Size"
1451
- msgstr "Velikost obrázku"
 
 
 
1452
 
1453
- #: settings/settings-edit.php:244
1454
- msgid ""
1455
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
1456
- msgstr ""
1457
- "Vyberte velikost obrázku ###POSTIMAGE###, který se zobrazí v emailu oznámení "
1458
- "příspěvku."
1459
 
1460
- #: settings/settings-edit.php:248
1461
- msgid "Full Size"
1462
- msgstr "Plná velikost"
1463
 
1464
- #: settings/settings-edit.php:249
1465
- msgid "Medium Size"
1466
- msgstr "Střední velikost"
1467
 
1468
- #: settings/settings-edit.php:250
1469
- msgid "Thumbnail"
1470
- msgstr "Náhled"
1471
 
1472
- #: settings/settings-edit.php:270
1473
- msgid "Double Opt In Confirmation Link"
1474
- msgstr "Potvrzovací odkaz pro dvojité potvrzení. Není nutné tuto hodnotu měnit."
 
 
1475
 
1476
- #: settings/settings-edit.php:271
1477
- msgid "It is a readonly field and you are advised not to modify it."
1478
- msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
 
 
1479
 
1480
- #: settings/settings-edit.php:278
1481
- msgid ""
1482
- "This text will be displayed once user clicks on email confirmation link from the "
1483
- "Double Opt In (confirmation) Email."
1484
- msgstr ""
1485
- "Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při dvojitém "
1486
- "potvrzení."
1487
 
1488
- #: settings/settings-edit.php:285
1489
- msgid "Subscriber Welcome Email"
1490
- msgstr "Uvítací email pro odběratele"
1491
 
1492
- #: settings/settings-edit.php:286
1493
- msgid ""
1494
- "To send welcome email to subscriber after successful signup. This option must be "
1495
- "set to YES."
1496
- msgstr ""
1497
- "Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být tato "
1498
- "volba nastavena na hodnotu ANO."
1499
 
1500
- #: settings/settings-edit.php:297
1501
- msgid "Subscriber Welcome Email Subject"
1502
- msgstr "Předmět uvítacího emailu pro odběratele"
 
 
 
1503
 
1504
- #: settings/settings-edit.php:304
1505
- msgid "Subscriber Welcome Email Content"
1506
- msgstr "Obsah uvítacího emailu pro odběratele"
 
1507
 
1508
- #: settings/settings-edit.php:313
1509
- msgid "Unsubscribe Link"
1510
- msgstr "Odhlašovací odkaz"
1511
 
1512
- #: settings/settings-edit.php:320
1513
- msgid "Unsubscribe Text in Email"
1514
- msgstr "Text emailu pro odhlášení"
 
1515
 
1516
- #: settings/settings-edit.php:321
1517
- msgid ""
1518
- "Enter the text for the unsubscribe link. This text is added with unsubscribe link "
1519
- "in the emails. (Keyword: ###LINK###)"
1520
  msgstr ""
1521
- "Zadejte text odkazu pro odhlášení. Tento text je přidán do odkazu pro odhlášení ve "
1522
- "zpravodaji. (Klíčové slovo: ###LINK###)"
1523
 
1524
- #: settings/settings-edit.php:328
1525
- msgid "This text will be displayed once user clicks on unsubscribe link."
1526
- msgstr "Tento text bude zobrazen při prvním kliknutí na odhlašovací odkaz."
 
1527
 
1528
- #: settings/settings-edit.php:336
1529
- msgid ""
1530
- "Default message to display if there is any issue while clicking on confirmation "
1531
- "link from the Double Opt In (confirmation) Emails."
 
 
 
 
1532
  msgstr ""
1533
- "Základní zpráva k zobrazení po kliknutí na potvrzovací odkaz při dvojitém "
1534
- "potvrzení emailu."
1535
 
1536
- #: settings/settings-edit.php:343
1537
- msgid ""
1538
- "Default message to display if there is any issue while clicking on unsubscribe "
1539
- "link from the Emails."
1540
- msgstr "Základní zpráva k zobrazení po kliknutí na odhlašovací odkaz v emailu."
1541
 
1542
- #: settings/settings-edit.php:350
1543
- msgid "Admin Email Addresses"
1544
- msgstr "Emailová adresa administrátora"
1545
 
1546
- #: settings/settings-edit.php:351
1547
- msgid ""
1548
- "Enter the admin email addresses that should receive notifications (separated by "
1549
- "comma)."
1550
- msgstr ""
1551
- "Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení (oddělené "
1552
- "čárkou)."
1553
 
1554
- #: settings/settings-edit.php:358
1555
- msgid ""
1556
- "To send admin email notifications for the new subscriber. This option must be set "
1557
- "to YES."
1558
- msgstr ""
1559
- "Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu nastavit "
1560
- "na ANO."
1561
 
1562
- #: settings/settings-edit.php:385
1563
- msgid "Sent Report Subject"
1564
- msgstr "Předmět emailu pro hlášení o odeslání"
 
1565
 
1566
- #: settings/settings-edit.php:392
1567
- msgid "Sent Report Content"
1568
- msgstr "Obsah hlášení o odeslání"
 
1569
 
1570
- #: settings/settings-edit.php:403
1571
- msgid "Save Settings"
1572
- msgstr "Uložit nastavení"
 
1573
 
1574
- #: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
1575
- msgid "Please enter subscriber email address."
1576
- msgstr "Zadejte emailovou adresu odběratele."
1577
 
1578
- #: subscribers/view-subscriber-add.php:49
1579
- msgid "Please select or create your group for this email."
1580
- msgstr "Vyberte nebo vytvořte skupinu pro tento email."
 
1581
 
1582
- #: subscribers/view-subscriber-add.php:56
1583
- msgid ""
1584
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1585
- "group name."
1586
- msgstr ""
1587
- "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze použít."
1588
 
1589
- #: subscribers/view-subscriber-add.php:66
1590
- msgid "Subscriber has been saved."
1591
- msgstr "Odběratel byl uložen."
1592
 
1593
- #: subscribers/view-subscriber-add.php:68
1594
- msgid "Subscriber already exists."
1595
- msgstr "Odběratel již existuje."
1596
 
1597
- #: subscribers/view-subscriber-add.php:71
1598
- msgid "Invalid Email."
1599
- msgstr "Neplatný email."
1600
 
1601
- #: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
1602
- #: subscribers/view-subscriber-export.php:35
1603
- #: subscribers/view-subscriber-import.php:143
1604
- #: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
1605
- msgid "Add New Subscriber"
1606
- msgstr "Přidat nového odběratele"
1607
 
1608
- #: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
1609
- #: subscribers/view-subscriber-export.php:36
1610
- #: subscribers/view-subscriber-import.php:210
1611
- #: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
1612
- msgid "Import"
1613
- msgstr "Import"
1614
 
1615
- #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
1616
- #: subscribers/view-subscriber-import.php:144
1617
- #: subscribers/view-subscriber-show.php:244 subscribers/view-subscriber-sync.php:91
1618
- msgid "Export"
1619
- msgstr "Export"
1620
 
1621
- #: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
1622
- #: subscribers/view-subscriber-export.php:37
1623
- #: subscribers/view-subscriber-import.php:145
1624
- #: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:143
1625
- msgid "Sync"
1626
- msgstr "Synchronizovat"
1627
 
1628
- #: subscribers/view-subscriber-add.php:123
1629
- msgid "Enter Subscriber's Full name"
1630
- msgstr "Zadejte celé jméno odběratele"
1631
 
1632
- #: subscribers/view-subscriber-add.php:133
1633
- msgid "Enter Subscriber's Email Address"
1634
- msgstr "Zadejte emailovou adresu odběratele"
1635
 
1636
- #: subscribers/view-subscriber-add.php:143
1637
- msgid "Select Subscriber's Status"
1638
- msgstr "Vyberte stav odběratele"
1639
-
1640
- #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1641
- #: subscribers/view-subscriber-import.php:175
1642
- #: subscribers/view-subscriber-show.php:309 subscribers/view-subscriber-show.php:336
1643
- msgid "Confirmed"
1644
- msgstr "Potvrzeno"
1645
-
1646
- #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1647
- #: subscribers/view-subscriber-import.php:176
1648
- #: subscribers/view-subscriber-show.php:310 subscribers/view-subscriber-show.php:337
1649
- msgid "Unconfirmed"
1650
- msgstr "Nepotvrzeno"
1651
-
1652
- #: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
1653
- #: subscribers/view-subscriber-import.php:177
1654
- #: subscribers/view-subscriber-show.php:311 subscribers/view-subscriber-show.php:338
1655
- msgid "Unsubscribed"
1656
- msgstr "Zrušen odběr"
1657
-
1658
- #: subscribers/view-subscriber-add.php:158
1659
- msgid "Select (or) Create Group for Subscriber"
1660
- msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1661
-
1662
- #: subscribers/view-subscriber-add.php:174 subscribers/view-subscriber-import.php:202
1663
- msgid "(or)"
1664
- msgstr "(nebo)"
1665
-
1666
- #: subscribers/view-subscriber-add.php:183
1667
- msgid "Add Subscriber"
1668
- msgstr "Přidat odběratele"
1669
-
1670
- #: subscribers/view-subscriber-edit.php:64
1671
- msgid "Error: Special characters are not allowed in the group name."
1672
- msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
1673
 
1674
- #: subscribers/view-subscriber-edit.php:74
1675
- msgid "Subscriber details updated."
1676
- msgstr "Podrobnosti odběratele byly aktualizovány."
1677
 
1678
- #: subscribers/view-subscriber-edit.php:76
1679
- msgid "Subscriber already exists for this group."
1680
- msgstr "Odběratel již v této skupině existuje."
1681
 
1682
- #: subscribers/view-subscriber-edit.php:108
1683
- msgid "Edit Subscriber"
1684
- msgstr "Upravit odběratele"
1685
 
1686
- #: subscribers/view-subscriber-edit.php:122
1687
- msgid "Subscriber's Full Name"
1688
- msgstr "Celé jména odběratele"
 
1689
 
1690
- #: subscribers/view-subscriber-edit.php:132
1691
- msgid "Subscriber's Email Address"
1692
- msgstr "Emailová adresa odběratele"
 
1693
 
1694
- #: subscribers/view-subscriber-edit.php:142
1695
- msgid "Update Subscriber's Status"
1696
- msgstr "Změna stavu odběratele"
 
1697
 
1698
- #: subscribers/view-subscriber-edit.php:157
1699
- msgid "Update Subscriber's Group"
1700
- msgstr "Změna skupiny odběratele"
 
1701
 
1702
- #: subscribers/view-subscriber-export.php:34
1703
  msgid "Export Email Addresses"
1704
  msgstr "Exportovat emailové adresy"
1705
 
1706
- #: subscribers/view-subscriber-export.php:46
1707
- #: subscribers/view-subscriber-export.php:54
1708
  msgid "Type of List to Export"
1709
  msgstr "Typ seznamu pro export"
1710
 
1711
- #: subscribers/view-subscriber-export.php:61
 
 
 
 
 
1712
  msgid "1"
1713
  msgstr "1"
1714
 
1715
- #: subscribers/view-subscriber-export.php:64
1716
- #: subscribers/view-subscriber-export.php:70
1717
- #: subscribers/view-subscriber-export.php:76
1718
- #: subscribers/view-subscriber-export.php:82
1719
- #: subscribers/view-subscriber-export.php:88
 
 
1720
  msgid "Click to Export in CSV"
1721
  msgstr "Klikněte pro export do CSV"
1722
 
1723
- #: subscribers/view-subscriber-export.php:67
1724
  msgid "2"
1725
  msgstr "2"
1726
 
1727
- #: subscribers/view-subscriber-export.php:73
 
 
 
 
1728
  msgid "3"
1729
  msgstr "3"
1730
 
1731
- #: subscribers/view-subscriber-export.php:80
 
 
 
 
 
 
 
 
1732
  msgid "WordPress Registered Users"
1733
  msgstr "WordPress registrovaní uživatelé"
1734
 
1735
- #: subscribers/view-subscriber-export.php:86
 
 
 
 
1736
  msgid "Commented Authors"
1737
  msgstr "Autoři komentářů"
1738
 
1739
- #: subscribers/view-subscriber-import.php:44
 
 
 
 
 
 
 
 
 
1740
  msgid ""
1741
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1742
- "Group name."
1743
  msgstr ""
1744
- "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze použít."
 
1745
 
1746
- #: subscribers/view-subscriber-import.php:92
1747
- msgid "email imported."
1748
- msgstr "email byl importován."
1749
 
1750
- #: subscribers/view-subscriber-import.php:93
1751
- msgid "email already exists."
1752
- msgstr "email již existuje."
1753
 
1754
- #: subscribers/view-subscriber-import.php:94
1755
- msgid "email are invalid."
1756
- msgstr "emaily jsou neplatné."
1757
 
1758
- #: subscribers/view-subscriber-import.php:97
1759
- #: subscribers/view-subscriber-import.php:126
1760
- msgid "Click here"
1761
- msgstr "Klikněte zde"
1762
 
1763
- #: subscribers/view-subscriber-import.php:97
1764
- #: subscribers/view-subscriber-import.php:126
1765
- msgid " to view details."
1766
- msgstr " pro zobrazení podrobností."
1767
 
1768
- #: subscribers/view-subscriber-import.php:105
1769
- msgid "File Upload Failed."
1770
- msgstr "Nahrávání souboru selhalo."
1771
 
1772
- #: subscribers/view-subscriber-import.php:142
1773
- msgid "Import Email Addresses"
1774
- msgstr "Import emailových adres"
1775
 
1776
- #: subscribers/view-subscriber-import.php:155
1777
- msgid "Select CSV file"
1778
- msgstr "Vyberte soubor CSV"
1779
 
1780
- #: subscribers/view-subscriber-import.php:157
1781
- msgid "Check CSV structure "
1782
- msgstr "Zkontrolujte CSV strukturu "
1783
 
1784
- #: subscribers/view-subscriber-import.php:158
1785
- msgid "from here"
1786
- msgstr "zde"
1787
 
1788
- #: subscribers/view-subscriber-import.php:169
1789
- msgid "Select Subscribers Email Status"
1790
- msgstr "Vybrat stav emailů odběratelů"
1791
 
1792
- #: subscribers/view-subscriber-import.php:185
1793
- msgid "Select (or) Create Group for Subscribers"
1794
- msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1795
 
1796
- #: subscribers/view-subscriber-show.php:45
1797
- msgid "Selected details does not exists."
1798
- msgstr "Vybrané detaily neexistují."
1799
 
1800
- #: subscribers/view-subscriber-show.php:56 subscribers/view-subscriber-show.php:95
1801
- msgid "Record deleted."
1802
- msgstr "Záznam byl smazán."
1803
 
1804
- #: subscribers/view-subscriber-show.php:67
1805
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1806
- msgstr ""
1807
- "Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité potvrzení."
1808
 
1809
- #: subscribers/view-subscriber-show.php:75 subscribers/view-subscriber-show.php:134
1810
- msgid "Confirmation emails Resent Successfully."
1811
- msgstr "Potvrzovací emaily úspěšně odeslány."
1812
 
1813
- #: subscribers/view-subscriber-show.php:100 subscribers/view-subscriber-show.php:139
1814
- #: subscribers/view-subscriber-show.php:177 subscribers/view-subscriber-show.php:216
1815
- msgid "No record was selected."
1816
- msgstr "Není vybrán žádný záznam."
1817
 
1818
- #: subscribers/view-subscriber-show.php:115
1819
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1820
- msgstr ""
1821
- "Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
1822
- "potvrzení."
1823
 
1824
- #: subscribers/view-subscriber-show.php:163
1825
- msgid "Subscribers Group updated."
1826
- msgstr "Skupina odběratelů je upravena."
1827
 
1828
- #: subscribers/view-subscriber-show.php:168
1829
- msgid "Please select New group to update."
1830
- msgstr "Vyberte novou skupinu k úpravě."
1831
 
1832
- #: subscribers/view-subscriber-show.php:202
1833
- msgid "Subscribers Status updated."
1834
- msgstr "Stav odběratele upraven."
1835
 
1836
- #: subscribers/view-subscriber-show.php:207
1837
- msgid "Please select New Status to update."
1838
- msgstr "Vyberte nový stav ke změně."
1839
 
1840
- #: subscribers/view-subscriber-show.php:286
1841
- msgid "Bulk Actions"
1842
- msgstr "Hromadné úpravy"
1843
 
1844
- #: subscribers/view-subscriber-show.php:288 subscribers/view-subscriber-show.php:417
1845
- msgid "Resend Confirmation"
1846
- msgstr "Znovu odeslat povtrzení"
1847
 
1848
- #: subscribers/view-subscriber-show.php:290
1849
- msgid "Update Subscribers Status"
1850
- msgstr "Změna stavu odběratele"
1851
 
1852
- #: subscribers/view-subscriber-show.php:293
1853
- msgid "Select Group"
1854
- msgstr "Vyberte skupinu"
1855
 
1856
- #: subscribers/view-subscriber-show.php:314
1857
- msgid "Apply"
1858
- msgstr "Použít"
1859
 
1860
- #: subscribers/view-subscriber-show.php:318
1861
- msgid "All Groups"
1862
- msgstr "Všechny skupiny"
1863
 
1864
- #: subscribers/view-subscriber-show.php:335
1865
- msgid "All Status"
1866
- msgstr "Všechny stavy"
1867
 
1868
- #: subscribers/view-subscriber-show.php:349
1869
- msgid "Display All"
1870
- msgstr "Zobrazit vše"
1871
 
1872
- #: subscribers/view-subscriber-show.php:360 subscribers/view-subscriber-show.php:373
1873
- msgid "Email Address"
1874
- msgstr "Emailová adresa"
1875
 
1876
- #: subscribers/view-subscriber-show.php:363 subscribers/view-subscriber-show.php:376
1877
- msgid "Group"
1878
- msgstr "Skupina"
 
1879
 
1880
- #: subscribers/view-subscriber-sync.php:36
1881
- msgid "Please select default group to newly registered user."
1882
- msgstr "Vyberte výchozí skupinu pro nově registrované uživatele."
1883
 
1884
- #: subscribers/view-subscriber-sync.php:50
1885
- msgid "Emails Successfully Synced."
1886
- msgstr "Emaily byly úspěšně synchronizovány."
1887
 
1888
- #: subscribers/view-subscriber-sync.php:88
1889
- msgid "Sync Email"
1890
- msgstr "Synchronizace emailu"
1891
 
1892
- #: subscribers/view-subscriber-sync.php:101
1893
- msgid "Sync newly registered users to subscribers list"
1894
- msgstr "Synchronizovat nově registrované uživatele do seznamu"
 
 
 
 
 
1895
 
1896
- #: subscribers/view-subscriber-sync.php:114
1897
- msgid "Select group to add newly registered users to"
1898
- msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
1899
 
1900
- #. Plugin Name of the plugin/theme
1901
- msgid "Email Subscribers & Newsletters"
1902
- msgstr "Email Subscribers & Newsletters"
1903
 
1904
- #. #-#-#-#-# tmp-email-subscribers.pot (Email Subscribers & Newsletters 3.2.3)
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 ""
1913
- "Add subscription forms on website, send HTML newsletters & automatically notify "
1914
- "subscribers about new blog posts once it is published."
1915
- msgstr ""
1916
- "Přidejte formulář přihlášení k zasílání zpravodajů na internetové stránky, "
1917
- "posílejte HTML zpravodaje a automaticky informujte objednatele o nových "
1918
- "příspěvcích, jakmile budou zveřejněny."
1919
 
1920
- #. Author of the plugin/theme
1921
- msgid "Icegram"
1922
- msgstr "Icegram"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:25:30 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Czech\n"
11
+ "Plural-Forms: nplurals=3; plural=( n == 1 ) ? 0 : ( n >= 2 && n <= 4 ) ? 1 : "
12
+ "2\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Loco - https://localise.biz/\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
  "X-Loco-Target-Locale: cs_CZ\n"
25
+ "X-Poedit-SearchPath-0: .."
26
 
27
+ #. URI of the plugin
28
+ msgid "https://www.icegram.com"
 
 
 
 
29
  msgstr ""
 
 
 
 
 
 
 
 
 
30
 
31
+ #: ../email-subscribers.php:70
32
+ msgctxt "timezone date format"
33
+ msgid "Y-m-d H:i:s"
34
+ msgstr ""
35
 
36
+ #: ../settings/settings-edit.php:23
37
+ msgid "Admin"
38
+ msgstr ""
 
39
 
40
+ #: ../settings/settings-edit.php:24
41
+ msgid "Signup Confirmation"
42
+ msgstr ""
 
43
 
44
+ #: ../settings/settings-edit.php:25
45
+ msgid "Cron"
46
+ msgstr ""
 
47
 
48
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
49
+ #: register.php:158
50
+ msgid "Settings"
51
+ msgstr ""
52
 
53
+ #: ../settings/settings-edit.php:92
54
+ msgid "Email Type"
55
+ msgstr ""
 
56
 
57
+ #: ../settings/settings-edit.php:93
58
+ msgid ""
59
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
60
+ "Option 3 & 4 is to send emails with PHP method mail()."
61
+ msgstr ""
62
 
63
+ #: ../settings/settings-edit.php:107
64
+ msgid "Opt-In Type"
65
+ msgstr ""
 
66
 
67
+ #: ../settings/settings-edit.php:108
68
+ msgid ""
69
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
70
+ "soon as they subscribe to your list. They have to confirm their subscription "
71
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
72
+ "subscriber is not asked to confirm their email address. They are subscribed "
73
+ "directly in the list."
74
+ msgstr ""
75
 
76
+ #: ../settings/settings-edit.php:139
77
+ msgid "Notify Admin when a new subscriber signs up"
78
+ msgstr ""
 
79
 
80
+ #: ../settings/settings-edit.php:152
81
+ msgid "Admin Email Subject on new subscriber sign up"
82
+ msgstr ""
 
83
 
84
+ #: ../settings/settings-edit.php:153
85
+ msgid ""
86
+ "Subject for the admin email whenever a new subscriber signs up and is "
87
+ "confirmed."
88
+ msgstr ""
89
 
90
+ #: ../settings/settings-edit.php:159
91
+ msgid "Admin Email Content on new subscriber signs up"
92
+ msgstr ""
 
93
 
94
+ #: ../settings/settings-edit.php:160
95
  msgid ""
96
+ "Content for the admin email whenever a new subscriber signs up and is "
97
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
98
  msgstr ""
 
 
99
 
100
+ #: ../settings/settings-edit.php:168
101
+ msgid "Subject for the email report which will be sent to admin."
102
+ msgstr ""
 
 
 
 
103
 
104
+ #: ../settings/settings-edit.php:175
105
+ msgid ""
106
+ "Content for the email report which will be sent to admin.<br />(Available "
107
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
108
+ msgstr ""
109
 
110
+ #: ../settings/settings-edit.php:186
111
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
112
+ msgstr ""
113
 
114
+ #: ../settings/settings-edit.php:187
115
+ msgid ""
116
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
117
+ "subscriber signs up."
118
+ msgstr ""
119
 
120
+ #: ../settings/settings-edit.php:193
121
+ msgid "Double Opt-In Email Content (Confirmation Email)"
122
+ msgstr ""
123
 
124
+ #: ../settings/settings-edit.php:194
125
+ msgid ""
126
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
127
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
128
+ msgstr ""
129
 
130
+ #: ../settings/settings-edit.php:200
131
+ msgid "Double Opt-In Confirmation Link"
132
+ msgstr ""
133
 
134
+ #: ../settings/settings-edit.php:207
135
+ msgid ""
136
+ "Text to display after an email address is successfully subscribed from "
137
+ "Double Opt-In (Confirmation) Email"
138
+ msgstr ""
139
 
140
+ #: ../settings/settings-edit.php:215
141
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
142
+ msgstr ""
143
 
144
+ #: ../settings/settings-edit.php:227
145
+ msgid "Subject for Welcome Email"
146
+ msgstr ""
147
 
148
+ #: ../settings/settings-edit.php:228
149
  msgid ""
150
+ "Subject for the subscriber welcome email. This will be sent whenever a "
151
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
152
+ "Opt-In) successfully."
153
  msgstr ""
 
 
154
 
155
+ #: ../settings/settings-edit.php:234
156
+ msgid "Email Content for Welcome Email"
157
+ msgstr ""
158
 
159
+ #: ../settings/settings-edit.php:235
160
  msgid ""
161
+ "Content for the subscriber welcome email whenever a user's email is either "
162
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
163
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
164
  msgstr ""
 
 
165
 
166
+ #: ../settings/settings-edit.php:244
167
  msgid ""
168
+ "This unsubscribe link is automatically added to all the emails that are sent "
169
+ "from this plugin. It is a readonly field and you are advised not to modify "
170
+ "it."
171
+ msgstr ""
172
 
173
+ #: ../settings/settings-edit.php:251
174
  msgid ""
175
+ "The text for the unsubscribe link. This text is automatically added with "
176
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
 
177
  msgstr ""
 
 
178
 
179
+ #: ../settings/settings-edit.php:258
180
  msgid ""
181
+ "This text will be displayed once user clicks on unsubscribe link from the "
182
+ "email."
183
+ msgstr ""
184
+
185
+ #: ../settings/settings-edit.php:265
186
+ msgid "Error in the Subscribe / Confirmation Link"
187
  msgstr ""
 
 
 
188
 
189
+ #: ../settings/settings-edit.php:266
190
  msgid ""
191
+ "Default message to display if there is any issue while clicking on subscribe "
192
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
193
  msgstr ""
 
 
194
 
195
+ #: ../settings/settings-edit.php:273
196
+ msgid ""
197
+ "Default message to display if there is any issue while clicking on "
198
+ "unsubscribe link from the emails."
199
+ msgstr ""
200
 
201
+ #: ../settings/settings-edit.php:372
202
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
203
+ msgstr ""
204
 
205
+ #: ../settings/settings-edit.php:377
206
+ msgid "Cron Report"
207
+ msgstr ""
208
 
209
+ #: ../settings/settings-edit.php:378
210
+ msgid ""
211
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
212
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
213
+ msgstr ""
214
 
215
+ #: ../settings/settings-edit.php:389
216
+ msgid ""
217
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
218
+ "schedule-cron-emails/?"
219
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
220
+ "Cron?</a>"
221
+ msgstr ""
222
 
223
+ #: ../settings/settings-edit.php:390
224
  msgid ""
225
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
226
+ "schedule-cron-emails-in-cpanel/?"
227
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
228
+ "job in cPanel</a>"
229
  msgstr ""
 
 
230
 
231
+ #: ../settings/settings-edit.php:391
232
+ msgid ""
233
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
234
+ "schedule-cron-emails-in-parallels-plesk/?"
235
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
236
+ "job in Plesk</a>"
237
+ msgstr ""
238
 
239
+ #: ../settings/settings-edit.php:392
240
  msgid ""
241
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
242
+ "if-hosting-doesnt-support-cron-jobs/?"
243
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
244
+ "does not support cron jobs?</a>"
245
+ msgstr ""
246
+
247
+ #: ../compose/compose-edit.php:61
248
+ msgid "Successfully updated. "
249
  msgstr ""
 
 
250
 
251
+ #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
252
+ msgid "Select your Email Template"
253
  msgstr ""
 
254
 
255
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
256
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
257
+ msgstr ""
258
+
259
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
260
+ #, php-format
261
  msgid ""
262
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
263
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
264
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
265
  msgstr ""
 
 
266
 
267
+ #: ../compose/compose-add.php:43
268
+ msgid "Successfully created. "
269
+ msgstr ""
 
270
 
271
+ #: ../help/help.php:178
272
+ msgid "Get more help and tips..."
273
+ msgstr ""
274
 
275
+ #: ../help/help.php:192
276
+ #, php-format
277
+ msgid "Version: %s"
278
+ msgstr ""
279
 
280
+ #: ../help/help.php:195
281
+ msgid "Questions? Need Help?"
282
+ msgstr ""
283
 
284
+ #: ../help/help.php:196
285
+ msgid "Contact Us"
286
+ msgstr ""
287
 
288
+ #: ../help/help.php:201
289
+ #, php-format
290
+ msgid ""
291
+ "Like Email Subscribers? If yes, then consider %s to support further "
292
+ "developments."
293
+ msgstr ""
294
 
295
+ #: ../help/help.php:201
296
+ msgid "donating to us"
297
+ msgstr ""
 
298
 
299
+ #: ../help/help.php:236
300
+ msgid "Description"
301
+ msgstr ""
 
302
 
303
+ #: ../help/help.php:238
304
+ msgid ""
305
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
306
+ "leads, send automated new blog post notification emails, create & send "
307
+ "newsletters and manage all this in one single place."
308
+ msgstr ""
309
 
310
+ #: ../help/help.php:240
311
+ msgid "Feature Overview"
312
+ msgstr ""
313
 
314
+ #: ../help/help.php:243
315
+ msgid ""
316
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
317
+ "Code)."
318
+ msgstr ""
319
 
320
+ #: ../help/help.php:246
321
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
322
+ msgstr ""
323
 
324
+ #: ../help/help.php:249
325
+ msgid "Send automatic welcome email to subscribers."
326
+ msgstr ""
327
 
328
+ #: ../help/help.php:252
329
+ msgid ""
330
+ "Send new post notification emails to subscribers when new posts are "
331
+ "published on your website."
332
+ msgstr ""
333
 
334
+ #: ../help/help.php:255
335
+ msgid "Schedule email (Cron job) or send them manually."
336
+ msgstr ""
337
 
338
+ #: ../help/help.php:258
339
+ msgid "Send email notification to admin when a new user signs up."
340
+ msgstr ""
341
 
342
+ #: ../help/help.php:261
343
+ msgid "Automatically add Unsubscribe link in the email."
344
+ msgstr ""
345
 
346
+ #: ../help/help.php:264
347
+ msgid "Easily migrate subscribers from another app using Import & Export."
348
+ msgstr ""
349
 
350
+ #: ../help/help.php:267
351
+ msgid "Use HTML editor to compose newsletters and post notifications."
352
+ msgstr ""
353
 
354
+ #: ../help/help.php:270
355
+ msgid "Send newsletters to different groups."
356
+ msgstr ""
357
 
358
+ #: ../help/help.php:273
359
+ msgid "Get detailed sent email reports."
360
+ msgstr ""
361
 
362
+ #: ../help/help.php:276
363
+ msgid "Control user access (User Roles and Capabilities)."
364
+ msgstr ""
365
 
366
+ #: ../help/help.php:279
367
+ msgid "Supports localization and internationalization."
368
+ msgstr ""
369
 
370
+ #: ../help/help.php:286
371
+ msgid "Add Subscribe form"
372
+ msgstr ""
373
 
374
+ #: ../help/help.php:291
375
+ #, php-format
376
+ msgid ""
377
+ "Use any of the following 3 methods :<br>\n"
378
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
379
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
380
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
381
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
382
+ " c) Copy and past this php code to your desired template location : "
383
+ "<strong>%s</strong>"
384
+ msgstr ""
385
 
386
+ #: ../help/help.php:296
387
+ msgid "Additional form settings"
388
+ msgstr ""
389
 
390
+ #: ../help/help.php:299
391
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
392
+ msgstr ""
393
 
394
+ #: ../help/help.php:302
395
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
396
+ msgstr ""
397
 
398
+ #: ../help/help.php:311
399
+ #, php-format
400
+ msgid "Modify %s"
401
+ msgstr ""
402
 
403
+ #: ../help/help.php:311
404
+ msgid "default text, email contents"
405
+ msgstr ""
406
 
407
+ #: ../help/help.php:311
408
+ msgid ""
409
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
410
+ "Roles"
411
+ msgstr ""
412
 
413
+ #: ../help/help.php:317
414
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
415
+ msgstr ""
416
 
417
+ #: ../help/help.php:320
418
+ msgid "How to change/update/translate any texts from the plugin?"
419
+ msgstr ""
 
420
 
421
+ #: ../help/help.php:333
422
+ msgid "Usage"
423
+ msgstr ""
 
424
 
425
+ #: ../help/help.php:336
426
+ msgid "Compose and Send Newsletter Emails"
427
+ msgstr ""
 
428
 
429
+ #: ../help/help.php:339
430
+ msgid "Compose and Send Post Notification Emails when new posts are published"
431
+ msgstr ""
432
 
433
+ #: ../help/help.php:342
434
+ msgid "Keywords in the Post Notifications"
435
+ msgstr ""
436
 
437
+ #: ../help/help.php:345
438
+ msgid "Send a test post notification email to myself/testgroup"
439
+ msgstr ""
 
440
 
441
+ #: ../help/help.php:348
442
+ msgid "Check sent emails"
443
+ msgstr ""
444
 
445
+ #: ../help/help.php:355
446
+ msgid "Cron Job Setup"
447
+ msgstr ""
 
448
 
449
+ #: ../help/help.php:358
450
+ msgid "How to Schedule Cron Emails?"
451
+ msgstr ""
452
 
453
+ #: ../help/help.php:361
454
+ msgid "Schedule Cron Emails in cPanel"
455
+ msgstr ""
456
 
457
+ #: ../help/help.php:364
458
+ msgid "Schedule Cron Emails in Parallels Plesk"
459
+ msgstr ""
 
460
 
461
+ #: ../help/help.php:367
462
+ msgid "Hosting doesn’t support Cron Jobs?"
463
+ msgstr ""
 
464
 
465
+ #: ../help/help.php:374
466
+ msgid "Troubleshooting Steps"
467
+ msgstr ""
 
468
 
469
+ #: ../help/help.php:382
470
+ msgid "FAQ's"
471
+ msgstr ""
 
472
 
473
+ #: ../help/help.php:389
474
+ msgid "Want to do more? Here's how.."
475
+ msgstr ""
 
476
 
477
+ #: ../help/help.php:392
478
+ msgid "Allow Subscribers to get subscribed to any group"
479
+ msgstr ""
 
480
 
481
+ #: ../help/help.php:397
482
+ msgid "Using our free "
 
 
 
483
  msgstr ""
 
 
484
 
485
+ #: ../help/help.php:398
486
+ msgid "Group Selector"
487
+ msgstr ""
 
488
 
489
+ #: ../help/help.php:399
490
+ msgid ""
491
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
492
+ "grouping option right next to the form."
493
+ msgstr ""
494
 
495
+ #: ../help/help.php:402
496
+ msgid "The user can then subscribe to whichever group most appeals to them."
497
+ msgstr ""
 
498
 
499
+ #: ../help/help.php:405
500
+ msgid "For example: Subscribe either to Updates or to Offers."
501
+ msgstr ""
 
502
 
503
+ #: ../help/help.php:409
504
+ msgid "Show your subscribe form inside attractive popups"
505
+ msgstr ""
 
506
 
507
+ #: ../help/help.php:414
 
508
  msgid ""
509
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
510
+ "bars, slide-ins, sidebars, full screen popups etc."
511
  msgstr ""
 
 
512
 
513
+ #: ../help/help.php:417
514
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
515
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
516
 
517
+ #: ../help/help.php:421
518
+ msgid ""
519
+ "Icegram's beautiful designs instantly capture user attention and help "
520
+ "increase sign-ups to your WordPress website."
521
+ msgstr ""
522
 
523
+ #: ../help/help.php:424 ../help/help.php:444
524
+ #, php-format
525
+ msgid "How to %s"
526
  msgstr ""
 
527
 
528
+ #: ../help/help.php:424
529
+ msgid "show subscribe form inside a popup"
530
+ msgstr ""
 
531
 
532
+ #: ../help/help.php:428
533
+ msgid "Get beautiful and elegant form styles"
534
+ msgstr ""
 
535
 
536
+ #: ../help/help.php:434
537
+ msgid "Email subscribers easily integrates with another free plugin "
538
+ msgstr ""
 
539
 
540
+ #: ../help/help.php:435
541
+ msgid "Rainmaker"
542
+ msgstr ""
 
543
 
544
+ #: ../help/help.php:438
 
545
  msgid ""
546
+ "Rainmaker extends the core features of Email Subscribers and provides "
547
+ "elegant form styles."
548
+ msgstr ""
549
 
550
+ #: ../help/help.php:441
551
+ msgid ""
552
+ "These styles are well designed and beautify your subscription form making it "
553
+ "more appealing."
554
+ msgstr ""
555
 
556
+ #: ../help/help.php:444
557
+ msgid "add Rainmaker’s form in Email Subscribers"
558
+ msgstr ""
 
559
 
560
+ #: ../sendmail/sendmail.php:59
561
+ msgid "Email sent successfully. "
562
+ msgstr ""
 
563
 
564
+ #: ../classes/es-register.php:164
565
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
566
+ msgstr ""
 
567
 
568
+ #: ../classes/es-register.php:194
569
+ msgctxt "compose-enhanced-select"
570
+ msgid "Please enter the Email Subject."
571
+ msgstr ""
572
 
573
+ #: ../classes/es-register.php:707
574
+ msgctxt "timezone date format"
575
+ msgid "Y-m-d"
576
+ msgstr ""
577
 
578
+ #: ../classes/es-register.php:724
579
+ msgid "is getting even better!"
 
 
 
 
580
  msgstr ""
 
 
 
581
 
582
+ #: ../classes/es-register.php:725
583
+ msgid "But I need you to"
584
+ msgstr ""
 
585
 
586
+ #: ../classes/es-register.php:725
587
+ msgid "help me prioritize"
588
+ msgstr ""
 
589
 
590
+ #: ../classes/es-register.php:725
591
+ msgid "Please send your response today."
592
+ msgstr ""
 
593
 
594
+ #: ../classes/es-register.php:732
595
+ msgid "Here's how you use ES:"
 
 
 
 
596
  msgstr ""
 
 
 
597
 
598
+ #: ../classes/es-register.php:737
599
+ msgid "Post Notifications more often than Newsletter"
600
+ msgstr ""
 
601
 
602
+ #: ../classes/es-register.php:739
603
+ msgid "Newsletter more often than Post Notifications"
604
+ msgstr ""
605
 
606
+ #: ../classes/es-register.php:741
607
+ msgid "Post Notification &amp; Newsletter equally"
608
+ msgstr ""
609
 
610
+ #: ../classes/es-register.php:745
611
+ msgid "Have "
612
+ msgstr ""
 
613
 
614
+ #: ../classes/es-register.php:745
615
+ msgid " Active Subscribers"
616
+ msgstr ""
 
617
 
618
+ #: ../classes/es-register.php:746
619
+ msgid "Post "
620
+ msgstr ""
621
 
622
+ #: ../classes/es-register.php:746
623
+ msgid " blog per week"
624
+ msgstr ""
625
 
626
+ #: ../classes/es-register.php:750
627
+ msgid "Send emails via Cron"
628
+ msgstr ""
629
 
630
+ #: ../classes/es-register.php:752
631
+ msgid "Send emails Immediately"
632
+ msgstr ""
633
 
634
+ #: ../classes/es-register.php:759
635
+ msgid "Using Double Opt In"
636
+ msgstr ""
 
 
 
 
 
 
 
 
 
637
 
638
+ #: ../classes/es-register.php:761
639
+ msgid "Using Single Opt In"
640
+ msgstr ""
641
 
642
+ #: ../classes/es-register.php:779
643
+ msgid "How soon do you want these new features?"
644
+ msgstr ""
645
 
646
+ #: ../classes/es-register.php:783
647
+ msgid "Beautiful Email Designs"
648
+ msgstr ""
649
 
650
+ #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
651
+ #: register.php:794 ../classes/es-register.php:799
652
+ msgid "Right now!"
653
+ msgstr ""
654
 
655
+ #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
656
+ #: register.php:795 ../classes/es-register.php:800
657
+ msgid "Soon"
658
+ msgstr ""
659
 
660
+ #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
661
+ #: register.php:796 ../classes/es-register.php:801
662
+ msgid "Later"
663
+ msgstr ""
664
 
665
+ #: ../classes/es-register.php:788
666
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
 
 
 
 
667
  msgstr ""
 
 
 
668
 
669
+ #: ../classes/es-register.php:793
670
+ msgid "Discard Fake / Bouncing Emails"
671
+ msgstr ""
672
 
673
+ #: ../classes/es-register.php:798
674
+ msgid "Advanced Reporting"
675
+ msgstr ""
 
 
 
676
 
677
+ #: ../classes/es-register.php:810
678
+ msgid "Nah, I don't like improvements"
679
+ msgstr ""
680
 
681
+ #: ../classes/es-register.php:816
682
+ msgid "Next"
683
+ msgstr ""
684
 
685
+ #: ../classes/es-register.php:826
686
+ msgid "Thank you!"
687
+ msgstr ""
 
 
688
 
689
+ #: ../classes/es-register.php:827
690
+ msgid "No issues, have a nice day!"
691
+ msgstr ""
 
 
 
 
692
 
693
+ #: ../notification/notification-add.php:33
694
+ msgid "Please select subscribers group."
695
+ msgstr "Vyberte skupinu odběratelů."
696
 
697
+ #: ../notification/notification-add.php:39
698
+ msgid "Please select notification status."
699
+ msgstr "Vyberte stav oznámení."
700
 
701
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
702
+ msgid "Please select notification mail subject. Use compose menu to create new."
703
+ msgstr ""
704
+ "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
705
+ "„Vytvořit“."
706
 
707
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
708
+ msgid "Please select post categories."
709
+ msgstr "Vyberte rubriky příspěvků."
710
 
711
+ #: ../notification/notification-add.php:71
712
+ msgid "Notification successfully created. "
713
+ msgstr "Oznámení bylo úspěšně vytvořeno. "
 
714
 
715
+ #: ../notification/notification-add.php:112
716
+ msgid "Add Notification"
717
+ msgstr "Přidat oznámení"
 
718
 
719
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
720
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
721
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
722
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
723
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
724
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
725
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
726
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
727
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
728
+ msgid "Help"
729
+ msgstr "Nápověda"
730
 
731
+ #: ../notification/notification-add.php:120
732
+ msgid "Select Subscribers Group"
733
+ msgstr "Vyberte skupinu odběratelů"
 
734
 
735
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
736
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
737
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
738
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
739
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
740
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
741
+ msgid "Select"
742
+ msgstr "Vybrat"
743
 
744
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
745
+ #: 162
746
+ msgid "Select Notification Email Subject"
747
+ msgstr "Vyberte předmět oznamovacího emailu"
748
 
749
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
750
+ #: 163
751
+ msgid "(Use compose menu to create new)"
752
+ msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
753
 
754
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
755
+ #: 190
756
+ msgid "Select Post Categories"
757
+ msgstr "Vyberte rubriky příspěvků"
758
 
759
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
760
+ #: 225
761
+ msgid "Check All"
762
+ msgstr "Označit vše"
 
763
 
764
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
765
+ #: 226
766
+ msgid "Uncheck All"
767
+ msgstr "Odznačit vše"
768
 
769
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
770
+ #: 233
771
+ msgid "Select your Custom Post Type"
772
+ msgstr "Vyberte vlastní typ obsahu"
773
 
774
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
775
+ #: 234
776
+ msgid "(Optional)"
777
+ msgstr "(nepovinné)"
778
 
779
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
780
+ #: 268
781
+ msgid "No Custom Post Types Available"
782
+ msgstr "Vlastní typ obsahu není dostupný"
 
 
 
783
 
784
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
785
+ #: 275
786
+ msgid "Select Notification Status when a new post is published"
787
+ msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
788
 
789
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
790
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
791
+ msgid "Send email immediately"
792
+ msgstr "Odeslat email okamžitě"
793
 
794
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
795
+ #: 132 ../notification/notification-edit.php:280
796
+ msgid "Add to cron and send email via cron job"
797
+ msgstr "Přidat do cronu a odeslat cronem"
 
 
 
798
 
799
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
800
+ #: 281
801
+ msgid "Disable email notification"
802
+ msgstr "Zakázat oznamovací email"
803
 
804
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
805
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
806
+ #: 117 ../compose/compose-add.php:105
807
+ msgid "Save"
808
+ msgstr "Uložit"
 
 
809
 
810
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
811
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
812
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
813
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
814
+ msgid "Oops, selected details does not exists."
815
+ msgstr "Vybrané podrobnosti neexistují."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
 
817
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
818
+ #: compose/compose-show.php:47
819
+ msgid "Selected record deleted."
820
+ msgstr "Vybraný záznam byl smazán."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
821
 
822
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
823
+ #: classes/es-register.php:152
824
+ msgid "Post Notifications"
825
+ msgstr "Oznámení o příspěvcích"
826
 
827
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
828
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
829
+ msgid "Add New"
830
+ msgstr "Vytvoit"
831
 
832
+ #: ../notification/notification-show.php:57
833
  msgid ""
834
+ "Use this to setup and send notification emails to your subscribers when a "
835
+ "new post is published in your blog."
836
  msgstr ""
837
+ "Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je "
838
+ "nový příspěvek publikován na vašem webu."
 
 
 
 
 
 
 
 
 
 
 
 
839
 
840
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
841
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:84
842
+ msgid "Email Subject"
843
+ msgstr "Předmět emailu"
 
 
 
844
 
845
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
846
+ #: 77
847
+ msgid "Subscribers Group"
848
+ msgstr "Skupina odběratelů"
 
 
 
849
 
850
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
851
+ #: 78
852
+ msgid "Post Categories / Custom Post Types"
853
+ msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
854
 
855
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
856
+ #: 79
857
+ msgid "Notification Status"
858
+ msgstr "Stav oznámení"
859
 
860
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
861
+ #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
862
+ msgid "Edit"
863
+ msgstr "Upravit"
864
 
865
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
866
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
867
+ #: php:102
868
+ msgid "Delete"
869
+ msgstr "Smazat"
870
 
871
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
872
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
873
+ #: 432 ../compose/compose-show.php:111
874
+ msgid "No records available."
875
+ msgstr "Žádné záznamy nejsou k dispozici."
876
 
877
+ #: ../notification/notification-edit.php:49
878
+ msgid "Please select subscribers group"
879
+ msgstr "Vyberte skupinu odběratelů"
880
 
881
+ #: ../notification/notification-edit.php:55
882
+ msgid "Please select notification status"
883
+ msgstr "Vyberte stav oznámení"
884
 
885
+ #: ../notification/notification-edit.php:89
886
+ msgid "Notification successfully updated. "
887
+ msgstr "Oznámení bylo úspěšně upraveno. "
888
 
889
+ #: ../notification/notification-edit.php:122
890
+ msgid "Edit Notification"
891
+ msgstr "Upravit oznámení"
892
 
893
+ #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
894
+ #: php:289
895
+ msgid "Update Subscribers Group"
896
+ msgstr "Upravit skupinu odběratelů"
897
 
898
+ #. Plugin Name of the plugin/theme
899
+ msgid "Email Subscribers & Newsletters"
900
+ msgstr "Email Subscribers & Newsletters"
901
 
902
+ #. Description of the plugin/theme
 
903
  msgid ""
904
+ "Add subscription forms on website, send HTML newsletters & automatically "
905
+ "notify subscribers about new blog posts once it is published."
906
  msgstr ""
907
+ "Přidejte formulář přihlášení k zasílání zpravodajů na internetové stránky, "
908
+ "posílejte HTML zpravodaje a automaticky informujte objednatele o nových "
909
+ "příspěvcích, jakmile budou zveřejněny."
 
 
910
 
911
+ #. Author of the plugin/theme
912
+ msgid "Icegram"
913
+ msgstr "Icegram"
914
 
915
+ #: ../settings/settings-edit.php:26
916
+ msgid "User Roles"
917
+ msgstr "Uživatelské úrovně"
918
 
919
+ #: ../settings/settings-edit.php:67
920
+ msgid "Save Settings"
921
+ msgstr "Uložit nastavení"
 
922
 
923
+ #: ../settings/settings-edit.php:81
924
+ msgid "Sender of Notifications"
925
+ msgstr "Odesílatel oznámení"
926
 
927
+ #: ../settings/settings-edit.php:82
928
+ msgid ""
929
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
930
+ "this plugin."
931
+ msgstr ""
932
+ "Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
933
+ "tohoto pluginu."
934
 
935
+ #: ../settings/settings-edit.php:97
936
+ msgid "1. WP HTML MAIL"
937
+ msgstr "1. WP HTML ZPRÁVA"
938
 
939
+ #: ../settings/settings-edit.php:98
940
+ msgid "2. WP PLAINTEXT MAIL"
941
+ msgstr "2. WP PROSTÝ TEXT"
942
 
943
+ #: ../settings/settings-edit.php:99
944
+ msgid "3. PHP HTML MAIL"
945
+ msgstr "3. PHP HTML ZPRÁVA"
 
 
 
 
 
946
 
947
+ #: ../settings/settings-edit.php:100
948
+ msgid "4. PHP PLAINTEXT MAIL"
949
+ msgstr "4. PHP PROSTÝ TEXT"
950
 
951
+ #: ../settings/settings-edit.php:112
952
+ msgid "Double Opt In"
953
+ msgstr "Dvojí potvrzení"
954
 
955
+ #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:
956
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
957
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
958
+ #: subscriber-edit.php:150
959
+ msgid "Single Opt In"
960
+ msgstr "Jednoduché potvrzení"
961
 
962
+ #: ../settings/settings-edit.php:119
963
+ msgid "Image Size"
964
+ msgstr "Velikost obrázku"
965
 
966
+ #: ../settings/settings-edit.php:120
967
+ msgid ""
968
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
969
+ "Emails."
970
+ msgstr ""
971
+ "Vyberte velikost obrázku ###POSTIMAGE###, který se zobrazí v emailu oznámení "
972
+ "příspěvku."
973
 
974
+ #: ../settings/settings-edit.php:124
975
+ msgid "Full Size"
976
+ msgstr "Plná velikost"
977
 
978
+ #: ../settings/settings-edit.php:125
979
+ msgid "Medium Size"
980
+ msgstr "Střední velikost"
981
 
982
+ #: ../settings/settings-edit.php:126
983
+ msgid "Thumbnail"
984
+ msgstr "Náhled"
985
 
986
+ #: ../settings/settings-edit.php:132
987
+ msgid "Admin Email Addresses"
988
+ msgstr "Emailová adresa administrátora"
989
 
990
+ #: ../settings/settings-edit.php:133
991
+ msgid ""
992
+ "Enter the admin email addresses that should receive notifications (separated "
993
+ "by comma)."
994
+ msgstr ""
995
+ "Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení "
996
+ "(oddělené čárkou)."
997
 
998
+ #: ../settings/settings-edit.php:140
999
+ msgid ""
1000
+ "To send admin email notifications for the new subscriber. This option must "
1001
+ "be set to YES."
1002
+ msgstr ""
1003
+ "Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu "
1004
+ "nastavit na ANO."
1005
 
1006
+ #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
1007
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
1008
+ msgid "YES"
1009
+ msgstr "ANO"
1010
 
1011
+ #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
1012
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
1013
+ msgid "NO"
1014
+ msgstr "NE"
1015
 
1016
+ #: ../settings/settings-edit.php:167
1017
+ msgid "Sent Report Subject"
1018
+ msgstr "Předmět emailu pro hlášení o odeslání"
1019
 
1020
+ #: ../settings/settings-edit.php:174
1021
+ msgid "Sent Report Content"
1022
+ msgstr "Obsah hlášení o odeslání"
1023
 
1024
+ #: ../settings/settings-edit.php:201
1025
+ msgid "It is a readonly field and you are advised not to modify it."
1026
+ msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
1027
 
1028
+ #: ../settings/settings-edit.php:208
1029
+ msgid ""
1030
+ "This text will be displayed once user clicks on email confirmation link from "
1031
+ "the Double Opt In (confirmation) Email."
1032
+ msgstr ""
1033
+ "Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při "
1034
+ "dvojitém potvrzení."
1035
 
1036
+ #: ../settings/settings-edit.php:216
1037
  msgid ""
1038
+ "To send welcome email to subscriber after successful signup. This option "
1039
+ "must be set to YES."
1040
  msgstr ""
1041
+ "Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být "
1042
+ "tato volba nastavena na hodnotu ANO."
1043
 
1044
+ #: ../settings/settings-edit.php:243
1045
+ msgid "Unsubscribe Link"
1046
+ msgstr "Odhlašovací odkaz"
1047
 
1048
+ #: ../settings/settings-edit.php:250
1049
+ msgid "Unsubscribe Text in Email"
1050
+ msgstr "Text emailu pro odhlášení"
1051
 
1052
+ #: ../settings/settings-edit.php:257
1053
+ msgid "Text to display after an email address is unsubscribed"
1054
+ msgstr "Text bude zobrazen po odhlášení emailu"
1055
 
1056
+ #: ../settings/settings-edit.php:272
1057
+ msgid "Error in the Unsubscribe Link"
1058
+ msgstr "Chybové hlášení odhlašovacího odkazu"
1059
 
1060
+ #: ../settings/settings-edit.php:285
1061
  msgid "Select user roles who can access following menus. Only Admin can change this."
1062
  msgstr ""
1063
  "Vyberte uživatelské role, které mají mít přístup k následujícím menu. Pouze "
1064
  "správce zde může provádět změny."
1065
 
1066
+ #: ../settings/settings-edit.php:291
1067
  msgid "Subscribers Menu"
1068
  msgstr "Menu odběratelé"
1069
 
1070
+ #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1071
+ #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1072
+ #: settings/settings-edit.php:343
1073
  msgid "Administrator Only"
1074
  msgstr "Pouze administrátor"
1075
 
1076
+ #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
1077
+ #: settings/settings-edit.php:320 ../settings/settings-edit.php:332 ..
1078
+ #: settings/settings-edit.php:344
1079
  msgid "Administrator/Editor"
1080
  msgstr "Administrátor/Editor"
1081
 
1082
+ #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
1083
+ #: settings/settings-edit.php:321 ../settings/settings-edit.php:333 ..
1084
+ #: settings/settings-edit.php:345
1085
  msgid "Administrator/Editor/Author/Contributor"
1086
  msgstr "Administrátor/Editor/Autor/Spolupracovník"
1087
 
1088
+ #: ../settings/settings-edit.php:303
1089
  msgid "Compose Menu"
1090
  msgstr "Menu vytvořit"
1091
 
1092
+ #: ../settings/settings-edit.php:315
1093
  msgid "Post Notifications Menu"
1094
  msgstr "Oznámení o příspěvcích"
1095
 
1096
+ #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
1097
+ #: register.php:154 ../classes/es-register.php:155
1098
+ msgid "Newsletters"
1099
+ msgstr "Zpravodaje"
 
 
 
1100
 
1101
+ #: ../settings/settings-edit.php:339
1102
  msgid "Reports Menu"
1103
  msgstr "Menu přehledů"
1104
 
1105
+ #: ../settings/settings-edit.php:356
1106
+ msgid "Cron job URL"
1107
+ msgstr "URL cronu"
1108
 
1109
+ #: ../settings/settings-edit.php:357
1110
+ msgid ""
1111
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1112
+ "modify it."
1113
+ msgstr ""
1114
+ "Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
1115
+ "upravovat."
1116
 
1117
+ #: ../settings/settings-edit.php:366
1118
+ msgid "Email Count"
1119
+ msgstr "Počet emailů"
1120
 
1121
+ #: ../settings/settings-edit.php:367
1122
+ msgid "Number of emails that you want to trigger per hour."
1123
+ msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
1124
 
1125
+ #: ../settings/settings-edit.php:388
1126
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1127
+ msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
1128
 
1129
+ #: ../settings/settings-edit.php:507
1130
+ msgid "Please enter sender of notifications from name."
1131
+ msgstr "Zadejte jméno odesílatele oznámení."
1132
 
1133
+ #: ../settings/settings-edit.php:512
1134
+ msgid "Please enter sender of notifications from email."
1135
+ msgstr "Zadejte email odesílatele oznámení."
1136
 
1137
+ #: ../settings/settings-edit.php:556
1138
+ msgid "Please enter valid mail count."
1139
+ msgstr "Zadejte platný počet emailů."
1140
 
1141
+ #: ../settings/settings-edit.php:569
1142
+ msgid "Settings Saved."
1143
+ msgstr "Nastavení bylo uloženo."
1144
 
1145
+ #: ../settings/settings-edit.php:572
1146
+ msgid "Oops, unable to update."
1147
+ msgstr "Nelze aktualizovat."
1148
 
1149
+ #: ../settings/setting-sync.php:16
1150
+ msgid "Table sync completed successfully."
1151
+ msgstr "Synchronizace tabulek byla úspěšná."
 
1152
 
1153
+ #: ../settings/setting-sync.php:29
1154
+ msgid "Sync plugin tables"
1155
+ msgstr "Synchronizace tabulek pluginu"
 
 
 
 
 
 
1156
 
1157
+ #: ../settings/setting-sync.php:33
1158
+ msgid "Click to sync tables"
1159
+ msgstr "Klikněte pro synchronizaci tabulek"
1160
 
1161
+ #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1162
+ msgid "Preview Mail"
1163
+ msgstr "Náhled emailu"
1164
 
1165
+ #: ../sentmail/sentmail-preview.php:42
1166
+ msgid "Back"
1167
+ msgstr "Zpět"
1168
 
1169
+ #: ../sentmail/sentmail-show.php:43
1170
+ msgid "Successfully deleted all reports except latest 10."
1171
+ msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
1172
+
1173
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1174
  msgid " &lt;&lt; "
1175
  msgstr " &lt;&lt; "
1176
 
1177
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1178
  msgid " &gt;&gt; "
1179
  msgstr " &gt;&gt; "
1180
 
1181
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1182
+ #: register.php:161
1183
+ msgid "Reports"
1184
+ msgstr "Přehledy"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
 
1186
+ #: ../sentmail/sentmail-show.php:97
1187
  msgid "It will show reports for all Newsletters & Post Notification emails sent."
1188
  msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
1189
 
1190
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1191
  msgid "View Reports"
1192
  msgstr "Zobrazit hlášení"
1193
 
1194
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1195
+ #: compose/compose-show.php:103
1196
+ msgid "Preview"
1197
+ msgstr "Náhled"
1198
+
1199
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1200
  msgid "Type"
1201
  msgstr "Typ"
1202
 
1203
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1204
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1205
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1206
+ #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1207
+ msgid "Status"
1208
+ msgstr "Stav"
1209
+
1210
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1211
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
1212
+ msgid "Sent"
1213
+ msgstr "Odeslal"
1214
+
1215
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1216
  msgid "Start Date"
1217
  msgstr "Počáteční datum"
1218
 
1219
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1220
  msgid "End Date"
1221
  msgstr "Datum ukončení"
1222
 
1223
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1224
  msgid "Total"
1225
  msgstr "Celkem"
1226
 
1227
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1228
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
1229
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1230
+ #: subscriber-export.php:56
1231
  msgid "Action"
1232
  msgstr "Akce"
1233
 
1234
+ #: ../sentmail/sentmail-show.php:190
1235
  msgid "Optimize Table & Delete Records"
1236
  msgstr "Optimalizovat tabulku a smazat záznamy"
1237
 
1238
+ #: ../sentmail/sentmail-show.php:199
1239
  msgid ""
1240
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1241
+ "button to delete all reports except latest 10."
1242
  msgstr ""
1243
+ "Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání "
1244
+ "záznamů</strong> pro vymazání všech zpráv kromě posledních 10."
1245
 
1246
+ #: ../sentmail/deliverreport-show.php:14
1247
+ msgid "Oops.. Unexpected error occurred. Please try again."
1248
+ msgstr "Nastala neznámá chyba. Prosím opakujte akci."
 
 
 
 
1249
 
1250
+ #: ../sentmail/deliverreport-show.php:57
1251
+ msgid "Delivery Report"
1252
+ msgstr "Hlášení o doručení"
1253
 
1254
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
1255
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
1256
+ #: export.php:53
1257
+ msgid "Sno"
1258
+ msgstr "Číslo"
1259
 
1260
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
1261
+ msgid "Email"
1262
+ msgstr "Email"
1263
 
1264
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
1265
+ msgid "Sent Date"
1266
+ msgstr "Datum odeslání"
1267
 
1268
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1269
+ msgid "Viewed Status"
1270
+ msgstr "Stav zobrazení"
1271
 
1272
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
1273
+ msgid "Viewed Date"
1274
+ msgstr "Datum zobrazení"
1275
 
1276
+ #: ../subscribers/view-subscriber-import.php:44
1277
  msgid ""
1278
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1279
+ "the Group name."
1280
  msgstr ""
1281
+ "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
1282
+ "použít."
1283
 
1284
+ #: ../subscribers/view-subscriber-import.php:92
1285
+ msgid "email imported."
1286
+ msgstr "email byl importován."
1287
 
1288
+ #: ../subscribers/view-subscriber-import.php:93
1289
+ msgid "email already exists."
1290
+ msgstr "email již existuje."
 
 
 
 
1291
 
1292
+ #: ../subscribers/view-subscriber-import.php:94
1293
+ msgid "email are invalid."
1294
+ msgstr "emaily jsou neplatné."
1295
 
1296
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1297
+ #: import.php:126
1298
+ msgid "Click here"
1299
+ msgstr "Klikněte zde"
1300
 
1301
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1302
+ #: import.php:126
1303
+ msgid " to view details."
1304
+ msgstr " pro zobrazení podrobností."
1305
 
1306
+ #: ../subscribers/view-subscriber-import.php:105
1307
+ msgid "File Upload Failed."
1308
+ msgstr "Nahrávání souboru selhalo."
1309
 
1310
+ #: ../subscribers/view-subscriber-import.php:142
1311
+ msgid "Import Email Addresses"
1312
+ msgstr "Import emailových adres"
 
 
 
 
 
 
1313
 
1314
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1315
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1316
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
1317
+ #: subscribers/view-subscriber-sync.php:89
1318
+ msgid "Add New Subscriber"
1319
+ msgstr "Přidat nového odběratele"
1320
 
1321
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1322
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
1323
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1324
+ msgid "Export"
1325
+ msgstr "Export"
 
1326
 
1327
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1328
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1329
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1330
+ #: subscribers/view-subscriber-sync.php:143
1331
+ msgid "Sync"
1332
+ msgstr "Synchronizovat"
1333
 
1334
+ #: ../subscribers/view-subscriber-import.php:155
1335
+ msgid "Select CSV file"
1336
+ msgstr "Vyberte soubor CSV"
 
 
 
1337
 
1338
+ #: ../subscribers/view-subscriber-import.php:157
1339
+ msgid "Check CSV structure "
1340
+ msgstr "Zkontrolujte CSV strukturu "
1341
 
1342
+ #: ../subscribers/view-subscriber-import.php:158
1343
+ msgid "from here"
1344
+ msgstr "zde"
1345
 
1346
+ #: ../subscribers/view-subscriber-import.php:169
1347
+ msgid "Select Subscribers Email Status"
1348
+ msgstr "Vybrat stav emailů odběratelů"
1349
 
1350
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1351
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1352
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1353
+ msgid "Confirmed"
1354
+ msgstr "Potvrzeno"
1355
 
1356
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1357
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1358
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1359
+ msgid "Unconfirmed"
1360
+ msgstr "Nepotvrzeno"
1361
 
1362
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1363
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1364
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1365
+ msgid "Unsubscribed"
1366
+ msgstr "Zrušen odběr"
 
 
1367
 
1368
+ #: ../subscribers/view-subscriber-import.php:185
1369
+ msgid "Select (or) Create Group for Subscribers"
1370
+ msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1371
 
1372
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1373
+ #: add.php:174
1374
+ msgid "(or)"
1375
+ msgstr "(nebo)"
 
 
 
1376
 
1377
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1378
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1379
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1380
+ #: subscribers/view-subscriber-sync.php:90
1381
+ msgid "Import"
1382
+ msgstr "Import"
1383
 
1384
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1385
+ #: sendmail/sendmail.php:18
1386
+ msgid "Click Here"
1387
+ msgstr "Klikněte zde"
1388
 
1389
+ #: ../subscribers/view-subscriber-show.php:45
1390
+ msgid "Selected details does not exists."
1391
+ msgstr "Vybrané detaily neexistují."
1392
 
1393
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1394
+ #: php:95
1395
+ msgid "Record deleted."
1396
+ msgstr "Záznam byl smazán."
1397
 
1398
+ #: ../subscribers/view-subscriber-show.php:67
1399
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
 
1400
  msgstr ""
1401
+ "Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité "
1402
+ "potvrzení."
1403
 
1404
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1405
+ #: php:134
1406
+ msgid "Confirmation emails Resent Successfully."
1407
+ msgstr "Potvrzovací emaily úspěšně odeslány."
1408
 
1409
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1410
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1411
+ #: subscriber-show.php:216
1412
+ msgid "No record was selected."
1413
+ msgstr "Není vybrán žádný záznam."
1414
+
1415
+ #: ../subscribers/view-subscriber-show.php:115
1416
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1417
  msgstr ""
1418
+ "Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
1419
+ "potvrzení."
1420
 
1421
+ #: ../subscribers/view-subscriber-show.php:163
1422
+ msgid "Subscribers Group updated."
1423
+ msgstr "Skupina odběratelů je upravena."
 
 
1424
 
1425
+ #: ../subscribers/view-subscriber-show.php:168
1426
+ msgid "Please select New group to update."
1427
+ msgstr "Vyberte novou skupinu k úpravě."
1428
 
1429
+ #: ../subscribers/view-subscriber-show.php:202
1430
+ msgid "Subscribers Status updated."
1431
+ msgstr "Stav odběratele upraven."
 
 
 
 
1432
 
1433
+ #: ../subscribers/view-subscriber-show.php:207
1434
+ msgid "Please select New Status to update."
1435
+ msgstr "Vyberte nový stav ke změně."
 
 
 
 
1436
 
1437
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1438
+ #: classes/es-register.php:146
1439
+ msgid "Subscribers"
1440
+ msgstr "Odběratelé"
1441
 
1442
+ #: ../subscribers/view-subscriber-show.php:252
1443
+ #, php-format
1444
+ msgid "Total Subscribers: %s"
1445
+ msgstr "Celkem odběratelů: %s"
1446
 
1447
+ #: ../subscribers/view-subscriber-show.php:254
1448
+ #, php-format
1449
+ msgid "Active Subscribers: %s"
1450
+ msgstr "Aktivní odběratelé: %s"
1451
 
1452
+ #: ../subscribers/view-subscriber-show.php:286
1453
+ msgid "Bulk Actions"
1454
+ msgstr "Hromadné úpravy"
1455
 
1456
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1457
+ #: show.php:417
1458
+ msgid "Resend Confirmation"
1459
+ msgstr "Znovu odeslat povtrzení"
1460
 
1461
+ #: ../subscribers/view-subscriber-show.php:290
1462
+ msgid "Update Subscribers Status"
1463
+ msgstr "Změna stavu odběratele"
 
 
 
1464
 
1465
+ #: ../subscribers/view-subscriber-show.php:293
1466
+ msgid "Select Group"
1467
+ msgstr "Vyberte skupinu"
1468
 
1469
+ #: ../subscribers/view-subscriber-show.php:308
1470
+ msgid "Select Status"
1471
+ msgstr "Vybrat status"
1472
 
1473
+ #: ../subscribers/view-subscriber-show.php:314
1474
+ msgid "Apply"
1475
+ msgstr "Použít"
1476
 
1477
+ #: ../subscribers/view-subscriber-show.php:318
1478
+ msgid "All Groups"
1479
+ msgstr "Všechny skupiny"
 
 
 
1480
 
1481
+ #: ../subscribers/view-subscriber-show.php:335
1482
+ msgid "All Status"
1483
+ msgstr "Všechny stavy"
 
 
 
1484
 
1485
+ #: ../subscribers/view-subscriber-show.php:342
1486
+ msgid "1 to 500 emails"
1487
+ msgstr "1 až 500 emailů"
 
 
1488
 
1489
+ #: ../subscribers/view-subscriber-show.php:343
1490
+ msgid "501 to 1000"
1491
+ msgstr "501 až 1000"
 
 
 
1492
 
1493
+ #: ../subscribers/view-subscriber-show.php:344
1494
+ msgid "1001 to 1500"
1495
+ msgstr "1001 1500"
1496
 
1497
+ #: ../subscribers/view-subscriber-show.php:345
1498
+ msgid "1501 to 2000"
1499
+ msgstr "1501 2000"
1500
 
1501
+ #: ../subscribers/view-subscriber-show.php:346
1502
+ msgid "2001 to 4000"
1503
+ msgstr "2001 4000"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1504
 
1505
+ #: ../subscribers/view-subscriber-show.php:347
1506
+ msgid "4001 to 6000"
1507
+ msgstr "4001 6000"
1508
 
1509
+ #: ../subscribers/view-subscriber-show.php:348
1510
+ msgid "6001 to 10000"
1511
+ msgstr "6001 10000"
1512
 
1513
+ #: ../subscribers/view-subscriber-show.php:349
1514
+ msgid "Display All"
1515
+ msgstr "Zobrazit vše"
1516
 
1517
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1518
+ #: show.php:373
1519
+ msgid "Email Address"
1520
+ msgstr "Emailová adresa"
1521
 
1522
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1523
+ #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1524
+ msgid "Name"
1525
+ msgstr "Jméno"
1526
 
1527
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1528
+ #: show.php:376
1529
+ msgid "Group"
1530
+ msgstr "Skupina"
1531
 
1532
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1533
+ #: show.php:377
1534
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1535
+ msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
1536
 
1537
+ #: ../subscribers/view-subscriber-export.php:34
1538
  msgid "Export Email Addresses"
1539
  msgstr "Exportovat emailové adresy"
1540
 
1541
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1542
+ #: export.php:54
1543
  msgid "Type of List to Export"
1544
  msgstr "Typ seznamu pro export"
1545
 
1546
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1547
+ #: export.php:55
1548
+ msgid "Total Emails Count"
1549
+ msgstr "Počet emailů celkem"
1550
+
1551
+ #: ../subscribers/view-subscriber-export.php:61
1552
  msgid "1"
1553
  msgstr "1"
1554
 
1555
+ #: ../subscribers/view-subscriber-export.php:62
1556
+ msgid "All Subscribers"
1557
+ msgstr "Všichni odběratelé"
1558
+
1559
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1560
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1561
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1562
  msgid "Click to Export in CSV"
1563
  msgstr "Klikněte pro export do CSV"
1564
 
1565
+ #: ../subscribers/view-subscriber-export.php:67
1566
  msgid "2"
1567
  msgstr "2"
1568
 
1569
+ #: ../subscribers/view-subscriber-export.php:68
1570
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1571
+ msgstr "Aktivní odběratelé (Status: Potvrzen & Přihlášen)"
1572
+
1573
+ #: ../subscribers/view-subscriber-export.php:73
1574
  msgid "3"
1575
  msgstr "3"
1576
 
1577
+ #: ../subscribers/view-subscriber-export.php:74
1578
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1579
+ msgstr "Neaktivní odběratelé (Status: Nepotvrzen & Odhlášen)"
1580
+
1581
+ #: ../subscribers/view-subscriber-export.php:79
1582
+ msgid "4"
1583
+ msgstr "4"
1584
+
1585
+ #: ../subscribers/view-subscriber-export.php:80
1586
  msgid "WordPress Registered Users"
1587
  msgstr "WordPress registrovaní uživatelé"
1588
 
1589
+ #: ../subscribers/view-subscriber-export.php:85
1590
+ msgid "5"
1591
+ msgstr "5"
1592
+
1593
+ #: ../subscribers/view-subscriber-export.php:86
1594
  msgid "Commented Authors"
1595
  msgstr "Autoři komentářů"
1596
 
1597
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1598
+ #: php:54
1599
+ msgid "Please enter subscriber email address."
1600
+ msgstr "Zadejte emailovou adresu odběratele."
1601
+
1602
+ #: ../subscribers/view-subscriber-add.php:49
1603
+ msgid "Please select or create your group for this email."
1604
+ msgstr "Vyberte nebo vytvořte skupinu pro tento email."
1605
+
1606
+ #: ../subscribers/view-subscriber-add.php:56
1607
  msgid ""
1608
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1609
+ "the group name."
1610
  msgstr ""
1611
+ "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
1612
+ "použít."
1613
 
1614
+ #: ../subscribers/view-subscriber-add.php:66
1615
+ msgid "Subscriber has been saved."
1616
+ msgstr "Odběratel byl uložen."
1617
 
1618
+ #: ../subscribers/view-subscriber-add.php:68
1619
+ msgid "Subscriber already exists."
1620
+ msgstr "Odběratel již existuje."
1621
 
1622
+ #: ../subscribers/view-subscriber-add.php:71
1623
+ msgid "Invalid Email."
1624
+ msgstr "Neplatný email."
1625
 
1626
+ #: ../subscribers/view-subscriber-add.php:123
1627
+ msgid "Enter Subscriber's Full name"
1628
+ msgstr "Zadejte celé jméno odběratele"
 
1629
 
1630
+ #: ../subscribers/view-subscriber-add.php:133
1631
+ msgid "Enter Subscriber's Email Address"
1632
+ msgstr "Zadejte emailovou adresu odběratele"
 
1633
 
1634
+ #: ../subscribers/view-subscriber-add.php:143
1635
+ msgid "Select Subscriber's Status"
1636
+ msgstr "Vyberte stav odběratele"
1637
 
1638
+ #: ../subscribers/view-subscriber-add.php:158
1639
+ msgid "Select (or) Create Group for Subscriber"
1640
+ msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1641
 
1642
+ #: ../subscribers/view-subscriber-add.php:183
1643
+ msgid "Add Subscriber"
1644
+ msgstr "Přidat odběratele"
1645
 
1646
+ #: ../subscribers/view-subscriber-edit.php:64
1647
+ msgid "Error: Special characters are not allowed in the group name."
1648
+ msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
1649
 
1650
+ #: ../subscribers/view-subscriber-edit.php:74
1651
+ msgid "Subscriber details updated."
1652
+ msgstr "Podrobnosti odběratele byly aktualizovány."
1653
 
1654
+ #: ../subscribers/view-subscriber-edit.php:76
1655
+ msgid "Subscriber already exists for this group."
1656
+ msgstr "Odběratel již v této skupině existuje."
1657
 
1658
+ #: ../subscribers/view-subscriber-edit.php:108
1659
+ msgid "Edit Subscriber"
1660
+ msgstr "Upravit odběratele"
1661
 
1662
+ #: ../subscribers/view-subscriber-edit.php:122
1663
+ msgid "Subscriber's Full Name"
1664
+ msgstr "Celé jména odběratele"
1665
 
1666
+ #: ../subscribers/view-subscriber-edit.php:132
1667
+ msgid "Subscriber's Email Address"
1668
+ msgstr "Emailová adresa odběratele"
1669
 
1670
+ #: ../subscribers/view-subscriber-edit.php:142
1671
+ msgid "Update Subscriber's Status"
1672
+ msgstr "Změna stavu odběratele"
 
1673
 
1674
+ #: ../subscribers/view-subscriber-edit.php:157
1675
+ msgid "Update Subscriber's Group"
1676
+ msgstr "Změna skupiny odběratele"
1677
 
1678
+ #: ../subscribers/view-subscriber-sync.php:36
1679
+ msgid "Please select default group to newly registered user."
1680
+ msgstr "Vyberte výchozí skupinu pro nově registrované uživatele."
 
1681
 
1682
+ #: ../subscribers/view-subscriber-sync.php:50
1683
+ msgid "Emails Successfully Synced."
1684
+ msgstr "Emaily byly úspěšně synchronizovány."
 
 
1685
 
1686
+ #: ../subscribers/view-subscriber-sync.php:88
1687
+ msgid "Sync Email"
1688
+ msgstr "Synchronizace emailu"
1689
 
1690
+ #: ../subscribers/view-subscriber-sync.php:101
1691
+ msgid "Sync newly registered users to subscribers list"
1692
+ msgstr "Synchronizovat nově registrované uživatele do seznamu"
1693
 
1694
+ #: ../subscribers/view-subscriber-sync.php:114
1695
+ msgid "Select group to add newly registered users to"
1696
+ msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
1697
 
1698
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1699
+ msgid "Please enter template heading."
1700
+ msgstr "Vyberte šablonu záhlaví."
1701
 
1702
+ #: ../compose/compose-edit.php:84
1703
+ msgid "Edit Email"
1704
+ msgstr "Upravit e-mail"
1705
 
1706
+ #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
1707
+ msgid "Newsletter"
1708
+ msgstr "Zpravodaj"
1709
 
1710
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
1711
+ msgid "Post Notification"
1712
+ msgstr "Potvrzení příspěvku"
1713
 
1714
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1715
+ msgid "Enter your Email Subject"
1716
+ msgstr "Zadejte předmět emailu"
1717
 
1718
+ #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1719
+ msgid "Enter Content for your Email"
1720
+ msgstr "Zadejte obsah emailu"
1721
 
1722
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
1723
+ msgid "Available Keywords"
1724
+ msgstr "Dostupná klíčová slova"
1725
 
1726
+ #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1727
+ msgid "Published"
1728
+ msgstr "Publikováno"
1729
 
1730
+ #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1731
+ msgid "Please select your mail status"
1732
+ msgstr "Vyberte stav zprávy"
1733
 
1734
+ #: ../compose/compose-add.php:74
1735
+ msgid "Add new Email"
1736
+ msgstr "Přidat nový e-mail"
1737
 
1738
+ #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1739
+ #: register.php:149
1740
+ msgid "Compose"
1741
+ msgstr "Vytvořit"
1742
 
1743
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1744
+ msgid "Email Template"
1745
+ msgstr "Šablona emailu"
1746
 
1747
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1748
+ msgid "Actions"
1749
+ msgstr "Akce"
1750
 
1751
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1752
+ msgid "Unexpected url submit has been detected"
1753
+ msgstr "Byla zjištěna neočekávaná URL adresa"
1754
 
1755
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1756
+ #: 58 ../job/es-optin.php:68
1757
+ msgid ""
1758
+ "Oops.. We are getting some technical error. Please try again or contact "
1759
+ "admin."
1760
+ msgstr ""
1761
+ "Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na "
1762
+ "administrátora."
1763
 
1764
+ #: ../job/es-optin.php:61
1765
+ msgid "This email address has already been confirmed."
1766
+ msgstr "Tato emailová adresa již byla potvrzena."
1767
 
1768
+ #: ../help/help.php:173
1769
+ msgid "Welcome to Email Subscribers!"
1770
+ msgstr "Vítá vás plugin Email Subscribers!"
1771
 
1772
+ #: ../help/help.php:174
1773
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1774
+ msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
 
 
 
1775
 
1776
+ #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1777
+ #: php:38
1778
+ msgid "Subscribe"
1779
+ msgstr "Odebírat"
 
 
 
 
1780
 
1781
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1782
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1783
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1784
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1785
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1786
+ #: 380 ../help/help.php:382
1787
+ #, php-format
1788
+ msgid "%s"
1789
+ msgstr "%s"
1790
+
1791
+ #: ../help/help.php:288
1792
+ msgid "How to Add Subscription box to website?"
1793
+ msgstr "Jak na web přidat přihlašovací formulář?"
1794
+
1795
+ #: ../help/help.php:308
1796
+ msgid "General Plugin Settings"
1797
+ msgstr "Základní nastavení pluginu"
1798
+
1799
+ #: ../help/help.php:314
1800
+ msgid "How to Import or Export Email Addresses?"
1801
+ msgstr "Jak importovat nebo exportovat emailové adresy?"
1802
+
1803
+ #: ../help/help.php:323
1804
+ msgid "How to add Unsubscribe link in emails?"
1805
+ msgstr "Jak do emailů přidat odkaz pro odhlášení?"
1806
+
1807
+ #: ../help/help.php:377
1808
+ msgid "Subscribers are not receiving Emails?"
1809
+ msgstr "Odběratelé nepřijímají emaily?"
1810
+
1811
+ #: ../help/help.php:380
1812
+ msgid "CSS Help"
1813
+ msgstr "CSS Nápověda"
1814
+
1815
+ #: ../sendmail/sendmail.php:40
1816
+ msgid "Please select your mail subject."
1817
+ msgstr "Vyberte předmět zprávy."
1818
+
1819
+ #: ../sendmail/sendmail.php:46
1820
+ msgid "Please select your mail type."
1821
+ msgstr "Vyberte typ zprávy."
1822
+
1823
+ #: ../sendmail/sendmail.php:52
1824
+ msgid "Please select your group."
1825
+ msgstr "Vyberte skupinu."
1826
+
1827
+ #: ../sendmail/sendmail.php:63
1828
+ msgid "Click here to check Statistics"
1829
+ msgstr "Klikněte zde pro kontrolu statistik"
1830
+
1831
+ #: ../sendmail/sendmail.php:69
1832
+ msgid "Oops.. We are getting some error. mail not sending."
1833
+ msgstr "Nastala chyba. Zprávy se neodesílají."
1834
+
1835
+ #: ../sendmail/sendmail.php:97
1836
+ msgid "Use this to send newsletter emails to your subscribers."
1837
+ msgstr "Použijete při odeslání emailů svým odběratelům."
1838
+
1839
+ #: ../sendmail/sendmail.php:105
1840
+ msgid "Select Email Subject from available list"
1841
+ msgstr "Vyberte předmět emailu ze seznamu"
1842
+
1843
+ #: ../sendmail/sendmail.php:132
1844
+ msgid "Select Email Type"
1845
+ msgstr "Vyberte typ emailu"
1846
+
1847
+ #: ../sendmail/sendmail.php:139
1848
+ msgid "Send email via cron job"
1849
+ msgstr "Odeslat email cronem"
1850
+
1851
+ #: ../sendmail/sendmail.php:146
1852
+ msgid "Select Subscribers group to Send Email"
1853
+ msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
1854
+
1855
+ #: ../sendmail/sendmail.php:178
1856
+ msgid "Recipients : 0 "
1857
+ msgstr "Příjemců: 0 "
1858
+
1859
+ #: ../sendmail/sendmail.php:180
1860
+ #, php-format
1861
+ msgid "Recipients : %s"
1862
+ msgstr "Příjemců: %s"
1863
+
1864
+ #: ../sendmail/sendmail.php:183
1865
+ msgid ""
1866
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1867
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1868
+ "</strong><br>Click on Help for more information."
1869
+ msgstr ""
1870
+ "<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme,"
1871
+ " abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
1872
+ "</strong><br>Pro více informací klikněte na nápovědu."
1873
+
1874
+ #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1875
+ msgid "Send Email"
1876
+ msgstr "Odeslat email"
1877
+
1878
+ #: ../sendmail/sendmail.php:199
1879
+ msgid "Reset"
1880
+ msgstr "Reset"
1881
+
1882
+ #: ../base/es-defined.php:32
1883
+ msgid ""
1884
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1885
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1886
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1887
+ "</a> rating. A huge thank you from Icegram in advance!"
1888
+ msgstr ""
1889
+ "Pokud se vám líbí <strong> Email Subscribers </strong>, zvažte, prosím, "
1890
+ "zanechání <a target=\"_blank\" href=\"https://wordpress."
1891
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1892
+ "&#9733;&#9733;&#9733;&#9733;</a> hodnocení. Icegram předem mnohokrát děkuje!"
1893
+
1894
+ #: ../classes/es-common.php:13
1895
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1896
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Potvrzeno</span>"
1897
+
1898
+ #: ../classes/es-common.php:16
1899
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1900
+ msgstr "<span style=\"color:#FF0000\">Nepotvrzeno</span>"
1901
+
1902
+ #: ../classes/es-common.php:19
1903
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1904
+ msgstr "<span style=\"color:#999900\">Odhlášen/a</span>"
1905
+
1906
+ #: ../classes/es-common.php:22
1907
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1908
+ msgstr "<span style=\"color:#0000FF\">Jednoduché potvrzení</span>"
1909
+
1910
+ #: ../classes/es-common.php:25
1911
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1912
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
1913
+
1914
+ #: ../classes/es-common.php:28
1915
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1916
+ msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
1917
+
1918
+ #: ../classes/es-common.php:31
1919
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1920
+ msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
1921
+
1922
+ #: ../classes/es-common.php:34
1923
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1924
+ msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
1925
+
1926
+ #: ../classes/es-common.php:37
1927
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1928
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
1929
+
1930
+ #: ../classes/es-common.php:40
1931
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1932
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
1933
+
1934
+ #: ../classes/es-common.php:43
1935
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1936
+ msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
1937
+
1938
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1939
+ #: register.php:724
1940
+ msgid "Email Subscribers"
1941
+ msgstr "Email Subscribers"
1942
+
1943
+ #: ../classes/es-register.php:163
1944
+ msgid "Help & Info"
1945
+ msgstr "Nápověda"
1946
+
1947
+ #: ../classes/es-register.php:175
1948
+ msgctxt "view-subscriber-enhanced-select"
1949
+ msgid "Please enter subscriber email address."
1950
+ msgstr "Zadejte emailovou adresu odběratele."
1951
+
1952
+ #: ../classes/es-register.php:176
1953
+ msgctxt "view-subscriber-enhanced-select"
1954
+ msgid "Please select subscriber email status."
1955
+ msgstr "Vyberte stav emailu odběratele."
1956
+
1957
+ #: ../classes/es-register.php:177
1958
+ msgctxt "view-subscriber-enhanced-select"
1959
+ msgid "Please select or create group for this subscriber."
1960
+ msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
1961
+
1962
+ #: ../classes/es-register.php:178
1963
+ msgctxt "view-subscriber-enhanced-select"
1964
+ msgid "Do you want to delete this record?"
1965
+ msgstr "Opravdu chcete smazat tento záznam?"
1966
+
1967
+ #: ../classes/es-register.php:179
1968
+ msgctxt "view-subscriber-enhanced-select"
1969
+ msgid "Please select the bulk action."
1970
+ msgstr "Vyberte hromadnou akci."
1971
+
1972
+ #: ../classes/es-register.php:180
1973
+ msgctxt "view-subscriber-enhanced-select"
1974
+ msgid "Are you sure you want to delete selected records?"
1975
+ msgstr "Skutečně chcete smazat vybrané záznamy?"
1976
+
1977
+ #: ../classes/es-register.php:181
1978
+ msgctxt "view-subscriber-enhanced-select"
1979
+ msgid ""
1980
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1981
+ "update subscriber current status to 'Unconfirmed'."
1982
+ msgstr ""
1983
+ "Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
1984
+ "současný stav odběratele na „Nepotvrzeno“."
1985
+
1986
+ #: ../classes/es-register.php:182
1987
+ msgctxt "view-subscriber-enhanced-select"
1988
+ msgid "Please select new subscriber group."
1989
+ msgstr "Vyberte novou skupinu odběratele."
1990
+
1991
+ #: ../classes/es-register.php:183
1992
+ msgctxt "view-subscriber-enhanced-select"
1993
+ msgid "Please select new status for subscribers"
1994
+ msgstr "Vyberte nový stav odběratele"
1995
+
1996
+ #: ../classes/es-register.php:184
1997
+ msgctxt "view-subscriber-enhanced-select"
1998
+ msgid "Do you want to update subscribers group?"
1999
+ msgstr "Chcete upravit skupinu odběratelů?"
2000
+
2001
+ #: ../classes/es-register.php:185
2002
+ msgctxt "view-subscriber-enhanced-select"
2003
+ msgid "Do you want to update subscribers status?"
2004
+ msgstr "Chcete upravit stav odběratele?"
2005
+
2006
+ #: ../classes/es-register.php:186
2007
+ msgctxt "view-subscriber-enhanced-select"
2008
+ msgid ""
2009
+ "Please select only csv file. Please check official website for csv structure."
2010
+ "."
2011
+ msgstr ""
2012
+ "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
2013
+ "na oficiálních internetových stránkách..."
2014
+
2015
+ #: ../classes/es-register.php:195
2016
+ msgctxt "compose-enhanced-select"
2017
+ msgid "Do you want to delete this record?"
2018
+ msgstr "Chcete smazat tento záznam?"
2019
+
2020
+ #: ../classes/es-register.php:203
2021
+ msgctxt "notification-enhanced-select"
2022
+ msgid "Please select subscribers group."
2023
+ msgstr "Vyberte skupinu odběratelů."
2024
+
2025
+ #: ../classes/es-register.php:204
2026
+ msgctxt "notification-enhanced-select"
2027
+ msgid "Please select notification mail subject. Use compose menu to create new."
2028
+ msgstr ""
2029
+ "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
2030
+ "„Vytvořit“."
2031
+
2032
+ #: ../classes/es-register.php:205
2033
+ msgctxt "notification-enhanced-select"
2034
+ msgid "Please select notification status."
2035
+ msgstr "Vyberte stav oznámení."
2036
+
2037
+ #: ../classes/es-register.php:206
2038
+ msgctxt "notification-enhanced-select"
2039
+ msgid "Do you want to delete this record?"
2040
+ msgstr "Chcete smazat tento záznam?"
2041
+
2042
+ #: ../classes/es-register.php:214
2043
+ msgctxt "sendmail-enhanced-select"
2044
+ msgid "Please select your mail subject."
2045
+ msgstr "Vyberte předmět zprávy."
2046
+
2047
+ #: ../classes/es-register.php:215
2048
+ msgctxt "sendmail-enhanced-select"
2049
+ msgid "Please select your mail type."
2050
+ msgstr "Vyberte typ zprávy."
2051
+
2052
+ #: ../classes/es-register.php:216
2053
+ msgctxt "sendmail-enhanced-select"
2054
+ msgid ""
2055
+ "Have you double checked your selected group? If so, let's go ahead and send "
2056
+ "this."
2057
+ msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
2058
+
2059
+ #: ../classes/es-register.php:224
2060
+ msgctxt "sentmail-enhanced-select"
2061
+ msgid "Do you want to delete this record?"
2062
+ msgstr "Chcete smazat tento záznam?"
2063
+
2064
+ #: ../classes/es-register.php:225
2065
+ msgctxt "sentmail-enhanced-select"
2066
+ msgid "Do you want to delete all records except latest 10?"
2067
+ msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
2068
+
2069
+ #: ../classes/es-register.php:233
2070
+ msgctxt "cron-enhanced-select"
2071
+ msgid "Please select enter number of mails you want to send per hour/trigger."
2072
+ msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
2073
+
2074
+ #: ../classes/es-register.php:234
2075
+ msgctxt "cron-enhanced-select"
2076
+ msgid "Please enter the mail count, only number."
2077
+ msgstr "Zadejte počet emailů (pouze číslo)."
2078
+
2079
+ #: ../classes/es-register.php:247
2080
+ msgctxt "widget-enhanced-select"
2081
+ msgid "Please enter email address"
2082
+ msgstr "Zadejte emailovou adresu"
2083
+
2084
+ #: ../classes/es-register.php:248
2085
+ msgctxt "widget-enhanced-select"
2086
+ msgid "Please provide a valid email address"
2087
+ msgstr "Zadejte platnou emailovou adresu"
2088
+
2089
+ #: ../classes/es-register.php:249
2090
+ msgctxt "widget-enhanced-select"
2091
+ msgid "loading..."
2092
+ msgstr "načítání..."
2093
+
2094
+ #: ../classes/es-register.php:250
2095
+ msgctxt "widget-enhanced-select"
2096
+ msgid "Cannot create XMLHTTP instance"
2097
+ msgstr "Nelze vytvořit instanci XMLHTTP"
2098
+
2099
+ #: ../classes/es-register.php:251
2100
+ msgctxt "widget-enhanced-select"
2101
+ msgid "Successfully Subscribed."
2102
+ msgstr "Úspěšné přihlášení k odběru."
2103
+
2104
+ #: ../classes/es-register.php:252
2105
+ msgctxt "widget-enhanced-select"
2106
+ msgid ""
2107
+ "Your subscription was successful! Within a few minutes, kindly check the "
2108
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2109
+ "mail in your mailbox, please check your spam folder."
2110
+ msgstr ""
2111
+ "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
2112
+ "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
2113
+ "zkontrolujte prosím složku se spamem."
2114
+
2115
+ #: ../classes/es-register.php:253
2116
+ msgctxt "widget-enhanced-select"
2117
+ msgid "Email Address already exists!"
2118
+ msgstr "Emailová adresa již existuje!"
2119
+
2120
+ #: ../classes/es-register.php:254
2121
+ msgctxt "widget-enhanced-select"
2122
+ msgid "Oops.. Unexpected error occurred."
2123
+ msgstr "Nastala neočekávaná chyba."
2124
+
2125
+ #: ../classes/es-register.php:255
2126
+ msgctxt "widget-enhanced-select"
2127
+ msgid "Invalid email address"
2128
+ msgstr "Neplatná emailová adresa"
2129
+
2130
+ #: ../classes/es-register.php:256
2131
+ msgctxt "widget-enhanced-select"
2132
+ msgid "Please try after some time"
2133
+ msgstr "Prosím, zkuste to později"
2134
+
2135
+ #: ../classes/es-register.php:257
2136
+ msgctxt "widget-enhanced-select"
2137
+ msgid "There was a problem with the request"
2138
+ msgstr "Došlo k potížím s požadavkem"
2139
+
2140
+ #: ../classes/es-register.php:264
2141
+ msgctxt "widget-page-enhanced-select"
2142
+ msgid "Please enter email address"
2143
+ msgstr "Zadejte emailovou adresu"
2144
+
2145
+ #: ../classes/es-register.php:265
2146
+ msgctxt "widget-page-enhanced-select"
2147
+ msgid "Please provide a valid email address"
2148
+ msgstr "Zadejte platnou emailovou adresu"
2149
+
2150
+ #: ../classes/es-register.php:266
2151
+ msgctxt "widget-page-enhanced-select"
2152
+ msgid "loading..."
2153
+ msgstr "načítání..."
2154
+
2155
+ #: ../classes/es-register.php:267
2156
+ msgctxt "widget-page-enhanced-select"
2157
+ msgid "Cannot create XMLHTTP instance"
2158
+ msgstr "Nelze vytvořit instanci XMLHTTP"
2159
+
2160
+ #: ../classes/es-register.php:268
2161
+ msgctxt "widget-page-enhanced-select"
2162
+ msgid "Successfully Subscribed."
2163
+ msgstr "Úspěšné přihlášení k odběru."
2164
+
2165
+ #: ../classes/es-register.php:269
2166
+ msgctxt "widget-page-enhanced-select"
2167
+ msgid ""
2168
+ "Your subscription was successful! Within a few minutes, kindly check the "
2169
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2170
+ "mail in your mailbox, please check your spam folder."
2171
+ msgstr ""
2172
+ "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
2173
+ "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
2174
+ "zkontrolujte prosím složku se spamem."
2175
+
2176
+ #: ../classes/es-register.php:270
2177
+ msgctxt "widget-page-enhanced-select"
2178
+ msgid "Email Address already exists!"
2179
+ msgstr "Emailová adresa již existuje!"
2180
+
2181
+ #: ../classes/es-register.php:271
2182
+ msgctxt "widget-page-enhanced-select"
2183
+ msgid "Oops.. Unexpected error occurred."
2184
+ msgstr "Nastala neočekávaná chyba."
2185
+
2186
+ #: ../classes/es-register.php:272
2187
+ msgctxt "widget-page-enhanced-select"
2188
+ msgid "Invalid email address"
2189
+ msgstr "Neplatná emailová adresa"
2190
+
2191
+ #: ../classes/es-register.php:273
2192
+ msgctxt "widget-page-enhanced-select"
2193
+ msgid "Please try after some time"
2194
+ msgstr "Prosím, zkuste to později"
2195
+
2196
+ #: ../classes/es-register.php:274
2197
+ msgctxt "widget-page-enhanced-select"
2198
+ msgid "There was a problem with the request"
2199
+ msgstr "Došlo k potížím s požadavkem"
2200
+
2201
+ #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
2202
+ msgid "Email *"
2203
+ msgstr "Email *"
2204
+
2205
+ #: ../classes/es-register.php:1035
2206
+ msgid "Widget Title"
2207
+ msgstr "Nadpis widgetu"
2208
+
2209
+ #: ../classes/es-register.php:1039
2210
+ msgid "Short description about subscription form"
2211
+ msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
2212
+
2213
+ #: ../classes/es-register.php:1043
2214
+ msgid "Display Name Field"
2215
+ msgstr "Zobrazit pole „Jméno“"
2216
+
2217
+ #: ../classes/es-register.php:1050
2218
+ msgid "Subscriber Group"
2219
+ msgstr "Skupina odběratelů"
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,1990 +1,2223 @@
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"
10
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 2.0.2\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;"
18
- "_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;"
19
- "_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;"
20
- "esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;"
21
- "t:1;st:1;trans:1;transChoice:1,2\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 ""
50
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
51
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
52
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A huge "
53
- "thank you from Icegram in advance!"
54
- msgstr ""
55
- "Wenn Ihnen <strong>Email Subscribers</strong> gefällt, hinterlassen Sie uns bitte "
56
- "eine <a href=\"https://wordpress.org/support/view/plugin-reviews/redux-framework?"
57
- "filter=5#postform\" target=\"_blank\" class=\"redux-rating-link\" data-rated="
58
- "\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein riesiges "
59
- "Dankeschön von Icegram im Voraus!"
60
-
61
- #: classes/es-common.php:13
62
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
63
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
64
 
65
- #: classes/es-common.php:16
66
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
67
- msgstr "<span style=\"color:#FF0000\">Unbestätigt</span>"
68
 
69
- #: classes/es-common.php:19
70
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
71
- msgstr "<span style=\"color:#999900\">Abgemeldet</span>"
72
 
73
- #: classes/es-common.php:22
74
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
75
- msgstr "<span style=\"color:#0000FF\">Einfaches Opt In</span>"
 
 
76
 
77
- #: classes/es-common.php:25
78
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
79
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Gelesen</span>"
80
 
81
- #: classes/es-common.php:28
82
- msgid "<span style=\"color:#999900;\">Nodata</span>"
83
- msgstr "<span style=\"color:#999900;\">Keine Daten</span>"
 
 
84
 
85
- #: classes/es-common.php:31
86
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
87
- msgstr "<span style=\"color:#FF0000\">Deaktiviert</span>"
88
 
89
- #: classes/es-common.php:34
90
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
91
- msgstr "<span style=\"color:#FF0000\">In Warteschlange</span>"
 
 
92
 
93
- #: classes/es-common.php:37
94
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
95
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Gesendet</span>"
96
 
97
- #: classes/es-common.php:40
98
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
99
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
 
 
100
 
101
- #: classes/es-common.php:43
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
 
122
- #: classes/es-register.php:143 classes/es-register.php:144
123
- #: subscribers/view-subscriber-show.php:241
124
- msgid "Subscribers"
125
- msgstr "Abonnenten"
126
 
127
- #: classes/es-register.php:146 classes/es-register.php:147 compose/compose-show.php:64
128
- msgid "Compose"
129
- msgstr "Erstellen"
 
 
 
130
 
131
- #: classes/es-register.php:149 classes/es-register.php:150
132
- #: notification/notification-show.php:52
133
- msgid "Post Notifications"
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"
149
- msgstr "Berichte"
 
150
 
151
- #: classes/es-register.php:161
152
- msgid "Help & Info"
153
- msgstr "Hilfe & Info"
 
 
154
 
155
- #: classes/es-register.php:162
156
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
157
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info"
158
 
159
- #: classes/es-register.php:173
160
- msgctxt "view-subscriber-enhanced-select"
161
- msgid "Please enter subscriber email address."
162
- msgstr "Bitte Emailadresse des Abonnenten eingeben."
 
163
 
164
- #: classes/es-register.php:174
165
- msgctxt "view-subscriber-enhanced-select"
166
- msgid "Please select subscriber email status."
167
- msgstr "Wähle den Emailstatus des Abonnenten."
 
168
 
169
- #: classes/es-register.php:175
170
- msgctxt "view-subscriber-enhanced-select"
171
- msgid "Please select or create group for this subscriber."
172
- msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
173
 
174
- #: classes/es-register.php:176
175
- msgctxt "view-subscriber-enhanced-select"
176
- msgid "Do you want to delete this record?"
177
- msgstr "Möchtest Du diesen Eintrag löschen?"
178
 
179
- #: classes/es-register.php:177
180
- msgctxt "view-subscriber-enhanced-select"
181
- msgid "Please select the bulk action."
182
- msgstr "Bitte wähle die Mehrfachaktion."
 
183
 
184
- #: classes/es-register.php:178
185
- msgctxt "view-subscriber-enhanced-select"
186
- msgid "Are you sure you want to delete selected records?"
187
- msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
 
 
 
188
 
189
- #: classes/es-register.php:179
190
- msgctxt "view-subscriber-enhanced-select"
191
  msgid ""
192
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
193
- "subscriber current status to 'Unconfirmed'."
 
 
194
  msgstr ""
195
- "Bestätigungsmail erneut versenden? \\nBeachte, dies wird den Abonnentenstatus in "
196
- "\"Unbestätigt\" ändern."
197
 
198
- #: classes/es-register.php:180
199
- msgctxt "view-subscriber-enhanced-select"
200
- msgid "Please select new subscriber group."
201
- msgstr "Bitte wähle die neue Abonnentengruppe."
 
 
 
202
 
203
- #: classes/es-register.php:181
204
- msgctxt "view-subscriber-enhanced-select"
205
- msgid "Please select new status for subscribers"
206
- msgstr "Bitte wähle den neuen Status für Abonnenten"
 
 
 
207
 
208
- #: classes/es-register.php:182
209
- msgctxt "view-subscriber-enhanced-select"
210
- msgid "Do you want to update subscribers group?"
211
- msgstr "Abonnentengruppe aktualisieren?"
 
 
 
212
 
213
- #: classes/es-register.php:183
214
- msgctxt "view-subscriber-enhanced-select"
215
- msgid "Do you want to update subscribers status?"
216
- msgstr "Abonnentenstatus aktualisieren?"
217
 
218
- #: classes/es-register.php:184
219
- msgctxt "view-subscriber-enhanced-select"
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?"
231
- msgstr "Eintrag löschen?"
232
 
233
- #: classes/es-register.php:201
234
- msgctxt "notification-enhanced-select"
235
- msgid "Please select subscribers group."
236
- msgstr "Abonnentengruppe wählen."
237
 
238
- #: classes/es-register.php:202
239
- msgctxt "notification-enhanced-select"
240
- msgid "Please select notification mail subject. Use compose menu to create new."
241
- msgstr "Bitte wähle das Subjekt für eine Notifikationsmail."
 
 
242
 
243
- #: classes/es-register.php:203
244
- msgctxt "notification-enhanced-select"
245
- msgid "Please select notification status."
246
- msgstr "Wähle den Benachrichtigungsstatus."
247
 
248
- #: classes/es-register.php:204
249
- msgctxt "notification-enhanced-select"
250
- msgid "Do you want to delete this record?"
251
- msgstr "Eintrag löschen?"
 
252
 
253
- #: classes/es-register.php:212
254
- msgctxt "sendmail-enhanced-select"
255
- msgid "Please select your mail subject."
256
- msgstr "Bitte wähle das Emailsubjekt."
257
 
258
- #: classes/es-register.php:213
259
- msgctxt "sendmail-enhanced-select"
260
- msgid "Please select your mail type."
261
- msgstr "Bitte wähle den Emailtyp."
262
 
263
- #: classes/es-register.php:214
264
- msgctxt "sendmail-enhanced-select"
265
  msgid ""
266
- "Have you double checked your selected group? If so, let's go ahead and send this."
 
267
  msgstr ""
268
- "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
269
- "verschicken."
270
 
271
- #: classes/es-register.php:222
272
- msgctxt "sentmail-enhanced-select"
273
- msgid "Do you want to delete this record?"
274
- msgstr "Eintrag löschen?"
275
 
276
- #: classes/es-register.php:223
277
- msgctxt "sentmail-enhanced-select"
278
- msgid "Do you want to delete all records except latest 10?"
279
- msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
280
 
281
- #: classes/es-register.php:231
282
- msgctxt "cron-enhanced-select"
283
- msgid "Please select enter number of mails you want to send per hour/trigger."
284
- msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
285
 
286
- #: classes/es-register.php:232
287
- msgctxt "cron-enhanced-select"
288
- msgid "Please enter the mail count, only number."
289
- msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
290
 
291
- #: classes/es-register.php:245
292
- msgctxt "widget-enhanced-select"
293
- msgid "Please enter email address"
294
- msgstr "Bitte gib die Emailadresse ein"
295
 
296
- #: classes/es-register.php:246
297
- msgctxt "widget-enhanced-select"
298
- msgid "Please provide a valid email address"
299
- msgstr "Bitte gib eine gültige Emailadresse ein"
300
 
301
- #: classes/es-register.php:247
302
- msgctxt "widget-enhanced-select"
303
- msgid "loading..."
304
- msgstr "lädt..."
305
 
306
- #: classes/es-register.php:248
307
- msgctxt "widget-enhanced-select"
308
- msgid "Cannot create XMLHTTP instance"
309
- msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
310
 
311
- #: classes/es-register.php:249
312
- msgctxt "widget-enhanced-select"
313
- msgid "Successfully Subscribed."
314
- msgstr "Erfolgreich angemeldet."
315
 
316
- #: classes/es-register.php:250
317
- msgctxt "widget-enhanced-select"
 
 
 
 
318
  msgid ""
319
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
320
- "your mailbox and confirm your subscription. If you can't see the mail in your "
321
- "mailbox, please check your spam folder."
 
 
 
 
322
  msgstr ""
323
- "Deine Anmeldung war erfolgreich! Wir senden Dir innerhalb der nächsten Minuten eine "
324
- "Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine Mail bekommen prüfe "
325
- "bitte den Spamordner."
326
 
327
- #: classes/es-register.php:251
328
- msgctxt "widget-enhanced-select"
329
- msgid "Email Address already exists!"
330
- msgstr "Diese Adresse existiert bereits!"
331
 
332
- #: classes/es-register.php:252
333
- msgctxt "widget-enhanced-select"
334
- msgid "Oops.. Unexpected error occurred."
335
- msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
336
 
337
- #: classes/es-register.php:253
338
- msgctxt "widget-enhanced-select"
339
- msgid "Invalid email address"
340
- msgstr "Ungültige Emailadresse"
341
 
342
- #: classes/es-register.php:254
343
- msgctxt "widget-enhanced-select"
344
- msgid "Please try after some time"
345
- msgstr "Versuche es in Kürze nochmal"
 
346
 
347
- #: classes/es-register.php:255
348
- msgctxt "widget-enhanced-select"
349
- msgid "There was a problem with the request"
350
- msgstr "Es gab ein Problem mit der Anforderung"
351
 
352
- #: classes/es-register.php:262
353
- msgctxt "widget-page-enhanced-select"
354
- msgid "Please enter email address"
355
- msgstr "Bitte gib die Emailadresse ein"
356
 
357
- #: classes/es-register.php:263
358
- msgctxt "widget-page-enhanced-select"
359
- msgid "Please provide a valid email address"
360
- msgstr "Bitte gib eine gültige Emailadresse ein"
361
 
362
- #: classes/es-register.php:264
363
- msgctxt "widget-page-enhanced-select"
364
- msgid "loading..."
365
- msgstr "lädt..."
366
 
367
- #: classes/es-register.php:265
368
- msgctxt "widget-page-enhanced-select"
369
- msgid "Cannot create XMLHTTP instance"
370
- msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
371
 
372
- #: classes/es-register.php:266
373
- msgctxt "widget-page-enhanced-select"
374
- msgid "Successfully Subscribed."
375
- msgstr "Erfolgreich angemeldet."
376
-
377
- #: classes/es-register.php:267
378
- msgctxt "widget-page-enhanced-select"
379
- msgid ""
380
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
381
- "your mailbox and confirm your subscription. If you can't see the mail in your "
382
- "mailbox, please check your spam folder."
383
  msgstr ""
384
- "Deine Anmeldung war erfolgreich! Wir senden Dir innerhalb der nächsten Minuten eine "
385
- "Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine Mail bekommen prüfe "
386
- "bitte den Spamordner."
387
-
388
- #: classes/es-register.php:268
389
- msgctxt "widget-page-enhanced-select"
390
- msgid "Email Address already exists!"
391
- msgstr "Diese Adresse existiert bereits!"
392
-
393
- #: classes/es-register.php:269
394
- msgctxt "widget-page-enhanced-select"
395
- msgid "Oops.. Unexpected error occurred."
396
- msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
397
-
398
- #: classes/es-register.php:270
399
- msgctxt "widget-page-enhanced-select"
400
- msgid "Invalid email address"
401
- msgstr "Ungültige Emailadresse"
402
-
403
- #: classes/es-register.php:271
404
- msgctxt "widget-page-enhanced-select"
405
- msgid "Please try after some time"
406
- msgstr "Versuche es in Kürze nochmal"
407
-
408
- #: classes/es-register.php:272
409
- msgctxt "widget-page-enhanced-select"
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
-
539
- #: compose/compose-add.php:31 compose/compose-edit.php:48
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"
546
-
547
- #: compose/compose-add.php:75 compose/compose-edit.php:86
548
- #: compose/compose-preview.php:28 compose/compose-show.php:66
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
556
- msgid "Help"
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"
565
- msgstr "Newsletter"
566
-
567
- #: compose/compose-add.php:81 compose/compose-edit.php:92
568
- msgid "Post Notification"
569
- msgstr "Benachrichtigung über Beitrag"
570
-
571
- #: compose/compose-add.php:85 compose/compose-edit.php:96
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"
582
-
583
- #: compose/compose-add.php:97 compose/compose-edit.php:108
584
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
585
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
586
- #: subscribers/view-subscriber-show.php:362 subscribers/view-subscriber-show.php:375
587
- msgid "Status"
588
- msgstr "Status"
589
-
590
- #: compose/compose-add.php:99 compose/compose-edit.php:110
591
- msgid "Published"
592
- msgstr "Veröffentlicht"
593
-
594
- #: compose/compose-add.php:101 compose/compose-edit.php:112
595
- msgid "Please select your mail status"
596
- msgstr "Bitte wähle deinen Emailstatus"
597
-
598
- #: compose/compose-add.php:105 compose/compose-edit.php:117
599
- #: notification/notification-add.php:253 notification/notification-edit.php:290
600
- #: subscribers/view-subscriber-edit.php:191
601
- msgid "Save"
602
- msgstr "Sichern"
603
-
604
- #: compose/compose-edit.php:20 compose/compose-preview.php:18
605
- #: compose/compose-show.php:33 notification/notification-edit.php:20
606
- #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
607
- #: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
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"
614
-
615
- #: compose/compose-edit.php:85 compose/compose-show.php:65
616
- #: notification/notification-edit.php:123 notification/notification-show.php:53
617
- msgid "Add New"
618
- msgstr "Neu hinzufügen"
619
-
620
- #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
621
- msgid "Preview Mail"
622
- msgstr "Emailvorschau"
623
 
624
- #: compose/compose-preview.php:40 compose/compose-show.php:101
625
- #: notification/notification-show.php:100 subscribers/view-subscriber-show.php:404
626
- msgid "Edit"
627
- msgstr "Bearbeiten"
628
-
629
- #: compose/compose-show.php:14 sendmail/sendmail.php:18
630
- #: subscribers/view-subscriber-show.php:17
631
- msgid "Click Here"
632
- msgstr "Hier klicken"
633
-
634
- #: compose/compose-show.php:47 notification/notification-show.php:35
635
- #: sentmail/sentmail-show.php:36
636
- msgid "Selected record deleted."
637
- msgstr "Ausgewählte Einträge gelöscht."
638
-
639
- #: compose/compose-show.php:77 compose/compose-show.php:84
640
- #: notification/notification-show.php:68 notification/notification-show.php:76
641
- msgid "Email Subject"
642
- msgstr "Emailsubjekt"
643
 
644
- #: compose/compose-show.php:78 compose/compose-show.php:85
645
- msgid "Email Template"
646
- msgstr "Emailvorlage"
647
 
648
- #: compose/compose-show.php:79 compose/compose-show.php:86
649
- msgid "Actions"
650
- msgstr "Aktion"
651
 
652
- #: compose/compose-show.php:102 notification/notification-show.php:103
653
- #: subscribers/view-subscriber-show.php:287 subscribers/view-subscriber-show.php:409
654
- msgid "Delete"
655
- msgstr "Löschen"
656
 
657
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
658
- #: sentmail/sentmail-show.php:124
659
- msgid "Preview"
660
- msgstr "Vorschau"
661
 
662
- #: compose/compose-show.php:111 notification/notification-show.php:143
663
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
664
- #: subscribers/view-subscriber-show.php:432
665
- msgid "No records available."
666
- msgstr "Keine Einträge verfügbar."
667
 
668
- #: export/export-email-address.php:45 export/export-email-address.php:49
669
- msgid "Unexpected url submit has been detected"
670
- msgstr "Eine unerwartete URL wurde übertragen"
671
 
672
- #: help/help.php:47
673
- msgid "Welcome to Email Subscribers!"
674
- msgstr "Willkommen bei Email Subscribers!"
675
 
676
- #: help/help.php:48
677
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
678
  msgstr ""
679
- "Danke für die die Verwendung von Email Subscribers, wir hoffen Du magst das Produkt."
680
 
681
- #: help/help.php:52
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"
700
-
701
- #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
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"
710
 
711
- #: help/help.php:118
712
- msgid "How to Add Subscription box to website?"
713
- msgstr "Wie füge ich die Anmeldebox zu einer Webseite hinzu?"
714
 
715
- #: help/help.php:127
716
- msgid "General Plugin Settings"
717
- msgstr "Allgemeine Plugineinstellungen"
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?"
729
- msgstr "Wie importiere oder exportiere ich Emailadressen?"
730
-
731
- #: help/help.php:133
732
- msgid "How to change/update/translate any texts from Email Subscribers?"
733
- msgstr "Wie ändere/aktualisiere/übersetze ich Texte von Email Subscribers?"
734
-
735
- #: help/help.php:136
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
770
- msgid "Subscribers are not receiving Emails?"
771
- msgstr "Abonnenten erhalten keine Emails?"
 
 
772
 
773
- #: help/help.php:160
774
- msgid "How to show subscribe form inside a popup?"
775
- msgstr "Wie zeigt man ein Anmeldeformular in einem PopUp?"
 
 
776
 
777
- #: help/help.php:163
778
- msgid "How to use Rainmaker’s form in Email Subscribers?"
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
817
- msgid "Oops.. We are getting some technical error. Please try again or contact admin."
818
  msgstr ""
819
- "Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere den "
820
- "Admin."
821
 
822
- #: job/es-optin.php:61
823
- msgid "This email address has already been confirmed."
824
- msgstr "Diese Emailadresse wurde schon bestätigt."
825
 
826
- #: notification/notification-add.php:33
827
  msgid "Please select subscribers group."
828
  msgstr "Bitte wähle die Abonnentengruppe."
829
 
830
- #: notification/notification-add.php:39
831
  msgid "Please select notification status."
832
  msgstr "Bitte wähle den Benachrichtigungsstatus."
833
 
834
- #: notification/notification-add.php:45 notification/notification-edit.php:61
835
  msgid "Please select notification mail subject. Use compose menu to create new."
836
  msgstr ""
837
- "Bitte wähle das Subjekt der Benachrichtigungsmail. Im Menü \"Erstellen\" kannst Du "
838
- "ein Neues erstellen."
839
 
840
- #: notification/notification-add.php:51 notification/notification-edit.php:67
841
  msgid "Please select post categories."
842
  msgstr "Bitte wähle die Kategorie der Beiträge."
843
 
844
- #: notification/notification-add.php:71
845
  msgid "Notification successfully created. "
846
  msgstr "Benachrichtigung erfolgreich erstellt. "
847
 
848
- #: notification/notification-add.php:112
849
  msgid "Add Notification"
850
  msgstr "Benachrichtigung hinzufügen"
851
 
852
- #: notification/notification-add.php:120
 
 
 
 
 
 
 
 
 
 
 
 
853
  msgid "Select Subscribers Group"
854
  msgstr "Wähle Abonnentengruppe"
855
 
856
- #: notification/notification-add.php:124 notification/notification-add.php:148
857
- #: notification/notification-edit.php:135 notification/notification-edit.php:168
858
- #: sendmail/sendmail.php:110 sendmail/sendmail.php:137 sendmail/sendmail.php:151
859
- #: subscribers/view-subscriber-add.php:162 subscribers/view-subscriber-edit.php:162
860
- #: subscribers/view-subscriber-import.php:190 subscribers/view-subscriber-sync.php:119
 
861
  msgid "Select"
862
  msgstr "Wähle"
863
 
864
- #: notification/notification-add.php:142 notification/notification-edit.php:162
 
865
  msgid "Select Notification Email Subject"
866
  msgstr "Wähle das Subjekt der Benachrichtigungsmail"
867
 
868
- #: notification/notification-add.php:143 notification/notification-edit.php:163
 
869
  msgid "(Use compose menu to create new)"
870
  msgstr "(im Menü \"Erstellen\" können neue erstellt werden)"
871
 
872
- #: notification/notification-add.php:167 notification/notification-edit.php:190
 
873
  msgid "Select Post Categories"
874
  msgstr "Wähle Beitragskategorie"
875
 
876
- #: notification/notification-add.php:195 notification/notification-edit.php:225
 
877
  msgid "Check All"
878
  msgstr "Alle auswählen"
879
 
880
- #: notification/notification-add.php:196 notification/notification-edit.php:226
 
881
  msgid "Uncheck All"
882
  msgstr "Alle abwählen"
883
 
884
- #: notification/notification-add.php:202 notification/notification-edit.php:233
 
885
  msgid "Select your Custom Post Type"
886
  msgstr "Wähle Deinen individuellen Beitragstyp"
887
 
888
- #: notification/notification-add.php:203 notification/notification-edit.php:234
 
889
  msgid "(Optional)"
890
  msgstr "(Optional)"
891
 
892
- #: notification/notification-add.php:232 notification/notification-edit.php:268
 
893
  msgid "No Custom Post Types Available"
894
  msgstr "Keine individuellen Beitragstypen vorhanden"
895
 
896
- #: notification/notification-add.php:239 notification/notification-edit.php:275
 
897
  msgid "Select Notification Status when a new post is published"
898
  msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
899
 
900
- #: notification/notification-add.php:243 notification/notification-edit.php:279
901
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
902
  msgid "Send email immediately"
903
  msgstr "Sende Email sofort"
904
 
905
- #: notification/notification-add.php:244 notification/notification-edit.php:280
906
- #: notification/notification-show.php:132
907
  msgid "Add to cron and send email via cron job"
908
  msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
909
 
910
- #: notification/notification-add.php:245 notification/notification-edit.php:281
 
911
  msgid "Disable email notification"
912
  msgstr "Emailbenachrichtigungen deaktivieren"
913
 
914
- #: notification/notification-edit.php:49
915
- msgid "Please select subscribers group"
916
- msgstr "Bitte wähle die Abonnentengruppe"
 
 
917
 
918
- #: notification/notification-edit.php:55
919
- msgid "Please select notification status"
920
- msgstr "Bitte wähle den Benachrichtigungsstatus"
 
 
 
921
 
922
- #: notification/notification-edit.php:89
923
- msgid "Notification successfully updated. "
924
- msgstr "Benachrichtigung erfolgreich aktualisiert. "
 
925
 
926
- #: notification/notification-edit.php:122
927
- msgid "Edit Notification"
928
- msgstr "Benachrichtigung bearbeiten"
 
929
 
930
- #: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:289
931
- msgid "Update Subscribers Group"
932
- msgstr "Aktualisiere die Abonnentengruppe"
 
933
 
934
- #: notification/notification-show.php:57
935
  msgid ""
936
- "Use this to setup and send notification emails to your subscribers when a new post "
937
- "is published in your blog."
938
  msgstr ""
939
- "Stelle hier ein ob und wie Abonnenten über neue Beiträge im Blog informiert werden."
 
 
 
 
 
 
940
 
941
- #: notification/notification-show.php:69 notification/notification-show.php:77
 
942
  msgid "Subscribers Group"
943
  msgstr "Abonnentengruppe"
944
 
945
- #: notification/notification-show.php:70 notification/notification-show.php:78
 
946
  msgid "Post Categories / Custom Post Types"
947
  msgstr "Beitragskategorien / Individuelle Beitragstypen"
948
 
949
- #: notification/notification-show.php:71 notification/notification-show.php:79
 
950
  msgid "Notification Status"
951
  msgstr "Benachrichtigungsstatus"
952
 
953
- #: sendmail/sendmail.php:40
954
- msgid "Please select your mail subject."
955
- msgstr "Bitte wähle das Subjekt der Mail."
956
-
957
- #: sendmail/sendmail.php:46
958
- msgid "Please select your mail type."
959
- msgstr "Bitte wähle den Typ der Mail."
960
-
961
- #: sendmail/sendmail.php:52
962
- msgid "Please select your group."
963
- msgstr "Bitte wähle die Gruppe."
964
-
965
- #: sendmail/sendmail.php:59
966
- msgid "Mail sent successfully. "
967
- msgstr "Email erfolgreich gesendet. "
968
-
969
- #: sendmail/sendmail.php:63
970
- msgid "Click here to check Statistics"
971
- msgstr "Klicke hier um die Statistik zu sehen"
972
-
973
- #: sendmail/sendmail.php:69
974
- msgid "Oops.. We are getting some error. mail not sending."
975
- msgstr "Oops.. Es gibt ein Problem. Mails können nicht verschickt werden."
976
-
977
- #: sendmail/sendmail.php:97
978
- msgid "Use this to send newsletter emails to your subscribers."
979
- msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
980
-
981
- #: sendmail/sendmail.php:105
982
- msgid "Select Email Subject from available list"
983
- msgstr "Wähle das Subjekt der Email aus"
984
-
985
- #: sendmail/sendmail.php:132
986
- msgid "Select Email Type"
987
- msgstr "Wähle den Emailtyp"
988
-
989
- #: sendmail/sendmail.php:139
990
- msgid "Send email via cron job"
991
- msgstr "Sende Email via Cron Job"
992
-
993
- #: sendmail/sendmail.php:146
994
- msgid "Select Subscribers group to Send Email"
995
- msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
996
-
997
- #: sendmail/sendmail.php:178
998
- msgid "Recipients : 0 "
999
- msgstr "Empfänger : 0 "
1000
-
1001
- #: sendmail/sendmail.php:180
1002
- #, c-format
1003
- msgid "Recipients : %s"
1004
- msgstr "Empfänger : %s"
1005
-
1006
- #: sendmail/sendmail.php:183
1007
- msgid ""
1008
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1009
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click on "
1010
- "Help for more information."
1011
- msgstr ""
1012
- "<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den Email-"
1013
- "Typ in Cron zu ändern und mit Cron Job zu verschicken.</strong><br>Klicke auf Hilfe "
1014
- "für weitere Informationen."
1015
-
1016
- #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1017
- msgid "Send Email"
1018
- msgstr "Email senden"
1019
-
1020
- #: sendmail/sendmail.php:199
1021
- msgid "Reset"
1022
- msgstr "Zurücksetzen"
1023
-
1024
- #: sentmail/deliverreport-show.php:14
1025
- msgid "Oops.. Unexpected error occurred. Please try again."
1026
- msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es nochmal."
1027
-
1028
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1029
- msgid " &lt;&lt; "
1030
- msgstr " &lt;&lt; "
1031
-
1032
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1033
- msgid " &gt;&gt; "
1034
- msgstr " &gt;&gt; "
1035
-
1036
- #: sentmail/deliverreport-show.php:60
1037
- msgid "Delivery Report"
1038
- msgstr "Sendebericht"
1039
-
1040
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1041
- #: subscribers/view-subscriber-export.php:45 subscribers/view-subscriber-export.php:53
1042
- msgid "Sno"
1043
- msgstr "Alle"
1044
-
1045
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1046
- msgid "Email"
1047
- msgstr "Email"
1048
-
1049
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1050
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1051
- msgid "Sent"
1052
- msgstr "Gesendet"
1053
-
1054
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1055
- msgid "Sent Date"
1056
- msgstr "Sendedatum"
1057
-
1058
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1059
- msgid "Viewed Status"
1060
- msgstr "Lesestatus"
1061
-
1062
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1063
- msgid "Viewed Date"
1064
- msgstr "Gelesen am"
1065
-
1066
- #: sentmail/sentmail-preview.php:42
1067
- msgid "Back"
1068
- msgstr "Zurück"
1069
-
1070
- #: sentmail/sentmail-show.php:43
1071
- msgid "Successfully deleted all reports except latest 10."
1072
- msgstr "Alle Berichte (bis auf die letzten 10) wurden erfolgreich gelöscht."
1073
 
1074
- #: sentmail/sentmail-show.php:100
1075
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1076
- msgstr "Berichte für alle verschickten Newsletter & Benachrichtigungen ."
 
 
1077
 
1078
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1079
- msgid "View Reports"
1080
- msgstr "Berichte anzeigen"
 
 
1081
 
1082
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
1083
- msgid "Type"
1084
- msgstr "Typ"
1085
 
1086
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1087
- msgid "Start Date"
1088
- msgstr "Startdatum"
1089
 
1090
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1091
- msgid "End Date"
1092
- msgstr "Enddatum"
1093
 
1094
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1095
- msgid "Total"
1096
- msgstr "Gesamt"
1097
 
1098
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1099
- #: subscribers/view-subscriber-export.php:48 subscribers/view-subscriber-export.php:56
1100
- #: subscribers/view-subscriber-show.php:365 subscribers/view-subscriber-show.php:378
1101
- msgid "Action"
1102
- msgstr "Aktion"
1103
 
1104
- #: sentmail/sentmail-show.php:193
1105
- msgid "Optimize Table & Delete Records"
1106
- msgstr "Tabelle optimieren und Einträge löschen"
1107
 
1108
- #: sentmail/sentmail-show.php:202
1109
  msgid ""
1110
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1111
- "delete all reports except latest 10."
1112
  msgstr ""
1113
- "Hinweis: Bitte klicke auf <strong>Tabelle optimieren und Einträge löschen</strong> "
1114
- "um alle Berichte mit Ausnahme der letzten 10 zu löschen."
1115
-
1116
- #: settings/setting-sync.php:16
1117
- msgid "Table sync completed successfully."
1118
- msgstr "Tabelle erfolgreich synchronisiert."
1119
-
1120
- #: settings/setting-sync.php:29
1121
- msgid "Sync plugin tables"
1122
- msgstr "Plugintabellen synchronisieren"
1123
 
1124
- #: settings/setting-sync.php:33
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."
1156
- msgstr ""
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()."
1168
  msgstr ""
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 "
1196
- "do not need to confirm their email address."
1197
- msgstr ""
1198
- "Doppeltes Opt In bedeutet, dass Abonnenten ihre Emailadresse über einen "
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)."
1243
- msgstr ""
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."
1255
  msgstr ""
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."
1267
  msgstr ""
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###)"
1302
- msgstr ""
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."
1314
- msgstr ""
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###)"
1326
- msgstr ""
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"
1342
- msgstr ""
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."
1350
- msgstr ""
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."
1362
- msgstr ""
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) "
1374
- "successfully."
1375
  msgstr ""
1376
- "Gib das Subjekt für die Willkommensmail ein. Diese wird verschickt wenn eine "
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."
1402
- msgstr ""
1403
- "Der Abmeldelink wird automatisch allen Emails angehängt die von diesem Plugin "
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###)"
1415
- msgstr ""
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."
1435
- msgstr ""
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###)"
1522
- msgstr ""
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
 
1582
- #: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
1583
- msgid "Please enter subscriber email address."
1584
- msgstr "Bitte gib die Emailadresse des Abonnenten ein."
1585
 
1586
- #: subscribers/view-subscriber-add.php:49
1587
- msgid "Please select or create your group for this email."
1588
- msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
1589
 
1590
- #: subscribers/view-subscriber-add.php:56
1591
- msgid ""
1592
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1593
- "group name."
1594
- msgstr ""
1595
- "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen nicht "
1596
- "zugelassen."
1597
 
1598
- #: subscribers/view-subscriber-add.php:66
1599
- msgid "Subscriber has been saved."
1600
- msgstr "Abonnent wurde gespeichert."
1601
 
1602
- #: subscribers/view-subscriber-add.php:68
1603
- msgid "Subscriber already exists."
1604
- msgstr "Abonnent existiert bereits."
1605
 
1606
- #: subscribers/view-subscriber-add.php:71
1607
- msgid "Invalid Email."
1608
- msgstr "Ungültige Emailadresse."
1609
 
1610
- #: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
1611
- #: subscribers/view-subscriber-export.php:35 subscribers/view-subscriber-import.php:143
1612
- #: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
1613
- msgid "Add New Subscriber"
1614
- msgstr "Neu hinzufügen"
1615
-
1616
- #: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
1617
- #: subscribers/view-subscriber-export.php:36 subscribers/view-subscriber-import.php:210
1618
- #: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
1619
- msgid "Import"
1620
- msgstr "Import"
1621
-
1622
- #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
1623
- #: subscribers/view-subscriber-import.php:144 subscribers/view-subscriber-show.php:244
1624
- #: subscribers/view-subscriber-sync.php:91
1625
- msgid "Export"
1626
- msgstr "Export"
1627
-
1628
- #: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
1629
- #: subscribers/view-subscriber-export.php:37 subscribers/view-subscriber-import.php:145
1630
- #: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:143
1631
- msgid "Sync"
1632
- msgstr "Synchronisieren"
1633
-
1634
- #: subscribers/view-subscriber-add.php:123
1635
- msgid "Enter Subscriber's Full name"
1636
- msgstr "Gib den Namen des Abonnenten ein"
1637
-
1638
- #: subscribers/view-subscriber-add.php:133
1639
- msgid "Enter Subscriber's Email Address"
1640
- msgstr "Gib die Emailadresse des Abonnenten ein"
1641
-
1642
- #: subscribers/view-subscriber-add.php:143
1643
- msgid "Select Subscriber's Status"
1644
- msgstr "Wähle den Status des Abonnenten"
1645
-
1646
- #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1647
- #: subscribers/view-subscriber-import.php:175 subscribers/view-subscriber-show.php:309
1648
- #: subscribers/view-subscriber-show.php:336
1649
- msgid "Confirmed"
1650
- msgstr "Bestätigt"
1651
-
1652
- #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1653
- #: subscribers/view-subscriber-import.php:176 subscribers/view-subscriber-show.php:310
1654
- #: subscribers/view-subscriber-show.php:337
1655
- msgid "Unconfirmed"
1656
- msgstr "Unbestätigt"
1657
-
1658
- #: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
1659
- #: subscribers/view-subscriber-import.php:177 subscribers/view-subscriber-show.php:311
1660
- #: subscribers/view-subscriber-show.php:338
1661
- msgid "Unsubscribed"
1662
- msgstr "Abgemeldet"
1663
-
1664
- #: subscribers/view-subscriber-add.php:158
1665
- msgid "Select (or) Create Group for Subscriber"
1666
- msgstr "Wähle oder erstelle die Gruppe für den Abonnenten"
1667
-
1668
- #: subscribers/view-subscriber-add.php:174 subscribers/view-subscriber-import.php:202
1669
- msgid "(or)"
1670
- msgstr "(oder)"
1671
-
1672
- #: subscribers/view-subscriber-add.php:183
1673
- msgid "Add Subscriber"
1674
- msgstr "Abonnent hinzufügen"
1675
-
1676
- #: subscribers/view-subscriber-edit.php:64
1677
- msgid "Error: Special characters are not allowed in the group name."
1678
- msgstr "Fehler: Sonderzeichen sind in Gruppennamen nicht erlaubt."
1679
 
1680
- #: subscribers/view-subscriber-edit.php:74
1681
- msgid "Subscriber details updated."
1682
- msgstr "Details des Abonnenten aktualisiert."
1683
 
1684
- #: subscribers/view-subscriber-edit.php:76
1685
- msgid "Subscriber already exists for this group."
1686
- msgstr "Diesen Abonnenten gibt es in dieser Gruppe schon."
 
1687
 
1688
- #: subscribers/view-subscriber-edit.php:108
1689
- msgid "Edit Subscriber"
1690
- msgstr "Abonnent bearbeiten"
1691
 
1692
- #: subscribers/view-subscriber-edit.php:122
1693
- msgid "Subscriber's Full Name"
1694
- msgstr "Name des Abonnenten"
1695
 
1696
- #: subscribers/view-subscriber-edit.php:132
1697
- msgid "Subscriber's Email Address"
1698
- msgstr "Email des Abonnenten"
 
1699
 
1700
- #: subscribers/view-subscriber-edit.php:142
1701
- msgid "Update Subscriber's Status"
1702
- msgstr "Status des Abonnenten aktualisieren"
1703
 
1704
- #: subscribers/view-subscriber-edit.php:157
1705
- msgid "Update Subscriber's Group"
1706
- msgstr "Gruppe des Abonnenten aktualisieren"
 
 
 
1707
 
1708
- #: subscribers/view-subscriber-export.php:34
1709
- msgid "Export Email Addresses"
1710
- msgstr "Emailadressen exportieren"
 
1711
 
1712
- #: subscribers/view-subscriber-export.php:46 subscribers/view-subscriber-export.php:54
1713
- msgid "Type of List to Export"
1714
- msgstr "Listentyp für den Export"
1715
 
1716
- #: subscribers/view-subscriber-export.php:47 subscribers/view-subscriber-export.php:55
1717
- msgid "Total Emails Count"
1718
- msgstr "Gesamte Anzahl Emails"
1719
 
1720
- #: subscribers/view-subscriber-export.php:61
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
1731
- msgid "Click to Export in CSV"
1732
- msgstr "Klicken um nach CSV zu exportieren"
1733
 
1734
- #: subscribers/view-subscriber-export.php:67
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"
1765
 
1766
- #: subscribers/view-subscriber-import.php:44
1767
  msgid ""
1768
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1769
- "Group name."
1770
  msgstr ""
1771
- "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen nicht "
1772
- "zugelassen."
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."
1780
  msgstr "Email existiert bereits."
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"
1788
  msgstr "Klicke hier"
1789
 
1790
- #: subscribers/view-subscriber-import.php:97 subscribers/view-subscriber-import.php:126
 
1791
  msgid " to view details."
1792
  msgstr " um Details zu sehen."
1793
 
1794
- #: subscribers/view-subscriber-import.php:105
1795
  msgid "File Upload Failed."
1796
  msgstr "Dateiupload fehlgeschlagen."
1797
 
1798
- #: subscribers/view-subscriber-import.php:142
1799
  msgid "Import Email Addresses"
1800
  msgstr "Emailadressen importieren"
1801
 
1802
- #: subscribers/view-subscriber-import.php:155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1803
  msgid "Select CSV file"
1804
  msgstr "CSV-Datei auswählen"
1805
 
1806
- #: subscribers/view-subscriber-import.php:157
1807
  msgid "Check CSV structure "
1808
  msgstr "Überprüfe die CSV-Struktur "
1809
 
1810
- #: subscribers/view-subscriber-import.php:158
1811
  msgid "from here"
1812
  msgstr "hier"
1813
 
1814
- #: subscribers/view-subscriber-import.php:169
1815
  msgid "Select Subscribers Email Status"
1816
  msgstr "Wähle den Emailstatus des Abonnenten"
1817
 
1818
- #: subscribers/view-subscriber-import.php:185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1819
  msgid "Select (or) Create Group for Subscribers"
1820
  msgstr "Wähle oder erstelle die Gruppe für die Abonnenten"
1821
 
1822
- #: subscribers/view-subscriber-show.php:45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1823
  msgid "Selected details does not exists."
1824
  msgstr "Die gewählten Details existieren nicht."
1825
 
1826
- #: subscribers/view-subscriber-show.php:56 subscribers/view-subscriber-show.php:95
 
1827
  msgid "Record deleted."
1828
  msgstr "Eintrag gelöscht."
1829
 
1830
- #: subscribers/view-subscriber-show.php:67
1831
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1832
  msgstr ""
1833
- "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In geändert werden."
 
1834
 
1835
- #: subscribers/view-subscriber-show.php:75 subscribers/view-subscriber-show.php:134
 
1836
  msgid "Confirmation emails Resent Successfully."
1837
  msgstr "Bestätigungsmail wurde neu verschickt."
1838
 
1839
- #: subscribers/view-subscriber-show.php:100 subscribers/view-subscriber-show.php:139
1840
- #: subscribers/view-subscriber-show.php:177 subscribers/view-subscriber-show.php:216
 
1841
  msgid "No record was selected."
1842
  msgstr "Kein Eintrag ausgewählt."
1843
 
1844
- #: subscribers/view-subscriber-show.php:115
1845
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1846
  msgstr ""
1847
- "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In geändert werden."
 
1848
 
1849
- #: subscribers/view-subscriber-show.php:163
1850
  msgid "Subscribers Group updated."
1851
  msgstr "Abonnentengruppe aktualisiert."
1852
 
1853
- #: subscribers/view-subscriber-show.php:168
1854
  msgid "Please select New group to update."
1855
  msgstr "Bitte wähle die neue Gruppe aus."
1856
 
1857
- #: subscribers/view-subscriber-show.php:202
1858
  msgid "Subscribers Status updated."
1859
  msgstr "Abonnentenstatus aktualisiert."
1860
 
1861
- #: subscribers/view-subscriber-show.php:207
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"
1878
 
1879
- #: subscribers/view-subscriber-show.php:288 subscribers/view-subscriber-show.php:417
 
1880
  msgid "Resend Confirmation"
1881
  msgstr "Benachrichtigung erneut versenden"
1882
 
1883
- #: subscribers/view-subscriber-show.php:290
1884
  msgid "Update Subscribers Status"
1885
  msgstr "Abonnentenstatus aktualisieren"
1886
 
1887
- #: subscribers/view-subscriber-show.php:293
1888
  msgid "Select Group"
1889
  msgstr "Wähle Gruppe"
1890
 
1891
- #: subscribers/view-subscriber-show.php:308
1892
  msgid "Select Status"
1893
  msgstr "Status wählen"
1894
 
1895
- #: subscribers/view-subscriber-show.php:314
1896
  msgid "Apply"
1897
  msgstr "Anwenden"
1898
 
1899
- #: subscribers/view-subscriber-show.php:318
1900
  msgid "All Groups"
1901
  msgstr "Alle Gruppen"
1902
 
1903
- #: subscribers/view-subscriber-show.php:335
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"
1938
 
1939
- #: subscribers/view-subscriber-show.php:360 subscribers/view-subscriber-show.php:373
 
1940
  msgid "Email Address"
1941
  msgstr "Emailadresse"
1942
 
1943
- #: subscribers/view-subscriber-show.php:363 subscribers/view-subscriber-show.php:376
 
 
 
 
 
 
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."
1954
 
1955
- #: subscribers/view-subscriber-sync.php:50
1956
- msgid "Emails Successfully Synced."
1957
- msgstr "Emails erfolgreich synchronisiert."
 
1958
 
1959
- #: subscribers/view-subscriber-sync.php:88
1960
- msgid "Sync Email"
1961
- msgstr "Email synchronisieren"
 
1962
 
1963
- #: subscribers/view-subscriber-sync.php:101
1964
- msgid "Sync newly registered users to subscribers list"
1965
- msgstr "Synchronisiere neu registrierte Benutzer zur Liste der Abonnenten"
1966
 
1967
- #: subscribers/view-subscriber-sync.php:114
1968
- msgid "Select group to add newly registered users to"
1969
- msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
1970
 
1971
- #. Plugin Name of the plugin/theme
1972
- msgid "Email Subscribers & Newsletters"
1973
- msgstr "Email Subscribers & Newsletters"
 
 
 
 
 
 
 
 
 
 
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 ""
1982
- "Add subscription forms on website, send HTML newsletters & automatically notify "
1983
- "subscribers about new blog posts once it is published."
1984
  msgstr ""
1985
- "Füge das Anmeldeformular zur Webseite hinzu, sende HTML Newsletter & automatische "
1986
- "Benachrichtigungen an die Abonnenten sobald neue Beiträge veröffentlicht werden."
1987
 
1988
- #. Author of the plugin/theme
1989
- msgid "Icegram"
1990
- msgstr "Icegram"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:26:24 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: German\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: de_DE\n"
24
+ "X-Poedit-SearchPath-0: .."
25
 
26
+ #. URI of the plugin
27
+ msgid "https://www.icegram.com"
28
+ msgstr ""
29
 
30
+ #: ../email-subscribers.php:70
31
+ msgctxt "timezone date format"
32
+ msgid "Y-m-d H:i:s"
33
+ msgstr ""
34
+
35
+ #: ../settings/settings-edit.php:92
36
+ msgid "Email Type"
37
+ msgstr ""
38
 
39
+ #: ../settings/settings-edit.php:93
 
40
  msgid ""
41
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
42
+ "Option 3 & 4 is to send emails with PHP method mail()."
 
43
  msgstr ""
 
 
 
44
 
45
+ #: ../settings/settings-edit.php:107
46
+ msgid "Opt-In Type"
47
+ msgstr ""
48
 
49
+ #: ../settings/settings-edit.php:108
50
  msgid ""
51
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
52
+ "soon as they subscribe to your list. They have to confirm their subscription "
53
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
54
+ "subscriber is not asked to confirm their email address. They are subscribed "
55
+ "directly in the list."
56
+ msgstr ""
 
 
 
 
 
 
 
 
57
 
58
+ #: ../settings/settings-edit.php:139
59
+ msgid "Notify Admin when a new subscriber signs up"
60
+ msgstr ""
61
 
62
+ #: ../settings/settings-edit.php:152
63
+ msgid "Admin Email Subject on new subscriber sign up"
64
+ msgstr ""
65
 
66
+ #: ../settings/settings-edit.php:153
67
+ msgid ""
68
+ "Subject for the admin email whenever a new subscriber signs up and is "
69
+ "confirmed."
70
+ msgstr ""
71
 
72
+ #: ../settings/settings-edit.php:159
73
+ msgid "Admin Email Content on new subscriber signs up"
74
+ msgstr ""
75
 
76
+ #: ../settings/settings-edit.php:160
77
+ msgid ""
78
+ "Content for the admin email whenever a new subscriber signs up and is "
79
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
80
+ msgstr ""
81
 
82
+ #: ../settings/settings-edit.php:168
83
+ msgid "Subject for the email report which will be sent to admin."
84
+ msgstr ""
85
 
86
+ #: ../settings/settings-edit.php:175
87
+ msgid ""
88
+ "Content for the email report which will be sent to admin.<br />(Available "
89
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
90
+ msgstr ""
91
 
92
+ #: ../settings/settings-edit.php:186
93
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
94
+ msgstr ""
95
 
96
+ #: ../settings/settings-edit.php:187
97
+ msgid ""
98
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
99
+ "subscriber signs up."
100
+ msgstr ""
101
 
102
+ #: ../settings/settings-edit.php:193
103
+ msgid "Double Opt-In Email Content (Confirmation Email)"
104
+ msgstr ""
105
 
106
+ #: ../settings/settings-edit.php:194
107
+ msgid ""
108
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
109
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
110
+ msgstr ""
111
 
112
+ #: ../settings/settings-edit.php:200
113
+ msgid "Double Opt-In Confirmation Link"
114
+ msgstr ""
115
 
116
+ #: ../settings/settings-edit.php:207
117
+ msgid ""
118
+ "Text to display after an email address is successfully subscribed from "
119
+ "Double Opt-In (Confirmation) Email"
120
+ msgstr ""
121
 
122
+ #: ../settings/settings-edit.php:215
123
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
124
+ msgstr ""
125
 
126
+ #: ../settings/settings-edit.php:227
127
+ msgid "Subject for Welcome Email"
128
+ msgstr ""
 
129
 
130
+ #: ../settings/settings-edit.php:228
131
+ msgid ""
132
+ "Subject for the subscriber welcome email. This will be sent whenever a "
133
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
134
+ "Opt-In) successfully."
135
+ msgstr ""
136
 
137
+ #: ../settings/settings-edit.php:234
138
+ msgid "Email Content for Welcome Email"
139
+ msgstr ""
 
140
 
141
+ #: ../settings/settings-edit.php:235
142
+ msgid ""
143
+ "Content for the subscriber welcome email whenever a user's email is either "
144
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
145
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
146
+ msgstr ""
147
 
148
+ #: ../settings/settings-edit.php:244
149
+ msgid ""
150
+ "This unsubscribe link is automatically added to all the emails that are sent "
151
+ "from this plugin. It is a readonly field and you are advised not to modify "
152
+ "it."
153
+ msgstr ""
154
 
155
+ #: ../settings/settings-edit.php:251
156
+ msgid ""
157
+ "The text for the unsubscribe link. This text is automatically added with "
158
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
159
+ msgstr ""
160
 
161
+ #: ../settings/settings-edit.php:258
162
+ msgid ""
163
+ "This text will be displayed once user clicks on unsubscribe link from the "
164
+ "email."
165
+ msgstr ""
166
 
167
+ #: ../settings/settings-edit.php:265
168
+ msgid "Error in the Subscribe / Confirmation Link"
169
+ msgstr ""
170
 
171
+ #: ../settings/settings-edit.php:266
172
+ msgid ""
173
+ "Default message to display if there is any issue while clicking on subscribe "
174
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
175
+ msgstr ""
176
 
177
+ #: ../settings/settings-edit.php:273
178
+ msgid ""
179
+ "Default message to display if there is any issue while clicking on "
180
+ "unsubscribe link from the emails."
181
+ msgstr ""
182
 
183
+ #: ../settings/settings-edit.php:372
184
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
185
+ msgstr ""
 
186
 
187
+ #: ../settings/settings-edit.php:377
188
+ msgid "Cron Report"
189
+ msgstr ""
 
190
 
191
+ #: ../settings/settings-edit.php:378
192
+ msgid ""
193
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
194
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
195
+ msgstr ""
196
 
197
+ #: ../settings/settings-edit.php:389
198
+ msgid ""
199
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
200
+ "schedule-cron-emails/?"
201
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
202
+ "Cron?</a>"
203
+ msgstr ""
204
 
205
+ #: ../settings/settings-edit.php:390
 
206
  msgid ""
207
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
208
+ "schedule-cron-emails-in-cpanel/?"
209
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
210
+ "job in cPanel</a>"
211
  msgstr ""
 
 
212
 
213
+ #: ../settings/settings-edit.php:391
214
+ msgid ""
215
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
216
+ "schedule-cron-emails-in-parallels-plesk/?"
217
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
218
+ "job in Plesk</a>"
219
+ msgstr ""
220
 
221
+ #: ../settings/settings-edit.php:392
222
+ msgid ""
223
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
224
+ "if-hosting-doesnt-support-cron-jobs/?"
225
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
226
+ "does not support cron jobs?</a>"
227
+ msgstr ""
228
 
229
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
230
+ #, php-format
231
+ msgid ""
232
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
233
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
234
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
235
+ msgstr ""
236
 
237
+ #: ../help/help.php:178
238
+ msgid "Get more help and tips..."
239
+ msgstr ""
 
240
 
241
+ #: ../help/help.php:192
242
+ #, php-format
243
+ msgid "Version: %s"
244
+ msgstr ""
245
 
246
+ #: ../help/help.php:195
247
+ msgid "Questions? Need Help?"
248
+ msgstr ""
 
249
 
250
+ #: ../help/help.php:196
251
+ msgid "Contact Us"
252
+ msgstr ""
 
253
 
254
+ #: ../help/help.php:236
255
+ msgid "Description"
256
+ msgstr ""
 
257
 
258
+ #: ../help/help.php:238
259
+ msgid ""
260
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
261
+ "leads, send automated new blog post notification emails, create & send "
262
+ "newsletters and manage all this in one single place."
263
+ msgstr ""
264
 
265
+ #: ../help/help.php:240
266
+ msgid "Feature Overview"
267
+ msgstr ""
 
268
 
269
+ #: ../help/help.php:243
270
+ msgid ""
271
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
272
+ "Code)."
273
+ msgstr ""
274
 
275
+ #: ../help/help.php:246
276
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
277
+ msgstr ""
 
278
 
279
+ #: ../help/help.php:249
280
+ msgid "Send automatic welcome email to subscribers."
281
+ msgstr ""
 
282
 
283
+ #: ../help/help.php:252
 
284
  msgid ""
285
+ "Send new post notification emails to subscribers when new posts are "
286
+ "published on your website."
287
  msgstr ""
 
 
288
 
289
+ #: ../help/help.php:255
290
+ msgid "Schedule email (Cron job) or send them manually."
291
+ msgstr ""
 
292
 
293
+ #: ../help/help.php:258
294
+ msgid "Send email notification to admin when a new user signs up."
295
+ msgstr ""
 
296
 
297
+ #: ../help/help.php:261
298
+ msgid "Automatically add Unsubscribe link in the email."
299
+ msgstr ""
 
300
 
301
+ #: ../help/help.php:264
302
+ msgid "Easily migrate subscribers from another app using Import & Export."
303
+ msgstr ""
 
304
 
305
+ #: ../help/help.php:267
306
+ msgid "Use HTML editor to compose newsletters and post notifications."
307
+ msgstr ""
 
308
 
309
+ #: ../help/help.php:270
310
+ msgid "Send newsletters to different groups."
311
+ msgstr ""
 
312
 
313
+ #: ../help/help.php:273
314
+ msgid "Get detailed sent email reports."
315
+ msgstr ""
 
316
 
317
+ #: ../help/help.php:276
318
+ msgid "Control user access (User Roles and Capabilities)."
319
+ msgstr ""
 
320
 
321
+ #: ../help/help.php:279
322
+ msgid "Supports localization and internationalization."
323
+ msgstr ""
 
324
 
325
+ #: ../help/help.php:286
326
+ msgid "Add Subscribe form"
327
+ msgstr ""
328
+
329
+ #: ../help/help.php:291
330
+ #, php-format
331
  msgid ""
332
+ "Use any of the following 3 methods :<br>\n"
333
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
334
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
335
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
336
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
337
+ " c) Copy and past this php code to your desired template location : "
338
+ "<strong>%s</strong>"
339
  msgstr ""
 
 
 
340
 
341
+ #: ../help/help.php:296
342
+ msgid "Additional form settings"
343
+ msgstr ""
 
344
 
345
+ #: ../help/help.php:311
346
+ #, php-format
347
+ msgid "Modify %s"
348
+ msgstr ""
349
 
350
+ #: ../help/help.php:311
351
+ msgid "default text, email contents"
352
+ msgstr ""
 
353
 
354
+ #: ../help/help.php:311
355
+ msgid ""
356
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
357
+ "Roles"
358
+ msgstr ""
359
 
360
+ #: ../help/help.php:320
361
+ msgid "How to change/update/translate any texts from the plugin?"
362
+ msgstr ""
 
363
 
364
+ #: ../help/help.php:333
365
+ msgid "Usage"
366
+ msgstr ""
 
367
 
368
+ #: ../help/help.php:336
369
+ msgid "Compose and Send Newsletter Emails"
370
+ msgstr ""
 
371
 
372
+ #: ../help/help.php:339
373
+ msgid "Compose and Send Post Notification Emails when new posts are published"
374
+ msgstr ""
 
375
 
376
+ #: ../help/help.php:342
377
+ msgid "Keywords in the Post Notifications"
378
+ msgstr ""
 
379
 
380
+ #: ../help/help.php:345
381
+ msgid "Send a test post notification email to myself/testgroup"
 
 
 
 
 
 
 
 
 
382
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
 
384
+ #: ../help/help.php:348
385
+ msgid "Check sent emails"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
 
388
+ #: ../help/help.php:355
389
+ msgid "Cron Job Setup"
390
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
 
392
+ #: ../help/help.php:361
393
+ msgid "Schedule Cron Emails in cPanel"
394
+ msgstr ""
395
 
396
+ #: ../help/help.php:364
397
+ msgid "Schedule Cron Emails in Parallels Plesk"
398
+ msgstr ""
399
 
400
+ #: ../help/help.php:367
401
+ msgid "Hosting doesn’t support Cron Jobs?"
402
+ msgstr ""
 
403
 
404
+ #: ../help/help.php:374
405
+ msgid "Troubleshooting Steps"
406
+ msgstr ""
 
407
 
408
+ #: ../help/help.php:382
409
+ msgid "FAQ's"
410
+ msgstr ""
 
 
411
 
412
+ #: ../help/help.php:389
413
+ msgid "Want to do more? Here's how.."
414
+ msgstr ""
415
 
416
+ #: ../help/help.php:392
417
+ msgid "Allow Subscribers to get subscribed to any group"
418
+ msgstr ""
419
 
420
+ #: ../help/help.php:397
421
+ msgid "Using our free "
422
  msgstr ""
 
423
 
424
+ #: ../help/help.php:398
425
+ msgid "Group Selector"
426
+ msgstr ""
427
 
428
+ #: ../help/help.php:399
 
429
  msgid ""
430
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
431
+ "grouping option right next to the form."
432
  msgstr ""
 
 
 
 
 
 
433
 
434
+ #: ../help/help.php:402
435
+ msgid "The user can then subscribe to whichever group most appeals to them."
436
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
437
 
438
+ #: ../help/help.php:405
439
+ msgid "For example: Subscribe either to Updates or to Offers."
440
+ msgstr ""
441
 
442
+ #: ../help/help.php:409
443
+ msgid "Show your subscribe form inside attractive popups"
444
+ msgstr ""
445
 
446
+ #: ../help/help.php:414
447
  msgid ""
448
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
449
+ "bars, slide-ins, sidebars, full screen popups etc."
450
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
 
452
+ #: ../help/help.php:417
453
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
454
+ msgstr ""
455
 
456
+ #: ../help/help.php:421
457
  msgid ""
458
+ "Icegram's beautiful designs instantly capture user attention and help "
459
+ "increase sign-ups to your WordPress website."
460
+ msgstr ""
461
+
462
+ #: ../help/help.php:424 ../help/help.php:444
463
+ #, php-format
464
+ msgid "How to %s"
465
  msgstr ""
 
 
466
 
467
+ #: ../help/help.php:424
468
+ msgid "show subscribe form inside a popup"
469
  msgstr ""
 
470
 
471
+ #: ../help/help.php:428
472
+ msgid "Get beautiful and elegant form styles"
473
  msgstr ""
 
474
 
475
+ #: ../help/help.php:434
476
+ msgid "Email subscribers easily integrates with another free plugin "
477
+ msgstr ""
478
 
479
+ #: ../help/help.php:435
480
+ msgid "Rainmaker"
481
+ msgstr ""
482
 
483
+ #: ../help/help.php:438
484
+ msgid ""
485
+ "Rainmaker extends the core features of Email Subscribers and provides "
486
+ "elegant form styles."
487
+ msgstr ""
488
 
489
+ #: ../help/help.php:441
490
+ msgid ""
491
+ "These styles are well designed and beautify your subscription form making it "
492
+ "more appealing."
493
+ msgstr ""
494
 
495
+ #: ../help/help.php:444
496
+ msgid "add Rainmaker’s form in Email Subscribers"
497
+ msgstr ""
498
 
499
+ #: ../sendmail/sendmail.php:59
500
+ msgid "Email sent successfully. "
501
  msgstr ""
 
 
502
 
503
+ #: ../classes/es-register.php:164
504
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
505
+ msgstr ""
506
 
507
+ #: ../classes/es-register.php:707
508
+ msgctxt "timezone date format"
509
+ msgid "Y-m-d"
510
+ msgstr ""
511
 
512
+ #: ../classes/es-register.php:737
513
+ msgid "Post Notifications more often than Newsletter"
514
+ msgstr ""
515
 
516
+ #: ../classes/es-register.php:739
517
+ msgid "Newsletter more often than Post Notifications"
518
+ msgstr ""
519
 
520
+ #: ../classes/es-register.php:741
521
+ msgid "Post Notification &amp; Newsletter equally"
522
+ msgstr ""
523
 
524
+ #: ../classes/es-register.php:759
525
+ msgid "Using Double Opt In"
526
+ msgstr ""
527
 
528
+ #: ../classes/es-register.php:761
529
+ msgid "Using Single Opt In"
530
+ msgstr ""
531
 
532
+ #: ../classes/es-register.php:810
533
+ msgid "Nah, I don't like improvements"
 
534
  msgstr ""
 
 
535
 
536
+ #: ../classes/es-register.php:816
537
+ msgid "Next"
538
+ msgstr ""
539
 
540
+ #: ../notification/notification-add.php:33
541
  msgid "Please select subscribers group."
542
  msgstr "Bitte wähle die Abonnentengruppe."
543
 
544
+ #: ../notification/notification-add.php:39
545
  msgid "Please select notification status."
546
  msgstr "Bitte wähle den Benachrichtigungsstatus."
547
 
548
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
549
  msgid "Please select notification mail subject. Use compose menu to create new."
550
  msgstr ""
551
+ "Bitte wähle das Subjekt der Benachrichtigungsmail. Im Menü \"Erstellen\" "
552
+ "kannst Du ein Neues erstellen."
553
 
554
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
555
  msgid "Please select post categories."
556
  msgstr "Bitte wähle die Kategorie der Beiträge."
557
 
558
+ #: ../notification/notification-add.php:71
559
  msgid "Notification successfully created. "
560
  msgstr "Benachrichtigung erfolgreich erstellt. "
561
 
562
+ #: ../notification/notification-add.php:112
563
  msgid "Add Notification"
564
  msgstr "Benachrichtigung hinzufügen"
565
 
566
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
567
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
568
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
569
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
570
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
571
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
572
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
573
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
574
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
575
+ msgid "Help"
576
+ msgstr "Hilfe"
577
+
578
+ #: ../notification/notification-add.php:120
579
  msgid "Select Subscribers Group"
580
  msgstr "Wähle Abonnentengruppe"
581
 
582
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
583
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
584
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
585
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
586
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
587
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
588
  msgid "Select"
589
  msgstr "Wähle"
590
 
591
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
592
+ #: 162
593
  msgid "Select Notification Email Subject"
594
  msgstr "Wähle das Subjekt der Benachrichtigungsmail"
595
 
596
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
597
+ #: 163
598
  msgid "(Use compose menu to create new)"
599
  msgstr "(im Menü \"Erstellen\" können neue erstellt werden)"
600
 
601
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
602
+ #: 190
603
  msgid "Select Post Categories"
604
  msgstr "Wähle Beitragskategorie"
605
 
606
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
607
+ #: 225
608
  msgid "Check All"
609
  msgstr "Alle auswählen"
610
 
611
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
612
+ #: 226
613
  msgid "Uncheck All"
614
  msgstr "Alle abwählen"
615
 
616
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
617
+ #: 233
618
  msgid "Select your Custom Post Type"
619
  msgstr "Wähle Deinen individuellen Beitragstyp"
620
 
621
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
622
+ #: 234
623
  msgid "(Optional)"
624
  msgstr "(Optional)"
625
 
626
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
627
+ #: 268
628
  msgid "No Custom Post Types Available"
629
  msgstr "Keine individuellen Beitragstypen vorhanden"
630
 
631
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
632
+ #: 275
633
  msgid "Select Notification Status when a new post is published"
634
  msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
635
 
636
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
637
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
638
  msgid "Send email immediately"
639
  msgstr "Sende Email sofort"
640
 
641
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
642
+ #: 132 ../notification/notification-edit.php:280
643
  msgid "Add to cron and send email via cron job"
644
  msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
645
 
646
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
647
+ #: 281
648
  msgid "Disable email notification"
649
  msgstr "Emailbenachrichtigungen deaktivieren"
650
 
651
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
652
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
653
+ #: 117 ../compose/compose-add.php:105
654
+ msgid "Save"
655
+ msgstr "Sichern"
656
 
657
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
658
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
659
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
660
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
661
+ msgid "Oops, selected details does not exists."
662
+ msgstr "Oops, die gewählten Details existieren nicht."
663
 
664
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
665
+ #: compose/compose-show.php:47
666
+ msgid "Selected record deleted."
667
+ msgstr "Ausgewählte Einträge gelöscht."
668
 
669
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
670
+ #: classes/es-register.php:152
671
+ msgid "Post Notifications"
672
+ msgstr "Benachrichtigungen"
673
 
674
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
675
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
676
+ msgid "Add New"
677
+ msgstr "Neu hinzufügen"
678
 
679
+ #: ../notification/notification-show.php:57
680
  msgid ""
681
+ "Use this to setup and send notification emails to your subscribers when a "
682
+ "new post is published in your blog."
683
  msgstr ""
684
+ "Stelle hier ein ob und wie Abonnenten über neue Beiträge im Blog informiert "
685
+ "werden."
686
+
687
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
688
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:84
689
+ msgid "Email Subject"
690
+ msgstr "Emailsubjekt"
691
 
692
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
693
+ #: 77
694
  msgid "Subscribers Group"
695
  msgstr "Abonnentengruppe"
696
 
697
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
698
+ #: 78
699
  msgid "Post Categories / Custom Post Types"
700
  msgstr "Beitragskategorien / Individuelle Beitragstypen"
701
 
702
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
703
+ #: 79
704
  msgid "Notification Status"
705
  msgstr "Benachrichtigungsstatus"
706
 
707
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
708
+ #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
709
+ msgid "Edit"
710
+ msgstr "Bearbeiten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
711
 
712
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
713
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
714
+ #: php:102
715
+ msgid "Delete"
716
+ msgstr "Löschen"
717
 
718
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
719
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
720
+ #: 432 ../compose/compose-show.php:111
721
+ msgid "No records available."
722
+ msgstr "Keine Einträge verfügbar."
723
 
724
+ #: ../notification/notification-edit.php:49
725
+ msgid "Please select subscribers group"
726
+ msgstr "Bitte wähle die Abonnentengruppe"
727
 
728
+ #: ../notification/notification-edit.php:55
729
+ msgid "Please select notification status"
730
+ msgstr "Bitte wähle den Benachrichtigungsstatus"
731
 
732
+ #: ../notification/notification-edit.php:89
733
+ msgid "Notification successfully updated. "
734
+ msgstr "Benachrichtigung erfolgreich aktualisiert. "
735
 
736
+ #: ../notification/notification-edit.php:122
737
+ msgid "Edit Notification"
738
+ msgstr "Benachrichtigung bearbeiten"
739
 
740
+ #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
741
+ #: php:289
742
+ msgid "Update Subscribers Group"
743
+ msgstr "Aktualisiere die Abonnentengruppe"
 
744
 
745
+ #. Plugin Name of the plugin/theme
746
+ msgid "Email Subscribers & Newsletters"
747
+ msgstr "Email Subscribers & Newsletters"
748
 
749
+ #. Description of the plugin/theme
750
  msgid ""
751
+ "Add subscription forms on website, send HTML newsletters & automatically "
752
+ "notify subscribers about new blog posts once it is published."
753
  msgstr ""
754
+ "Füge das Anmeldeformular zur Webseite hinzu, sende HTML Newsletter & "
755
+ "automatische Benachrichtigungen an die Abonnenten sobald neue Beiträge "
756
+ "veröffentlicht werden."
 
 
 
 
 
 
 
757
 
758
+ #. Author of the plugin/theme
759
+ msgid "Icegram"
760
+ msgstr "Icegram"
761
 
762
+ #: ../settings/settings-edit.php:23
763
  msgid "Admin"
764
  msgstr "Admin"
765
 
766
+ #: ../settings/settings-edit.php:24
767
  msgid "Signup Confirmation"
768
  msgstr "Anmeldebestätigung"
769
 
770
+ #: ../settings/settings-edit.php:25
771
+ msgid "Cron"
772
+ msgstr "Cron"
773
+
774
+ #: ../settings/settings-edit.php:26
775
  msgid "User Roles"
776
  msgstr "Benutzerrollen"
777
 
778
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
779
+ #: register.php:158
780
+ msgid "Settings"
781
+ msgstr "Einstellungen"
782
 
783
+ #: ../settings/settings-edit.php:67
784
  msgid "Save Settings"
785
  msgstr "Einstellungen speichern"
786
 
787
+ #: ../settings/settings-edit.php:81
788
  msgid "Sender of Notifications"
789
  msgstr "Absender von Benachrichtigungen"
790
 
791
+ #: ../settings/settings-edit.php:82
 
 
 
 
 
 
 
 
 
 
 
 
792
  msgid ""
793
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
794
+ "this plugin."
795
  msgstr ""
796
+ "Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von "
797
+ "diesem Plugin verschickt werden."
798
 
799
+ #: ../settings/settings-edit.php:97
800
  msgid "1. WP HTML MAIL"
801
  msgstr "1. WP HTML MAIL"
802
 
803
+ #: ../settings/settings-edit.php:98
804
  msgid "2. WP PLAINTEXT MAIL"
805
  msgstr "2. WP PLAINTEXT MAIL"
806
 
807
+ #: ../settings/settings-edit.php:99
808
  msgid "3. PHP HTML MAIL"
809
  msgstr "3. PHP HTML MAIL"
810
 
811
+ #: ../settings/settings-edit.php:100
812
  msgid "4. PHP PLAINTEXT MAIL"
813
  msgstr "4. PHP PLAINTEXT MAIL"
814
 
815
+ #: ../settings/settings-edit.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
  msgid "Double Opt In"
817
  msgstr "Doppeltes Opt In"
818
 
819
+ #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:
820
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
821
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
822
+ #: subscriber-edit.php:150
823
  msgid "Single Opt In"
824
  msgstr "Einfaches Opt In"
825
 
826
+ #: ../settings/settings-edit.php:119
827
  msgid "Image Size"
828
  msgstr "Bildgröße"
829
 
830
+ #: ../settings/settings-edit.php:120
831
  msgid ""
832
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
833
+ "Emails."
834
  msgstr ""
835
+ "Wähle die Bildgröße für ###POSTIMAGE### wie es in Benachrichtigungsmails "
836
+ "angezeigt wird."
837
 
838
+ #: ../settings/settings-edit.php:124
839
  msgid "Full Size"
840
  msgstr "Volle Größe"
841
 
842
+ #: ../settings/settings-edit.php:125
843
  msgid "Medium Size"
844
  msgstr "Mittlere Größe"
845
 
846
+ #: ../settings/settings-edit.php:126
847
  msgid "Thumbnail"
848
  msgstr "Vorschau"
849
 
850
+ #: ../settings/settings-edit.php:132
851
  msgid "Admin Email Addresses"
852
  msgstr "Admin Emailadresse"
853
 
854
+ #: ../settings/settings-edit.php:133
 
 
 
 
 
 
 
 
 
 
 
 
855
  msgid ""
856
+ "Enter the admin email addresses that should receive notifications (separated "
857
+ "by comma)."
858
  msgstr ""
859
+ "Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen "
860
+ "(durch Kommas getrennt)."
 
 
 
 
861
 
862
+ #: ../settings/settings-edit.php:140
863
  msgid ""
864
+ "To send admin email notifications for the new subscriber. This option must "
865
+ "be set to YES."
866
  msgstr ""
867
+ "Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent "
868
+ "dazugekommen ist. Diese Option muss auf JA stehen."
869
 
870
+ #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
871
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
872
+ msgid "YES"
873
+ msgstr "Ja"
874
 
875
+ #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
876
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
877
+ msgid "NO"
878
+ msgstr "Nein"
 
 
 
 
879
 
880
+ #: ../settings/settings-edit.php:167
881
  msgid "Sent Report Subject"
882
  msgstr "Subjekt des Sendeberichts"
883
 
884
+ #: ../settings/settings-edit.php:174
 
 
 
 
 
 
885
  msgid "Sent Report Content"
886
  msgstr "Inhalt des Sendeberichts"
887
 
888
+ #: ../settings/settings-edit.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
889
  msgid "It is a readonly field and you are advised not to modify it."
890
  msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
891
 
892
+ #: ../settings/settings-edit.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893
  msgid ""
894
+ "This text will be displayed once user clicks on email confirmation link from "
895
+ "the Double Opt In (confirmation) Email."
 
896
  msgstr ""
897
+ "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in "
898
+ "der Double Opt In Bestätigungsmail klickt."
 
 
 
 
 
899
 
900
+ #: ../settings/settings-edit.php:216
901
  msgid ""
902
+ "To send welcome email to subscriber after successful signup. This option "
903
+ "must be set to YES."
 
904
  msgstr ""
905
+ "Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich "
906
+ "registriert ist. Diese Option muss auf JA stehen."
 
907
 
908
+ #: ../settings/settings-edit.php:243
909
  msgid "Unsubscribe Link"
910
  msgstr "Link zum Abmelden"
911
 
912
+ #: ../settings/settings-edit.php:250
 
 
 
 
 
 
 
 
 
913
  msgid "Unsubscribe Text in Email"
914
  msgstr "Inhalt der Abmeldeemail"
915
 
916
+ #: ../settings/settings-edit.php:257
 
 
 
 
 
 
 
 
917
  msgid "Text to display after an email address is unsubscribed"
918
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
919
 
920
+ #: ../settings/settings-edit.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
921
  msgid "Error in the Unsubscribe Link"
922
  msgstr "Fehler im Abmeldelink"
923
 
924
+ #: ../settings/settings-edit.php:285
 
 
 
 
 
 
 
925
  msgid "Select user roles who can access following menus. Only Admin can change this."
926
  msgstr ""
927
+ "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur "
928
+ "ein Admin kann das ändern."
929
 
930
+ #: ../settings/settings-edit.php:291
931
  msgid "Subscribers Menu"
932
  msgstr "Menü Abonnenten"
933
 
934
+ #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
935
+ #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
936
  #: settings/settings-edit.php:343
937
  msgid "Administrator Only"
938
  msgstr "Nur für Administratoren"
939
 
940
+ #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
941
+ #: settings/settings-edit.php:320 ../settings/settings-edit.php:332 ..
942
  #: settings/settings-edit.php:344
943
  msgid "Administrator/Editor"
944
  msgstr "Für Administratoren / Editoren"
945
 
946
+ #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
947
+ #: settings/settings-edit.php:321 ../settings/settings-edit.php:333 ..
948
  #: settings/settings-edit.php:345
949
  msgid "Administrator/Editor/Author/Contributor"
950
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
951
 
952
+ #: ../settings/settings-edit.php:303
953
  msgid "Compose Menu"
954
  msgstr "Menü Erstellen"
955
 
956
+ #: ../settings/settings-edit.php:315
957
  msgid "Post Notifications Menu"
958
  msgstr "Menü Benachrichtigungen"
959
 
960
+ #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
961
+ #: register.php:154 ../classes/es-register.php:155
962
+ msgid "Newsletters"
963
+ msgstr "Newsletter"
964
+
965
+ #: ../settings/settings-edit.php:339
966
  msgid "Reports Menu"
967
  msgstr "Menü Berichte"
968
 
969
+ #: ../settings/settings-edit.php:356
970
  msgid "Cron job URL"
971
  msgstr "Cron Job URL"
972
 
973
+ #: ../settings/settings-edit.php:357
974
  msgid ""
975
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
976
+ "modify it."
977
  msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
978
 
979
+ #: ../settings/settings-edit.php:366
980
  msgid "Email Count"
981
  msgstr "Anzahl Emails"
982
 
983
+ #: ../settings/settings-edit.php:367
984
  msgid "Number of emails that you want to trigger per hour."
985
  msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
986
 
987
+ #: ../settings/settings-edit.php:388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
988
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
989
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
990
 
991
+ #: ../settings/settings-edit.php:507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
992
  msgid "Please enter sender of notifications from name."
993
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
994
 
995
+ #: ../settings/settings-edit.php:512
996
  msgid "Please enter sender of notifications from email."
997
  msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
998
 
999
+ #: ../settings/settings-edit.php:556
1000
  msgid "Please enter valid mail count."
1001
  msgstr "Bitte gib eine gültige Mailanzahl ein."
1002
 
1003
+ #: ../settings/settings-edit.php:569
1004
  msgid "Settings Saved."
1005
  msgstr "Einstellungen gesichert."
1006
 
1007
+ #: ../settings/settings-edit.php:572
1008
  msgid "Oops, unable to update."
1009
  msgstr "Oops.. Update nicht möglich."
1010
 
1011
+ #: ../settings/setting-sync.php:16
1012
+ msgid "Table sync completed successfully."
1013
+ msgstr "Tabelle erfolgreich synchronisiert."
1014
 
1015
+ #: ../settings/setting-sync.php:29
1016
+ msgid "Sync plugin tables"
1017
+ msgstr "Plugintabellen synchronisieren"
1018
 
1019
+ #: ../settings/setting-sync.php:33
1020
+ msgid "Click to sync tables"
1021
+ msgstr "Klicken um die Plugintabellen zu synchronisieren"
 
 
 
 
1022
 
1023
+ #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1024
+ msgid "Preview Mail"
1025
+ msgstr "Emailvorschau"
1026
 
1027
+ #: ../sentmail/sentmail-preview.php:42
1028
+ msgid "Back"
1029
+ msgstr "Zurück"
1030
 
1031
+ #: ../sentmail/sentmail-show.php:43
1032
+ msgid "Successfully deleted all reports except latest 10."
1033
+ msgstr "Alle Berichte (bis auf die letzten 10) wurden erfolgreich gelöscht."
1034
 
1035
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1036
+ msgid " &lt;&lt; "
1037
+ msgstr " &lt;&lt; "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1038
 
1039
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1040
+ msgid " &gt;&gt; "
1041
+ msgstr " &gt;&gt; "
1042
 
1043
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1044
+ #: register.php:161
1045
+ msgid "Reports"
1046
+ msgstr "Berichte"
1047
 
1048
+ #: ../sentmail/sentmail-show.php:97
1049
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1050
+ msgstr "Berichte für alle verschickten Newsletter & Benachrichtigungen ."
1051
 
1052
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1053
+ msgid "View Reports"
1054
+ msgstr "Berichte anzeigen"
1055
 
1056
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1057
+ #: compose/compose-show.php:103
1058
+ msgid "Preview"
1059
+ msgstr "Vorschau"
1060
 
1061
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1062
+ msgid "Type"
1063
+ msgstr "Typ"
1064
 
1065
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1066
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1067
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1068
+ #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1069
+ msgid "Status"
1070
+ msgstr "Status"
1071
 
1072
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1073
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
1074
+ msgid "Sent"
1075
+ msgstr "Gesendet"
1076
 
1077
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1078
+ msgid "Start Date"
1079
+ msgstr "Startdatum"
1080
 
1081
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1082
+ msgid "End Date"
1083
+ msgstr "Enddatum"
1084
 
1085
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1086
+ msgid "Total"
1087
+ msgstr "Gesamt"
1088
 
1089
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1090
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
1091
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1092
+ #: subscriber-export.php:56
1093
+ msgid "Action"
1094
+ msgstr "Aktion"
1095
 
1096
+ #: ../sentmail/sentmail-show.php:190
1097
+ msgid "Optimize Table & Delete Records"
1098
+ msgstr "Tabelle optimieren und Einträge löschen"
 
 
1099
 
1100
+ #: ../sentmail/sentmail-show.php:199
1101
+ msgid ""
1102
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1103
+ "button to delete all reports except latest 10."
1104
+ msgstr ""
1105
+ "Hinweis: Bitte klicke auf <strong>Tabelle optimieren und Einträge "
1106
+ "löschen</strong> um alle Berichte mit Ausnahme der letzten 10 zu löschen."
1107
 
1108
+ #: ../sentmail/deliverreport-show.php:14
1109
+ msgid "Oops.. Unexpected error occurred. Please try again."
1110
+ msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es nochmal."
1111
 
1112
+ #: ../sentmail/deliverreport-show.php:57
1113
+ msgid "Delivery Report"
1114
+ msgstr "Sendebericht"
1115
 
1116
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
1117
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
1118
+ #: export.php:53
1119
+ msgid "Sno"
1120
+ msgstr "Alle"
1121
 
1122
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
1123
+ msgid "Email"
1124
+ msgstr "Email"
1125
 
1126
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
1127
+ msgid "Sent Date"
1128
+ msgstr "Sendedatum"
1129
 
1130
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1131
+ msgid "Viewed Status"
1132
+ msgstr "Lesestatus"
1133
 
1134
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
1135
+ msgid "Viewed Date"
1136
+ msgstr "Gelesen am"
1137
 
1138
+ #: ../subscribers/view-subscriber-import.php:44
1139
  msgid ""
1140
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1141
+ "the Group name."
1142
  msgstr ""
1143
+ "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
1144
+ "nicht zugelassen."
1145
 
1146
+ #: ../subscribers/view-subscriber-import.php:92
1147
  msgid "email imported."
1148
  msgstr "Email(s) importiert."
1149
 
1150
+ #: ../subscribers/view-subscriber-import.php:93
1151
  msgid "email already exists."
1152
  msgstr "Email existiert bereits."
1153
 
1154
+ #: ../subscribers/view-subscriber-import.php:94
1155
  msgid "email are invalid."
1156
  msgstr "Email(s) sind ungültig."
1157
 
1158
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1159
+ #: import.php:126
1160
  msgid "Click here"
1161
  msgstr "Klicke hier"
1162
 
1163
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1164
+ #: import.php:126
1165
  msgid " to view details."
1166
  msgstr " um Details zu sehen."
1167
 
1168
+ #: ../subscribers/view-subscriber-import.php:105
1169
  msgid "File Upload Failed."
1170
  msgstr "Dateiupload fehlgeschlagen."
1171
 
1172
+ #: ../subscribers/view-subscriber-import.php:142
1173
  msgid "Import Email Addresses"
1174
  msgstr "Emailadressen importieren"
1175
 
1176
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1177
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1178
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
1179
+ #: subscribers/view-subscriber-sync.php:89
1180
+ msgid "Add New Subscriber"
1181
+ msgstr "Neu hinzufügen"
1182
+
1183
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1184
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
1185
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1186
+ msgid "Export"
1187
+ msgstr "Export"
1188
+
1189
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1190
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1191
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1192
+ #: subscribers/view-subscriber-sync.php:143
1193
+ msgid "Sync"
1194
+ msgstr "Synchronisieren"
1195
+
1196
+ #: ../subscribers/view-subscriber-import.php:155
1197
  msgid "Select CSV file"
1198
  msgstr "CSV-Datei auswählen"
1199
 
1200
+ #: ../subscribers/view-subscriber-import.php:157
1201
  msgid "Check CSV structure "
1202
  msgstr "Überprüfe die CSV-Struktur "
1203
 
1204
+ #: ../subscribers/view-subscriber-import.php:158
1205
  msgid "from here"
1206
  msgstr "hier"
1207
 
1208
+ #: ../subscribers/view-subscriber-import.php:169
1209
  msgid "Select Subscribers Email Status"
1210
  msgstr "Wähle den Emailstatus des Abonnenten"
1211
 
1212
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1213
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1214
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1215
+ msgid "Confirmed"
1216
+ msgstr "Bestätigt"
1217
+
1218
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1219
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1220
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1221
+ msgid "Unconfirmed"
1222
+ msgstr "Unbestätigt"
1223
+
1224
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1225
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1226
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1227
+ msgid "Unsubscribed"
1228
+ msgstr "Abgemeldet"
1229
+
1230
+ #: ../subscribers/view-subscriber-import.php:185
1231
  msgid "Select (or) Create Group for Subscribers"
1232
  msgstr "Wähle oder erstelle die Gruppe für die Abonnenten"
1233
 
1234
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1235
+ #: add.php:174
1236
+ msgid "(or)"
1237
+ msgstr "(oder)"
1238
+
1239
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1240
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1241
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1242
+ #: subscribers/view-subscriber-sync.php:90
1243
+ msgid "Import"
1244
+ msgstr "Import"
1245
+
1246
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1247
+ #: sendmail/sendmail.php:18
1248
+ msgid "Click Here"
1249
+ msgstr "Hier klicken"
1250
+
1251
+ #: ../subscribers/view-subscriber-show.php:45
1252
  msgid "Selected details does not exists."
1253
  msgstr "Die gewählten Details existieren nicht."
1254
 
1255
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1256
+ #: php:95
1257
  msgid "Record deleted."
1258
  msgstr "Eintrag gelöscht."
1259
 
1260
+ #: ../subscribers/view-subscriber-show.php:67
1261
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1262
  msgstr ""
1263
+ "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
1264
+ "geändert werden."
1265
 
1266
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1267
+ #: php:134
1268
  msgid "Confirmation emails Resent Successfully."
1269
  msgstr "Bestätigungsmail wurde neu verschickt."
1270
 
1271
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1272
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1273
+ #: subscriber-show.php:216
1274
  msgid "No record was selected."
1275
  msgstr "Kein Eintrag ausgewählt."
1276
 
1277
+ #: ../subscribers/view-subscriber-show.php:115
1278
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1279
  msgstr ""
1280
+ "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
1281
+ "geändert werden."
1282
 
1283
+ #: ../subscribers/view-subscriber-show.php:163
1284
  msgid "Subscribers Group updated."
1285
  msgstr "Abonnentengruppe aktualisiert."
1286
 
1287
+ #: ../subscribers/view-subscriber-show.php:168
1288
  msgid "Please select New group to update."
1289
  msgstr "Bitte wähle die neue Gruppe aus."
1290
 
1291
+ #: ../subscribers/view-subscriber-show.php:202
1292
  msgid "Subscribers Status updated."
1293
  msgstr "Abonnentenstatus aktualisiert."
1294
 
1295
+ #: ../subscribers/view-subscriber-show.php:207
1296
  msgid "Please select New Status to update."
1297
  msgstr "Bitte wähle den neuen Status aus."
1298
 
1299
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1300
+ #: classes/es-register.php:146
1301
+ msgid "Subscribers"
1302
+ msgstr "Abonnenten"
1303
+
1304
+ #: ../subscribers/view-subscriber-show.php:252
1305
+ #, php-format
1306
  msgid "Total Subscribers: %s"
1307
  msgstr "Abonnenten insgesamt: %s"
1308
 
1309
+ #: ../subscribers/view-subscriber-show.php:254
1310
+ #, php-format
1311
  msgid "Active Subscribers: %s"
1312
  msgstr "Abonnenten aktiv: %s"
1313
 
1314
+ #: ../subscribers/view-subscriber-show.php:286
1315
  msgid "Bulk Actions"
1316
  msgstr "Mehrfachaktionen"
1317
 
1318
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1319
+ #: show.php:417
1320
  msgid "Resend Confirmation"
1321
  msgstr "Benachrichtigung erneut versenden"
1322
 
1323
+ #: ../subscribers/view-subscriber-show.php:290
1324
  msgid "Update Subscribers Status"
1325
  msgstr "Abonnentenstatus aktualisieren"
1326
 
1327
+ #: ../subscribers/view-subscriber-show.php:293
1328
  msgid "Select Group"
1329
  msgstr "Wähle Gruppe"
1330
 
1331
+ #: ../subscribers/view-subscriber-show.php:308
1332
  msgid "Select Status"
1333
  msgstr "Status wählen"
1334
 
1335
+ #: ../subscribers/view-subscriber-show.php:314
1336
  msgid "Apply"
1337
  msgstr "Anwenden"
1338
 
1339
+ #: ../subscribers/view-subscriber-show.php:318
1340
  msgid "All Groups"
1341
  msgstr "Alle Gruppen"
1342
 
1343
+ #: ../subscribers/view-subscriber-show.php:335
1344
  msgid "All Status"
1345
  msgstr "Alle Stati"
1346
 
1347
+ #: ../subscribers/view-subscriber-show.php:342
1348
  msgid "1 to 500 emails"
1349
  msgstr "1 bis 500 Emails"
1350
 
1351
+ #: ../subscribers/view-subscriber-show.php:343
1352
  msgid "501 to 1000"
1353
  msgstr "501 bis 1000"
1354
 
1355
+ #: ../subscribers/view-subscriber-show.php:344
1356
  msgid "1001 to 1500"
1357
  msgstr "1001 bis 1500"
1358
 
1359
+ #: ../subscribers/view-subscriber-show.php:345
1360
  msgid "1501 to 2000"
1361
  msgstr "1501 bis 2000"
1362
 
1363
+ #: ../subscribers/view-subscriber-show.php:346
1364
  msgid "2001 to 4000"
1365
  msgstr "2001 bis 4000"
1366
 
1367
+ #: ../subscribers/view-subscriber-show.php:347
1368
  msgid "4001 to 6000"
1369
  msgstr "4001 bis 6000"
1370
 
1371
+ #: ../subscribers/view-subscriber-show.php:348
1372
  msgid "6001 to 10000"
1373
  msgstr "6001 bis 10000"
1374
 
1375
+ #: ../subscribers/view-subscriber-show.php:349
1376
  msgid "Display All"
1377
  msgstr "Alle anzeigen"
1378
 
1379
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1380
+ #: show.php:373
1381
  msgid "Email Address"
1382
  msgstr "Emailadresse"
1383
 
1384
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1385
+ #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1386
+ msgid "Name"
1387
+ msgstr "Name"
1388
+
1389
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1390
+ #: show.php:376
1391
  msgid "Group"
1392
  msgstr "Gruppe"
1393
 
1394
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1395
+ #: show.php:377
1396
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1397
  msgstr "Anmeldedatum und -Zeit<br>(Y-M-D H:I:S)"
1398
 
1399
+ #: ../subscribers/view-subscriber-export.php:34
1400
+ msgid "Export Email Addresses"
1401
+ msgstr "Emailadressen exportieren"
1402
 
1403
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1404
+ #: export.php:54
1405
+ msgid "Type of List to Export"
1406
+ msgstr "Listentyp für den Export"
1407
 
1408
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1409
+ #: export.php:55
1410
+ msgid "Total Emails Count"
1411
+ msgstr "Gesamte Anzahl Emails"
1412
 
1413
+ #: ../subscribers/view-subscriber-export.php:61
1414
+ msgid "1"
1415
+ msgstr "1"
1416
 
1417
+ #: ../subscribers/view-subscriber-export.php:62
1418
+ msgid "All Subscribers"
1419
+ msgstr "Alle Abonnenten"
1420
 
1421
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1422
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1423
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1424
+ msgid "Click to Export in CSV"
1425
+ msgstr "Klicken um nach CSV zu exportieren"
1426
+
1427
+ #: ../subscribers/view-subscriber-export.php:67
1428
+ msgid "2"
1429
+ msgstr "2"
1430
+
1431
+ #: ../subscribers/view-subscriber-export.php:68
1432
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1433
+ msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
1434
 
1435
+ #: ../subscribers/view-subscriber-export.php:73
1436
+ msgid "3"
1437
+ msgstr "3"
 
1438
 
1439
+ #: ../subscribers/view-subscriber-export.php:74
1440
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1441
+ msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
1442
+
1443
+ #: ../subscribers/view-subscriber-export.php:79
1444
+ msgid "4"
1445
+ msgstr "4"
1446
+
1447
+ #: ../subscribers/view-subscriber-export.php:80
1448
+ msgid "WordPress Registered Users"
1449
+ msgstr "Registrierte WordPress Benutzer"
1450
+
1451
+ #: ../subscribers/view-subscriber-export.php:85
1452
+ msgid "5"
1453
+ msgstr "5"
1454
+
1455
+ #: ../subscribers/view-subscriber-export.php:86
1456
+ msgid "Commented Authors"
1457
+ msgstr "Kommentierte Autoren"
1458
+
1459
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1460
+ #: php:54
1461
+ msgid "Please enter subscriber email address."
1462
+ msgstr "Bitte gib die Emailadresse des Abonnenten ein."
1463
+
1464
+ #: ../subscribers/view-subscriber-add.php:49
1465
+ msgid "Please select or create your group for this email."
1466
+ msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
1467
+
1468
+ #: ../subscribers/view-subscriber-add.php:56
1469
  msgid ""
1470
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1471
+ "the group name."
1472
  msgstr ""
1473
+ "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
1474
+ "nicht zugelassen."
1475
 
1476
+ #: ../subscribers/view-subscriber-add.php:66
1477
+ msgid "Subscriber has been saved."
1478
+ msgstr "Abonnent wurde gespeichert."
1479
+
1480
+ #: ../subscribers/view-subscriber-add.php:68
1481
+ msgid "Subscriber already exists."
1482
+ msgstr "Abonnent existiert bereits."
1483
+
1484
+ #: ../subscribers/view-subscriber-add.php:71
1485
+ msgid "Invalid Email."
1486
+ msgstr "Ungültige Emailadresse."
1487
+
1488
+ #: ../subscribers/view-subscriber-add.php:123
1489
+ msgid "Enter Subscriber's Full name"
1490
+ msgstr "Gib den Namen des Abonnenten ein"
1491
+
1492
+ #: ../subscribers/view-subscriber-add.php:133
1493
+ msgid "Enter Subscriber's Email Address"
1494
+ msgstr "Gib die Emailadresse des Abonnenten ein"
1495
+
1496
+ #: ../subscribers/view-subscriber-add.php:143
1497
+ msgid "Select Subscriber's Status"
1498
+ msgstr "Wähle den Status des Abonnenten"
1499
+
1500
+ #: ../subscribers/view-subscriber-add.php:158
1501
+ msgid "Select (or) Create Group for Subscriber"
1502
+ msgstr "Wähle oder erstelle die Gruppe für den Abonnenten"
1503
+
1504
+ #: ../subscribers/view-subscriber-add.php:183
1505
+ msgid "Add Subscriber"
1506
+ msgstr "Abonnent hinzufügen"
1507
+
1508
+ #: ../subscribers/view-subscriber-edit.php:64
1509
+ msgid "Error: Special characters are not allowed in the group name."
1510
+ msgstr "Fehler: Sonderzeichen sind in Gruppennamen nicht erlaubt."
1511
+
1512
+ #: ../subscribers/view-subscriber-edit.php:74
1513
+ msgid "Subscriber details updated."
1514
+ msgstr "Details des Abonnenten aktualisiert."
1515
+
1516
+ #: ../subscribers/view-subscriber-edit.php:76
1517
+ msgid "Subscriber already exists for this group."
1518
+ msgstr "Diesen Abonnenten gibt es in dieser Gruppe schon."
1519
+
1520
+ #: ../subscribers/view-subscriber-edit.php:108
1521
+ msgid "Edit Subscriber"
1522
+ msgstr "Abonnent bearbeiten"
1523
+
1524
+ #: ../subscribers/view-subscriber-edit.php:122
1525
+ msgid "Subscriber's Full Name"
1526
+ msgstr "Name des Abonnenten"
1527
+
1528
+ #: ../subscribers/view-subscriber-edit.php:132
1529
+ msgid "Subscriber's Email Address"
1530
+ msgstr "Email des Abonnenten"
1531
+
1532
+ #: ../subscribers/view-subscriber-edit.php:142
1533
+ msgid "Update Subscriber's Status"
1534
+ msgstr "Status des Abonnenten aktualisieren"
1535
+
1536
+ #: ../subscribers/view-subscriber-edit.php:157
1537
+ msgid "Update Subscriber's Group"
1538
+ msgstr "Gruppe des Abonnenten aktualisieren"
1539
+
1540
+ #: ../subscribers/view-subscriber-sync.php:36
1541
+ msgid "Please select default group to newly registered user."
1542
+ msgstr "Bitte wähle die Standartgruppe für neu registrierte Benutzer."
1543
+
1544
+ #: ../subscribers/view-subscriber-sync.php:50
1545
+ msgid "Emails Successfully Synced."
1546
+ msgstr "Emails erfolgreich synchronisiert."
1547
+
1548
+ #: ../subscribers/view-subscriber-sync.php:88
1549
+ msgid "Sync Email"
1550
+ msgstr "Email synchronisieren"
1551
+
1552
+ #: ../subscribers/view-subscriber-sync.php:101
1553
+ msgid "Sync newly registered users to subscribers list"
1554
+ msgstr "Synchronisiere neu registrierte Benutzer zur Liste der Abonnenten"
1555
+
1556
+ #: ../subscribers/view-subscriber-sync.php:114
1557
+ msgid "Select group to add newly registered users to"
1558
+ msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
1559
+
1560
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1561
+ msgid "Please enter template heading."
1562
+ msgstr "Bitte gib die Vorlagenüberschrift ein."
1563
+
1564
+ #: ../compose/compose-edit.php:61
1565
+ msgid "Successfully updated. "
1566
+ msgstr "Erfolgreich aktualisiert. "
1567
+
1568
+ #: ../compose/compose-edit.php:84
1569
+ msgid "Edit Email"
1570
+ msgstr "Email bearbeiten"
1571
+
1572
+ #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1573
+ msgid "Select your Email Template"
1574
+ msgstr "Emailvorlage wählen"
1575
+
1576
+ #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
1577
+ msgid "Newsletter"
1578
+ msgstr "Newsletter"
1579
+
1580
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
1581
+ msgid "Post Notification"
1582
+ msgstr "Benachrichtigung über Beitrag"
1583
+
1584
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1585
+ msgid "Enter your Email Subject"
1586
+ msgstr "Gib das Emailsubjekt ein"
1587
+
1588
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
1589
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1590
+ msgstr "Verfügbar Stichwort: ## #POSTTITLE### (nur für Beitragsbenachrichtigungen)"
1591
+
1592
+ #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1593
+ msgid "Enter Content for your Email"
1594
+ msgstr "Gib den Inhalt der Email ein"
1595
+
1596
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
1597
+ msgid "Available Keywords"
1598
+ msgstr "Verfügbare Schlüsselworte"
1599
+
1600
+ #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1601
+ msgid "Published"
1602
+ msgstr "Veröffentlicht"
1603
+
1604
+ #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1605
+ msgid "Please select your mail status"
1606
+ msgstr "Bitte wähle deinen Emailstatus"
1607
+
1608
+ #: ../compose/compose-add.php:43
1609
+ msgid "Successfully created. "
1610
+ msgstr "Erfolgreich erstellt. "
1611
+
1612
+ #: ../compose/compose-add.php:74
1613
+ msgid "Add new Email"
1614
+ msgstr "Neue Emailadresse hinzufügen"
1615
+
1616
+ #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1617
+ #: register.php:149
1618
+ msgid "Compose"
1619
+ msgstr "Erstellen"
1620
+
1621
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1622
+ msgid "Email Template"
1623
+ msgstr "Emailvorlage"
1624
+
1625
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1626
+ msgid "Actions"
1627
+ msgstr "Aktion"
1628
+
1629
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1630
+ msgid "Unexpected url submit has been detected"
1631
+ msgstr "Eine unerwartete URL wurde übertragen"
1632
+
1633
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1634
+ #: 58 ../job/es-optin.php:68
1635
+ msgid ""
1636
+ "Oops.. We are getting some technical error. Please try again or contact "
1637
+ "admin."
1638
+ msgstr ""
1639
+ "Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere "
1640
+ "den Admin."
1641
+
1642
+ #: ../job/es-optin.php:61
1643
+ msgid "This email address has already been confirmed."
1644
+ msgstr "Diese Emailadresse wurde schon bestätigt."
1645
+
1646
+ #: ../help/help.php:173
1647
+ msgid "Welcome to Email Subscribers!"
1648
+ msgstr "Willkommen bei Email Subscribers!"
1649
+
1650
+ #: ../help/help.php:174
1651
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1652
+ msgstr ""
1653
+ "Danke für die die Verwendung von Email Subscribers, wir hoffen Du magst das "
1654
+ "Produkt."
1655
+
1656
+ #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1657
+ #: php:38
1658
+ msgid "Subscribe"
1659
+ msgstr "Anmelden"
1660
+
1661
+ #: ../help/help.php:201
1662
+ #, php-format
1663
+ msgid ""
1664
+ "Like Email Subscribers? If yes, then consider %s to support further "
1665
+ "developments."
1666
+ msgstr ""
1667
+ "Du magst Email Subscribers? Falls ja, erwäge doch %s um zukünftige "
1668
+ "Entwicklungen zu unterstützen."
1669
+
1670
+ #: ../help/help.php:201
1671
+ msgid "donating to us"
1672
+ msgstr "eine Spende an uns"
1673
+
1674
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1675
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1676
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1677
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1678
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1679
+ #: 380 ../help/help.php:382
1680
+ #, php-format
1681
+ msgid "%s"
1682
+ msgstr "%s"
1683
+
1684
+ #: ../help/help.php:288
1685
+ msgid "How to Add Subscription box to website?"
1686
+ msgstr "Wie füge ich die Anmeldebox zu einer Webseite hinzu?"
1687
+
1688
+ #: ../help/help.php:299
1689
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1690
+ msgstr ""
1691
+ "Wie kann ich Abonnenten nach erfolgreicher Anmeldung auf eine neue Seite / "
1692
+ "URL umleiten?"
1693
+
1694
+ #: ../help/help.php:302
1695
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
1696
+ msgstr ""
1697
+ "Wie kann ich ein Captcha zum Anmeldeformular von Email Subscribers "
1698
+ "hinzufügen?"
1699
+
1700
+ #: ../help/help.php:308
1701
+ msgid "General Plugin Settings"
1702
+ msgstr "Allgemeine Plugineinstellungen"
1703
+
1704
+ #: ../help/help.php:314
1705
+ msgid "How to Import or Export Email Addresses?"
1706
+ msgstr "Wie importiere oder exportiere ich Emailadressen?"
1707
+
1708
+ #: ../help/help.php:317
1709
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
1710
+ msgstr "Wie aktualisiere ich Abonnentengruppen oder füge neue hinzu?"
1711
+
1712
+ #: ../help/help.php:323
1713
+ msgid "How to add Unsubscribe link in emails?"
1714
+ msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
1715
+
1716
+ #: ../help/help.php:358
1717
+ msgid "How to Schedule Cron Emails?"
1718
+ msgstr "Wie plane ich Cron-Emails?"
1719
+
1720
+ #: ../help/help.php:377
1721
+ msgid "Subscribers are not receiving Emails?"
1722
+ msgstr "Abonnenten erhalten keine Emails?"
1723
+
1724
+ #: ../help/help.php:380
1725
+ msgid "CSS Help"
1726
+ msgstr "CSS Hilfe"
1727
+
1728
+ #: ../sendmail/sendmail.php:40
1729
+ msgid "Please select your mail subject."
1730
+ msgstr "Bitte wähle das Subjekt der Mail."
1731
+
1732
+ #: ../sendmail/sendmail.php:46
1733
+ msgid "Please select your mail type."
1734
+ msgstr "Bitte wähle den Typ der Mail."
1735
+
1736
+ #: ../sendmail/sendmail.php:52
1737
+ msgid "Please select your group."
1738
+ msgstr "Bitte wähle die Gruppe."
1739
+
1740
+ #: ../sendmail/sendmail.php:63
1741
+ msgid "Click here to check Statistics"
1742
+ msgstr "Klicke hier um die Statistik zu sehen"
1743
+
1744
+ #: ../sendmail/sendmail.php:69
1745
+ msgid "Oops.. We are getting some error. mail not sending."
1746
+ msgstr "Oops.. Es gibt ein Problem. Mails können nicht verschickt werden."
1747
+
1748
+ #: ../sendmail/sendmail.php:97
1749
+ msgid "Use this to send newsletter emails to your subscribers."
1750
+ msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
1751
+
1752
+ #: ../sendmail/sendmail.php:105
1753
+ msgid "Select Email Subject from available list"
1754
+ msgstr "Wähle das Subjekt der Email aus"
1755
+
1756
+ #: ../sendmail/sendmail.php:132
1757
+ msgid "Select Email Type"
1758
+ msgstr "Wähle den Emailtyp"
1759
+
1760
+ #: ../sendmail/sendmail.php:139
1761
+ msgid "Send email via cron job"
1762
+ msgstr "Sende Email via Cron Job"
1763
+
1764
+ #: ../sendmail/sendmail.php:146
1765
+ msgid "Select Subscribers group to Send Email"
1766
+ msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
1767
+
1768
+ #: ../sendmail/sendmail.php:178
1769
+ msgid "Recipients : 0 "
1770
+ msgstr "Empfänger : 0 "
1771
+
1772
+ #: ../sendmail/sendmail.php:180
1773
+ #, php-format
1774
+ msgid "Recipients : %s"
1775
+ msgstr "Empfänger : %s"
1776
+
1777
+ #: ../sendmail/sendmail.php:183
1778
+ msgid ""
1779
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1780
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1781
+ "</strong><br>Click on Help for more information."
1782
+ msgstr ""
1783
+ "<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den "
1784
+ "Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1785
+ "</strong><br>Klicke auf Hilfe für weitere Informationen."
1786
+
1787
+ #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1788
+ msgid "Send Email"
1789
+ msgstr "Email senden"
1790
+
1791
+ #: ../sendmail/sendmail.php:199
1792
+ msgid "Reset"
1793
+ msgstr "Zurücksetzen"
1794
+
1795
+ #: ../base/es-defined.php:32
1796
+ msgid ""
1797
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1798
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1799
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1800
+ "</a> rating. A huge thank you from Icegram in advance!"
1801
+ msgstr ""
1802
+ "Wenn Ihnen <strong>Email Subscribers</strong> gefällt, hinterlassen Sie uns "
1803
+ "bitte eine <a href=\"https://wordpress.org/support/view/plugin-reviews/redux-"
1804
+ "framework?filter=5#postform\" target=\"_blank\" class=\"redux-rating-link\" data-"
1805
+ "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
1806
+ "riesiges Dankeschön von Icegram im Voraus!"
1807
+
1808
+ #: ../classes/es-common.php:13
1809
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1810
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
1811
+
1812
+ #: ../classes/es-common.php:16
1813
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1814
+ msgstr "<span style=\"color:#FF0000\">Unbestätigt</span>"
1815
+
1816
+ #: ../classes/es-common.php:19
1817
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1818
+ msgstr "<span style=\"color:#999900\">Abgemeldet</span>"
1819
+
1820
+ #: ../classes/es-common.php:22
1821
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1822
+ msgstr "<span style=\"color:#0000FF\">Einfaches Opt In</span>"
1823
+
1824
+ #: ../classes/es-common.php:25
1825
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1826
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Gelesen</span>"
1827
+
1828
+ #: ../classes/es-common.php:28
1829
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1830
+ msgstr "<span style=\"color:#999900;\">Keine Daten</span>"
1831
+
1832
+ #: ../classes/es-common.php:31
1833
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1834
+ msgstr "<span style=\"color:#FF0000\">Deaktiviert</span>"
1835
+
1836
+ #: ../classes/es-common.php:34
1837
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1838
+ msgstr "<span style=\"color:#FF0000\">In Warteschlange</span>"
1839
+
1840
+ #: ../classes/es-common.php:37
1841
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1842
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Gesendet</span>"
1843
+
1844
+ #: ../classes/es-common.php:40
1845
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1846
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
1847
+
1848
+ #: ../classes/es-common.php:43
1849
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1850
+ msgstr "<span style=\"color:#993399;\">Sofort</span>"
1851
+
1852
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1853
+ #: register.php:724
1854
+ msgid "Email Subscribers"
1855
+ msgstr "Email Subscribers"
1856
+
1857
+ #: ../classes/es-register.php:163
1858
+ msgid "Help & Info"
1859
+ msgstr "Hilfe & Info"
1860
+
1861
+ #: ../classes/es-register.php:175
1862
+ msgctxt "view-subscriber-enhanced-select"
1863
+ msgid "Please enter subscriber email address."
1864
+ msgstr "Bitte Emailadresse des Abonnenten eingeben."
1865
+
1866
+ #: ../classes/es-register.php:176
1867
+ msgctxt "view-subscriber-enhanced-select"
1868
+ msgid "Please select subscriber email status."
1869
+ msgstr "Wähle den Emailstatus des Abonnenten."
1870
+
1871
+ #: ../classes/es-register.php:177
1872
+ msgctxt "view-subscriber-enhanced-select"
1873
+ msgid "Please select or create group for this subscriber."
1874
+ msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
1875
+
1876
+ #: ../classes/es-register.php:178
1877
+ msgctxt "view-subscriber-enhanced-select"
1878
+ msgid "Do you want to delete this record?"
1879
+ msgstr "Möchtest Du diesen Eintrag löschen?"
1880
+
1881
+ #: ../classes/es-register.php:179
1882
+ msgctxt "view-subscriber-enhanced-select"
1883
+ msgid "Please select the bulk action."
1884
+ msgstr "Bitte wähle die Mehrfachaktion."
1885
+
1886
+ #: ../classes/es-register.php:180
1887
+ msgctxt "view-subscriber-enhanced-select"
1888
+ msgid "Are you sure you want to delete selected records?"
1889
+ msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
1890
+
1891
+ #: ../classes/es-register.php:181
1892
+ msgctxt "view-subscriber-enhanced-select"
1893
+ msgid ""
1894
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1895
+ "update subscriber current status to 'Unconfirmed'."
1896
+ msgstr ""
1897
+ "Bestätigungsmail erneut versenden? \\nBeachte, dies wird den Abonnentenstatus "
1898
+ "in \"Unbestätigt\" ändern."
1899
+
1900
+ #: ../classes/es-register.php:182
1901
+ msgctxt "view-subscriber-enhanced-select"
1902
+ msgid "Please select new subscriber group."
1903
+ msgstr "Bitte wähle die neue Abonnentengruppe."
1904
+
1905
+ #: ../classes/es-register.php:183
1906
+ msgctxt "view-subscriber-enhanced-select"
1907
+ msgid "Please select new status for subscribers"
1908
+ msgstr "Bitte wähle den neuen Status für Abonnenten"
1909
+
1910
+ #: ../classes/es-register.php:184
1911
+ msgctxt "view-subscriber-enhanced-select"
1912
+ msgid "Do you want to update subscribers group?"
1913
+ msgstr "Abonnentengruppe aktualisieren?"
1914
+
1915
+ #: ../classes/es-register.php:185
1916
+ msgctxt "view-subscriber-enhanced-select"
1917
+ msgid "Do you want to update subscribers status?"
1918
+ msgstr "Abonnentenstatus aktualisieren?"
1919
+
1920
+ #: ../classes/es-register.php:186
1921
+ msgctxt "view-subscriber-enhanced-select"
1922
+ msgid ""
1923
+ "Please select only csv file. Please check official website for csv structure."
1924
+ "."
1925
+ msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
1926
+
1927
+ #: ../classes/es-register.php:194
1928
+ msgctxt "compose-enhanced-select"
1929
+ msgid "Please enter the Email Subject."
1930
+ msgstr "Bitte gib das Subjekt der Email ein."
1931
+
1932
+ #: ../classes/es-register.php:195
1933
+ msgctxt "compose-enhanced-select"
1934
+ msgid "Do you want to delete this record?"
1935
+ msgstr "Eintrag löschen?"
1936
+
1937
+ #: ../classes/es-register.php:203
1938
+ msgctxt "notification-enhanced-select"
1939
+ msgid "Please select subscribers group."
1940
+ msgstr "Abonnentengruppe wählen."
1941
+
1942
+ #: ../classes/es-register.php:204
1943
+ msgctxt "notification-enhanced-select"
1944
+ msgid "Please select notification mail subject. Use compose menu to create new."
1945
+ msgstr "Bitte wähle das Subjekt für eine Notifikationsmail."
1946
+
1947
+ #: ../classes/es-register.php:205
1948
+ msgctxt "notification-enhanced-select"
1949
+ msgid "Please select notification status."
1950
+ msgstr "Wähle den Benachrichtigungsstatus."
1951
+
1952
+ #: ../classes/es-register.php:206
1953
+ msgctxt "notification-enhanced-select"
1954
+ msgid "Do you want to delete this record?"
1955
+ msgstr "Eintrag löschen?"
1956
+
1957
+ #: ../classes/es-register.php:214
1958
+ msgctxt "sendmail-enhanced-select"
1959
+ msgid "Please select your mail subject."
1960
+ msgstr "Bitte wähle das Emailsubjekt."
1961
+
1962
+ #: ../classes/es-register.php:215
1963
+ msgctxt "sendmail-enhanced-select"
1964
+ msgid "Please select your mail type."
1965
+ msgstr "Bitte wähle den Emailtyp."
1966
+
1967
+ #: ../classes/es-register.php:216
1968
+ msgctxt "sendmail-enhanced-select"
1969
+ msgid ""
1970
+ "Have you double checked your selected group? If so, let's go ahead and send "
1971
+ "this."
1972
+ msgstr ""
1973
+ "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
1974
+ "verschicken."
1975
+
1976
+ #: ../classes/es-register.php:224
1977
+ msgctxt "sentmail-enhanced-select"
1978
+ msgid "Do you want to delete this record?"
1979
+ msgstr "Eintrag löschen?"
1980
+
1981
+ #: ../classes/es-register.php:225
1982
+ msgctxt "sentmail-enhanced-select"
1983
+ msgid "Do you want to delete all records except latest 10?"
1984
+ msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
1985
+
1986
+ #: ../classes/es-register.php:233
1987
+ msgctxt "cron-enhanced-select"
1988
+ msgid "Please select enter number of mails you want to send per hour/trigger."
1989
+ msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
1990
+
1991
+ #: ../classes/es-register.php:234
1992
+ msgctxt "cron-enhanced-select"
1993
+ msgid "Please enter the mail count, only number."
1994
+ msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
1995
+
1996
+ #: ../classes/es-register.php:247
1997
+ msgctxt "widget-enhanced-select"
1998
+ msgid "Please enter email address"
1999
+ msgstr "Bitte gib die Emailadresse ein"
2000
+
2001
+ #: ../classes/es-register.php:248
2002
+ msgctxt "widget-enhanced-select"
2003
+ msgid "Please provide a valid email address"
2004
+ msgstr "Bitte gib eine gültige Emailadresse ein"
2005
+
2006
+ #: ../classes/es-register.php:249
2007
+ msgctxt "widget-enhanced-select"
2008
+ msgid "loading..."
2009
+ msgstr "lädt..."
2010
+
2011
+ #: ../classes/es-register.php:250
2012
+ msgctxt "widget-enhanced-select"
2013
+ msgid "Cannot create XMLHTTP instance"
2014
+ msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2015
+
2016
+ #: ../classes/es-register.php:251
2017
+ msgctxt "widget-enhanced-select"
2018
+ msgid "Successfully Subscribed."
2019
+ msgstr "Erfolgreich angemeldet."
2020
+
2021
+ #: ../classes/es-register.php:252
2022
+ msgctxt "widget-enhanced-select"
2023
+ msgid ""
2024
+ "Your subscription was successful! Within a few minutes, kindly check the "
2025
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2026
+ "mail in your mailbox, please check your spam folder."
2027
+ msgstr ""
2028
+ "Deine Anmeldung war erfolgreich! Wir senden Dir innerhalb der nächsten "
2029
+ "Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
2030
+ "Mail bekommen prüfe bitte den Spamordner."
2031
+
2032
+ #: ../classes/es-register.php:253
2033
+ msgctxt "widget-enhanced-select"
2034
+ msgid "Email Address already exists!"
2035
+ msgstr "Diese Adresse existiert bereits!"
2036
+
2037
+ #: ../classes/es-register.php:254
2038
+ msgctxt "widget-enhanced-select"
2039
+ msgid "Oops.. Unexpected error occurred."
2040
+ msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
2041
+
2042
+ #: ../classes/es-register.php:255
2043
+ msgctxt "widget-enhanced-select"
2044
+ msgid "Invalid email address"
2045
+ msgstr "Ungültige Emailadresse"
2046
+
2047
+ #: ../classes/es-register.php:256
2048
+ msgctxt "widget-enhanced-select"
2049
+ msgid "Please try after some time"
2050
+ msgstr "Versuche es in Kürze nochmal"
2051
+
2052
+ #: ../classes/es-register.php:257
2053
+ msgctxt "widget-enhanced-select"
2054
+ msgid "There was a problem with the request"
2055
+ msgstr "Es gab ein Problem mit der Anforderung"
2056
+
2057
+ #: ../classes/es-register.php:264
2058
+ msgctxt "widget-page-enhanced-select"
2059
+ msgid "Please enter email address"
2060
+ msgstr "Bitte gib die Emailadresse ein"
2061
+
2062
+ #: ../classes/es-register.php:265
2063
+ msgctxt "widget-page-enhanced-select"
2064
+ msgid "Please provide a valid email address"
2065
+ msgstr "Bitte gib eine gültige Emailadresse ein"
2066
+
2067
+ #: ../classes/es-register.php:266
2068
+ msgctxt "widget-page-enhanced-select"
2069
+ msgid "loading..."
2070
+ msgstr "lädt..."
2071
+
2072
+ #: ../classes/es-register.php:267
2073
+ msgctxt "widget-page-enhanced-select"
2074
+ msgid "Cannot create XMLHTTP instance"
2075
+ msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2076
+
2077
+ #: ../classes/es-register.php:268
2078
+ msgctxt "widget-page-enhanced-select"
2079
+ msgid "Successfully Subscribed."
2080
+ msgstr "Erfolgreich angemeldet."
2081
+
2082
+ #: ../classes/es-register.php:269
2083
+ msgctxt "widget-page-enhanced-select"
2084
+ msgid ""
2085
+ "Your subscription was successful! Within a few minutes, kindly check the "
2086
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2087
+ "mail in your mailbox, please check your spam folder."
2088
+ msgstr ""
2089
+ "Deine Anmeldung war erfolgreich! Wir senden Dir innerhalb der nächsten "
2090
+ "Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
2091
+ "Mail bekommen prüfe bitte den Spamordner."
2092
+
2093
+ #: ../classes/es-register.php:270
2094
+ msgctxt "widget-page-enhanced-select"
2095
+ msgid "Email Address already exists!"
2096
+ msgstr "Diese Adresse existiert bereits!"
2097
+
2098
+ #: ../classes/es-register.php:271
2099
+ msgctxt "widget-page-enhanced-select"
2100
+ msgid "Oops.. Unexpected error occurred."
2101
+ msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
2102
+
2103
+ #: ../classes/es-register.php:272
2104
+ msgctxt "widget-page-enhanced-select"
2105
+ msgid "Invalid email address"
2106
+ msgstr "Ungültige Emailadresse"
2107
+
2108
+ #: ../classes/es-register.php:273
2109
+ msgctxt "widget-page-enhanced-select"
2110
+ msgid "Please try after some time"
2111
+ msgstr "Versuche es in Kürze nochmal"
2112
+
2113
+ #: ../classes/es-register.php:274
2114
+ msgctxt "widget-page-enhanced-select"
2115
+ msgid "There was a problem with the request"
2116
+ msgstr "Es gab ein Problem mit der Anforderung"
2117
+
2118
+ #: ../classes/es-register.php:724
2119
+ msgid "is getting even better!"
2120
+ msgstr "wird sogar noch besser!"
2121
+
2122
+ #: ../classes/es-register.php:725
2123
+ msgid "But I need you to"
2124
+ msgstr "Aber ich brauche Dich"
2125
+
2126
+ #: ../classes/es-register.php:725
2127
+ msgid "help me prioritize"
2128
+ msgstr "hilf mir zu priorisieren"
2129
+
2130
+ #: ../classes/es-register.php:725
2131
+ msgid "Please send your response today."
2132
+ msgstr "Bitte sende Deine Antwort noch heute."
2133
+
2134
+ #: ../classes/es-register.php:732
2135
+ msgid "Here's how you use ES:"
2136
+ msgstr "Und so verwendest Du ES:"
2137
+
2138
+ #: ../classes/es-register.php:745
2139
+ msgid "Have "
2140
+ msgstr "Habe "
2141
+
2142
+ #: ../classes/es-register.php:745
2143
+ msgid " Active Subscribers"
2144
+ msgstr " Aktive Abonnenten"
2145
+
2146
+ #: ../classes/es-register.php:746
2147
+ msgid "Post "
2148
+ msgstr "Beitrag "
2149
+
2150
+ #: ../classes/es-register.php:746
2151
+ msgid " blog per week"
2152
+ msgstr " Beiträge pro Woche"
2153
+
2154
+ #: ../classes/es-register.php:750
2155
+ msgid "Send emails via Cron"
2156
+ msgstr "Emails via Cron versenden"
2157
+
2158
+ #: ../classes/es-register.php:752
2159
+ msgid "Send emails Immediately"
2160
+ msgstr "Sende Emails sofort"
2161
+
2162
+ #: ../classes/es-register.php:779
2163
+ msgid "How soon do you want these new features?"
2164
+ msgstr "Wie bald möchtest Du diese neuen Features?"
2165
+
2166
+ #: ../classes/es-register.php:783
2167
+ msgid "Beautiful Email Designs"
2168
+ msgstr "Schöne Email Designs"
2169
+
2170
+ #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
2171
+ #: register.php:794 ../classes/es-register.php:799
2172
+ msgid "Right now!"
2173
+ msgstr "Jetzt!"
2174
+
2175
+ #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
2176
+ #: register.php:795 ../classes/es-register.php:800
2177
+ msgid "Soon"
2178
+ msgstr "Bald"
2179
+
2180
+ #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
2181
+ #: register.php:796 ../classes/es-register.php:801
2182
+ msgid "Later"
2183
+ msgstr "Später"
2184
+
2185
+ #: ../classes/es-register.php:788
2186
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
2187
+ msgstr "Spamüberprüfung, Zeitplanung... (Besserer Emailversand)"
2188
+
2189
+ #: ../classes/es-register.php:793
2190
+ msgid "Discard Fake / Bouncing Emails"
2191
+ msgstr "Verwerfe Fake- oder zurückgekommene Emails"
2192
+
2193
+ #: ../classes/es-register.php:798
2194
+ msgid "Advanced Reporting"
2195
+ msgstr "Erweiterte Berichte"
2196
+
2197
+ #: ../classes/es-register.php:826
2198
+ msgid "Thank you!"
2199
+ msgstr "Danke!"
2200
+
2201
+ #: ../classes/es-register.php:827
2202
+ msgid "No issues, have a nice day!"
2203
+ msgstr "Keine Probleme gefunden, Genieße den Tag!"
2204
+
2205
+ #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
2206
+ msgid "Email *"
2207
+ msgstr "Email *"
2208
+
2209
+ #: ../classes/es-register.php:1035
2210
+ msgid "Widget Title"
2211
+ msgstr "Widget Titel"
2212
+
2213
+ #: ../classes/es-register.php:1039
2214
+ msgid "Short description about subscription form"
2215
+ msgstr "Kurze Beschreibung des Anmeldeformulars"
2216
+
2217
+ #: ../classes/es-register.php:1043
2218
+ msgid "Display Name Field"
2219
+ msgstr "Namensfeld anzeigen"
2220
+
2221
+ #: ../classes/es-register.php:1050
2222
+ msgid "Subscriber Group"
2223
+ msgstr "Abonnentengruppe"
languages/email-subscribers-es_ES.mo CHANGED
Binary file
languages/email-subscribers-es_ES.po CHANGED
@@ -1,2025 +1,2233 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
6
- "PO-Revision-Date: 2017-06-20 14:12+0200\n"
7
- "Last-Translator: David Bravo <dbravo@dimensionmultimedia.com>\n"
8
- "Language-Team: \n"
9
- "Language: es_ES\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 2.0.2\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
17
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
18
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
19
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
20
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
  "X-Poedit-Basepath: ..\n"
22
  "X-Loco-Target-Locale: es_ES\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
- "X-Poedit-SearchPathExcluded-0: *.js\n"
25
 
26
- #: classes/es-register.php:733
27
- msgid "Send emails via Cron"
28
- msgstr "Enviar correos vía Cron"
29
 
30
- #: classes/es-register.php:735
31
- msgid "Send emails Immediately"
32
- msgstr "Enviar correos inmediatamente"
 
33
 
34
- #: compose/compose-add.php:78 compose/compose-edit.php:89
35
- msgid "Select your Email Template"
36
- msgstr "Selecciona tu Plantilla de Correo"
37
 
38
- #: help/help.php:127
39
  msgid ""
40
- " (Modify existing emails like Confirmation, Welcome, Admin emails and Cron "
41
- "Settings and Assign User Roles)"
 
 
 
 
42
  msgstr ""
43
- " (Modificar correos existentes como correos de Confirmación, Bienvenida y Admin; "
44
- "configuración Cron y Asignación de Roles de Usuario)"
45
 
46
- #: help/help.php:142
47
  msgid ""
48
- "How to Configure and Send Post Notification Emails to subscribers when new posts "
49
- "are published?"
 
 
 
50
  msgstr ""
51
- "¿Cómo configurar y enviar Correos de Notificación de Entrada a suscriptores cuando "
52
- "sean publicadas nuevas entradas?"
53
 
54
- #: help/help.php:145
55
- msgid "What are the available keywords in the Post Notifications?"
56
- msgstr "¿Qué palabras disponibles existen para Notificaciones de Entradas?"
57
 
58
- #: help/help.php:148
59
- msgid "How to send a sample new post notification email to testgroup/myself?"
60
  msgstr ""
61
- "¿Cómo enviar un correo de prueba de notificación de nueva entrada para grupo de "
62
- "pruebas / mí?"
63
 
64
- #: help/help.php:151
65
- msgid "How to check sent emails?"
66
- msgstr "¿Cómo comprobar correos enviados?"
 
 
67
 
68
- #: help/help.php:154
69
- msgid "How to Add/Update Existing Subscribers Group & Status?"
70
- msgstr "¿Cómo añadir/actualizar Grupos de Suscriptores Existentes y Estado?"
71
 
72
- #: help/help.php:166
73
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
74
  msgstr ""
75
- "¿Cómo redirigir a los suscriptores a una nueva página/url tras haberse "
76
- "identificado con éxito?"
77
 
78
- #: help/help.php:169
79
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
80
- msgstr "¿Cómo añadir captcha al formulario de Suscripción de Email Subscribers?"
81
 
82
- #: help/help.php:172
83
- msgid "How to Schedule Cron Emails?"
84
- msgstr "¿Cómo programar Correos Cron?"
 
 
85
 
86
- #: help/help.php:186
87
- msgid "Common FAQ's"
88
- msgstr "Preguntas comunes más frecuentes"
89
 
90
- #: settings/settings-edit.php:155
91
  msgid ""
92
- "Enter the email content for the admin email which will be sent whenever a new "
93
- "email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, ###GROUP###)"
 
 
 
 
94
  msgstr ""
95
- "Introduce el contenido del correo para el correo de administración que será "
96
- "enviado cuando un nuevo correo sea añadido y confirmado. (Palabras clave: "
97
- "###NAME###, ###EMAIL###, ###GROUP###)"
98
 
99
- #: base/es-defined.php:32
100
  msgid ""
101
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
102
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
103
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A "
104
- "huge thank you from Icegram in advance!"
105
  msgstr ""
106
- "Si te gusta <strong>Email Subscribers</strong>, por favor considera dejarnos una "
107
- "calificación <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/"
108
- "email-subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
109
- "</a>. ¡Te lo agradecemos enormemente desde Icegram!"
110
 
111
- #: classes/es-common.php:13
112
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
113
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
114
 
115
- #: classes/es-common.php:16
116
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
117
- msgstr "<span style=\"color:#FF0000\">Sin confirmar</span>"
 
 
118
 
119
- #: classes/es-common.php:19
120
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
121
- msgstr "<span style=\"color:#999900\">Suscripción cancelada</span>"
122
 
123
- #: classes/es-common.php:22
124
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
125
- msgstr "<span style=\"color:#0000FF\">Aceptación individual</span>"
126
 
127
- #: classes/es-common.php:25
128
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
129
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
 
 
 
130
 
131
- #: classes/es-common.php:28
132
- msgid "<span style=\"color:#999900;\">Nodata</span>"
133
- msgstr "<span style=\"color:#999900;\">Sin Datos</span>"
134
 
135
- #: classes/es-common.php:31
136
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
137
- msgstr "<span style=\"color:#FF0000\">Desactivado</span>"
 
 
 
138
 
139
- #: classes/es-common.php:34
140
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
141
- msgstr "<span style=\"color:#FF0000\">En Cola</span>"
 
 
 
142
 
143
- #: classes/es-common.php:37
144
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
145
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviado</span>"
 
 
146
 
147
- #: classes/es-common.php:40
148
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
149
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">vía tarea Cron</span>"
 
 
150
 
151
- #: classes/es-common.php:43
152
- msgid "<span style=\"color:#993399;\">Immediately</span>"
153
- msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
154
 
155
- #: classes/es-loadwidget.php:28 classes/es-register.php:964
156
- #: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
157
- msgid "Name"
158
- msgstr "Nombre"
 
159
 
160
- #: classes/es-loadwidget.php:33 classes/es-register.php:969
161
- msgid "Email *"
162
- msgstr "Email *"
 
 
163
 
164
- #: classes/es-loadwidget.php:38 classes/es-register.php:974
165
- msgid "Subscribe"
166
- msgstr "Suscribirse"
167
 
168
- #: classes/es-register.php:140 classes/es-register.php:141
169
- #: classes/es-register.php:707
170
- msgid "Email Subscribers"
171
- msgstr "Email Subscribers"
172
 
173
- #: classes/es-register.php:143 classes/es-register.php:144
174
- #: subscribers/view-subscriber-show.php:241
175
- msgid "Subscribers"
176
- msgstr "Suscriptores"
 
177
 
178
- #: classes/es-register.php:146 classes/es-register.php:147
179
- #: compose/compose-show.php:64
180
- msgid "Compose"
181
- msgstr "Componer"
 
 
 
182
 
183
- #: classes/es-register.php:149 classes/es-register.php:150
184
- #: notification/notification-show.php:52
185
- msgid "Post Notifications"
186
- msgstr "Notificaciones de entradas"
 
 
 
187
 
188
- #: classes/es-register.php:152 classes/es-register.php:153 sendmail/sendmail.php:93
189
- #: settings/settings-edit.php:318
190
- msgid "Newsletters"
191
- msgstr "Newsletters"
 
 
 
192
 
193
- #: classes/es-register.php:155 classes/es-register.php:156
194
- #: settings/settings-edit.php:41
195
- msgid "Settings"
196
- msgstr "Configuración"
 
 
 
197
 
198
- #: classes/es-register.php:158 classes/es-register.php:159
199
- #: sentmail/sentmail-show.php:96
200
- msgid "Reports"
201
- msgstr "Informes"
202
 
203
- #: classes/es-register.php:161
204
- msgid "Help & Info"
205
- msgstr "Ayuda e Información"
206
 
207
- #: classes/es-register.php:162
208
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
209
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e Info"
 
 
 
 
210
 
211
- #: classes/es-register.php:173
212
- msgctxt "view-subscriber-enhanced-select"
213
- msgid "Please enter subscriber email address."
214
- msgstr "Por favor introduce la dirección de correo de suscriptor."
215
 
216
- #: classes/es-register.php:174
217
- msgctxt "view-subscriber-enhanced-select"
218
- msgid "Please select subscriber email status."
219
- msgstr "Por favor selecciona el estado de correo de suscriptor."
220
 
221
- #: classes/es-register.php:175
222
- msgctxt "view-subscriber-enhanced-select"
223
- msgid "Please select or create group for this subscriber."
224
- msgstr "Por favor selecciona o crea grupo para este suscriptor."
225
 
226
- #: classes/es-register.php:176
227
- msgctxt "view-subscriber-enhanced-select"
228
- msgid "Do you want to delete this record?"
229
- msgstr "¿Quieres borrar este registro?"
230
 
231
- #: classes/es-register.php:177
232
- msgctxt "view-subscriber-enhanced-select"
233
- msgid "Please select the bulk action."
234
- msgstr "Por favor selecciona la acción en bloque."
235
 
236
- #: classes/es-register.php:178
237
- msgctxt "view-subscriber-enhanced-select"
238
- msgid "Are you sure you want to delete selected records?"
239
- msgstr "¿Seguro de querer borrar los registros seleccionados?"
240
 
241
- #: classes/es-register.php:179
242
- msgctxt "view-subscriber-enhanced-select"
243
  msgid ""
244
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
245
- "subscriber current status to 'Unconfirmed'."
 
246
  msgstr ""
247
- "¿Quieres volver a mandar el correo de confirmación?\\nTambién ten en cuenta que "
248
- "esto actualizará el estado actual a 'Sin confirmar'."
249
 
250
- #: classes/es-register.php:180
251
- msgctxt "view-subscriber-enhanced-select"
252
- msgid "Please select new subscriber group."
253
- msgstr "Por favor selecciona un nuevo grupo de suscriptores."
254
 
255
- #: classes/es-register.php:181
256
- msgctxt "view-subscriber-enhanced-select"
257
- msgid "Please select new status for subscribers"
258
- msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
 
259
 
260
- #: classes/es-register.php:182
261
- msgctxt "view-subscriber-enhanced-select"
262
- msgid "Do you want to update subscribers group?"
263
- msgstr "¿Quieres actualizar el grupo de suscriptores?"
264
 
265
- #: classes/es-register.php:183
266
- msgctxt "view-subscriber-enhanced-select"
267
- msgid "Do you want to update subscribers status?"
268
- msgstr "¿Quieres actualizar el estado de los suscriptores?"
269
 
270
- #: classes/es-register.php:184
271
- msgctxt "view-subscriber-enhanced-select"
272
  msgid ""
273
- "Please select only csv file. Please check official website for csv structure.."
 
274
  msgstr ""
275
- "Por favor selecciona el archivo de entrada csv. Por favor, consulta el sitio "
276
- "oficial para ver la estructura csv."
277
 
278
- #: classes/es-register.php:192
279
- msgctxt "compose-enhanced-select"
280
- msgid "Please enter the Email Subject."
281
- msgstr "Por favor, indica el Asunto del Correo."
282
 
283
- #: classes/es-register.php:193
284
- msgctxt "compose-enhanced-select"
285
- msgid "Do you want to delete this record?"
286
- msgstr "¿Quieres borrar este registro?"
287
 
288
- #: classes/es-register.php:201
289
- msgctxt "notification-enhanced-select"
290
- msgid "Please select subscribers group."
291
- msgstr "Por favor selecciona el grupo de suscriptores."
292
 
293
- #: classes/es-register.php:202
294
- msgctxt "notification-enhanced-select"
295
- msgid "Please select notification mail subject. Use compose menu to create new."
296
  msgstr ""
297
- "Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
298
- "componer para crear uno nuevo."
299
 
300
- #: classes/es-register.php:203
301
- msgctxt "notification-enhanced-select"
302
- msgid "Please select notification status."
303
- msgstr "Por favor selecciona el estado de notificación."
304
 
305
- #: classes/es-register.php:204
306
- msgctxt "notification-enhanced-select"
307
- msgid "Do you want to delete this record?"
308
- msgstr "¿Quieres borrar este registro?"
309
 
310
- #: classes/es-register.php:212
311
- msgctxt "sendmail-enhanced-select"
312
- msgid "Please select your mail subject."
313
- msgstr "Por favor selecciona el asunto de tu correo."
314
 
315
- #: classes/es-register.php:213
316
- msgctxt "sendmail-enhanced-select"
317
- msgid "Please select your mail type."
318
- msgstr "Por favor selecciona tu tipo de correo."
319
 
320
- #: classes/es-register.php:214
321
- msgctxt "sendmail-enhanced-select"
322
- msgid ""
323
- "Have you double checked your selected group? If so, let's go ahead and send this."
324
  msgstr ""
325
- "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y enviemos "
326
- "esto."
327
 
328
- #: classes/es-register.php:222
329
- msgctxt "sentmail-enhanced-select"
330
- msgid "Do you want to delete this record?"
331
- msgstr "¿Quieres borrar este registro?"
332
 
333
- #: classes/es-register.php:223
334
- msgctxt "sentmail-enhanced-select"
335
- msgid "Do you want to delete all records except latest 10?"
336
- msgstr "¿Quieres borrar todos los registros excepto los últimos 10?"
 
 
 
 
 
 
 
337
 
338
- #: classes/es-register.php:231
339
- msgctxt "cron-enhanced-select"
340
- msgid "Please select enter number of mails you want to send per hour/trigger."
341
  msgstr ""
342
- "Por favor, introduce el número de correos que quieres enviar por hora/disparador."
343
 
344
- #: classes/es-register.php:232
345
- msgctxt "cron-enhanced-select"
346
- msgid "Please enter the mail count, only number."
347
- msgstr "Por favor, introduce el conteo de correos, sólo numérico."
348
 
349
- #: classes/es-register.php:245
350
- msgctxt "widget-enhanced-select"
351
- msgid "Please enter email address"
352
- msgstr "Por favor inserta dirección de correo"
353
 
354
- #: classes/es-register.php:246
355
- msgctxt "widget-enhanced-select"
356
- msgid "Please provide a valid email address"
357
- msgstr "Por favor escribe una dirección de correo válida"
 
358
 
359
- #: classes/es-register.php:247
360
- msgctxt "widget-enhanced-select"
361
- msgid "loading..."
362
- msgstr "cargando..."
363
 
364
- #: classes/es-register.php:248
365
- msgctxt "widget-enhanced-select"
366
- msgid "Cannot create XMLHTTP instance"
367
- msgstr "No se puede crear la instancia XMLHTTP"
368
 
369
- #: classes/es-register.php:249
370
- msgctxt "widget-enhanced-select"
371
- msgid "Successfully Subscribed."
372
- msgstr "Suscripción exitosa."
373
 
374
- #: classes/es-register.php:250
375
- msgctxt "widget-enhanced-select"
376
- msgid ""
377
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
378
- "your mailbox and confirm your subscription. If you can't see the mail in your "
379
- "mailbox, please check your spam folder."
380
  msgstr ""
381
- "¡Te has suscrito con éxito! En pocos minutos, por favor comprueba el correo en tu "
382
- "bandeja de entrada y confirma tu suscripción. Si no ves el correo en la bandeja de "
383
- "entrada, por favor revisa tu carpeta de correo no deseado."
384
 
385
- #: classes/es-register.php:251
386
- msgctxt "widget-enhanced-select"
387
- msgid "Email Address already exists!"
388
- msgstr "¡Esa dirección de Correo ya existe!"
389
 
390
- #: classes/es-register.php:252
391
- msgctxt "widget-enhanced-select"
392
- msgid "Oops.. Unexpected error occurred."
393
- msgstr "Ups. Ha sucedido un error inesperado."
394
 
395
- #: classes/es-register.php:253
396
- msgctxt "widget-enhanced-select"
397
- msgid "Invalid email address"
398
- msgstr "Dirección de correo electrónico no válida"
399
 
400
- #: classes/es-register.php:254
401
- msgctxt "widget-enhanced-select"
402
- msgid "Please try after some time"
403
- msgstr "Por favor, inténtalo transcurridos unos minutos"
404
 
405
- #: classes/es-register.php:255
406
- msgctxt "widget-enhanced-select"
407
- msgid "There was a problem with the request"
408
- msgstr "Ha habido un problema con la solicitud"
409
 
410
- #: classes/es-register.php:262
411
- msgctxt "widget-page-enhanced-select"
412
- msgid "Please enter email address"
413
- msgstr "Por favor introduce dirección de correo electrónico"
414
 
415
- #: classes/es-register.php:263
416
- msgctxt "widget-page-enhanced-select"
417
- msgid "Please provide a valid email address"
418
- msgstr "Por favor, inserta una dirección de correo electrónica válida"
419
-
420
- #: classes/es-register.php:264
421
- msgctxt "widget-page-enhanced-select"
422
- msgid "loading..."
423
- msgstr "cargando..."
424
-
425
- #: classes/es-register.php:265
426
- msgctxt "widget-page-enhanced-select"
427
- msgid "Cannot create XMLHTTP instance"
428
- msgstr "No se puede crear la instancia XMLHTTP"
429
-
430
- #: classes/es-register.php:266
431
- msgctxt "widget-page-enhanced-select"
432
- msgid "Successfully Subscribed."
433
- msgstr "Suscripción con éxito."
434
-
435
- #: classes/es-register.php:267
436
- msgctxt "widget-page-enhanced-select"
437
- msgid ""
438
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
439
- "your mailbox and confirm your subscription. If you can't see the mail in your "
440
- "mailbox, please check your spam folder."
441
  msgstr ""
442
- "Te has suscrito con éxito a la newsletter. En pocos minutos, comprueba tu correo "
443
- "en tu bandeja de entrada y confirma tu suscripción . Si no ves el correo en tu "
444
- "bandeja de entrada, por favor revisa tu carpeta de correo no deseado."
445
-
446
- #: classes/es-register.php:268
447
- msgctxt "widget-page-enhanced-select"
448
- msgid "Email Address already exists!"
449
- msgstr "¡Esa dirección de correo electrónico ya existe!"
450
-
451
- #: classes/es-register.php:269
452
- msgctxt "widget-page-enhanced-select"
453
- msgid "Oops.. Unexpected error occurred."
454
- msgstr "Ups. Ha sucedido un error inesperado."
455
-
456
- #: classes/es-register.php:270
457
- msgctxt "widget-page-enhanced-select"
458
- msgid "Invalid email address"
459
- msgstr "Dirección de correo electrónico no válida"
460
-
461
- #: classes/es-register.php:271
462
- msgctxt "widget-page-enhanced-select"
463
- msgid "Please try after some time"
464
- msgstr "Por favor, inténtalo transcurridos unos minutos"
465
-
466
- #: classes/es-register.php:272
467
- msgctxt "widget-page-enhanced-select"
468
- msgid "There was a problem with the request"
469
- msgstr "Ha habido un problema con la solicitud"
470
-
471
- #: classes/es-register.php:707
472
- msgid "is getting even better!"
473
- msgstr "está mejorando aún más!"
474
-
475
- #: classes/es-register.php:708
476
- msgid "But I need you to"
477
- msgstr "Pero necesito que"
478
-
479
- #: classes/es-register.php:708
480
- msgid "help me prioritize"
481
- msgstr "me ayudes a priorizar"
482
-
483
- #: classes/es-register.php:708
484
- msgid "Please send your response today."
485
- msgstr "Por favor, envía tu respuesta hoy."
486
-
487
- #: classes/es-register.php:715
488
- msgid "Here's how you use ES:"
489
- msgstr "Así es como puedes utilizar ES:"
490
-
491
- #: classes/es-register.php:720
492
- msgid "Used Post Notifications more often than Newsletter"
493
- msgstr "Utilizadas Notificaciones de Entradas más a menudo que Newsletter"
494
-
495
- #: classes/es-register.php:722
496
- msgid "Used Newsletter more often than Post Notifications"
497
- msgstr "Utilizadas Newsletter más a menudo que Notificaciones de Entradas"
498
-
499
- #: classes/es-register.php:724
500
- msgid "Used Post Notification &amp; Newsletter equally"
501
- msgstr "Utilizadas Notificaciones de Entradas y Newsletter equitativamente"
502
-
503
- #: classes/es-register.php:728
504
- msgid "Have "
505
- msgstr "Ha "
506
-
507
- #: classes/es-register.php:728
508
- msgid " Active Subscribers"
509
- msgstr " Suscriptores Activos"
510
-
511
- #: classes/es-register.php:729
512
- msgid "Post "
513
- msgstr "Entrada "
514
-
515
- #: classes/es-register.php:729
516
- msgid " blog per week"
517
- msgstr " blog por semana"
518
-
519
- #: classes/es-register.php:745
520
- msgid "How soon do you want these new features?"
521
- msgstr "¿Cómo de pronto quieres estas características?"
522
-
523
- #: classes/es-register.php:749
524
- msgid "Beautiful Email Designs"
525
- msgstr "Preciosos Diseños de Correo"
526
-
527
- #: classes/es-register.php:750 classes/es-register.php:755
528
- #: classes/es-register.php:764 classes/es-register.php:769
529
- msgid "Right now!"
530
- msgstr "¡Ahora mismo!"
531
-
532
- #: classes/es-register.php:751 classes/es-register.php:756
533
- #: classes/es-register.php:765 classes/es-register.php:770
534
- msgid "Soon"
535
- msgstr "Pronto"
536
-
537
- #: classes/es-register.php:752 classes/es-register.php:757
538
- #: classes/es-register.php:766 classes/es-register.php:771
539
- msgid "Later"
540
- msgstr "Más adelante"
541
-
542
- #: classes/es-register.php:754
543
- msgid "Spam Check, Scheduling... (Better Email Delivery)"
544
- msgstr "Comprobación de Spam, Programando... (Mejor Envío de Correo)"
545
-
546
- #: classes/es-register.php:763
547
- msgid "Discard Fake / Bouncing Emails"
548
- msgstr "Descartar Correos fraudulentos / rebotados"
549
-
550
- #: classes/es-register.php:768
551
- msgid "Advanced Reporting"
552
- msgstr "Informe avanzado"
553
-
554
- #: classes/es-register.php:791
555
- msgid "Thank you!"
556
- msgstr "¡Gracias!"
557
-
558
- #: classes/es-register.php:792
559
- msgid "No issues, have a nice day!"
560
- msgstr "¡Sin problemas, que pases un buen día!"
561
-
562
- #: classes/es-register.php:1012
563
- msgid "Widget Title"
564
- msgstr "Título Widget"
565
-
566
- #: classes/es-register.php:1016
567
- msgid "Short description about subscription form"
568
- msgstr "Descripción corta sobre el formulario de suscripción"
569
-
570
- #: classes/es-register.php:1020
571
- msgid "Display Name Field"
572
- msgstr "Mostrar Campo Nombre"
573
-
574
- #: classes/es-register.php:1022 settings/settings-edit.php:140
575
- #: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
576
- msgid "YES"
577
- msgstr "SÍ"
578
-
579
- #: classes/es-register.php:1023 settings/settings-edit.php:141
580
- #: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
581
- msgid "NO"
582
- msgstr "NO"
583
-
584
- #: classes/es-register.php:1027
585
- msgid "Subscriber Group"
586
- msgstr "Grupo de suscripción"
587
-
588
- #: compose/compose-add.php:31 compose/compose-edit.php:48
589
- msgid "Please enter template heading."
590
- msgstr "Por favor, indica un encabezado de plantilla."
591
-
592
- #: compose/compose-add.php:43
593
- msgid "Template successfully created. "
594
- msgstr "Plantilla creada correctamente. "
595
 
596
- #: compose/compose-add.php:74
597
- msgid "Add new Email"
598
- msgstr "Añadir nuevo Email"
599
-
600
- #: compose/compose-add.php:75 compose/compose-edit.php:86
601
- #: compose/compose-preview.php:28 compose/compose-show.php:66
602
- #: notification/notification-add.php:113 notification/notification-edit.php:124
603
- #: notification/notification-show.php:54 sendmail/sendmail.php:94
604
- #: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
605
- #: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
606
- #: subscribers/view-subscriber-add.php:114 subscribers/view-subscriber-edit.php:113
607
- #: subscribers/view-subscriber-export.php:38
608
- #: subscribers/view-subscriber-import.php:146
609
- #: subscribers/view-subscriber-show.php:246 subscribers/view-subscriber-sync.php:92
610
- msgid "Help"
611
- msgstr "Ayuda"
612
 
613
- #: compose/compose-add.php:80 compose/compose-edit.php:91
614
- msgid "Newsletter"
615
- msgstr "Newsletter"
616
 
617
- #: compose/compose-add.php:81 compose/compose-edit.php:92
618
- msgid "Post Notification"
619
- msgstr "Notificación Entrada"
620
 
621
- #: compose/compose-add.php:85 compose/compose-edit.php:96
622
- msgid "Enter your Email Subject"
623
- msgstr "Introduce tu Asunto de Correo"
624
 
625
- #: compose/compose-add.php:87 compose/compose-edit.php:98
626
- msgid "Keyword: ###POSTTITLE###"
627
- msgstr "Keyword: ###POSTTITLE###"
628
 
629
- #: compose/compose-add.php:89 compose/compose-edit.php:100
630
- msgid "Enter Content for your Email"
631
- msgstr "Introduce Contenido para tu Correo"
632
 
633
- #: compose/compose-add.php:93 compose/compose-edit.php:104
634
- #, c-format
635
  msgid ""
636
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
637
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
638
- "###POSTFULL###"
639
  msgstr ""
640
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
641
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
642
- "###POSTFULL###"
643
-
644
- #: compose/compose-add.php:93 compose/compose-edit.php:104
645
- msgid "Available Keywords"
646
- msgstr "Palabras clave disponibles"
647
-
648
- #: compose/compose-add.php:97 compose/compose-edit.php:108
649
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
650
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
651
- #: subscribers/view-subscriber-show.php:362 subscribers/view-subscriber-show.php:375
652
- msgid "Status"
653
- msgstr "Estado"
654
-
655
- #: compose/compose-add.php:99 compose/compose-edit.php:110
656
- msgid "Published"
657
- msgstr "Publicado"
658
-
659
- #: compose/compose-add.php:101 compose/compose-edit.php:112
660
- msgid "Please select your mail status"
661
- msgstr "Por favor, selecciona el estado de tu correo"
662
-
663
- #: compose/compose-add.php:105 compose/compose-edit.php:117
664
- #: notification/notification-add.php:253 notification/notification-edit.php:290
665
- #: subscribers/view-subscriber-edit.php:191
666
- msgid "Save"
667
- msgstr "Guardar"
668
-
669
- #: compose/compose-edit.php:20 compose/compose-preview.php:18
670
- #: compose/compose-show.php:33 notification/notification-edit.php:20
671
- #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
672
- #: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
673
- msgid "Oops, selected details does not exists."
674
- msgstr "Ups, los detalles seleccionados no existen."
675
-
676
- #: compose/compose-edit.php:61
677
- msgid "Template successfully updated. "
678
- msgstr "Plantilla Actualizada correctamente. "
679
-
680
- #: compose/compose-edit.php:84
681
- msgid "Edit Email"
682
- msgstr "Editar Email"
683
-
684
- #: compose/compose-edit.php:85 compose/compose-show.php:65
685
- #: notification/notification-edit.php:123 notification/notification-show.php:53
686
- msgid "Add New"
687
- msgstr "Añadir nuevo"
688
-
689
- #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
690
- msgid "Preview Mail"
691
- msgstr "Previsualizar Correo"
692
-
693
- #: compose/compose-preview.php:40 compose/compose-show.php:101
694
- #: notification/notification-show.php:100 subscribers/view-subscriber-show.php:404
695
- msgid "Edit"
696
- msgstr "Editar"
697
-
698
- #: compose/compose-show.php:14 sendmail/sendmail.php:18
699
- #: subscribers/view-subscriber-show.php:17
700
- msgid "Click Here"
701
- msgstr "Haz clic aquí"
702
 
703
- #: compose/compose-show.php:47 notification/notification-show.php:35
704
- #: sentmail/sentmail-show.php:36
705
- msgid "Selected record deleted."
706
- msgstr "Registro seleccionado borrado."
707
 
708
- #: compose/compose-show.php:77 compose/compose-show.php:84
709
- #: notification/notification-show.php:68 notification/notification-show.php:76
710
- msgid "Email Subject"
711
- msgstr "Asunto Correo"
712
 
713
- #: compose/compose-show.php:78 compose/compose-show.php:85
714
- msgid "Email Template"
715
- msgstr "Plantilla Correo"
716
 
717
- #: compose/compose-show.php:79 compose/compose-show.php:86
718
- msgid "Actions"
719
- msgstr "Acciones"
 
 
720
 
721
- #: compose/compose-show.php:102 notification/notification-show.php:103
722
- #: subscribers/view-subscriber-show.php:287 subscribers/view-subscriber-show.php:409
723
- msgid "Delete"
724
- msgstr "Borrar"
725
 
726
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
727
- #: sentmail/sentmail-show.php:124
728
- msgid "Preview"
729
- msgstr "Previsualizar"
 
730
 
731
- #: compose/compose-show.php:111 notification/notification-show.php:143
732
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
733
- #: subscribers/view-subscriber-show.php:432
734
- msgid "No records available."
735
- msgstr "No hay registros disponibles."
736
 
737
- #: export/export-email-address.php:45 export/export-email-address.php:49
738
- msgid "Unexpected url submit has been detected"
739
- msgstr "Se ha detectado envío de URL inexperada"
740
 
741
- #: help/help.php:47
742
- msgid "Welcome to Email Subscribers!"
743
- msgstr "¡Bienvenido a Email Subscribers!"
744
 
745
- #: help/help.php:48
746
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
747
- msgstr "Gracias por instalar y esperamos que disfrute el uso de Email Subscribers."
748
 
749
- #: help/help.php:52
750
- msgid "For more help and tips..."
751
- msgstr "Para más ayuda y sugerencias..."
752
 
753
- #: help/help.php:67
754
- #, c-format
755
  msgid ""
756
- "Like Email Subscribers? If yes, then consider %s to support further developments."
 
757
  msgstr ""
758
- "¿Te gusta Email Subscribers? Si es que sí, considera %s para ayudar con futuros "
759
- "desarrollos."
760
-
761
- #: help/help.php:67
762
- msgid "donating to us"
763
- msgstr "donándonos"
764
-
765
- #: help/help.php:99
766
- msgid "Frequently Asked Questions"
767
- msgstr "Preguntas más Frecuentes"
768
-
769
- #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
770
- #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
771
- #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
772
- #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
773
- #: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:181
774
- #: help/help.php:184 help/help.php:186
775
- #, c-format
776
- msgid "%s"
777
- msgstr "%s"
778
-
779
- #: help/help.php:118
780
- msgid "How to Add Subscription box to website?"
781
- msgstr "¿Cómo Añadir un cuadro de suscripción a la página web?"
782
-
783
- #: help/help.php:127
784
- msgid "General Plugin Settings"
785
- msgstr "Configuración General Plugin"
786
-
787
- #: help/help.php:130
788
- msgid "How to Import or Export Email Addresses?"
789
- msgstr "¿Cómo importar y exportar direcciones de correo?"
790
 
791
- #: help/help.php:133
792
- msgid "How to change/update/translate any texts from Email Subscribers?"
793
- msgstr "¿Cómo cambiar/actualizar/traducir cualquier texto de Email Subscribers?"
 
 
794
 
795
- #: help/help.php:136
796
- msgid "How to add Unsubscribe link in emails?"
797
- msgstr "¿Cómo añadir un enlace de cancelación de suscripción en los correos?"
798
 
799
- #: help/help.php:139
800
- msgid "How to Compose and Send Newsletter Emails?"
801
- msgstr "¿Cómo componer y enviar correos de lista de correo?"
802
 
803
- #: help/help.php:157
804
- msgid "Subscribers are not receiving Emails?"
805
- msgstr "¿Los suscriptores no están recibiendo los correos?"
806
 
807
- #: help/help.php:160
808
- msgid "How to show subscribe form inside a popup?"
809
- msgstr "¿Cómo mostrar el formulario de suscripción dentro de un popup?"
 
810
 
811
- #: help/help.php:163
812
- msgid "How to use Rainmaker’s form in Email Subscribers?"
813
- msgstr "¿Cómo utilizar el formulario de Rainmaker en Email Subscribers?"
814
 
815
- #: help/help.php:175
816
- msgid "How to Schedule Cron Emails in cPanel?"
817
- msgstr "¿Cómo programar correos Cron en cPanel?"
818
 
819
- #: help/help.php:178
820
- msgid "How to Schedule Cron Emails in Parallels Plesk?"
821
- msgstr "¿Cómo Programar Correos Cron en Parallels Plesk?"
822
 
823
- #: help/help.php:181
824
- msgid "What to do if Hosting doesn’t support Cron Jobs?"
825
- msgstr "¿Qué hacer si el Proveedor de Alojamiento no permite Cron Jobs?"
826
 
827
- #: help/help.php:184
828
- msgid "CSS Help"
829
- msgstr "Ayuda CSS"
830
 
831
- #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
832
- #: job/es-unsubscribe.php:61
833
- msgid ""
834
- "Oops.. We are getting some technical error. Please try again or contact admin."
835
  msgstr ""
836
- "Ups. Estamos teniendo algún problema técnico. Por favor inténtalo otra vez o "
837
- "contacta al administrador."
838
 
839
- #: job/es-optin.php:61
840
- msgid "This email address has already been confirmed."
841
- msgstr "Esta dirección de correo ya ha sido confirmada."
842
 
843
- #: notification/notification-add.php:33
844
  msgid "Please select subscribers group."
845
  msgstr "Por favor selecciona el grupo de suscriptores."
846
 
847
- #: notification/notification-add.php:39
848
  msgid "Please select notification status."
849
  msgstr "Por favor selecciona el estado de notificación."
850
 
851
- #: notification/notification-add.php:45 notification/notification-edit.php:61
852
  msgid "Please select notification mail subject. Use compose menu to create new."
853
  msgstr ""
854
  "Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
855
  "componer para crear uno nuevo."
856
 
857
- #: notification/notification-add.php:51 notification/notification-edit.php:67
858
  msgid "Please select post categories."
859
  msgstr "Por favor selecciona categorías de entrada."
860
 
861
- #: notification/notification-add.php:71
862
  msgid "Notification successfully created. "
863
  msgstr "La notificación se ha creado con éxito. "
864
 
865
- #: notification/notification-add.php:112
866
  msgid "Add Notification"
867
  msgstr "Añadir Notificación"
868
 
869
- #: notification/notification-add.php:120
 
 
 
 
 
 
 
 
 
 
 
 
870
  msgid "Select Subscribers Group"
871
  msgstr "Selecciona grupo de suscriptores"
872
 
873
- #: notification/notification-add.php:124 notification/notification-add.php:148
874
- #: notification/notification-edit.php:135 notification/notification-edit.php:168
875
- #: sendmail/sendmail.php:110 sendmail/sendmail.php:137 sendmail/sendmail.php:151
876
- #: subscribers/view-subscriber-add.php:162 subscribers/view-subscriber-edit.php:162
877
- #: subscribers/view-subscriber-import.php:190
878
- #: subscribers/view-subscriber-sync.php:119
879
  msgid "Select"
880
  msgstr "Seleccionar"
881
 
882
- #: notification/notification-add.php:142 notification/notification-edit.php:162
 
883
  msgid "Select Notification Email Subject"
884
  msgstr "Selecciona asunto de Correo de Notificación"
885
 
886
- #: notification/notification-add.php:143 notification/notification-edit.php:163
 
887
  msgid "(Use compose menu to create new)"
888
  msgstr "(Utiliza el menú componer para crear uno nuevo)"
889
 
890
- #: notification/notification-add.php:167 notification/notification-edit.php:190
 
891
  msgid "Select Post Categories"
892
  msgstr "Seleccionar Categorías de Entradas"
893
 
894
- #: notification/notification-add.php:195 notification/notification-edit.php:225
 
895
  msgid "Check All"
896
  msgstr "Selecciona todo"
897
 
898
- #: notification/notification-add.php:196 notification/notification-edit.php:226
 
899
  msgid "Uncheck All"
900
  msgstr "Deselecciona todo"
901
 
902
- #: notification/notification-add.php:202 notification/notification-edit.php:233
 
903
  msgid "Select your Custom Post Type"
904
  msgstr "Seleccionar tu tipo de entrada personalizada"
905
 
906
- #: notification/notification-add.php:203 notification/notification-edit.php:234
 
907
  msgid "(Optional)"
908
  msgstr "(Opcional)"
909
 
910
- #: notification/notification-add.php:232 notification/notification-edit.php:268
 
911
  msgid "No Custom Post Types Available"
912
  msgstr "No hay Tipos de Entrada Personalizadas Disponibles"
913
 
914
- #: notification/notification-add.php:239 notification/notification-edit.php:275
 
915
  msgid "Select Notification Status when a new post is published"
916
  msgstr "Selecciona Estado de Notificación cuando se publique una nueva entrada"
917
 
918
- #: notification/notification-add.php:243 notification/notification-edit.php:279
919
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
920
  msgid "Send email immediately"
921
  msgstr "Enviar correo inmediatamente"
922
 
923
- #: notification/notification-add.php:244 notification/notification-edit.php:280
924
- #: notification/notification-show.php:132
925
  msgid "Add to cron and send email via cron job"
926
  msgstr "Añadir a cron y enviar el correo vía tarea cron"
927
 
928
- #: notification/notification-add.php:245 notification/notification-edit.php:281
 
929
  msgid "Disable email notification"
930
  msgstr "Deshabilitar notificación de correo"
931
 
932
- #: notification/notification-edit.php:49
933
- msgid "Please select subscribers group"
934
- msgstr "Por favor, selecciona el grupo de suscriptores"
 
 
935
 
936
- #: notification/notification-edit.php:55
937
- msgid "Please select notification status"
938
- msgstr "Por favor, selecciona el estado de notificación"
 
 
 
939
 
940
- #: notification/notification-edit.php:89
941
- msgid "Notification successfully updated. "
942
- msgstr "Notificación actualizada con éxito. "
 
943
 
944
- #: notification/notification-edit.php:122
945
- msgid "Edit Notification"
946
- msgstr "Editar Notificación"
 
947
 
948
- #: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:289
949
- msgid "Update Subscribers Group"
950
- msgstr "Actualizar Grupo de Suscriptores"
 
951
 
952
- #: notification/notification-show.php:57
953
  msgid ""
954
- "Use this to setup and send notification emails to your subscribers when a new post "
955
- "is published in your blog."
956
  msgstr ""
957
- "Utiliza esto para configurar y enviar correos de notificación a tus suscriptores "
958
- "cuando se publique una nueva entrada en tu blog."
 
 
 
 
 
959
 
960
- #: notification/notification-show.php:69 notification/notification-show.php:77
 
961
  msgid "Subscribers Group"
962
  msgstr "Grupo de suscriptores"
963
 
964
- #: notification/notification-show.php:70 notification/notification-show.php:78
 
965
  msgid "Post Categories / Custom Post Types"
966
  msgstr "Categorías de Entradas / Tipos de Entradas personalizadas"
967
 
968
- #: notification/notification-show.php:71 notification/notification-show.php:79
 
969
  msgid "Notification Status"
970
  msgstr "Estado de Notificación"
971
 
972
- #: sendmail/sendmail.php:40
973
- msgid "Please select your mail subject."
974
- msgstr "Por favor selecciona el asunto de tu correo."
975
-
976
- #: sendmail/sendmail.php:46
977
- msgid "Please select your mail type."
978
- msgstr "Por favor selecciona tu tipo de correo."
979
-
980
- #: sendmail/sendmail.php:52
981
- msgid "Please select your group."
982
- msgstr "Por favor selecciona tu grupo."
983
-
984
- #: sendmail/sendmail.php:59
985
- msgid "Mail sent successfully. "
986
- msgstr "Correo enviado con éxito. "
987
-
988
- #: sendmail/sendmail.php:63
989
- msgid "Click here to check Statistics"
990
- msgstr "Haz clic aquí para comprobar Estadísticas"
991
-
992
- #: sendmail/sendmail.php:69
993
- msgid "Oops.. We are getting some error. mail not sending."
994
- msgstr "Ups. Estamos obteniendo algún error. No se envía correo."
995
-
996
- #: sendmail/sendmail.php:97
997
- msgid "Use this to send newsletter emails to your subscribers."
998
- msgstr "Utiliza esto para enviar correos de newsletter a tus suscriptores."
999
-
1000
- #: sendmail/sendmail.php:105
1001
- msgid "Select Email Subject from available list"
1002
- msgstr "Selecciona el Asunto del Correo de la lista disponible"
1003
-
1004
- #: sendmail/sendmail.php:132
1005
- msgid "Select Email Type"
1006
- msgstr "Selecciona tipo de Correo"
1007
-
1008
- #: sendmail/sendmail.php:139
1009
- msgid "Send email via cron job"
1010
- msgstr "Envía correo vía tarea cron"
1011
-
1012
- #: sendmail/sendmail.php:146
1013
- msgid "Select Subscribers group to Send Email"
1014
- msgstr "Selecciona grupo de suscriptores a los que Enviar Correo"
1015
-
1016
- #: sendmail/sendmail.php:178
1017
- msgid "Recipients : 0 "
1018
- msgstr "Destinatarios: 0 "
1019
-
1020
- #: sendmail/sendmail.php:180
1021
- #, c-format
1022
- msgid "Recipients : %s"
1023
- msgstr "Destinatarios: %s"
1024
-
1025
- #: sendmail/sendmail.php:183
1026
- msgid ""
1027
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1028
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click "
1029
- "on Help for more information."
1030
- msgstr ""
1031
- "<br><br><strong>El número de destinatarios es superior a 100.<br>Te recomendamos "
1032
- "encarecidamente que cambies el Tipo de Correo a Cron y Enviar Correo via Cron Job."
1033
- "</strong><br>Haz clic en Ayuda para más información."
1034
-
1035
- #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1036
- msgid "Send Email"
1037
- msgstr "Enviar Correo"
1038
-
1039
- #: sendmail/sendmail.php:199
1040
- msgid "Reset"
1041
- msgstr "Reiniciar"
1042
-
1043
- #: sentmail/deliverreport-show.php:14
1044
- msgid "Oops.. Unexpected error occurred. Please try again."
1045
- msgstr "Ups. Ha sucedido un error inesperado. Por favor, inténtelo de nuevo."
1046
-
1047
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1048
- msgid " &lt;&lt; "
1049
- msgstr " &lt;&lt; "
1050
-
1051
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1052
- msgid " &gt;&gt; "
1053
- msgstr " &gt;&gt; "
1054
-
1055
- #: sentmail/deliverreport-show.php:60
1056
- msgid "Delivery Report"
1057
- msgstr "Informe envío"
1058
-
1059
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1060
- #: subscribers/view-subscriber-export.php:45
1061
- #: subscribers/view-subscriber-export.php:53
1062
- msgid "Sno"
1063
- msgstr "Sno"
1064
-
1065
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1066
- msgid "Email"
1067
- msgstr "Correo"
1068
-
1069
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1070
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1071
- msgid "Sent"
1072
- msgstr "Enviado"
1073
-
1074
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1075
- msgid "Sent Date"
1076
- msgstr "Fecha Envío"
1077
-
1078
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1079
- msgid "Viewed Status"
1080
- msgstr "Estado visualización"
1081
-
1082
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1083
- msgid "Viewed Date"
1084
- msgstr "Fecha Visualización"
1085
-
1086
- #: sentmail/sentmail-preview.php:42
1087
- msgid "Back"
1088
- msgstr "Volver"
1089
-
1090
- #: sentmail/sentmail-show.php:43
1091
- msgid "Successfully deleted all reports except latest 10."
1092
- msgstr "Se borraron con éxito todos los informes excepto los últimos 10."
1093
 
1094
- #: sentmail/sentmail-show.php:100
1095
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1096
- msgstr ""
1097
- "Mostrará informes para todos los correos enviados de Newsletters y Notificaciones "
1098
- "de entradas."
1099
 
1100
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1101
- msgid "View Reports"
1102
- msgstr "Ver Informes"
 
 
1103
 
1104
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
1105
- msgid "Type"
1106
- msgstr "Tipo"
1107
 
1108
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1109
- msgid "Start Date"
1110
- msgstr "Fecha Comienzo"
1111
 
1112
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1113
- msgid "End Date"
1114
- msgstr "Fecha Fin"
1115
 
1116
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1117
- msgid "Total"
1118
- msgstr "Total"
1119
 
1120
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1121
- #: subscribers/view-subscriber-export.php:48
1122
- #: subscribers/view-subscriber-export.php:56 subscribers/view-subscriber-show.php:365
1123
- #: subscribers/view-subscriber-show.php:378
1124
- msgid "Action"
1125
- msgstr "Acción"
1126
 
1127
- #: sentmail/sentmail-show.php:193
1128
- msgid "Optimize Table & Delete Records"
1129
- msgstr "Optimizar Tabla y Borrar Registros"
1130
 
1131
- #: sentmail/sentmail-show.php:202
1132
  msgid ""
1133
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1134
- "delete all reports except latest 10."
1135
  msgstr ""
1136
- "Nota: Por favor, haz clic en el botón <strong>Optimizar Tabla y Borrar Registros</"
1137
- "strong> para borrar todos los informes excepto los últimos 10."
1138
-
1139
- #: settings/setting-sync.php:16
1140
- msgid "Table sync completed successfully."
1141
- msgstr "Sincronización de la Tabla finalizada con éxito."
1142
-
1143
- #: settings/setting-sync.php:29
1144
- msgid "Sync plugin tables"
1145
- msgstr "Sincronizar tablas del plugin"
1146
 
1147
- #: settings/setting-sync.php:33
1148
- msgid "Click to sync tables"
1149
- msgstr "Clic para sincronizar tablas"
1150
 
1151
- #: settings/settings-edit.php:23
1152
  msgid "Admin"
1153
  msgstr "Admin"
1154
 
1155
- #: settings/settings-edit.php:24
1156
  msgid "Signup Confirmation"
1157
  msgstr "Confirmación registro"
1158
 
1159
- #: settings/settings-edit.php:25
 
 
 
 
1160
  msgid "User Roles"
1161
  msgstr "Roles de usuario"
1162
 
1163
- #: settings/settings-edit.php:26
1164
- msgid "Cron"
1165
- msgstr "Cron"
 
1166
 
1167
- #: settings/settings-edit.php:64
1168
  msgid "Save Settings"
1169
  msgstr "Guardar configuración"
1170
 
1171
- #: settings/settings-edit.php:76
1172
  msgid "Sender of Notifications"
1173
  msgstr "Remitente de Notificaciones"
1174
 
1175
- #: settings/settings-edit.php:77
1176
- msgid ""
1177
- "Choose a FROM name and FROM email address for all the emails to be sent from this "
1178
- "plugin."
1179
- msgstr ""
1180
- "Elige el nombre DE y la dirección de correo DE para todos los correos que sean "
1181
- "enviados desde este plugin."
1182
-
1183
- #: settings/settings-edit.php:87
1184
- msgid "Mail Type"
1185
- msgstr "Tipo Correo"
1186
-
1187
- #: settings/settings-edit.php:88
1188
  msgid ""
1189
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & "
1190
- "4 is to send mails with PHP method mail()."
1191
  msgstr ""
1192
- "La opción 1 y 2 son para enviar correos con el método por defecto de WP wp_mail(). "
1193
- "La opción 3 y 4 es para enviar correos con el método PHP mail()."
1194
 
1195
- #: settings/settings-edit.php:92
1196
  msgid "1. WP HTML MAIL"
1197
  msgstr "1. WP CORREO HTML"
1198
 
1199
- #: settings/settings-edit.php:93
1200
  msgid "2. WP PLAINTEXT MAIL"
1201
  msgstr "2. WP CORREO TEXTO PLANO"
1202
 
1203
- #: settings/settings-edit.php:94
1204
  msgid "3. PHP HTML MAIL"
1205
  msgstr "3. PHP CORREO PHP"
1206
 
1207
- #: settings/settings-edit.php:95
1208
  msgid "4. PHP PLAINTEXT MAIL"
1209
  msgstr "4. PHP CORREO TEXTO PLANO"
1210
 
1211
- #: settings/settings-edit.php:102
1212
- msgid "Opt-In Option"
1213
- msgstr "Opción validación"
1214
-
1215
- #: settings/settings-edit.php:103
1216
- msgid ""
1217
- "Double Opt In means subscribers need to confirm their email address by an "
1218
- "activation link sent them on a activation email message.<br />Single Opt In means "
1219
- "subscribers do not need to confirm their email address."
1220
- msgstr ""
1221
- "Doble aceptación significa que los suscriptores deben confirmar sus direcciones de "
1222
- "correo usando un enlace de activación enviado en un mensaje de activación.<br/"
1223
- ">Aceptación única significa que los suscriptores no tienen que confirmar su "
1224
- "dirección de correo."
1225
-
1226
- #: settings/settings-edit.php:107
1227
  msgid "Double Opt In"
1228
  msgstr "Doble Aceptación"
1229
 
1230
- #: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
1231
- #: subscribers/view-subscriber-edit.php:150
1232
- #: subscribers/view-subscriber-import.php:178
1233
- #: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
1234
  msgid "Single Opt In"
1235
  msgstr "Aceptación individual"
1236
 
1237
- #: settings/settings-edit.php:114
1238
  msgid "Image Size"
1239
  msgstr "Tamaño de imagen"
1240
 
1241
- #: settings/settings-edit.php:115
1242
  msgid ""
1243
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
 
1244
  msgstr ""
1245
  "Selecciona el tamaño de imagen para ###POSTIMAGE### y que se muestre en los "
1246
  "correos de Notificación de Entradas."
1247
 
1248
- #: settings/settings-edit.php:119
1249
  msgid "Full Size"
1250
  msgstr "Tamaño Completo"
1251
 
1252
- #: settings/settings-edit.php:120
1253
  msgid "Medium Size"
1254
  msgstr "Tamaño Medio"
1255
 
1256
- #: settings/settings-edit.php:121
1257
  msgid "Thumbnail"
1258
  msgstr "Miniatura"
1259
 
1260
- #: settings/settings-edit.php:127
1261
  msgid "Admin Email Addresses"
1262
  msgstr "Direcciones de Correo del Administrador"
1263
 
1264
- #: settings/settings-edit.php:128
1265
  msgid ""
1266
- "Enter the admin email addresses that should receive notifications (separated by "
1267
- "comma)."
1268
  msgstr ""
1269
  "Introduce las direcciones de correo del administrador que deben recibir las "
1270
  "notificaciones (separadas por comas)."
1271
 
1272
- #: settings/settings-edit.php:134
1273
- msgid "Notify admin when a new subscriber signs up"
1274
- msgstr "Notificar al administrador cuando se suscriba un nuevo usuario"
1275
-
1276
- #: settings/settings-edit.php:135
1277
  msgid ""
1278
- "To send admin email notifications for the new subscriber. This option must be set "
1279
- "to YES."
1280
  msgstr ""
1281
- "Enviar notificaciones por correo al admin para cada nuevo suscriptor. Esta opción "
1282
- "debe estar configurada a SÍ."
1283
 
1284
- #: settings/settings-edit.php:147
1285
- msgid "Admin Email Subject when a new subscriber signs up"
1286
- msgstr "Asunto de Correo al Administrador cuando un nuevo usuario se suscriba"
1287
-
1288
- #: settings/settings-edit.php:148
1289
- msgid ""
1290
- "Enter the subject for the admin email which will be sent whenever a new email is "
1291
- "added and confirmed."
1292
- msgstr ""
1293
- "Introduce el asunto para el correo al administrador que será enviado cuando un "
1294
- "nuevo correo haya sido añadido y confirmado."
1295
 
1296
- #: settings/settings-edit.php:154
1297
- msgid "Admin Email Content when a new subscriber signs up"
1298
- msgstr "Contenido del Correo al Administrador cuando un nuevo usuario se suscriba"
 
1299
 
1300
- #: settings/settings-edit.php:162
1301
  msgid "Sent Report Subject"
1302
  msgstr "Enviar Asunto de Informe"
1303
 
1304
- #: settings/settings-edit.php:163
1305
- msgid "Enter the subject for the sent email report. It will be emailed to Admin."
1306
- msgstr ""
1307
- "Introduce el asunto para el informe de correo enviado. Será enviado al "
1308
- "administrador."
1309
-
1310
- #: settings/settings-edit.php:169
1311
  msgid "Sent Report Content"
1312
  msgstr "Contenido de Informe Enviado"
1313
 
1314
- #: settings/settings-edit.php:170
1315
- msgid ""
1316
- "Enter the content for the sent email report. It will be emailed to Admin. "
1317
- "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1318
- msgstr ""
1319
- "Inserta el contenido para el informe de correo enviado. Será enviado al "
1320
- "administrador. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1321
-
1322
- #: settings/settings-edit.php:179
1323
- msgid "Double Opt In Email Subject (Confirmation Email)"
1324
- msgstr "Asunto de correo de doble validación (Correo confirmación)"
1325
-
1326
- #: settings/settings-edit.php:180
1327
- msgid ""
1328
- "Enter the subject for the confirmation email to be sent for Double Opt In whenever "
1329
- "a user signs up."
1330
- msgstr ""
1331
- "Introduce el asunto del correo de confirmación que será enviado para Doble "
1332
- "Validación cuando un usuario se registre."
1333
-
1334
- #: settings/settings-edit.php:186
1335
- msgid "Double Opt In Email Content (Confirmation Email)"
1336
- msgstr "Contenido del correo Doble Validación (Correo Confirmación)"
1337
-
1338
- #: settings/settings-edit.php:187
1339
- msgid ""
1340
- "Enter the content for the confirmation email to be sent for Double Opt In whenever "
1341
- "a user signs up. (Keyword: ###NAME###, ###LINK###)"
1342
- msgstr ""
1343
- "Introduce el contenido para el correo de confirmación que será enviado como Doble "
1344
- "Validación cuando un usuario se registre. (Keyword: ###NAME###, ###LINK###)"
1345
-
1346
- #: settings/settings-edit.php:193
1347
- msgid "Double Opt In Confirmation Link"
1348
- msgstr "Enlace de confirmación para doble aceptación"
1349
-
1350
- #: settings/settings-edit.php:194
1351
  msgid "It is a readonly field and you are advised not to modify it."
1352
  msgstr "Es un campo de sólo lectura y te aconsejamos que no lo modifiques."
1353
 
1354
- #: settings/settings-edit.php:200
1355
- msgid ""
1356
- "Text to display after an email address is successfully subscribed from Double Opt "
1357
- "In (confirmation) Email"
1358
- msgstr ""
1359
- "Texto para mostrar cuando una dirección de correo se haya suscrito correctamente "
1360
- "desde el correo de Doble Validación (confirmación)"
1361
-
1362
- #: settings/settings-edit.php:201
1363
- msgid ""
1364
- "This text will be displayed once user clicks on email confirmation link from the "
1365
- "Double Opt In (confirmation) Email."
1366
- msgstr ""
1367
- "Este texto se mostrará una vez el usuario haga clic en el enlace de confirmación "
1368
- "de correo de Doble Aceptación (confirmación)."
1369
-
1370
- #: settings/settings-edit.php:208
1371
- msgid "Subscriber Welcome Email"
1372
- msgstr "Correo de Bienvenida para el Suscriptor"
1373
-
1374
- #: settings/settings-edit.php:209
1375
- msgid ""
1376
- "To send welcome email to subscriber after successful signup. This option must be "
1377
- "set to YES."
1378
- msgstr ""
1379
- "Para enviar un correo de bienvenida al suscriptor después de haberse registrado "
1380
- "con éxito. Esta opción debe configurarse a SÍ."
1381
-
1382
- #: settings/settings-edit.php:220
1383
- msgid "Subscriber Welcome Email Subject"
1384
- msgstr "Asunto del correo de Bienvenida al Suscriptor"
1385
-
1386
- #: settings/settings-edit.php:221
1387
  msgid ""
1388
- "Enter the subject for the subscriber welcome email. This will be sent whenever a "
1389
- "user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt "
1390
- "In) successfully."
1391
  msgstr ""
1392
- "Introduce el asunto para el correo de bienvenida al suscriptor. Será enviado "
1393
- "cuando un correo de usuario haya sido o confirmado (si hay Doble Validación) o "
1394
- "suscrito (si Validación simple) correctamente."
1395
 
1396
- #: settings/settings-edit.php:227
1397
- msgid "Subscriber Welcome Email Content"
1398
- msgstr "Contenido del Correo de Bienvenida al Suscriptor"
1399
-
1400
- #: settings/settings-edit.php:228
1401
  msgid ""
1402
- "Enter the content for the subscriber welcome email whenever a user's email is "
1403
- "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
1404
- "(Keyword: ###NAME###, ###GROUP###, ###LINK###)"
1405
  msgstr ""
1406
- "Introduce el contenido para el correo de bienvenida del suscriptor ya sea cuando "
1407
- "el correo del usuario haya sido confirmado (con Doble Confirmación) / suscritor "
1408
- "(Confirmación simple) con éxito. (Palabras clave: ###NAME###, ###GROUP###, "
1409
- "###LINK###)"
1410
 
1411
- #: settings/settings-edit.php:236
1412
  msgid "Unsubscribe Link"
1413
  msgstr "Enlace cancelar suscripción"
1414
 
1415
- #: settings/settings-edit.php:237
1416
- msgid ""
1417
- "The unsubscribe link gets added automatically to all emails that are sent from "
1418
- "this plugin. It is a readonly field and you are advised not to modify it."
1419
- msgstr ""
1420
- "El enlace de cancelación de suscripción se añade automáticamente a todos los "
1421
- "correos que hayan sido enviados desde este plugin. Es un campo de solo lectura y "
1422
- "te recomendamos encarecidamente que no lo modifiques."
1423
-
1424
- #: settings/settings-edit.php:243
1425
  msgid "Unsubscribe Text in Email"
1426
  msgstr "Texto de cancelación de suscripción en Correo"
1427
 
1428
- #: settings/settings-edit.php:244
1429
- msgid ""
1430
- "Enter the text for the unsubscribe link. This text is added with unsubscribe link "
1431
- "in the emails. (Keyword: ###LINK###)"
1432
- msgstr ""
1433
- "Introduce el texto para el enlace de anulación de suscripción. Este texto se "
1434
- "añadirá con un enlace para cancelar la suscripción en los correos. (Palabra clave: "
1435
- "###LINK###)"
1436
-
1437
- #: settings/settings-edit.php:250
1438
  msgid "Text to display after an email address is unsubscribed"
1439
  msgstr ""
1440
- "Texto para mostrar cuando una dirección de correo haya cancelado la suscripción"
1441
-
1442
- #: settings/settings-edit.php:251
1443
- msgid "This text will be displayed once user clicks on unsubscribe link."
1444
- msgstr ""
1445
- "Este texto será mostrado cuando el usuario haya hecho clic en el enlace de "
1446
- "cancelación de suscripción."
1447
-
1448
- #: settings/settings-edit.php:258
1449
- msgid "Error in the Confirmation Link"
1450
- msgstr "Error en el Enlace de Confirmación"
1451
-
1452
- #: settings/settings-edit.php:259
1453
- msgid ""
1454
- "Default message to display if there is any issue while clicking on confirmation "
1455
- "link from the Double Opt In (confirmation) Emails."
1456
- msgstr ""
1457
- "Mensaje por defecto para mostrar si hay algún problema cuando se hace clic en el "
1458
- "correo de confirmación desde los correos de Doble Aceptación (confirmación)."
1459
 
1460
- #: settings/settings-edit.php:265
1461
  msgid "Error in the Unsubscribe Link"
1462
  msgstr "Error en el enlace de Cancelación de suscripción"
1463
 
1464
- #: settings/settings-edit.php:266
1465
- msgid ""
1466
- "Default message to display if there is any issue while clicking on unsubscribe "
1467
- "link from the Emails."
1468
- msgstr ""
1469
- "Mensaje por defecto para mostrar si hay algún problema al hacer clic en el enlace "
1470
- "de cancelación de suscripción de los correos."
1471
-
1472
- #: settings/settings-edit.php:276
1473
  msgid "Select user roles who can access following menus. Only Admin can change this."
1474
  msgstr ""
1475
- "Selecciona roles de usuario que puedan acceder a los siguientes menús. Sólo el "
1476
- "administrador puede cambiar esto."
1477
 
1478
- #: settings/settings-edit.php:282
1479
  msgid "Subscribers Menu"
1480
  msgstr "Menú suscriptores"
1481
 
1482
- #: settings/settings-edit.php:286 settings/settings-edit.php:298
1483
- #: settings/settings-edit.php:310 settings/settings-edit.php:322
1484
- #: settings/settings-edit.php:334
1485
  msgid "Administrator Only"
1486
  msgstr "Sólo Administrador"
1487
 
1488
- #: settings/settings-edit.php:287 settings/settings-edit.php:299
1489
- #: settings/settings-edit.php:311 settings/settings-edit.php:323
1490
- #: settings/settings-edit.php:335
1491
  msgid "Administrator/Editor"
1492
  msgstr "Administrador/Editor"
1493
 
1494
- #: settings/settings-edit.php:288 settings/settings-edit.php:300
1495
- #: settings/settings-edit.php:312 settings/settings-edit.php:324
1496
- #: settings/settings-edit.php:336
1497
  msgid "Administrator/Editor/Author/Contributor"
1498
  msgstr "Administrador/Editor/Autor/Colaborador"
1499
 
1500
- #: settings/settings-edit.php:294
1501
  msgid "Compose Menu"
1502
  msgstr "Menú componer"
1503
 
1504
- #: settings/settings-edit.php:306
1505
  msgid "Post Notifications Menu"
1506
  msgstr "Menú de notificaciones de entradas"
1507
 
1508
- #: settings/settings-edit.php:330
 
 
 
 
 
1509
  msgid "Reports Menu"
1510
  msgstr "Menú Informes"
1511
 
1512
- #: settings/settings-edit.php:345
1513
  msgid "Cron job URL"
1514
  msgstr "URL tarea Cron"
1515
 
1516
- #: settings/settings-edit.php:346
1517
  msgid ""
1518
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1519
  "modify it."
1520
  msgstr ""
1521
- "Esta es la URL de tu tarea Cron. Es un campo de solo lectura y te recomendamos que "
1522
- "no lo modifiques."
1523
 
1524
- #: settings/settings-edit.php:355
1525
  msgid "Email Count"
1526
  msgstr "Contador Correo"
1527
 
1528
- #: settings/settings-edit.php:356
1529
  msgid "Number of emails that you want to trigger per hour."
1530
  msgstr "Número de correos que quieres que se envíen por hora."
1531
 
1532
- #: settings/settings-edit.php:361
1533
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
1534
- msgstr ""
1535
- "(Tu proveedor de alojamiento tiene límites. Te sugerimos 50 correos por hora para "
1536
- "estar seguro)"
1537
-
1538
- #: settings/settings-edit.php:366
1539
- msgid "Admin Report"
1540
- msgstr "Informe Admin"
1541
-
1542
- #: settings/settings-edit.php:367
1543
- msgid ""
1544
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
1545
- "###DATE###, ###SUBJECT###, ###COUNT###)"
1546
- msgstr ""
1547
- "Email al admin cuando se lance una URL cron desde tu servidor. (Palabras clave: "
1548
- "###DATE###, ###SUBJECT###, ###COUNT###)"
1549
-
1550
- #: settings/settings-edit.php:377
1551
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1552
  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=\"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
1587
  msgid "Please enter sender of notifications from name."
1588
  msgstr "Por favor introduce el nombre 'de' para el emisor de notificaciones."
1589
 
1590
- #: settings/settings-edit.php:500
1591
  msgid "Please enter sender of notifications from email."
1592
  msgstr "Por favor introduce el correo 'de' para el emisor de notificaciones."
1593
 
1594
- #: settings/settings-edit.php:544
1595
  msgid "Please enter valid mail count."
1596
  msgstr "Por favor, introduzca una cuenta de correo válida."
1597
 
1598
- #: settings/settings-edit.php:557
1599
  msgid "Settings Saved."
1600
  msgstr "Configuración guardada."
1601
 
1602
- #: settings/settings-edit.php:560
1603
  msgid "Oops, unable to update."
1604
  msgstr "Ups, no se ha podido actualizadar."
1605
 
1606
- #: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
1607
- msgid "Please enter subscriber email address."
1608
- msgstr "Por favor introduce la dirección de correo de suscriptor."
1609
-
1610
- #: subscribers/view-subscriber-add.php:49
1611
- msgid "Please select or create your group for this email."
1612
- msgstr "Por favor selecciona o crea tu grupo para este correo."
1613
 
1614
- #: subscribers/view-subscriber-add.php:56
1615
- msgid ""
1616
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1617
- "group name."
1618
- msgstr ""
1619
- "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
1620
- "como nombre de grupo."
1621
 
1622
- #: subscribers/view-subscriber-add.php:66
1623
- msgid "Subscriber has been saved."
1624
- msgstr "Suscriptor ha sido guardado."
1625
 
1626
- #: subscribers/view-subscriber-add.php:68
1627
- msgid "Subscriber already exists."
1628
- msgstr "Suscriptor ya existe."
1629
 
1630
- #: subscribers/view-subscriber-add.php:71
1631
- msgid "Invalid Email."
1632
- msgstr "Correo no válido."
1633
-
1634
- #: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
1635
- #: subscribers/view-subscriber-export.php:35
1636
- #: subscribers/view-subscriber-import.php:143
1637
- #: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
1638
- msgid "Add New Subscriber"
1639
- msgstr "Añadir Nuevo Suscriptor"
1640
-
1641
- #: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
1642
- #: subscribers/view-subscriber-export.php:36
1643
- #: subscribers/view-subscriber-import.php:210
1644
- #: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
1645
- msgid "Import"
1646
- msgstr "Importar"
1647
-
1648
- #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
1649
- #: subscribers/view-subscriber-import.php:144
1650
- #: subscribers/view-subscriber-show.php:244 subscribers/view-subscriber-sync.php:91
1651
- msgid "Export"
1652
- msgstr "Exportar"
1653
-
1654
- #: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
1655
- #: subscribers/view-subscriber-export.php:37
1656
- #: subscribers/view-subscriber-import.php:145
1657
- #: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:143
1658
- msgid "Sync"
1659
- msgstr "Sincronizar"
1660
-
1661
- #: subscribers/view-subscriber-add.php:123
1662
- msgid "Enter Subscriber's Full name"
1663
- msgstr "Introduce nombre completo del suscriptor"
1664
-
1665
- #: subscribers/view-subscriber-add.php:133
1666
- msgid "Enter Subscriber's Email Address"
1667
- msgstr "Introduce la dirección de correo del suscriptor"
1668
-
1669
- #: subscribers/view-subscriber-add.php:143
1670
- msgid "Select Subscriber's Status"
1671
- msgstr "Selecciona Estado Suscriptor"
1672
-
1673
- #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1674
- #: subscribers/view-subscriber-import.php:175
1675
- #: subscribers/view-subscriber-show.php:309 subscribers/view-subscriber-show.php:336
1676
- msgid "Confirmed"
1677
- msgstr "Confirmado"
1678
-
1679
- #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1680
- #: subscribers/view-subscriber-import.php:176
1681
- #: subscribers/view-subscriber-show.php:310 subscribers/view-subscriber-show.php:337
1682
- msgid "Unconfirmed"
1683
- msgstr "Sin Confirmar"
1684
-
1685
- #: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
1686
- #: subscribers/view-subscriber-import.php:177
1687
- #: subscribers/view-subscriber-show.php:311 subscribers/view-subscriber-show.php:338
1688
- msgid "Unsubscribed"
1689
- msgstr "Suscripciones canceladas"
1690
-
1691
- #: subscribers/view-subscriber-add.php:158
1692
- msgid "Select (or) Create Group for Subscriber"
1693
- msgstr "Selecciona (o) Crear Grupo para Suscriptores"
1694
-
1695
- #: subscribers/view-subscriber-add.php:174 subscribers/view-subscriber-import.php:202
1696
- msgid "(or)"
1697
- msgstr "(o)"
1698
 
1699
- #: subscribers/view-subscriber-add.php:183
1700
- msgid "Add Subscriber"
1701
- msgstr "Añadir Suscriptor"
1702
 
1703
- #: subscribers/view-subscriber-edit.php:64
1704
- msgid "Error: Special characters are not allowed in the group name."
1705
- msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
1706
 
1707
- #: subscribers/view-subscriber-edit.php:74
1708
- msgid "Subscriber details updated."
1709
- msgstr "Detalles del Suscriptor actualizados."
1710
 
1711
- #: subscribers/view-subscriber-edit.php:76
1712
- msgid "Subscriber already exists for this group."
1713
- msgstr "El suscriptor ya existe en este grupo."
 
1714
 
1715
- #: subscribers/view-subscriber-edit.php:108
1716
- msgid "Edit Subscriber"
1717
- msgstr "Editar Suscriptor"
 
 
1718
 
1719
- #: subscribers/view-subscriber-edit.php:122
1720
- msgid "Subscriber's Full Name"
1721
- msgstr "Nombre completo del suscriptor"
1722
 
1723
- #: subscribers/view-subscriber-edit.php:132
1724
- msgid "Subscriber's Email Address"
1725
- msgstr "Dirección de correo electrónico del suscriptor"
 
1726
 
1727
- #: subscribers/view-subscriber-edit.php:142
1728
- msgid "Update Subscriber's Status"
1729
- msgstr "Actualizar Estado Suscriptor"
1730
 
1731
- #: subscribers/view-subscriber-edit.php:157
1732
- msgid "Update Subscriber's Group"
1733
- msgstr "Actualizar Grupo de Suscriptores"
 
 
 
1734
 
1735
- #: subscribers/view-subscriber-export.php:34
1736
- msgid "Export Email Addresses"
1737
- msgstr "Exportar Direcciones Correo"
 
1738
 
1739
- #: subscribers/view-subscriber-export.php:46
1740
- #: subscribers/view-subscriber-export.php:54
1741
- msgid "Type of List to Export"
1742
- msgstr "Tipo de Lista para Exportar"
1743
 
1744
- #: subscribers/view-subscriber-export.php:47
1745
- #: subscribers/view-subscriber-export.php:55
1746
- msgid "Total Emails Count"
1747
- msgstr "Contador Total de Correos"
1748
 
1749
- #: subscribers/view-subscriber-export.php:61
1750
- msgid "1"
1751
- msgstr "1"
1752
 
1753
- #: subscribers/view-subscriber-export.php:62
1754
- msgid "All Subscribers"
1755
- msgstr "Todos los suscriptores"
 
 
 
1756
 
1757
- #: subscribers/view-subscriber-export.php:64
1758
- #: subscribers/view-subscriber-export.php:70
1759
- #: subscribers/view-subscriber-export.php:76
1760
- #: subscribers/view-subscriber-export.php:82
1761
- #: subscribers/view-subscriber-export.php:88
1762
- msgid "Click to Export in CSV"
1763
- msgstr "Clic para Exportar en CSV"
1764
 
1765
- #: subscribers/view-subscriber-export.php:67
1766
- msgid "2"
1767
- msgstr "2"
 
 
 
 
1768
 
1769
- #: subscribers/view-subscriber-export.php:68
1770
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1771
- msgstr "Suscriptores activos (Estado: Confirmados y confirmación simple)"
1772
 
1773
- #: subscribers/view-subscriber-export.php:73
1774
- msgid "3"
1775
- msgstr "3"
1776
 
1777
- #: subscribers/view-subscriber-export.php:74
1778
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1779
- msgstr "Suscriptores inactivos (Estado: Sin confirmar y dados de baja)"
 
 
1780
 
1781
- #: subscribers/view-subscriber-export.php:79
1782
- msgid "4"
1783
- msgstr "4"
1784
 
1785
- #: subscribers/view-subscriber-export.php:80
1786
- msgid "WordPress Registered Users"
1787
- msgstr "Usuarios Registrados WordPress"
1788
 
1789
- #: subscribers/view-subscriber-export.php:85
1790
- msgid "5"
1791
- msgstr "5"
1792
 
1793
- #: subscribers/view-subscriber-export.php:86
1794
- msgid "Commented Authors"
1795
- msgstr "Autores Comentados"
1796
 
1797
- #: subscribers/view-subscriber-import.php:44
1798
  msgid ""
1799
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1800
- "Group name."
1801
  msgstr ""
1802
  "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no están "
1803
  "permitidos como nombre de Grupo."
1804
 
1805
- #: subscribers/view-subscriber-import.php:92
1806
  msgid "email imported."
1807
  msgstr "correo importado."
1808
 
1809
- #: subscribers/view-subscriber-import.php:93
1810
  msgid "email already exists."
1811
  msgstr "correo electrónico ya existe."
1812
 
1813
- #: subscribers/view-subscriber-import.php:94
1814
  msgid "email are invalid."
1815
  msgstr "correo no válido."
1816
 
1817
- #: subscribers/view-subscriber-import.php:97
1818
- #: subscribers/view-subscriber-import.php:126
1819
  msgid "Click here"
1820
  msgstr "Haz clic aquí"
1821
 
1822
- #: subscribers/view-subscriber-import.php:97
1823
- #: subscribers/view-subscriber-import.php:126
1824
  msgid " to view details."
1825
  msgstr " para ver los detalles."
1826
 
1827
- #: subscribers/view-subscriber-import.php:105
1828
  msgid "File Upload Failed."
1829
  msgstr "Fallo en Subida de Archivo."
1830
 
1831
- #: subscribers/view-subscriber-import.php:142
1832
  msgid "Import Email Addresses"
1833
  msgstr "Importar Direcciones Correo"
1834
 
1835
- #: subscribers/view-subscriber-import.php:155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1836
  msgid "Select CSV file"
1837
  msgstr "Selecciona archivo CSV"
1838
 
1839
- #: subscribers/view-subscriber-import.php:157
1840
  msgid "Check CSV structure "
1841
  msgstr "Comprobar estructura CSV "
1842
 
1843
- #: subscribers/view-subscriber-import.php:158
1844
  msgid "from here"
1845
  msgstr "desde aquí"
1846
 
1847
- #: subscribers/view-subscriber-import.php:169
1848
  msgid "Select Subscribers Email Status"
1849
  msgstr "Selecciona el estado de correo de suscriptor"
1850
 
1851
- #: subscribers/view-subscriber-import.php:185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1852
  msgid "Select (or) Create Group for Subscribers"
1853
  msgstr "Selecciona (o) Crear Grupo para Suscriptores"
1854
 
1855
- #: subscribers/view-subscriber-show.php:45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1856
  msgid "Selected details does not exists."
1857
  msgstr "Los detalles seleccionados no existen."
1858
 
1859
- #: subscribers/view-subscriber-show.php:56 subscribers/view-subscriber-show.php:95
 
1860
  msgid "Record deleted."
1861
  msgstr "Registro borrado."
1862
 
1863
- #: subscribers/view-subscriber-show.php:67
1864
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1865
  msgstr ""
1866
- "Para mandar correo de confirmación, por favor cambia la opción de Aceptación a "
1867
- "Doble Aceptación."
1868
 
1869
- #: subscribers/view-subscriber-show.php:75 subscribers/view-subscriber-show.php:134
 
1870
  msgid "Confirmation emails Resent Successfully."
1871
  msgstr "Correo de confirmación reenviado con éxito."
1872
 
1873
- #: subscribers/view-subscriber-show.php:100 subscribers/view-subscriber-show.php:139
1874
- #: subscribers/view-subscriber-show.php:177 subscribers/view-subscriber-show.php:216
 
1875
  msgid "No record was selected."
1876
  msgstr "No se han seleccionado registros."
1877
 
1878
- #: subscribers/view-subscriber-show.php:115
1879
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1880
  msgstr ""
1881
- "Para mandar correo de confirmación, por favor cambia la opción de Aceptación a "
1882
- "Doble Aceptación."
1883
 
1884
- #: subscribers/view-subscriber-show.php:163
1885
  msgid "Subscribers Group updated."
1886
  msgstr "Grupo de suscriptores actualizados."
1887
 
1888
- #: subscribers/view-subscriber-show.php:168
1889
  msgid "Please select New group to update."
1890
  msgstr "Por favor selecciona un nuevo grupo para actualizar."
1891
 
1892
- #: subscribers/view-subscriber-show.php:202
1893
  msgid "Subscribers Status updated."
1894
  msgstr "Estado de los suscriptores actualizados."
1895
 
1896
- #: subscribers/view-subscriber-show.php:207
1897
  msgid "Please select New Status to update."
1898
  msgstr "Por favor selecciona el Nuevo Estado a actualizar."
1899
 
1900
- #: subscribers/view-subscriber-show.php:252
1901
- #, c-format
 
 
 
 
 
1902
  msgid "Total Subscribers: %s"
1903
  msgstr "Total suscriptores: %s"
1904
 
1905
- #: subscribers/view-subscriber-show.php:254
1906
- #, c-format
1907
  msgid "Active Subscribers: %s"
1908
  msgstr "Suscriptores activos: %s"
1909
 
1910
- #: subscribers/view-subscriber-show.php:286
1911
  msgid "Bulk Actions"
1912
  msgstr "Accione en bloque"
1913
 
1914
- #: subscribers/view-subscriber-show.php:288 subscribers/view-subscriber-show.php:417
 
1915
  msgid "Resend Confirmation"
1916
  msgstr "Reenviar Confirmación"
1917
 
1918
- #: subscribers/view-subscriber-show.php:290
1919
  msgid "Update Subscribers Status"
1920
  msgstr "Actualizar Estado de Suscriptores"
1921
 
1922
- #: subscribers/view-subscriber-show.php:293
1923
  msgid "Select Group"
1924
  msgstr "Seleccionar Grupo"
1925
 
1926
- #: subscribers/view-subscriber-show.php:308
1927
  msgid "Select Status"
1928
  msgstr "Selecciona Estado"
1929
 
1930
- #: subscribers/view-subscriber-show.php:314
1931
  msgid "Apply"
1932
  msgstr "Aplicar"
1933
 
1934
- #: subscribers/view-subscriber-show.php:318
1935
  msgid "All Groups"
1936
  msgstr "Todos los Grupos"
1937
 
1938
- #: subscribers/view-subscriber-show.php:335
1939
  msgid "All Status"
1940
  msgstr "Todos los Estados"
1941
 
1942
- #: subscribers/view-subscriber-show.php:342
1943
  msgid "1 to 500 emails"
1944
  msgstr "1 a 500 correos"
1945
 
1946
- #: subscribers/view-subscriber-show.php:343
1947
  msgid "501 to 1000"
1948
  msgstr "501 a 1000"
1949
 
1950
- #: subscribers/view-subscriber-show.php:344
1951
  msgid "1001 to 1500"
1952
  msgstr "1001 a 1500"
1953
 
1954
- #: subscribers/view-subscriber-show.php:345
1955
  msgid "1501 to 2000"
1956
  msgstr "1501 a 2000"
1957
 
1958
- #: subscribers/view-subscriber-show.php:346
1959
  msgid "2001 to 4000"
1960
  msgstr "2001 a 4000"
1961
 
1962
- #: subscribers/view-subscriber-show.php:347
1963
  msgid "4001 to 6000"
1964
  msgstr "4001 a 6000"
1965
 
1966
- #: subscribers/view-subscriber-show.php:348
1967
  msgid "6001 to 10000"
1968
  msgstr "6001 a 10000"
1969
 
1970
- #: subscribers/view-subscriber-show.php:349
1971
  msgid "Display All"
1972
  msgstr "Mostrar Todo"
1973
 
1974
- #: subscribers/view-subscriber-show.php:360 subscribers/view-subscriber-show.php:373
 
1975
  msgid "Email Address"
1976
  msgstr "Dirección E-Mail"
1977
 
1978
- #: subscribers/view-subscriber-show.php:363 subscribers/view-subscriber-show.php:376
 
 
 
 
 
 
1979
  msgid "Group"
1980
  msgstr "Grupo"
1981
 
1982
- #: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
 
1983
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1984
  msgstr "Fecha y Hora de Registro<br>(Y-M-D H:I:S)"
1985
 
1986
- #: subscribers/view-subscriber-sync.php:36
1987
- msgid "Please select default group to newly registered user."
1988
- msgstr "Por favor selecciona el grupo por defecto para el usuario recién registrado."
1989
 
1990
- #: subscribers/view-subscriber-sync.php:50
1991
- msgid "Emails Successfully Synced."
1992
- msgstr "Correo Correctamente sincronizados."
 
1993
 
1994
- #: subscribers/view-subscriber-sync.php:88
1995
- msgid "Sync Email"
1996
- msgstr "Sincronizar Correo"
 
1997
 
1998
- #: subscribers/view-subscriber-sync.php:101
1999
- msgid "Sync newly registered users to subscribers list"
2000
- msgstr "Sincronizar usuarios registrados recientemente con lista de suscriptores"
2001
 
2002
- #: subscribers/view-subscriber-sync.php:114
2003
- msgid "Select group to add newly registered users to"
2004
- msgstr "Selecciona grupo en el que añadir los usuarios recién registrados"
2005
 
2006
- #. Name of the plugin
2007
- msgid "Email Subscribers & Newsletters"
2008
- msgstr "Email Subscribers & Newsletters"
 
 
 
 
 
 
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 ""
2017
- "Add subscription forms on website, send HTML newsletters & automatically notify "
2018
- "subscribers about new blog posts once it is published."
2019
  msgstr ""
2020
- "Añade formularios de suscripción al sitio web, envía newsletters HTML y notifica "
2021
- "automáticamente a suscriptores cuando se publiquen nuevas entradas en el blog."
2022
 
2023
- #. Author of the plugin
2024
- msgid "Icegram"
2025
- msgstr "Icegram"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:25:52 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Spanish (Spain)\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Poedit-Basepath: ..\n"
23
  "X-Loco-Target-Locale: es_ES\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
+ "X-Poedit-SearchPathExcluded-0: *.js"
26
 
27
+ #. URI of the plugin
28
+ msgid "https://www.icegram.com"
29
+ msgstr ""
30
 
31
+ #: ../email-subscribers.php:70
32
+ msgctxt "timezone date format"
33
+ msgid "Y-m-d H:i:s"
34
+ msgstr ""
35
 
36
+ #: ../settings/settings-edit.php:92
37
+ msgid "Email Type"
38
+ msgstr ""
39
 
40
+ #: ../settings/settings-edit.php:93
41
  msgid ""
42
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
43
+ "Option 3 & 4 is to send emails with PHP method mail()."
44
+ msgstr ""
45
+
46
+ #: ../settings/settings-edit.php:107
47
+ msgid "Opt-In Type"
48
  msgstr ""
 
 
49
 
50
+ #: ../settings/settings-edit.php:108
51
  msgid ""
52
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
53
+ "soon as they subscribe to your list. They have to confirm their subscription "
54
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
55
+ "subscriber is not asked to confirm their email address. They are subscribed "
56
+ "directly in the list."
57
  msgstr ""
 
 
58
 
59
+ #: ../settings/settings-edit.php:139
60
+ msgid "Notify Admin when a new subscriber signs up"
61
+ msgstr ""
62
 
63
+ #: ../settings/settings-edit.php:152
64
+ msgid "Admin Email Subject on new subscriber sign up"
65
  msgstr ""
 
 
66
 
67
+ #: ../settings/settings-edit.php:153
68
+ msgid ""
69
+ "Subject for the admin email whenever a new subscriber signs up and is "
70
+ "confirmed."
71
+ msgstr ""
72
 
73
+ #: ../settings/settings-edit.php:159
74
+ msgid "Admin Email Content on new subscriber signs up"
75
+ msgstr ""
76
 
77
+ #: ../settings/settings-edit.php:160
78
+ msgid ""
79
+ "Content for the admin email whenever a new subscriber signs up and is "
80
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
81
  msgstr ""
 
 
82
 
83
+ #: ../settings/settings-edit.php:168
84
+ msgid "Subject for the email report which will be sent to admin."
85
+ msgstr ""
86
 
87
+ #: ../settings/settings-edit.php:175
88
+ msgid ""
89
+ "Content for the email report which will be sent to admin.<br />(Available "
90
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
91
+ msgstr ""
92
 
93
+ #: ../settings/settings-edit.php:186
94
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
95
+ msgstr ""
96
 
97
+ #: ../settings/settings-edit.php:187
98
  msgid ""
99
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
100
+ "subscriber signs up."
101
+ msgstr ""
102
+
103
+ #: ../settings/settings-edit.php:193
104
+ msgid "Double Opt-In Email Content (Confirmation Email)"
105
  msgstr ""
 
 
 
106
 
107
+ #: ../settings/settings-edit.php:194
108
  msgid ""
109
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
110
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
 
 
111
  msgstr ""
 
 
 
 
112
 
113
+ #: ../settings/settings-edit.php:200
114
+ msgid "Double Opt-In Confirmation Link"
115
+ msgstr ""
116
 
117
+ #: ../settings/settings-edit.php:207
118
+ msgid ""
119
+ "Text to display after an email address is successfully subscribed from "
120
+ "Double Opt-In (Confirmation) Email"
121
+ msgstr ""
122
 
123
+ #: ../settings/settings-edit.php:215
124
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
125
+ msgstr ""
126
 
127
+ #: ../settings/settings-edit.php:227
128
+ msgid "Subject for Welcome Email"
129
+ msgstr ""
130
 
131
+ #: ../settings/settings-edit.php:228
132
+ msgid ""
133
+ "Subject for the subscriber welcome email. This will be sent whenever a "
134
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
135
+ "Opt-In) successfully."
136
+ msgstr ""
137
 
138
+ #: ../settings/settings-edit.php:234
139
+ msgid "Email Content for Welcome Email"
140
+ msgstr ""
141
 
142
+ #: ../settings/settings-edit.php:235
143
+ msgid ""
144
+ "Content for the subscriber welcome email whenever a user's email is either "
145
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
146
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
147
+ msgstr ""
148
 
149
+ #: ../settings/settings-edit.php:244
150
+ msgid ""
151
+ "This unsubscribe link is automatically added to all the emails that are sent "
152
+ "from this plugin. It is a readonly field and you are advised not to modify "
153
+ "it."
154
+ msgstr ""
155
 
156
+ #: ../settings/settings-edit.php:251
157
+ msgid ""
158
+ "The text for the unsubscribe link. This text is automatically added with "
159
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
160
+ msgstr ""
161
 
162
+ #: ../settings/settings-edit.php:258
163
+ msgid ""
164
+ "This text will be displayed once user clicks on unsubscribe link from the "
165
+ "email."
166
+ msgstr ""
167
 
168
+ #: ../settings/settings-edit.php:265
169
+ msgid "Error in the Subscribe / Confirmation Link"
170
+ msgstr ""
171
 
172
+ #: ../settings/settings-edit.php:266
173
+ msgid ""
174
+ "Default message to display if there is any issue while clicking on subscribe "
175
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
176
+ msgstr ""
177
 
178
+ #: ../settings/settings-edit.php:273
179
+ msgid ""
180
+ "Default message to display if there is any issue while clicking on "
181
+ "unsubscribe link from the emails."
182
+ msgstr ""
183
 
184
+ #: ../settings/settings-edit.php:372
185
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
186
+ msgstr ""
187
 
188
+ #: ../settings/settings-edit.php:377
189
+ msgid "Cron Report"
190
+ msgstr ""
 
191
 
192
+ #: ../settings/settings-edit.php:378
193
+ msgid ""
194
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
195
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
196
+ msgstr ""
197
 
198
+ #: ../settings/settings-edit.php:389
199
+ msgid ""
200
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
201
+ "schedule-cron-emails/?"
202
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
203
+ "Cron?</a>"
204
+ msgstr ""
205
 
206
+ #: ../settings/settings-edit.php:390
207
+ msgid ""
208
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
209
+ "schedule-cron-emails-in-cpanel/?"
210
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
211
+ "job in cPanel</a>"
212
+ msgstr ""
213
 
214
+ #: ../settings/settings-edit.php:391
215
+ msgid ""
216
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
217
+ "schedule-cron-emails-in-parallels-plesk/?"
218
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
219
+ "job in Plesk</a>"
220
+ msgstr ""
221
 
222
+ #: ../settings/settings-edit.php:392
223
+ msgid ""
224
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
225
+ "if-hosting-doesnt-support-cron-jobs/?"
226
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
227
+ "does not support cron jobs?</a>"
228
+ msgstr ""
229
 
230
+ #: ../compose/compose-edit.php:61
231
+ msgid "Successfully updated. "
232
+ msgstr ""
 
233
 
234
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
235
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
236
+ msgstr ""
237
 
238
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
239
+ #, php-format
240
+ msgid ""
241
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
242
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
243
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
244
+ msgstr ""
245
 
246
+ #: ../compose/compose-add.php:43
247
+ msgid "Successfully created. "
248
+ msgstr ""
 
249
 
250
+ #: ../help/help.php:178
251
+ msgid "Get more help and tips..."
252
+ msgstr ""
 
253
 
254
+ #: ../help/help.php:192
255
+ #, php-format
256
+ msgid "Version: %s"
257
+ msgstr ""
258
 
259
+ #: ../help/help.php:195
260
+ msgid "Questions? Need Help?"
261
+ msgstr ""
 
262
 
263
+ #: ../help/help.php:196
264
+ msgid "Contact Us"
265
+ msgstr ""
 
266
 
267
+ #: ../help/help.php:236
268
+ msgid "Description"
269
+ msgstr ""
 
270
 
271
+ #: ../help/help.php:238
 
272
  msgid ""
273
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
274
+ "leads, send automated new blog post notification emails, create & send "
275
+ "newsletters and manage all this in one single place."
276
  msgstr ""
 
 
277
 
278
+ #: ../help/help.php:240
279
+ msgid "Feature Overview"
280
+ msgstr ""
 
281
 
282
+ #: ../help/help.php:243
283
+ msgid ""
284
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
285
+ "Code)."
286
+ msgstr ""
287
 
288
+ #: ../help/help.php:246
289
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
290
+ msgstr ""
 
291
 
292
+ #: ../help/help.php:249
293
+ msgid "Send automatic welcome email to subscribers."
294
+ msgstr ""
 
295
 
296
+ #: ../help/help.php:252
 
297
  msgid ""
298
+ "Send new post notification emails to subscribers when new posts are "
299
+ "published on your website."
300
  msgstr ""
 
 
301
 
302
+ #: ../help/help.php:255
303
+ msgid "Schedule email (Cron job) or send them manually."
304
+ msgstr ""
 
305
 
306
+ #: ../help/help.php:258
307
+ msgid "Send email notification to admin when a new user signs up."
308
+ msgstr ""
 
309
 
310
+ #: ../help/help.php:261
311
+ msgid "Automatically add Unsubscribe link in the email."
312
+ msgstr ""
 
313
 
314
+ #: ../help/help.php:264
315
+ msgid "Easily migrate subscribers from another app using Import & Export."
 
316
  msgstr ""
 
 
317
 
318
+ #: ../help/help.php:267
319
+ msgid "Use HTML editor to compose newsletters and post notifications."
320
+ msgstr ""
 
321
 
322
+ #: ../help/help.php:270
323
+ msgid "Send newsletters to different groups."
324
+ msgstr ""
 
325
 
326
+ #: ../help/help.php:273
327
+ msgid "Get detailed sent email reports."
328
+ msgstr ""
 
329
 
330
+ #: ../help/help.php:276
331
+ msgid "Control user access (User Roles and Capabilities)."
332
+ msgstr ""
 
333
 
334
+ #: ../help/help.php:279
335
+ msgid "Supports localization and internationalization."
 
 
336
  msgstr ""
 
 
337
 
338
+ #: ../help/help.php:286
339
+ msgid "Add Subscribe form"
340
+ msgstr ""
 
341
 
342
+ #: ../help/help.php:291
343
+ #, php-format
344
+ msgid ""
345
+ "Use any of the following 3 methods :<br>\n"
346
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
347
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
348
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
349
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
350
+ " c) Copy and past this php code to your desired template location : "
351
+ "<strong>%s</strong>"
352
+ msgstr ""
353
 
354
+ #: ../help/help.php:296
355
+ msgid "Additional form settings"
 
356
  msgstr ""
 
357
 
358
+ #: ../help/help.php:311
359
+ #, php-format
360
+ msgid "Modify %s"
361
+ msgstr ""
362
 
363
+ #: ../help/help.php:311
364
+ msgid "default text, email contents"
365
+ msgstr ""
 
366
 
367
+ #: ../help/help.php:311
368
+ msgid ""
369
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
370
+ "Roles"
371
+ msgstr ""
372
 
373
+ #: ../help/help.php:320
374
+ msgid "How to change/update/translate any texts from the plugin?"
375
+ msgstr ""
 
376
 
377
+ #: ../help/help.php:333
378
+ msgid "Usage"
379
+ msgstr ""
 
380
 
381
+ #: ../help/help.php:336
382
+ msgid "Compose and Send Newsletter Emails"
383
+ msgstr ""
 
384
 
385
+ #: ../help/help.php:339
386
+ msgid "Compose and Send Post Notification Emails when new posts are published"
 
 
 
 
387
  msgstr ""
 
 
 
388
 
389
+ #: ../help/help.php:342
390
+ msgid "Keywords in the Post Notifications"
391
+ msgstr ""
 
392
 
393
+ #: ../help/help.php:345
394
+ msgid "Send a test post notification email to myself/testgroup"
395
+ msgstr ""
 
396
 
397
+ #: ../help/help.php:348
398
+ msgid "Check sent emails"
399
+ msgstr ""
 
400
 
401
+ #: ../help/help.php:355
402
+ msgid "Cron Job Setup"
403
+ msgstr ""
 
404
 
405
+ #: ../help/help.php:361
406
+ msgid "Schedule Cron Emails in cPanel"
407
+ msgstr ""
 
408
 
409
+ #: ../help/help.php:364
410
+ msgid "Schedule Cron Emails in Parallels Plesk"
411
+ msgstr ""
 
412
 
413
+ #: ../help/help.php:367
414
+ msgid "Hosting doesn’t support Cron Jobs?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
 
417
+ #: ../help/help.php:374
418
+ msgid "Troubleshooting Steps"
419
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
420
 
421
+ #: ../help/help.php:382
422
+ msgid "FAQ's"
423
+ msgstr ""
424
 
425
+ #: ../help/help.php:389
426
+ msgid "Want to do more? Here's how.."
427
+ msgstr ""
428
 
429
+ #: ../help/help.php:392
430
+ msgid "Allow Subscribers to get subscribed to any group"
431
+ msgstr ""
432
 
433
+ #: ../help/help.php:397
434
+ msgid "Using our free "
435
+ msgstr ""
436
 
437
+ #: ../help/help.php:398
438
+ msgid "Group Selector"
439
+ msgstr ""
440
 
441
+ #: ../help/help.php:399
 
442
  msgid ""
443
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
444
+ "grouping option right next to the form."
 
445
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
 
447
+ #: ../help/help.php:402
448
+ msgid "The user can then subscribe to whichever group most appeals to them."
449
+ msgstr ""
 
450
 
451
+ #: ../help/help.php:405
452
+ msgid "For example: Subscribe either to Updates or to Offers."
453
+ msgstr ""
 
454
 
455
+ #: ../help/help.php:409
456
+ msgid "Show your subscribe form inside attractive popups"
457
+ msgstr ""
458
 
459
+ #: ../help/help.php:414
460
+ msgid ""
461
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
462
+ "bars, slide-ins, sidebars, full screen popups etc."
463
+ msgstr ""
464
 
465
+ #: ../help/help.php:417
466
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
467
+ msgstr ""
 
468
 
469
+ #: ../help/help.php:421
470
+ msgid ""
471
+ "Icegram's beautiful designs instantly capture user attention and help "
472
+ "increase sign-ups to your WordPress website."
473
+ msgstr ""
474
 
475
+ #: ../help/help.php:424 ../help/help.php:444
476
+ #, php-format
477
+ msgid "How to %s"
478
+ msgstr ""
 
479
 
480
+ #: ../help/help.php:424
481
+ msgid "show subscribe form inside a popup"
482
+ msgstr ""
483
 
484
+ #: ../help/help.php:428
485
+ msgid "Get beautiful and elegant form styles"
486
+ msgstr ""
487
 
488
+ #: ../help/help.php:434
489
+ msgid "Email subscribers easily integrates with another free plugin "
490
+ msgstr ""
491
 
492
+ #: ../help/help.php:435
493
+ msgid "Rainmaker"
494
+ msgstr ""
495
 
496
+ #: ../help/help.php:438
 
497
  msgid ""
498
+ "Rainmaker extends the core features of Email Subscribers and provides "
499
+ "elegant form styles."
500
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
501
 
502
+ #: ../help/help.php:441
503
+ msgid ""
504
+ "These styles are well designed and beautify your subscription form making it "
505
+ "more appealing."
506
+ msgstr ""
507
 
508
+ #: ../help/help.php:444
509
+ msgid "add Rainmaker’s form in Email Subscribers"
510
+ msgstr ""
511
 
512
+ #: ../sendmail/sendmail.php:59
513
+ msgid "Email sent successfully. "
514
+ msgstr ""
515
 
516
+ #: ../classes/es-register.php:164
517
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
518
+ msgstr ""
519
 
520
+ #: ../classes/es-register.php:707
521
+ msgctxt "timezone date format"
522
+ msgid "Y-m-d"
523
+ msgstr ""
524
 
525
+ #: ../classes/es-register.php:737
526
+ msgid "Post Notifications more often than Newsletter"
527
+ msgstr ""
528
 
529
+ #: ../classes/es-register.php:739
530
+ msgid "Newsletter more often than Post Notifications"
531
+ msgstr ""
532
 
533
+ #: ../classes/es-register.php:741
534
+ msgid "Post Notification &amp; Newsletter equally"
535
+ msgstr ""
536
 
537
+ #: ../classes/es-register.php:759
538
+ msgid "Using Double Opt In"
539
+ msgstr ""
540
 
541
+ #: ../classes/es-register.php:761
542
+ msgid "Using Single Opt In"
543
+ msgstr ""
544
 
545
+ #: ../classes/es-register.php:810
546
+ msgid "Nah, I don't like improvements"
 
 
547
  msgstr ""
 
 
548
 
549
+ #: ../classes/es-register.php:816
550
+ msgid "Next"
551
+ msgstr ""
552
 
553
+ #: ../notification/notification-add.php:33
554
  msgid "Please select subscribers group."
555
  msgstr "Por favor selecciona el grupo de suscriptores."
556
 
557
+ #: ../notification/notification-add.php:39
558
  msgid "Please select notification status."
559
  msgstr "Por favor selecciona el estado de notificación."
560
 
561
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
562
  msgid "Please select notification mail subject. Use compose menu to create new."
563
  msgstr ""
564
  "Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
565
  "componer para crear uno nuevo."
566
 
567
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
568
  msgid "Please select post categories."
569
  msgstr "Por favor selecciona categorías de entrada."
570
 
571
+ #: ../notification/notification-add.php:71
572
  msgid "Notification successfully created. "
573
  msgstr "La notificación se ha creado con éxito. "
574
 
575
+ #: ../notification/notification-add.php:112
576
  msgid "Add Notification"
577
  msgstr "Añadir Notificación"
578
 
579
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
580
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
581
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
582
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
583
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
584
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
585
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
586
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
587
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
588
+ msgid "Help"
589
+ msgstr "Ayuda"
590
+
591
+ #: ../notification/notification-add.php:120
592
  msgid "Select Subscribers Group"
593
  msgstr "Selecciona grupo de suscriptores"
594
 
595
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
596
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
597
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
598
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
599
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
600
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
601
  msgid "Select"
602
  msgstr "Seleccionar"
603
 
604
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
605
+ #: 162
606
  msgid "Select Notification Email Subject"
607
  msgstr "Selecciona asunto de Correo de Notificación"
608
 
609
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
610
+ #: 163
611
  msgid "(Use compose menu to create new)"
612
  msgstr "(Utiliza el menú componer para crear uno nuevo)"
613
 
614
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
615
+ #: 190
616
  msgid "Select Post Categories"
617
  msgstr "Seleccionar Categorías de Entradas"
618
 
619
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
620
+ #: 225
621
  msgid "Check All"
622
  msgstr "Selecciona todo"
623
 
624
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
625
+ #: 226
626
  msgid "Uncheck All"
627
  msgstr "Deselecciona todo"
628
 
629
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
630
+ #: 233
631
  msgid "Select your Custom Post Type"
632
  msgstr "Seleccionar tu tipo de entrada personalizada"
633
 
634
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
635
+ #: 234
636
  msgid "(Optional)"
637
  msgstr "(Opcional)"
638
 
639
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
640
+ #: 268
641
  msgid "No Custom Post Types Available"
642
  msgstr "No hay Tipos de Entrada Personalizadas Disponibles"
643
 
644
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
645
+ #: 275
646
  msgid "Select Notification Status when a new post is published"
647
  msgstr "Selecciona Estado de Notificación cuando se publique una nueva entrada"
648
 
649
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
650
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
651
  msgid "Send email immediately"
652
  msgstr "Enviar correo inmediatamente"
653
 
654
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
655
+ #: 132 ../notification/notification-edit.php:280
656
  msgid "Add to cron and send email via cron job"
657
  msgstr "Añadir a cron y enviar el correo vía tarea cron"
658
 
659
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
660
+ #: 281
661
  msgid "Disable email notification"
662
  msgstr "Deshabilitar notificación de correo"
663
 
664
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
665
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
666
+ #: 117 ../compose/compose-add.php:105
667
+ msgid "Save"
668
+ msgstr "Guardar"
669
 
670
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
671
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
672
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
673
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
674
+ msgid "Oops, selected details does not exists."
675
+ msgstr "Ups, los detalles seleccionados no existen."
676
 
677
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
678
+ #: compose/compose-show.php:47
679
+ msgid "Selected record deleted."
680
+ msgstr "Registro seleccionado borrado."
681
 
682
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
683
+ #: classes/es-register.php:152
684
+ msgid "Post Notifications"
685
+ msgstr "Notificaciones de entradas"
686
 
687
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
688
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
689
+ msgid "Add New"
690
+ msgstr "Añadir nuevo"
691
 
692
+ #: ../notification/notification-show.php:57
693
  msgid ""
694
+ "Use this to setup and send notification emails to your subscribers when a "
695
+ "new post is published in your blog."
696
  msgstr ""
697
+ "Utiliza esto para configurar y enviar correos de notificación a tus "
698
+ "suscriptores cuando se publique una nueva entrada en tu blog."
699
+
700
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
701
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:84
702
+ msgid "Email Subject"
703
+ msgstr "Asunto Correo"
704
 
705
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
706
+ #: 77
707
  msgid "Subscribers Group"
708
  msgstr "Grupo de suscriptores"
709
 
710
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
711
+ #: 78
712
  msgid "Post Categories / Custom Post Types"
713
  msgstr "Categorías de Entradas / Tipos de Entradas personalizadas"
714
 
715
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
716
+ #: 79
717
  msgid "Notification Status"
718
  msgstr "Estado de Notificación"
719
 
720
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
721
+ #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
722
+ msgid "Edit"
723
+ msgstr "Editar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
724
 
725
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
726
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
727
+ #: php:102
728
+ msgid "Delete"
729
+ msgstr "Borrar"
730
 
731
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
732
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
733
+ #: 432 ../compose/compose-show.php:111
734
+ msgid "No records available."
735
+ msgstr "No hay registros disponibles."
736
 
737
+ #: ../notification/notification-edit.php:49
738
+ msgid "Please select subscribers group"
739
+ msgstr "Por favor, selecciona el grupo de suscriptores"
740
 
741
+ #: ../notification/notification-edit.php:55
742
+ msgid "Please select notification status"
743
+ msgstr "Por favor, selecciona el estado de notificación"
744
 
745
+ #: ../notification/notification-edit.php:89
746
+ msgid "Notification successfully updated. "
747
+ msgstr "Notificación actualizada con éxito. "
748
 
749
+ #: ../notification/notification-edit.php:122
750
+ msgid "Edit Notification"
751
+ msgstr "Editar Notificación"
752
 
753
+ #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
754
+ #: php:289
755
+ msgid "Update Subscribers Group"
756
+ msgstr "Actualizar Grupo de Suscriptores"
 
 
757
 
758
+ #. Name of the plugin
759
+ msgid "Email Subscribers & Newsletters"
760
+ msgstr "Email Subscribers & Newsletters"
761
 
762
+ #. Description of the plugin/theme
763
  msgid ""
764
+ "Add subscription forms on website, send HTML newsletters & automatically "
765
+ "notify subscribers about new blog posts once it is published."
766
  msgstr ""
767
+ "Añade formularios de suscripción al sitio web, envía newsletters HTML y "
768
+ "notifica automáticamente a suscriptores cuando se publiquen nuevas entradas "
769
+ "en el blog."
 
 
 
 
 
 
 
770
 
771
+ #. Author of the plugin
772
+ msgid "Icegram"
773
+ msgstr "Icegram"
774
 
775
+ #: ../settings/settings-edit.php:23
776
  msgid "Admin"
777
  msgstr "Admin"
778
 
779
+ #: ../settings/settings-edit.php:24
780
  msgid "Signup Confirmation"
781
  msgstr "Confirmación registro"
782
 
783
+ #: ../settings/settings-edit.php:25
784
+ msgid "Cron"
785
+ msgstr "Cron"
786
+
787
+ #: ../settings/settings-edit.php:26
788
  msgid "User Roles"
789
  msgstr "Roles de usuario"
790
 
791
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
792
+ #: register.php:158
793
+ msgid "Settings"
794
+ msgstr "Configuración"
795
 
796
+ #: ../settings/settings-edit.php:67
797
  msgid "Save Settings"
798
  msgstr "Guardar configuración"
799
 
800
+ #: ../settings/settings-edit.php:81
801
  msgid "Sender of Notifications"
802
  msgstr "Remitente de Notificaciones"
803
 
804
+ #: ../settings/settings-edit.php:82
 
 
 
 
 
 
 
 
 
 
 
 
805
  msgid ""
806
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
807
+ "this plugin."
808
  msgstr ""
809
+ "Elige el nombre DE y la dirección de correo DE para todos los correos que "
810
+ "sean enviados desde este plugin."
811
 
812
+ #: ../settings/settings-edit.php:97
813
  msgid "1. WP HTML MAIL"
814
  msgstr "1. WP CORREO HTML"
815
 
816
+ #: ../settings/settings-edit.php:98
817
  msgid "2. WP PLAINTEXT MAIL"
818
  msgstr "2. WP CORREO TEXTO PLANO"
819
 
820
+ #: ../settings/settings-edit.php:99
821
  msgid "3. PHP HTML MAIL"
822
  msgstr "3. PHP CORREO PHP"
823
 
824
+ #: ../settings/settings-edit.php:100
825
  msgid "4. PHP PLAINTEXT MAIL"
826
  msgstr "4. PHP CORREO TEXTO PLANO"
827
 
828
+ #: ../settings/settings-edit.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
829
  msgid "Double Opt In"
830
  msgstr "Doble Aceptación"
831
 
832
+ #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:
833
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
834
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
835
+ #: subscriber-edit.php:150
836
  msgid "Single Opt In"
837
  msgstr "Aceptación individual"
838
 
839
+ #: ../settings/settings-edit.php:119
840
  msgid "Image Size"
841
  msgstr "Tamaño de imagen"
842
 
843
+ #: ../settings/settings-edit.php:120
844
  msgid ""
845
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
846
+ "Emails."
847
  msgstr ""
848
  "Selecciona el tamaño de imagen para ###POSTIMAGE### y que se muestre en los "
849
  "correos de Notificación de Entradas."
850
 
851
+ #: ../settings/settings-edit.php:124
852
  msgid "Full Size"
853
  msgstr "Tamaño Completo"
854
 
855
+ #: ../settings/settings-edit.php:125
856
  msgid "Medium Size"
857
  msgstr "Tamaño Medio"
858
 
859
+ #: ../settings/settings-edit.php:126
860
  msgid "Thumbnail"
861
  msgstr "Miniatura"
862
 
863
+ #: ../settings/settings-edit.php:132
864
  msgid "Admin Email Addresses"
865
  msgstr "Direcciones de Correo del Administrador"
866
 
867
+ #: ../settings/settings-edit.php:133
868
  msgid ""
869
+ "Enter the admin email addresses that should receive notifications (separated "
870
+ "by comma)."
871
  msgstr ""
872
  "Introduce las direcciones de correo del administrador que deben recibir las "
873
  "notificaciones (separadas por comas)."
874
 
875
+ #: ../settings/settings-edit.php:140
 
 
 
 
876
  msgid ""
877
+ "To send admin email notifications for the new subscriber. This option must "
878
+ "be set to YES."
879
  msgstr ""
880
+ "Enviar notificaciones por correo al admin para cada nuevo suscriptor. Esta "
881
+ "opción debe estar configurada a SÍ."
882
 
883
+ #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
884
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
885
+ msgid "YES"
886
+ msgstr "SÍ"
 
 
 
 
 
 
 
887
 
888
+ #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
889
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
890
+ msgid "NO"
891
+ msgstr "NO"
892
 
893
+ #: ../settings/settings-edit.php:167
894
  msgid "Sent Report Subject"
895
  msgstr "Enviar Asunto de Informe"
896
 
897
+ #: ../settings/settings-edit.php:174
 
 
 
 
 
 
898
  msgid "Sent Report Content"
899
  msgstr "Contenido de Informe Enviado"
900
 
901
+ #: ../settings/settings-edit.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
902
  msgid "It is a readonly field and you are advised not to modify it."
903
  msgstr "Es un campo de sólo lectura y te aconsejamos que no lo modifiques."
904
 
905
+ #: ../settings/settings-edit.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
906
  msgid ""
907
+ "This text will be displayed once user clicks on email confirmation link from "
908
+ "the Double Opt In (confirmation) Email."
 
909
  msgstr ""
910
+ "Este texto se mostrará una vez el usuario haga clic en el enlace de "
911
+ "confirmación de correo de Doble Aceptación (confirmación)."
 
912
 
913
+ #: ../settings/settings-edit.php:216
 
 
 
 
914
  msgid ""
915
+ "To send welcome email to subscriber after successful signup. This option "
916
+ "must be set to YES."
 
917
  msgstr ""
918
+ "Para enviar un correo de bienvenida al suscriptor después de haberse "
919
+ "registrado con éxito. Esta opción debe configurarse a SÍ."
 
 
920
 
921
+ #: ../settings/settings-edit.php:243
922
  msgid "Unsubscribe Link"
923
  msgstr "Enlace cancelar suscripción"
924
 
925
+ #: ../settings/settings-edit.php:250
 
 
 
 
 
 
 
 
 
926
  msgid "Unsubscribe Text in Email"
927
  msgstr "Texto de cancelación de suscripción en Correo"
928
 
929
+ #: ../settings/settings-edit.php:257
 
 
 
 
 
 
 
 
 
930
  msgid "Text to display after an email address is unsubscribed"
931
  msgstr ""
932
+ "Texto para mostrar cuando una dirección de correo haya cancelado la "
933
+ "suscripción"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
934
 
935
+ #: ../settings/settings-edit.php:272
936
  msgid "Error in the Unsubscribe Link"
937
  msgstr "Error en el enlace de Cancelación de suscripción"
938
 
939
+ #: ../settings/settings-edit.php:285
 
 
 
 
 
 
 
 
940
  msgid "Select user roles who can access following menus. Only Admin can change this."
941
  msgstr ""
942
+ "Selecciona roles de usuario que puedan acceder a los siguientes menús. Sólo "
943
+ "el administrador puede cambiar esto."
944
 
945
+ #: ../settings/settings-edit.php:291
946
  msgid "Subscribers Menu"
947
  msgstr "Menú suscriptores"
948
 
949
+ #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
950
+ #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
951
+ #: settings/settings-edit.php:343
952
  msgid "Administrator Only"
953
  msgstr "Sólo Administrador"
954
 
955
+ #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
956
+ #: settings/settings-edit.php:320 ../settings/settings-edit.php:332 ..
957
+ #: settings/settings-edit.php:344
958
  msgid "Administrator/Editor"
959
  msgstr "Administrador/Editor"
960
 
961
+ #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
962
+ #: settings/settings-edit.php:321 ../settings/settings-edit.php:333 ..
963
+ #: settings/settings-edit.php:345
964
  msgid "Administrator/Editor/Author/Contributor"
965
  msgstr "Administrador/Editor/Autor/Colaborador"
966
 
967
+ #: ../settings/settings-edit.php:303
968
  msgid "Compose Menu"
969
  msgstr "Menú componer"
970
 
971
+ #: ../settings/settings-edit.php:315
972
  msgid "Post Notifications Menu"
973
  msgstr "Menú de notificaciones de entradas"
974
 
975
+ #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
976
+ #: register.php:154 ../classes/es-register.php:155
977
+ msgid "Newsletters"
978
+ msgstr "Newsletters"
979
+
980
+ #: ../settings/settings-edit.php:339
981
  msgid "Reports Menu"
982
  msgstr "Menú Informes"
983
 
984
+ #: ../settings/settings-edit.php:356
985
  msgid "Cron job URL"
986
  msgstr "URL tarea Cron"
987
 
988
+ #: ../settings/settings-edit.php:357
989
  msgid ""
990
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
991
  "modify it."
992
  msgstr ""
993
+ "Esta es la URL de tu tarea Cron. Es un campo de solo lectura y te "
994
+ "recomendamos que no lo modifiques."
995
 
996
+ #: ../settings/settings-edit.php:366
997
  msgid "Email Count"
998
  msgstr "Contador Correo"
999
 
1000
+ #: ../settings/settings-edit.php:367
1001
  msgid "Number of emails that you want to trigger per hour."
1002
  msgstr "Número de correos que quieres que se envíen por hora."
1003
 
1004
+ #: ../settings/settings-edit.php:388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1005
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1006
  msgstr "¿Qué es Cron (correos automáticos) y cómo configurar una tarea Cron?"
1007
 
1008
+ #: ../settings/settings-edit.php:507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1009
  msgid "Please enter sender of notifications from name."
1010
  msgstr "Por favor introduce el nombre 'de' para el emisor de notificaciones."
1011
 
1012
+ #: ../settings/settings-edit.php:512
1013
  msgid "Please enter sender of notifications from email."
1014
  msgstr "Por favor introduce el correo 'de' para el emisor de notificaciones."
1015
 
1016
+ #: ../settings/settings-edit.php:556
1017
  msgid "Please enter valid mail count."
1018
  msgstr "Por favor, introduzca una cuenta de correo válida."
1019
 
1020
+ #: ../settings/settings-edit.php:569
1021
  msgid "Settings Saved."
1022
  msgstr "Configuración guardada."
1023
 
1024
+ #: ../settings/settings-edit.php:572
1025
  msgid "Oops, unable to update."
1026
  msgstr "Ups, no se ha podido actualizadar."
1027
 
1028
+ #: ../settings/setting-sync.php:16
1029
+ msgid "Table sync completed successfully."
1030
+ msgstr "Sincronización de la Tabla finalizada con éxito."
 
 
 
 
1031
 
1032
+ #: ../settings/setting-sync.php:29
1033
+ msgid "Sync plugin tables"
1034
+ msgstr "Sincronizar tablas del plugin"
 
 
 
 
1035
 
1036
+ #: ../settings/setting-sync.php:33
1037
+ msgid "Click to sync tables"
1038
+ msgstr "Clic para sincronizar tablas"
1039
 
1040
+ #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1041
+ msgid "Preview Mail"
1042
+ msgstr "Previsualizar Correo"
1043
 
1044
+ #: ../sentmail/sentmail-preview.php:42
1045
+ msgid "Back"
1046
+ msgstr "Volver"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1047
 
1048
+ #: ../sentmail/sentmail-show.php:43
1049
+ msgid "Successfully deleted all reports except latest 10."
1050
+ msgstr "Se borraron con éxito todos los informes excepto los últimos 10."
1051
 
1052
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1053
+ msgid " &lt;&lt; "
1054
+ msgstr " &lt;&lt; "
1055
 
1056
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1057
+ msgid " &gt;&gt; "
1058
+ msgstr " &gt;&gt; "
1059
 
1060
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1061
+ #: register.php:161
1062
+ msgid "Reports"
1063
+ msgstr "Informes"
1064
 
1065
+ #: ../sentmail/sentmail-show.php:97
1066
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1067
+ msgstr ""
1068
+ "Mostrará informes para todos los correos enviados de Newsletters y "
1069
+ "Notificaciones de entradas."
1070
 
1071
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1072
+ msgid "View Reports"
1073
+ msgstr "Ver Informes"
1074
 
1075
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1076
+ #: compose/compose-show.php:103
1077
+ msgid "Preview"
1078
+ msgstr "Previsualizar"
1079
 
1080
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1081
+ msgid "Type"
1082
+ msgstr "Tipo"
1083
 
1084
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1085
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1086
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1087
+ #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1088
+ msgid "Status"
1089
+ msgstr "Estado"
1090
 
1091
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1092
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
1093
+ msgid "Sent"
1094
+ msgstr "Enviado"
1095
 
1096
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1097
+ msgid "Start Date"
1098
+ msgstr "Fecha Comienzo"
 
1099
 
1100
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1101
+ msgid "End Date"
1102
+ msgstr "Fecha Fin"
 
1103
 
1104
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1105
+ msgid "Total"
1106
+ msgstr "Total"
1107
 
1108
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1109
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
1110
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1111
+ #: subscriber-export.php:56
1112
+ msgid "Action"
1113
+ msgstr "Acción"
1114
 
1115
+ #: ../sentmail/sentmail-show.php:190
1116
+ msgid "Optimize Table & Delete Records"
1117
+ msgstr "Optimizar Tabla y Borrar Registros"
 
 
 
 
1118
 
1119
+ #: ../sentmail/sentmail-show.php:199
1120
+ msgid ""
1121
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1122
+ "button to delete all reports except latest 10."
1123
+ msgstr ""
1124
+ "Nota: Por favor, haz clic en el botón <strong>Optimizar Tabla y Borrar "
1125
+ "Registros</strong> para borrar todos los informes excepto los últimos 10."
1126
 
1127
+ #: ../sentmail/deliverreport-show.php:14
1128
+ msgid "Oops.. Unexpected error occurred. Please try again."
1129
+ msgstr "Ups. Ha sucedido un error inesperado. Por favor, inténtelo de nuevo."
1130
 
1131
+ #: ../sentmail/deliverreport-show.php:57
1132
+ msgid "Delivery Report"
1133
+ msgstr "Informe envío"
1134
 
1135
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
1136
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
1137
+ #: export.php:53
1138
+ msgid "Sno"
1139
+ msgstr "Sno"
1140
 
1141
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
1142
+ msgid "Email"
1143
+ msgstr "Correo"
1144
 
1145
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
1146
+ msgid "Sent Date"
1147
+ msgstr "Fecha Envío"
1148
 
1149
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1150
+ msgid "Viewed Status"
1151
+ msgstr "Estado visualización"
1152
 
1153
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
1154
+ msgid "Viewed Date"
1155
+ msgstr "Fecha Visualización"
1156
 
1157
+ #: ../subscribers/view-subscriber-import.php:44
1158
  msgid ""
1159
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1160
+ "the Group name."
1161
  msgstr ""
1162
  "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no están "
1163
  "permitidos como nombre de Grupo."
1164
 
1165
+ #: ../subscribers/view-subscriber-import.php:92
1166
  msgid "email imported."
1167
  msgstr "correo importado."
1168
 
1169
+ #: ../subscribers/view-subscriber-import.php:93
1170
  msgid "email already exists."
1171
  msgstr "correo electrónico ya existe."
1172
 
1173
+ #: ../subscribers/view-subscriber-import.php:94
1174
  msgid "email are invalid."
1175
  msgstr "correo no válido."
1176
 
1177
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1178
+ #: import.php:126
1179
  msgid "Click here"
1180
  msgstr "Haz clic aquí"
1181
 
1182
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1183
+ #: import.php:126
1184
  msgid " to view details."
1185
  msgstr " para ver los detalles."
1186
 
1187
+ #: ../subscribers/view-subscriber-import.php:105
1188
  msgid "File Upload Failed."
1189
  msgstr "Fallo en Subida de Archivo."
1190
 
1191
+ #: ../subscribers/view-subscriber-import.php:142
1192
  msgid "Import Email Addresses"
1193
  msgstr "Importar Direcciones Correo"
1194
 
1195
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1196
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1197
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
1198
+ #: subscribers/view-subscriber-sync.php:89
1199
+ msgid "Add New Subscriber"
1200
+ msgstr "Añadir Nuevo Suscriptor"
1201
+
1202
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1203
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
1204
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1205
+ msgid "Export"
1206
+ msgstr "Exportar"
1207
+
1208
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1209
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1210
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1211
+ #: subscribers/view-subscriber-sync.php:143
1212
+ msgid "Sync"
1213
+ msgstr "Sincronizar"
1214
+
1215
+ #: ../subscribers/view-subscriber-import.php:155
1216
  msgid "Select CSV file"
1217
  msgstr "Selecciona archivo CSV"
1218
 
1219
+ #: ../subscribers/view-subscriber-import.php:157
1220
  msgid "Check CSV structure "
1221
  msgstr "Comprobar estructura CSV "
1222
 
1223
+ #: ../subscribers/view-subscriber-import.php:158
1224
  msgid "from here"
1225
  msgstr "desde aquí"
1226
 
1227
+ #: ../subscribers/view-subscriber-import.php:169
1228
  msgid "Select Subscribers Email Status"
1229
  msgstr "Selecciona el estado de correo de suscriptor"
1230
 
1231
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1232
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1233
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1234
+ msgid "Confirmed"
1235
+ msgstr "Confirmado"
1236
+
1237
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1238
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1239
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1240
+ msgid "Unconfirmed"
1241
+ msgstr "Sin Confirmar"
1242
+
1243
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1244
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1245
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1246
+ msgid "Unsubscribed"
1247
+ msgstr "Suscripciones canceladas"
1248
+
1249
+ #: ../subscribers/view-subscriber-import.php:185
1250
  msgid "Select (or) Create Group for Subscribers"
1251
  msgstr "Selecciona (o) Crear Grupo para Suscriptores"
1252
 
1253
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1254
+ #: add.php:174
1255
+ msgid "(or)"
1256
+ msgstr "(o)"
1257
+
1258
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1259
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1260
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1261
+ #: subscribers/view-subscriber-sync.php:90
1262
+ msgid "Import"
1263
+ msgstr "Importar"
1264
+
1265
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1266
+ #: sendmail/sendmail.php:18
1267
+ msgid "Click Here"
1268
+ msgstr "Haz clic aquí"
1269
+
1270
+ #: ../subscribers/view-subscriber-show.php:45
1271
  msgid "Selected details does not exists."
1272
  msgstr "Los detalles seleccionados no existen."
1273
 
1274
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1275
+ #: php:95
1276
  msgid "Record deleted."
1277
  msgstr "Registro borrado."
1278
 
1279
+ #: ../subscribers/view-subscriber-show.php:67
1280
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1281
  msgstr ""
1282
+ "Para mandar correo de confirmación, por favor cambia la opción de Aceptación "
1283
+ "a Doble Aceptación."
1284
 
1285
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1286
+ #: php:134
1287
  msgid "Confirmation emails Resent Successfully."
1288
  msgstr "Correo de confirmación reenviado con éxito."
1289
 
1290
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1291
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1292
+ #: subscriber-show.php:216
1293
  msgid "No record was selected."
1294
  msgstr "No se han seleccionado registros."
1295
 
1296
+ #: ../subscribers/view-subscriber-show.php:115
1297
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1298
  msgstr ""
1299
+ "Para mandar correo de confirmación, por favor cambia la opción de Aceptación "
1300
+ "a Doble Aceptación."
1301
 
1302
+ #: ../subscribers/view-subscriber-show.php:163
1303
  msgid "Subscribers Group updated."
1304
  msgstr "Grupo de suscriptores actualizados."
1305
 
1306
+ #: ../subscribers/view-subscriber-show.php:168
1307
  msgid "Please select New group to update."
1308
  msgstr "Por favor selecciona un nuevo grupo para actualizar."
1309
 
1310
+ #: ../subscribers/view-subscriber-show.php:202
1311
  msgid "Subscribers Status updated."
1312
  msgstr "Estado de los suscriptores actualizados."
1313
 
1314
+ #: ../subscribers/view-subscriber-show.php:207
1315
  msgid "Please select New Status to update."
1316
  msgstr "Por favor selecciona el Nuevo Estado a actualizar."
1317
 
1318
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1319
+ #: classes/es-register.php:146
1320
+ msgid "Subscribers"
1321
+ msgstr "Suscriptores"
1322
+
1323
+ #: ../subscribers/view-subscriber-show.php:252
1324
+ #, php-format
1325
  msgid "Total Subscribers: %s"
1326
  msgstr "Total suscriptores: %s"
1327
 
1328
+ #: ../subscribers/view-subscriber-show.php:254
1329
+ #, php-format
1330
  msgid "Active Subscribers: %s"
1331
  msgstr "Suscriptores activos: %s"
1332
 
1333
+ #: ../subscribers/view-subscriber-show.php:286
1334
  msgid "Bulk Actions"
1335
  msgstr "Accione en bloque"
1336
 
1337
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1338
+ #: show.php:417
1339
  msgid "Resend Confirmation"
1340
  msgstr "Reenviar Confirmación"
1341
 
1342
+ #: ../subscribers/view-subscriber-show.php:290
1343
  msgid "Update Subscribers Status"
1344
  msgstr "Actualizar Estado de Suscriptores"
1345
 
1346
+ #: ../subscribers/view-subscriber-show.php:293
1347
  msgid "Select Group"
1348
  msgstr "Seleccionar Grupo"
1349
 
1350
+ #: ../subscribers/view-subscriber-show.php:308
1351
  msgid "Select Status"
1352
  msgstr "Selecciona Estado"
1353
 
1354
+ #: ../subscribers/view-subscriber-show.php:314
1355
  msgid "Apply"
1356
  msgstr "Aplicar"
1357
 
1358
+ #: ../subscribers/view-subscriber-show.php:318
1359
  msgid "All Groups"
1360
  msgstr "Todos los Grupos"
1361
 
1362
+ #: ../subscribers/view-subscriber-show.php:335
1363
  msgid "All Status"
1364
  msgstr "Todos los Estados"
1365
 
1366
+ #: ../subscribers/view-subscriber-show.php:342
1367
  msgid "1 to 500 emails"
1368
  msgstr "1 a 500 correos"
1369
 
1370
+ #: ../subscribers/view-subscriber-show.php:343
1371
  msgid "501 to 1000"
1372
  msgstr "501 a 1000"
1373
 
1374
+ #: ../subscribers/view-subscriber-show.php:344
1375
  msgid "1001 to 1500"
1376
  msgstr "1001 a 1500"
1377
 
1378
+ #: ../subscribers/view-subscriber-show.php:345
1379
  msgid "1501 to 2000"
1380
  msgstr "1501 a 2000"
1381
 
1382
+ #: ../subscribers/view-subscriber-show.php:346
1383
  msgid "2001 to 4000"
1384
  msgstr "2001 a 4000"
1385
 
1386
+ #: ../subscribers/view-subscriber-show.php:347
1387
  msgid "4001 to 6000"
1388
  msgstr "4001 a 6000"
1389
 
1390
+ #: ../subscribers/view-subscriber-show.php:348
1391
  msgid "6001 to 10000"
1392
  msgstr "6001 a 10000"
1393
 
1394
+ #: ../subscribers/view-subscriber-show.php:349
1395
  msgid "Display All"
1396
  msgstr "Mostrar Todo"
1397
 
1398
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1399
+ #: show.php:373
1400
  msgid "Email Address"
1401
  msgstr "Dirección E-Mail"
1402
 
1403
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1404
+ #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1405
+ msgid "Name"
1406
+ msgstr "Nombre"
1407
+
1408
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1409
+ #: show.php:376
1410
  msgid "Group"
1411
  msgstr "Grupo"
1412
 
1413
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1414
+ #: show.php:377
1415
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1416
  msgstr "Fecha y Hora de Registro<br>(Y-M-D H:I:S)"
1417
 
1418
+ #: ../subscribers/view-subscriber-export.php:34
1419
+ msgid "Export Email Addresses"
1420
+ msgstr "Exportar Direcciones Correo"
1421
 
1422
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1423
+ #: export.php:54
1424
+ msgid "Type of List to Export"
1425
+ msgstr "Tipo de Lista para Exportar"
1426
 
1427
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1428
+ #: export.php:55
1429
+ msgid "Total Emails Count"
1430
+ msgstr "Contador Total de Correos"
1431
 
1432
+ #: ../subscribers/view-subscriber-export.php:61
1433
+ msgid "1"
1434
+ msgstr "1"
1435
 
1436
+ #: ../subscribers/view-subscriber-export.php:62
1437
+ msgid "All Subscribers"
1438
+ msgstr "Todos los suscriptores"
1439
 
1440
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1441
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1442
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1443
+ msgid "Click to Export in CSV"
1444
+ msgstr "Clic para Exportar en CSV"
1445
+
1446
+ #: ../subscribers/view-subscriber-export.php:67
1447
+ msgid "2"
1448
+ msgstr "2"
1449
 
1450
+ #: ../subscribers/view-subscriber-export.php:68
1451
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1452
+ msgstr "Suscriptores activos (Estado: Confirmados y confirmación simple)"
 
1453
 
1454
+ #: ../subscribers/view-subscriber-export.php:73
1455
+ msgid "3"
1456
+ msgstr "3"
1457
+
1458
+ #: ../subscribers/view-subscriber-export.php:74
1459
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1460
+ msgstr "Suscriptores inactivos (Estado: Sin confirmar y dados de baja)"
1461
+
1462
+ #: ../subscribers/view-subscriber-export.php:79
1463
+ msgid "4"
1464
+ msgstr "4"
1465
+
1466
+ #: ../subscribers/view-subscriber-export.php:80
1467
+ msgid "WordPress Registered Users"
1468
+ msgstr "Usuarios Registrados WordPress"
1469
+
1470
+ #: ../subscribers/view-subscriber-export.php:85
1471
+ msgid "5"
1472
+ msgstr "5"
1473
+
1474
+ #: ../subscribers/view-subscriber-export.php:86
1475
+ msgid "Commented Authors"
1476
+ msgstr "Autores Comentados"
1477
+
1478
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1479
+ #: php:54
1480
+ msgid "Please enter subscriber email address."
1481
+ msgstr "Por favor introduce la dirección de correo de suscriptor."
1482
+
1483
+ #: ../subscribers/view-subscriber-add.php:49
1484
+ msgid "Please select or create your group for this email."
1485
+ msgstr "Por favor selecciona o crea tu grupo para este correo."
1486
+
1487
+ #: ../subscribers/view-subscriber-add.php:56
1488
  msgid ""
1489
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1490
+ "the group name."
1491
  msgstr ""
1492
+ "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
1493
+ "como nombre de grupo."
1494
 
1495
+ #: ../subscribers/view-subscriber-add.php:66
1496
+ msgid "Subscriber has been saved."
1497
+ msgstr "Suscriptor ha sido guardado."
1498
+
1499
+ #: ../subscribers/view-subscriber-add.php:68
1500
+ msgid "Subscriber already exists."
1501
+ msgstr "Suscriptor ya existe."
1502
+
1503
+ #: ../subscribers/view-subscriber-add.php:71
1504
+ msgid "Invalid Email."
1505
+ msgstr "Correo no válido."
1506
+
1507
+ #: ../subscribers/view-subscriber-add.php:123
1508
+ msgid "Enter Subscriber's Full name"
1509
+ msgstr "Introduce nombre completo del suscriptor"
1510
+
1511
+ #: ../subscribers/view-subscriber-add.php:133
1512
+ msgid "Enter Subscriber's Email Address"
1513
+ msgstr "Introduce la dirección de correo del suscriptor"
1514
+
1515
+ #: ../subscribers/view-subscriber-add.php:143
1516
+ msgid "Select Subscriber's Status"
1517
+ msgstr "Selecciona Estado Suscriptor"
1518
+
1519
+ #: ../subscribers/view-subscriber-add.php:158
1520
+ msgid "Select (or) Create Group for Subscriber"
1521
+ msgstr "Selecciona (o) Crear Grupo para Suscriptores"
1522
+
1523
+ #: ../subscribers/view-subscriber-add.php:183
1524
+ msgid "Add Subscriber"
1525
+ msgstr "Añadir Suscriptor"
1526
+
1527
+ #: ../subscribers/view-subscriber-edit.php:64
1528
+ msgid "Error: Special characters are not allowed in the group name."
1529
+ msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
1530
+
1531
+ #: ../subscribers/view-subscriber-edit.php:74
1532
+ msgid "Subscriber details updated."
1533
+ msgstr "Detalles del Suscriptor actualizados."
1534
+
1535
+ #: ../subscribers/view-subscriber-edit.php:76
1536
+ msgid "Subscriber already exists for this group."
1537
+ msgstr "El suscriptor ya existe en este grupo."
1538
+
1539
+ #: ../subscribers/view-subscriber-edit.php:108
1540
+ msgid "Edit Subscriber"
1541
+ msgstr "Editar Suscriptor"
1542
+
1543
+ #: ../subscribers/view-subscriber-edit.php:122
1544
+ msgid "Subscriber's Full Name"
1545
+ msgstr "Nombre completo del suscriptor"
1546
+
1547
+ #: ../subscribers/view-subscriber-edit.php:132
1548
+ msgid "Subscriber's Email Address"
1549
+ msgstr "Dirección de correo electrónico del suscriptor"
1550
+
1551
+ #: ../subscribers/view-subscriber-edit.php:142
1552
+ msgid "Update Subscriber's Status"
1553
+ msgstr "Actualizar Estado Suscriptor"
1554
+
1555
+ #: ../subscribers/view-subscriber-edit.php:157
1556
+ msgid "Update Subscriber's Group"
1557
+ msgstr "Actualizar Grupo de Suscriptores"
1558
+
1559
+ #: ../subscribers/view-subscriber-sync.php:36
1560
+ msgid "Please select default group to newly registered user."
1561
+ msgstr "Por favor selecciona el grupo por defecto para el usuario recién registrado."
1562
+
1563
+ #: ../subscribers/view-subscriber-sync.php:50
1564
+ msgid "Emails Successfully Synced."
1565
+ msgstr "Correo Correctamente sincronizados."
1566
+
1567
+ #: ../subscribers/view-subscriber-sync.php:88
1568
+ msgid "Sync Email"
1569
+ msgstr "Sincronizar Correo"
1570
+
1571
+ #: ../subscribers/view-subscriber-sync.php:101
1572
+ msgid "Sync newly registered users to subscribers list"
1573
+ msgstr "Sincronizar usuarios registrados recientemente con lista de suscriptores"
1574
+
1575
+ #: ../subscribers/view-subscriber-sync.php:114
1576
+ msgid "Select group to add newly registered users to"
1577
+ msgstr "Selecciona grupo en el que añadir los usuarios recién registrados"
1578
+
1579
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1580
+ msgid "Please enter template heading."
1581
+ msgstr "Por favor, indica un encabezado de plantilla."
1582
+
1583
+ #: ../compose/compose-edit.php:84
1584
+ msgid "Edit Email"
1585
+ msgstr "Editar Email"
1586
+
1587
+ #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1588
+ msgid "Select your Email Template"
1589
+ msgstr "Selecciona tu Plantilla de Correo"
1590
+
1591
+ #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
1592
+ msgid "Newsletter"
1593
+ msgstr "Newsletter"
1594
+
1595
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
1596
+ msgid "Post Notification"
1597
+ msgstr "Notificación Entrada"
1598
+
1599
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1600
+ msgid "Enter your Email Subject"
1601
+ msgstr "Introduce tu Asunto de Correo"
1602
+
1603
+ #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1604
+ msgid "Enter Content for your Email"
1605
+ msgstr "Introduce Contenido para tu Correo"
1606
+
1607
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
1608
+ msgid "Available Keywords"
1609
+ msgstr "Palabras clave disponibles"
1610
+
1611
+ #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1612
+ msgid "Published"
1613
+ msgstr "Publicado"
1614
+
1615
+ #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1616
+ msgid "Please select your mail status"
1617
+ msgstr "Por favor, selecciona el estado de tu correo"
1618
+
1619
+ #: ../compose/compose-add.php:74
1620
+ msgid "Add new Email"
1621
+ msgstr "Añadir nuevo Email"
1622
+
1623
+ #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1624
+ #: register.php:149
1625
+ msgid "Compose"
1626
+ msgstr "Componer"
1627
+
1628
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1629
+ msgid "Email Template"
1630
+ msgstr "Plantilla Correo"
1631
+
1632
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1633
+ msgid "Actions"
1634
+ msgstr "Acciones"
1635
+
1636
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1637
+ msgid "Unexpected url submit has been detected"
1638
+ msgstr "Se ha detectado envío de URL inexperada"
1639
+
1640
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1641
+ #: 58 ../job/es-optin.php:68
1642
+ msgid ""
1643
+ "Oops.. We are getting some technical error. Please try again or contact "
1644
+ "admin."
1645
+ msgstr ""
1646
+ "Ups. Estamos teniendo algún problema técnico. Por favor inténtalo otra vez o "
1647
+ "contacta al administrador."
1648
+
1649
+ #: ../job/es-optin.php:61
1650
+ msgid "This email address has already been confirmed."
1651
+ msgstr "Esta dirección de correo ya ha sido confirmada."
1652
+
1653
+ #: ../help/help.php:173
1654
+ msgid "Welcome to Email Subscribers!"
1655
+ msgstr "¡Bienvenido a Email Subscribers!"
1656
+
1657
+ #: ../help/help.php:174
1658
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1659
+ msgstr "Gracias por instalar y esperamos que disfrute el uso de Email Subscribers."
1660
+
1661
+ #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1662
+ #: php:38
1663
+ msgid "Subscribe"
1664
+ msgstr "Suscribirse"
1665
+
1666
+ #: ../help/help.php:201
1667
+ #, php-format
1668
+ msgid ""
1669
+ "Like Email Subscribers? If yes, then consider %s to support further "
1670
+ "developments."
1671
+ msgstr ""
1672
+ "¿Te gusta Email Subscribers? Si es que sí, considera %s para ayudar con "
1673
+ "futuros desarrollos."
1674
+
1675
+ #: ../help/help.php:201
1676
+ msgid "donating to us"
1677
+ msgstr "donándonos"
1678
+
1679
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1680
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1681
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1682
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1683
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1684
+ #: 380 ../help/help.php:382
1685
+ #, php-format
1686
+ msgid "%s"
1687
+ msgstr "%s"
1688
+
1689
+ #: ../help/help.php:288
1690
+ msgid "How to Add Subscription box to website?"
1691
+ msgstr "¿Cómo Añadir un cuadro de suscripción a la página web?"
1692
+
1693
+ #: ../help/help.php:299
1694
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1695
+ msgstr ""
1696
+ "¿Cómo redirigir a los suscriptores a una nueva página/url tras haberse "
1697
+ "identificado con éxito?"
1698
+
1699
+ #: ../help/help.php:302
1700
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
1701
+ msgstr "¿Cómo añadir captcha al formulario de Suscripción de Email Subscribers?"
1702
+
1703
+ #: ../help/help.php:308
1704
+ msgid "General Plugin Settings"
1705
+ msgstr "Configuración General Plugin"
1706
+
1707
+ #: ../help/help.php:314
1708
+ msgid "How to Import or Export Email Addresses?"
1709
+ msgstr "¿Cómo importar y exportar direcciones de correo?"
1710
+
1711
+ #: ../help/help.php:317
1712
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
1713
+ msgstr "¿Cómo añadir/actualizar Grupos de Suscriptores Existentes y Estado?"
1714
+
1715
+ #: ../help/help.php:323
1716
+ msgid "How to add Unsubscribe link in emails?"
1717
+ msgstr "¿Cómo añadir un enlace de cancelación de suscripción en los correos?"
1718
+
1719
+ #: ../help/help.php:358
1720
+ msgid "How to Schedule Cron Emails?"
1721
+ msgstr "¿Cómo programar Correos Cron?"
1722
+
1723
+ #: ../help/help.php:377
1724
+ msgid "Subscribers are not receiving Emails?"
1725
+ msgstr "¿Los suscriptores no están recibiendo los correos?"
1726
+
1727
+ #: ../help/help.php:380
1728
+ msgid "CSS Help"
1729
+ msgstr "Ayuda CSS"
1730
+
1731
+ #: ../sendmail/sendmail.php:40
1732
+ msgid "Please select your mail subject."
1733
+ msgstr "Por favor selecciona el asunto de tu correo."
1734
+
1735
+ #: ../sendmail/sendmail.php:46
1736
+ msgid "Please select your mail type."
1737
+ msgstr "Por favor selecciona tu tipo de correo."
1738
+
1739
+ #: ../sendmail/sendmail.php:52
1740
+ msgid "Please select your group."
1741
+ msgstr "Por favor selecciona tu grupo."
1742
+
1743
+ #: ../sendmail/sendmail.php:63
1744
+ msgid "Click here to check Statistics"
1745
+ msgstr "Haz clic aquí para comprobar Estadísticas"
1746
+
1747
+ #: ../sendmail/sendmail.php:69
1748
+ msgid "Oops.. We are getting some error. mail not sending."
1749
+ msgstr "Ups. Estamos obteniendo algún error. No se envía correo."
1750
+
1751
+ #: ../sendmail/sendmail.php:97
1752
+ msgid "Use this to send newsletter emails to your subscribers."
1753
+ msgstr "Utiliza esto para enviar correos de newsletter a tus suscriptores."
1754
+
1755
+ #: ../sendmail/sendmail.php:105
1756
+ msgid "Select Email Subject from available list"
1757
+ msgstr "Selecciona el Asunto del Correo de la lista disponible"
1758
+
1759
+ #: ../sendmail/sendmail.php:132
1760
+ msgid "Select Email Type"
1761
+ msgstr "Selecciona tipo de Correo"
1762
+
1763
+ #: ../sendmail/sendmail.php:139
1764
+ msgid "Send email via cron job"
1765
+ msgstr "Envía correo vía tarea cron"
1766
+
1767
+ #: ../sendmail/sendmail.php:146
1768
+ msgid "Select Subscribers group to Send Email"
1769
+ msgstr "Selecciona grupo de suscriptores a los que Enviar Correo"
1770
+
1771
+ #: ../sendmail/sendmail.php:178
1772
+ msgid "Recipients : 0 "
1773
+ msgstr "Destinatarios: 0 "
1774
+
1775
+ #: ../sendmail/sendmail.php:180
1776
+ #, php-format
1777
+ msgid "Recipients : %s"
1778
+ msgstr "Destinatarios: %s"
1779
+
1780
+ #: ../sendmail/sendmail.php:183
1781
+ msgid ""
1782
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1783
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1784
+ "</strong><br>Click on Help for more information."
1785
+ msgstr ""
1786
+ "<br><br><strong>El número de destinatarios es superior a 100.<br>Te "
1787
+ "recomendamos encarecidamente que cambies el Tipo de Correo a Cron y Enviar "
1788
+ "Correo via Cron Job.</strong><br>Haz clic en Ayuda para más información."
1789
+
1790
+ #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1791
+ msgid "Send Email"
1792
+ msgstr "Enviar Correo"
1793
+
1794
+ #: ../sendmail/sendmail.php:199
1795
+ msgid "Reset"
1796
+ msgstr "Reiniciar"
1797
+
1798
+ #: ../base/es-defined.php:32
1799
+ msgid ""
1800
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1801
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1802
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1803
+ "</a> rating. A huge thank you from Icegram in advance!"
1804
+ msgstr ""
1805
+ "Si te gusta <strong>Email Subscribers</strong>, por favor considera dejarnos "
1806
+ "una calificación <a target=\"_blank\" href=\"https://wordpress."
1807
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1808
+ "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
1809
+ "Icegram!"
1810
+
1811
+ #: ../classes/es-common.php:13
1812
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1813
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
1814
+
1815
+ #: ../classes/es-common.php:16
1816
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1817
+ msgstr "<span style=\"color:#FF0000\">Sin confirmar</span>"
1818
+
1819
+ #: ../classes/es-common.php:19
1820
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1821
+ msgstr "<span style=\"color:#999900\">Suscripción cancelada</span>"
1822
+
1823
+ #: ../classes/es-common.php:22
1824
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1825
+ msgstr "<span style=\"color:#0000FF\">Aceptación individual</span>"
1826
+
1827
+ #: ../classes/es-common.php:25
1828
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1829
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
1830
+
1831
+ #: ../classes/es-common.php:28
1832
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1833
+ msgstr "<span style=\"color:#999900;\">Sin Datos</span>"
1834
+
1835
+ #: ../classes/es-common.php:31
1836
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1837
+ msgstr "<span style=\"color:#FF0000\">Desactivado</span>"
1838
+
1839
+ #: ../classes/es-common.php:34
1840
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1841
+ msgstr "<span style=\"color:#FF0000\">En Cola</span>"
1842
+
1843
+ #: ../classes/es-common.php:37
1844
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1845
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviado</span>"
1846
+
1847
+ #: ../classes/es-common.php:40
1848
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1849
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">vía tarea Cron</span>"
1850
+
1851
+ #: ../classes/es-common.php:43
1852
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1853
+ msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
1854
+
1855
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1856
+ #: register.php:724
1857
+ msgid "Email Subscribers"
1858
+ msgstr "Email Subscribers"
1859
+
1860
+ #: ../classes/es-register.php:163
1861
+ msgid "Help & Info"
1862
+ msgstr "Ayuda e Información"
1863
+
1864
+ #: ../classes/es-register.php:175
1865
+ msgctxt "view-subscriber-enhanced-select"
1866
+ msgid "Please enter subscriber email address."
1867
+ msgstr "Por favor introduce la dirección de correo de suscriptor."
1868
+
1869
+ #: ../classes/es-register.php:176
1870
+ msgctxt "view-subscriber-enhanced-select"
1871
+ msgid "Please select subscriber email status."
1872
+ msgstr "Por favor selecciona el estado de correo de suscriptor."
1873
+
1874
+ #: ../classes/es-register.php:177
1875
+ msgctxt "view-subscriber-enhanced-select"
1876
+ msgid "Please select or create group for this subscriber."
1877
+ msgstr "Por favor selecciona o crea grupo para este suscriptor."
1878
+
1879
+ #: ../classes/es-register.php:178
1880
+ msgctxt "view-subscriber-enhanced-select"
1881
+ msgid "Do you want to delete this record?"
1882
+ msgstr "¿Quieres borrar este registro?"
1883
+
1884
+ #: ../classes/es-register.php:179
1885
+ msgctxt "view-subscriber-enhanced-select"
1886
+ msgid "Please select the bulk action."
1887
+ msgstr "Por favor selecciona la acción en bloque."
1888
+
1889
+ #: ../classes/es-register.php:180
1890
+ msgctxt "view-subscriber-enhanced-select"
1891
+ msgid "Are you sure you want to delete selected records?"
1892
+ msgstr "¿Seguro de querer borrar los registros seleccionados?"
1893
+
1894
+ #: ../classes/es-register.php:181
1895
+ msgctxt "view-subscriber-enhanced-select"
1896
+ msgid ""
1897
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1898
+ "update subscriber current status to 'Unconfirmed'."
1899
+ msgstr ""
1900
+ "¿Quieres volver a mandar el correo de confirmación?\\nTambién ten en cuenta "
1901
+ "que esto actualizará el estado actual a 'Sin confirmar'."
1902
+
1903
+ #: ../classes/es-register.php:182
1904
+ msgctxt "view-subscriber-enhanced-select"
1905
+ msgid "Please select new subscriber group."
1906
+ msgstr "Por favor selecciona un nuevo grupo de suscriptores."
1907
+
1908
+ #: ../classes/es-register.php:183
1909
+ msgctxt "view-subscriber-enhanced-select"
1910
+ msgid "Please select new status for subscribers"
1911
+ msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
1912
+
1913
+ #: ../classes/es-register.php:184
1914
+ msgctxt "view-subscriber-enhanced-select"
1915
+ msgid "Do you want to update subscribers group?"
1916
+ msgstr "¿Quieres actualizar el grupo de suscriptores?"
1917
+
1918
+ #: ../classes/es-register.php:185
1919
+ msgctxt "view-subscriber-enhanced-select"
1920
+ msgid "Do you want to update subscribers status?"
1921
+ msgstr "¿Quieres actualizar el estado de los suscriptores?"
1922
+
1923
+ #: ../classes/es-register.php:186
1924
+ msgctxt "view-subscriber-enhanced-select"
1925
+ msgid ""
1926
+ "Please select only csv file. Please check official website for csv structure."
1927
+ "."
1928
+ msgstr ""
1929
+ "Por favor selecciona el archivo de entrada csv. Por favor, consulta el sitio "
1930
+ "oficial para ver la estructura csv."
1931
+
1932
+ #: ../classes/es-register.php:194
1933
+ msgctxt "compose-enhanced-select"
1934
+ msgid "Please enter the Email Subject."
1935
+ msgstr "Por favor, indica el Asunto del Correo."
1936
+
1937
+ #: ../classes/es-register.php:195
1938
+ msgctxt "compose-enhanced-select"
1939
+ msgid "Do you want to delete this record?"
1940
+ msgstr "¿Quieres borrar este registro?"
1941
+
1942
+ #: ../classes/es-register.php:203
1943
+ msgctxt "notification-enhanced-select"
1944
+ msgid "Please select subscribers group."
1945
+ msgstr "Por favor selecciona el grupo de suscriptores."
1946
+
1947
+ #: ../classes/es-register.php:204
1948
+ msgctxt "notification-enhanced-select"
1949
+ msgid "Please select notification mail subject. Use compose menu to create new."
1950
+ msgstr ""
1951
+ "Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
1952
+ "componer para crear uno nuevo."
1953
+
1954
+ #: ../classes/es-register.php:205
1955
+ msgctxt "notification-enhanced-select"
1956
+ msgid "Please select notification status."
1957
+ msgstr "Por favor selecciona el estado de notificación."
1958
+
1959
+ #: ../classes/es-register.php:206
1960
+ msgctxt "notification-enhanced-select"
1961
+ msgid "Do you want to delete this record?"
1962
+ msgstr "¿Quieres borrar este registro?"
1963
+
1964
+ #: ../classes/es-register.php:214
1965
+ msgctxt "sendmail-enhanced-select"
1966
+ msgid "Please select your mail subject."
1967
+ msgstr "Por favor selecciona el asunto de tu correo."
1968
+
1969
+ #: ../classes/es-register.php:215
1970
+ msgctxt "sendmail-enhanced-select"
1971
+ msgid "Please select your mail type."
1972
+ msgstr "Por favor selecciona tu tipo de correo."
1973
+
1974
+ #: ../classes/es-register.php:216
1975
+ msgctxt "sendmail-enhanced-select"
1976
+ msgid ""
1977
+ "Have you double checked your selected group? If so, let's go ahead and send "
1978
+ "this."
1979
+ msgstr ""
1980
+ "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
1981
+ "enviemos esto."
1982
+
1983
+ #: ../classes/es-register.php:224
1984
+ msgctxt "sentmail-enhanced-select"
1985
+ msgid "Do you want to delete this record?"
1986
+ msgstr "¿Quieres borrar este registro?"
1987
+
1988
+ #: ../classes/es-register.php:225
1989
+ msgctxt "sentmail-enhanced-select"
1990
+ msgid "Do you want to delete all records except latest 10?"
1991
+ msgstr "¿Quieres borrar todos los registros excepto los últimos 10?"
1992
+
1993
+ #: ../classes/es-register.php:233
1994
+ msgctxt "cron-enhanced-select"
1995
+ msgid "Please select enter number of mails you want to send per hour/trigger."
1996
+ msgstr ""
1997
+ "Por favor, introduce el número de correos que quieres enviar por "
1998
+ "hora/disparador."
1999
+
2000
+ #: ../classes/es-register.php:234
2001
+ msgctxt "cron-enhanced-select"
2002
+ msgid "Please enter the mail count, only number."
2003
+ msgstr "Por favor, introduce el conteo de correos, sólo numérico."
2004
+
2005
+ #: ../classes/es-register.php:247
2006
+ msgctxt "widget-enhanced-select"
2007
+ msgid "Please enter email address"
2008
+ msgstr "Por favor inserta dirección de correo"
2009
+
2010
+ #: ../classes/es-register.php:248
2011
+ msgctxt "widget-enhanced-select"
2012
+ msgid "Please provide a valid email address"
2013
+ msgstr "Por favor escribe una dirección de correo válida"
2014
+
2015
+ #: ../classes/es-register.php:249
2016
+ msgctxt "widget-enhanced-select"
2017
+ msgid "loading..."
2018
+ msgstr "cargando..."
2019
+
2020
+ #: ../classes/es-register.php:250
2021
+ msgctxt "widget-enhanced-select"
2022
+ msgid "Cannot create XMLHTTP instance"
2023
+ msgstr "No se puede crear la instancia XMLHTTP"
2024
+
2025
+ #: ../classes/es-register.php:251
2026
+ msgctxt "widget-enhanced-select"
2027
+ msgid "Successfully Subscribed."
2028
+ msgstr "Suscripción exitosa."
2029
+
2030
+ #: ../classes/es-register.php:252
2031
+ msgctxt "widget-enhanced-select"
2032
+ msgid ""
2033
+ "Your subscription was successful! Within a few minutes, kindly check the "
2034
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2035
+ "mail in your mailbox, please check your spam folder."
2036
+ msgstr ""
2037
+ "¡Te has suscrito con éxito! En pocos minutos, por favor comprueba el correo "
2038
+ "en tu bandeja de entrada y confirma tu suscripción. Si no ves el correo en "
2039
+ "la bandeja de entrada, por favor revisa tu carpeta de correo no deseado."
2040
+
2041
+ #: ../classes/es-register.php:253
2042
+ msgctxt "widget-enhanced-select"
2043
+ msgid "Email Address already exists!"
2044
+ msgstr "¡Esa dirección de Correo ya existe!"
2045
+
2046
+ #: ../classes/es-register.php:254
2047
+ msgctxt "widget-enhanced-select"
2048
+ msgid "Oops.. Unexpected error occurred."
2049
+ msgstr "Ups. Ha sucedido un error inesperado."
2050
+
2051
+ #: ../classes/es-register.php:255
2052
+ msgctxt "widget-enhanced-select"
2053
+ msgid "Invalid email address"
2054
+ msgstr "Dirección de correo electrónico no válida"
2055
+
2056
+ #: ../classes/es-register.php:256
2057
+ msgctxt "widget-enhanced-select"
2058
+ msgid "Please try after some time"
2059
+ msgstr "Por favor, inténtalo transcurridos unos minutos"
2060
+
2061
+ #: ../classes/es-register.php:257
2062
+ msgctxt "widget-enhanced-select"
2063
+ msgid "There was a problem with the request"
2064
+ msgstr "Ha habido un problema con la solicitud"
2065
+
2066
+ #: ../classes/es-register.php:264
2067
+ msgctxt "widget-page-enhanced-select"
2068
+ msgid "Please enter email address"
2069
+ msgstr "Por favor introduce dirección de correo electrónico"
2070
+
2071
+ #: ../classes/es-register.php:265
2072
+ msgctxt "widget-page-enhanced-select"
2073
+ msgid "Please provide a valid email address"
2074
+ msgstr "Por favor, inserta una dirección de correo electrónica válida"
2075
+
2076
+ #: ../classes/es-register.php:266
2077
+ msgctxt "widget-page-enhanced-select"
2078
+ msgid "loading..."
2079
+ msgstr "cargando..."
2080
+
2081
+ #: ../classes/es-register.php:267
2082
+ msgctxt "widget-page-enhanced-select"
2083
+ msgid "Cannot create XMLHTTP instance"
2084
+ msgstr "No se puede crear la instancia XMLHTTP"
2085
+
2086
+ #: ../classes/es-register.php:268
2087
+ msgctxt "widget-page-enhanced-select"
2088
+ msgid "Successfully Subscribed."
2089
+ msgstr "Suscripción con éxito."
2090
+
2091
+ #: ../classes/es-register.php:269
2092
+ msgctxt "widget-page-enhanced-select"
2093
+ msgid ""
2094
+ "Your subscription was successful! Within a few minutes, kindly check the "
2095
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2096
+ "mail in your mailbox, please check your spam folder."
2097
+ msgstr ""
2098
+ "Te has suscrito con éxito a la newsletter. En pocos minutos, comprueba tu "
2099
+ "correo en tu bandeja de entrada y confirma tu suscripción . Si no ves el "
2100
+ "correo en tu bandeja de entrada, por favor revisa tu carpeta de correo no "
2101
+ "deseado."
2102
+
2103
+ #: ../classes/es-register.php:270
2104
+ msgctxt "widget-page-enhanced-select"
2105
+ msgid "Email Address already exists!"
2106
+ msgstr "¡Esa dirección de correo electrónico ya existe!"
2107
+
2108
+ #: ../classes/es-register.php:271
2109
+ msgctxt "widget-page-enhanced-select"
2110
+ msgid "Oops.. Unexpected error occurred."
2111
+ msgstr "Ups. Ha sucedido un error inesperado."
2112
+
2113
+ #: ../classes/es-register.php:272
2114
+ msgctxt "widget-page-enhanced-select"
2115
+ msgid "Invalid email address"
2116
+ msgstr "Dirección de correo electrónico no válida"
2117
+
2118
+ #: ../classes/es-register.php:273
2119
+ msgctxt "widget-page-enhanced-select"
2120
+ msgid "Please try after some time"
2121
+ msgstr "Por favor, inténtalo transcurridos unos minutos"
2122
+
2123
+ #: ../classes/es-register.php:274
2124
+ msgctxt "widget-page-enhanced-select"
2125
+ msgid "There was a problem with the request"
2126
+ msgstr "Ha habido un problema con la solicitud"
2127
+
2128
+ #: ../classes/es-register.php:724
2129
+ msgid "is getting even better!"
2130
+ msgstr "está mejorando aún más!"
2131
+
2132
+ #: ../classes/es-register.php:725
2133
+ msgid "But I need you to"
2134
+ msgstr "Pero necesito que"
2135
+
2136
+ #: ../classes/es-register.php:725
2137
+ msgid "help me prioritize"
2138
+ msgstr "me ayudes a priorizar"
2139
+
2140
+ #: ../classes/es-register.php:725
2141
+ msgid "Please send your response today."
2142
+ msgstr "Por favor, envía tu respuesta hoy."
2143
+
2144
+ #: ../classes/es-register.php:732
2145
+ msgid "Here's how you use ES:"
2146
+ msgstr "Así es como puedes utilizar ES:"
2147
+
2148
+ #: ../classes/es-register.php:745
2149
+ msgid "Have "
2150
+ msgstr "Ha "
2151
+
2152
+ #: ../classes/es-register.php:745
2153
+ msgid " Active Subscribers"
2154
+ msgstr " Suscriptores Activos"
2155
+
2156
+ #: ../classes/es-register.php:746
2157
+ msgid "Post "
2158
+ msgstr "Entrada "
2159
+
2160
+ #: ../classes/es-register.php:746
2161
+ msgid " blog per week"
2162
+ msgstr " blog por semana"
2163
+
2164
+ #: ../classes/es-register.php:750
2165
+ msgid "Send emails via Cron"
2166
+ msgstr "Enviar correos vía Cron"
2167
+
2168
+ #: ../classes/es-register.php:752
2169
+ msgid "Send emails Immediately"
2170
+ msgstr "Enviar correos inmediatamente"
2171
+
2172
+ #: ../classes/es-register.php:779
2173
+ msgid "How soon do you want these new features?"
2174
+ msgstr "¿Cómo de pronto quieres estas características?"
2175
+
2176
+ #: ../classes/es-register.php:783
2177
+ msgid "Beautiful Email Designs"
2178
+ msgstr "Preciosos Diseños de Correo"
2179
+
2180
+ #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
2181
+ #: register.php:794 ../classes/es-register.php:799
2182
+ msgid "Right now!"
2183
+ msgstr "¡Ahora mismo!"
2184
+
2185
+ #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
2186
+ #: register.php:795 ../classes/es-register.php:800
2187
+ msgid "Soon"
2188
+ msgstr "Pronto"
2189
+
2190
+ #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
2191
+ #: register.php:796 ../classes/es-register.php:801
2192
+ msgid "Later"
2193
+ msgstr "Más adelante"
2194
+
2195
+ #: ../classes/es-register.php:788
2196
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
2197
+ msgstr "Comprobación de Spam, Programando... (Mejor Envío de Correo)"
2198
+
2199
+ #: ../classes/es-register.php:793
2200
+ msgid "Discard Fake / Bouncing Emails"
2201
+ msgstr "Descartar Correos fraudulentos / rebotados"
2202
+
2203
+ #: ../classes/es-register.php:798
2204
+ msgid "Advanced Reporting"
2205
+ msgstr "Informe avanzado"
2206
+
2207
+ #: ../classes/es-register.php:826
2208
+ msgid "Thank you!"
2209
+ msgstr "¡Gracias!"
2210
+
2211
+ #: ../classes/es-register.php:827
2212
+ msgid "No issues, have a nice day!"
2213
+ msgstr "¡Sin problemas, que pases un buen día!"
2214
+
2215
+ #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
2216
+ msgid "Email *"
2217
+ msgstr "Email *"
2218
+
2219
+ #: ../classes/es-register.php:1035
2220
+ msgid "Widget Title"
2221
+ msgstr "Título Widget"
2222
+
2223
+ #: ../classes/es-register.php:1039
2224
+ msgid "Short description about subscription form"
2225
+ msgstr "Descripción corta sobre el formulario de suscripción"
2226
+
2227
+ #: ../classes/es-register.php:1043
2228
+ msgid "Display Name Field"
2229
+ msgstr "Mostrar Campo Nombre"
2230
+
2231
+ #: ../classes/es-register.php:1050
2232
+ msgid "Subscriber Group"
2233
+ msgstr "Grupo de suscripción"
languages/email-subscribers-fr_FR.mo CHANGED
Binary file
languages/email-subscribers-fr_FR.po CHANGED
@@ -1,2013 +1,2222 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
6
- "PO-Revision-Date: 2017-07-04 23:52+0200\n"
7
- "Last-Translator: \n"
8
- "Language-Team: \n"
9
- "Language: fr_FR\n"
10
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 2.0.1\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Loco-Target-Locale: fr_FR\n"
23
- "X-Poedit-SearchPath-0: ..\n"
24
 
25
- #: classes/es-register.php:733
26
- msgid "Send emails via Cron"
27
- msgstr "Envoi d'e-mails via Cron"
28
 
29
- #: classes/es-register.php:735
30
- msgid "Send emails Immediately"
31
- msgstr "Envoi d'e-mails immédiatement"
 
32
 
33
- #: compose/compose-add.php:78 compose/compose-edit.php:89
34
- msgid "Select your Email Template"
35
- msgstr "Choisissez le type d'e-mail"
36
 
37
- #: help/help.php:127
38
  msgid ""
39
- " (Modify existing emails like Confirmation, Welcome, Admin emails and Cron "
40
- "Settings and Assign User Roles)"
 
 
 
 
41
  msgstr ""
42
- " (Modification des e-mails de confirmation, de bienvenue, à l'administrateur, "
43
- "paramétrage du Cron et des droits des utilisateurs)"
44
 
45
- #: help/help.php:142
46
  msgid ""
47
- "How to Configure and Send Post Notification Emails to subscribers when new posts "
48
- "are published?"
 
 
 
49
  msgstr ""
50
- "Comment configurer et envoyer des e-mails de notification aux abonnés lorsque de "
51
- "nouveaux articles sont publiés?"
52
 
53
- #: help/help.php:145
54
- msgid "What are the available keywords in the Post Notifications?"
55
- msgstr "Quels sont les mots clés disponibles pour les notifications?"
56
 
57
- #: help/help.php:148
58
- msgid "How to send a sample new post notification email to testgroup/myself?"
59
  msgstr ""
60
- "Comment envoyer un exemple de notification de nouvel article à un groupe test ou à "
61
- "moi-même?"
62
 
63
- #: help/help.php:151
64
- msgid "How to check sent emails?"
65
- msgstr "Comment vérifier les e-mails envoyés?"
 
 
66
 
67
- #: help/help.php:154
68
- msgid "How to Add/Update Existing Subscribers Group & Status?"
69
- msgstr "Comment ajouter/mettre à jour un groupe d'abonnés?"
70
 
71
- #: help/help.php:166
72
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
73
  msgstr ""
74
- "Comment rediriger les abonnés vers une nouvelle page/url après une inscription "
75
- "réussie?"
76
 
77
- #: help/help.php:169
78
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
79
- msgstr "Comment ajouter un captcha au formulaire d'abonnement?"
80
 
81
- #: help/help.php:172
82
- msgid "How to Schedule Cron Emails?"
83
- msgstr "Comment programmer un envoi d'e-mail en tache Cron?"
 
 
84
 
85
- #: help/help.php:186
86
- msgid "Common FAQ's"
87
- msgstr "Foire Aux Questions courantes"
88
 
89
- #: settings/settings-edit.php:155
90
  msgid ""
91
- "Enter the email content for the admin email which will be sent whenever a new "
92
- "email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, ###GROUP###)"
 
 
 
 
93
  msgstr ""
94
- "Entrer le contenu de l'e-mail pour l'administrateur envoyé à chaque fois qu'un "
95
- "abonné s'inscrit et a confirmé son e-mail. ( Mots clés: ###NAME###, ###EMAIL###, "
96
- "###GROUP###)"
97
 
98
- #: base/es-defined.php:32
99
  msgid ""
100
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
101
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
102
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A "
103
- "huge thank you from Icegram in advance!"
104
  msgstr ""
105
- "Si vous aimez <strong>Email Subscribers</strong>, attribuez-lui <a target=\"_blank"
106
- "\" href=\"https://wordpress.org/support/plugin/email-subscribers/reviews/?"
107
- "filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a>. Un grand merci "
108
- "d'Icegram d'avance!"
109
 
110
- #: classes/es-common.php:13
111
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
112
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
113
 
114
- #: classes/es-common.php:16
115
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
116
- msgstr "<span style=\"color:#FF0000\">Non confirmé</span>"
 
 
117
 
118
- #: classes/es-common.php:19
119
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
120
- msgstr "<span style=\"color:#999900\">Désabonné</span>"
121
 
122
- #: classes/es-common.php:22
123
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
124
- msgstr "<span style=\"color:#0000FF\">Simple vérification</span>"
125
 
126
- #: classes/es-common.php:25
127
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
128
- msgstr "<span style=\"color:#00CC00;font-weight:bold\">Vu</span>"
 
 
 
129
 
130
- #: classes/es-common.php:28
131
- msgid "<span style=\"color:#999900;\">Nodata</span>"
132
- msgstr "<span style=\"color:#999900;\">Aucune donnée</span>"
133
 
134
- #: classes/es-common.php:31
135
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
136
- msgstr "<span style=\"color:#FF0000\">Désactivé</span>"
 
 
 
137
 
138
- #: classes/es-common.php:34
139
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
140
- msgstr "<span style=\"color:#FF0000\">En file d'attente</span>"
 
 
 
141
 
142
- #: classes/es-common.php:37
143
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
144
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Envoyé</span>"
 
 
145
 
146
- #: classes/es-common.php:40
147
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
148
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
 
 
149
 
150
- #: classes/es-common.php:43
151
- msgid "<span style=\"color:#993399;\">Immediately</span>"
152
- msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
153
 
154
- #: classes/es-loadwidget.php:28 classes/es-register.php:964
155
- #: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
156
- msgid "Name"
157
- msgstr "Nom"
 
158
 
159
- #: classes/es-loadwidget.php:33 classes/es-register.php:969
160
- msgid "Email *"
161
- msgstr "E-mail *"
 
 
162
 
163
- #: classes/es-loadwidget.php:38 classes/es-register.php:974
164
- msgid "Subscribe"
165
- msgstr "S'abonner"
166
 
167
- #: classes/es-register.php:140 classes/es-register.php:141
168
- #: classes/es-register.php:707
169
- msgid "Email Subscribers"
170
- msgstr "Email Subscribers & Newsletters"
171
 
172
- #: classes/es-register.php:143 classes/es-register.php:144
173
- #: subscribers/view-subscriber-show.php:241
174
- msgid "Subscribers"
175
- msgstr "Abonnés"
 
176
 
177
- #: classes/es-register.php:146 classes/es-register.php:147
178
- #: compose/compose-show.php:64
179
- msgid "Compose"
180
- msgstr "Modèles"
 
 
 
181
 
182
- #: classes/es-register.php:149 classes/es-register.php:150
183
- #: notification/notification-show.php:52
184
- msgid "Post Notifications"
185
- msgstr "Notifications d'article"
 
 
 
186
 
187
- #: classes/es-register.php:152 classes/es-register.php:153 sendmail/sendmail.php:93
188
- #: settings/settings-edit.php:318
189
- msgid "Newsletters"
190
- msgstr "Newsletters"
 
 
 
191
 
192
- #: classes/es-register.php:155 classes/es-register.php:156
193
- #: settings/settings-edit.php:41
194
- msgid "Settings"
195
- msgstr "Paramètres"
 
 
 
196
 
197
- #: classes/es-register.php:158 classes/es-register.php:159
198
- #: sentmail/sentmail-show.php:96
199
- msgid "Reports"
200
- msgstr "Rapports"
201
 
202
- #: classes/es-register.php:161
203
- msgid "Help & Info"
204
- msgstr "Aide & Infos"
205
 
206
- #: classes/es-register.php:162
207
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
208
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Infos"
 
 
 
 
209
 
210
- #: classes/es-register.php:173
211
- msgctxt "view-subscriber-enhanced-select"
212
- msgid "Please enter subscriber email address."
213
- msgstr "Entrer l'adresse e-mail de l'abonné."
214
 
215
- #: classes/es-register.php:174
216
- msgctxt "view-subscriber-enhanced-select"
217
- msgid "Please select subscriber email status."
218
- msgstr "Sélectionner le type d'envoi pour cet abonné."
219
 
220
- #: classes/es-register.php:175
221
- msgctxt "view-subscriber-enhanced-select"
222
- msgid "Please select or create group for this subscriber."
223
- msgstr "Sélectionner ou créer un groupe pour cet abonné."
224
 
225
- #: classes/es-register.php:176
226
- msgctxt "view-subscriber-enhanced-select"
227
- msgid "Do you want to delete this record?"
228
- msgstr "Voulez-vous supprimer cette ligne?"
229
 
230
- #: classes/es-register.php:177
231
- msgctxt "view-subscriber-enhanced-select"
232
- msgid "Please select the bulk action."
233
- msgstr "Veuillez sélectionner une action."
234
 
235
- #: classes/es-register.php:178
236
- msgctxt "view-subscriber-enhanced-select"
237
- msgid "Are you sure you want to delete selected records?"
238
- msgstr "Voulez-vous supprimer les lignes sélectionnées?"
239
 
240
- #: classes/es-register.php:179
241
- msgctxt "view-subscriber-enhanced-select"
242
  msgid ""
243
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
244
- "subscriber current status to 'Unconfirmed'."
 
245
  msgstr ""
246
- "Voulez-vous renvoyer un message de confirmation?\\n A noter: le statut de l'abonné "
247
- "passera à 'En attente de confirmation'."
248
 
249
- #: classes/es-register.php:180
250
- msgctxt "view-subscriber-enhanced-select"
251
- msgid "Please select new subscriber group."
252
- msgstr "Veuillez choisir un groupe d'abonnés."
253
 
254
- #: classes/es-register.php:181
255
- msgctxt "view-subscriber-enhanced-select"
256
- msgid "Please select new status for subscribers"
257
- msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
 
258
 
259
- #: classes/es-register.php:182
260
- msgctxt "view-subscriber-enhanced-select"
261
- msgid "Do you want to update subscribers group?"
262
- msgstr "Voulez-vous mettre à jour ce groupe?"
263
 
264
- #: classes/es-register.php:183
265
- msgctxt "view-subscriber-enhanced-select"
266
- msgid "Do you want to update subscribers status?"
267
- msgstr "Voulez vous modifier le statut de ces abonnés?"
268
 
269
- #: classes/es-register.php:184
270
- msgctxt "view-subscriber-enhanced-select"
271
  msgid ""
272
- "Please select only csv file. Please check official website for csv structure.."
 
273
  msgstr ""
274
- "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour la "
275
- "structure du fichier csv."
276
 
277
- #: classes/es-register.php:192
278
- msgctxt "compose-enhanced-select"
279
- msgid "Please enter the Email Subject."
280
- msgstr "Veuillez saisir le sujet de votre courriel."
281
 
282
- #: classes/es-register.php:193
283
- msgctxt "compose-enhanced-select"
284
- msgid "Do you want to delete this record?"
285
- msgstr "Voulez-vous supprimer cet enregistrement?"
286
 
287
- #: classes/es-register.php:201
288
- msgctxt "notification-enhanced-select"
289
- msgid "Please select subscribers group."
290
- msgstr "Veuillez choisir un groupe."
291
 
292
- #: classes/es-register.php:202
293
- msgctxt "notification-enhanced-select"
294
- msgid "Please select notification mail subject. Use compose menu to create new."
295
  msgstr ""
296
- "Veuillez choisir le modèle de courriel. Utilisez le menu Modèles pour en créer un "
297
- "nouveau."
298
 
299
- #: classes/es-register.php:203
300
- msgctxt "notification-enhanced-select"
301
- msgid "Please select notification status."
302
- msgstr "Veuillez sélectionner le statut de la notification."
303
 
304
- #: classes/es-register.php:204
305
- msgctxt "notification-enhanced-select"
306
- msgid "Do you want to delete this record?"
307
- msgstr "Voulez-vous supprimer cet enregistrement?"
308
 
309
- #: classes/es-register.php:212
310
- msgctxt "sendmail-enhanced-select"
311
- msgid "Please select your mail subject."
312
- msgstr "Veuillez choisir le sujet du courriel."
313
 
314
- #: classes/es-register.php:213
315
- msgctxt "sendmail-enhanced-select"
316
- msgid "Please select your mail type."
317
- msgstr "Veuillez choisir le type d'envoi."
318
 
319
- #: classes/es-register.php:214
320
- msgctxt "sendmail-enhanced-select"
321
- msgid ""
322
- "Have you double checked your selected group? If so, let's go ahead and send this."
323
  msgstr ""
324
- "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
325
- "envoyer."
326
 
327
- #: classes/es-register.php:222
328
- msgctxt "sentmail-enhanced-select"
329
- msgid "Do you want to delete this record?"
330
- msgstr "Voulez-vous supprimer cet enregistrement?"
331
 
332
- #: classes/es-register.php:223
333
- msgctxt "sentmail-enhanced-select"
334
- msgid "Do you want to delete all records except latest 10?"
335
- msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
 
 
 
 
 
 
 
336
 
337
- #: classes/es-register.php:231
338
- msgctxt "cron-enhanced-select"
339
- msgid "Please select enter number of mails you want to send per hour/trigger."
340
  msgstr ""
341
- "Veuillez saisir le nombre de courriels que vous voulez envoyer par heure/envoi."
342
 
343
- #: classes/es-register.php:232
344
- msgctxt "cron-enhanced-select"
345
- msgid "Please enter the mail count, only number."
346
- msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
347
 
348
- #: classes/es-register.php:245
349
- msgctxt "widget-enhanced-select"
350
- msgid "Please enter email address"
351
- msgstr "Veuillez saisir une adresse e-mail"
352
 
353
- #: classes/es-register.php:246
354
- msgctxt "widget-enhanced-select"
355
- msgid "Please provide a valid email address"
356
- msgstr "Veuillez saisir une adresse e-mail valide"
 
357
 
358
- #: classes/es-register.php:247
359
- msgctxt "widget-enhanced-select"
360
- msgid "loading..."
361
- msgstr "envoi..."
362
 
363
- #: classes/es-register.php:248
364
- msgctxt "widget-enhanced-select"
365
- msgid "Cannot create XMLHTTP instance"
366
- msgstr "Impossible de créer l'instance XMLHTTP"
367
 
368
- #: classes/es-register.php:249
369
- msgctxt "widget-enhanced-select"
370
- msgid "Successfully Subscribed."
371
- msgstr "Mise à jour réussie."
372
 
373
- #: classes/es-register.php:250
374
- msgctxt "widget-enhanced-select"
375
- msgid ""
376
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
377
- "your mailbox and confirm your subscription. If you can't see the mail in your "
378
- "mailbox, please check your spam folder."
379
  msgstr ""
380
- "Pour confirmer votre abonnement, consultez votre boîte de reception et cliquez sur "
381
- "le lien qui vous a été envoyé."
382
 
383
- #: classes/es-register.php:251
384
- msgctxt "widget-enhanced-select"
385
- msgid "Email Address already exists!"
386
- msgstr "Cet adresse e-mail existe déjà !"
387
 
388
- #: classes/es-register.php:252
389
- msgctxt "widget-enhanced-select"
390
- msgid "Oops.. Unexpected error occurred."
391
- msgstr "Oups.. une erreur inattendue s'est produite."
392
 
393
- #: classes/es-register.php:253
394
- msgctxt "widget-enhanced-select"
395
- msgid "Invalid email address"
396
- msgstr "Adresse e-mail non valide"
397
 
398
- #: classes/es-register.php:254
399
- msgctxt "widget-enhanced-select"
400
- msgid "Please try after some time"
401
- msgstr "Veuillez réessayer dans quelques instants"
402
 
403
- #: classes/es-register.php:255
404
- msgctxt "widget-enhanced-select"
405
- msgid "There was a problem with the request"
406
- msgstr "Il y a eu un problème avec la requête"
407
 
408
- #: classes/es-register.php:262
409
- msgctxt "widget-page-enhanced-select"
410
- msgid "Please enter email address"
411
- msgstr "Veuillez saisir une adresse e-mail"
412
 
413
- #: classes/es-register.php:263
414
- msgctxt "widget-page-enhanced-select"
415
- msgid "Please provide a valid email address"
416
- msgstr "Veuillez saisir une adresse e-mail valide"
417
 
418
- #: classes/es-register.php:264
419
- msgctxt "widget-page-enhanced-select"
420
- msgid "loading..."
421
- msgstr "chargement..."
422
-
423
- #: classes/es-register.php:265
424
- msgctxt "widget-page-enhanced-select"
425
- msgid "Cannot create XMLHTTP instance"
426
- msgstr "Impossible de créer l'instance XMLHTTP"
427
-
428
- #: classes/es-register.php:266
429
- msgctxt "widget-page-enhanced-select"
430
- msgid "Successfully Subscribed."
431
- msgstr "Abonnement réussi."
432
-
433
- #: classes/es-register.php:267
434
- msgctxt "widget-page-enhanced-select"
435
- msgid ""
436
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
437
- "your mailbox and confirm your subscription. If you can't see the mail in your "
438
- "mailbox, please check your spam folder."
439
  msgstr ""
440
- "Pour confirmer votre abonnement, consultez votre boîte de reception et cliquez sur "
441
- "le lien qui vous a été envoyé."
442
-
443
- #: classes/es-register.php:268
444
- msgctxt "widget-page-enhanced-select"
445
- msgid "Email Address already exists!"
446
- msgstr "Cette adresse existe déjà !"
447
-
448
- #: classes/es-register.php:269
449
- msgctxt "widget-page-enhanced-select"
450
- msgid "Oops.. Unexpected error occurred."
451
- msgstr "Oups... Une erreur inattendue s'est produite."
452
-
453
- #: classes/es-register.php:270
454
- msgctxt "widget-page-enhanced-select"
455
- msgid "Invalid email address"
456
- msgstr "Adresse e-mail non valide"
457
-
458
- #: classes/es-register.php:271
459
- msgctxt "widget-page-enhanced-select"
460
- msgid "Please try after some time"
461
- msgstr "Veuillez réessayer plus tard"
462
-
463
- #: classes/es-register.php:272
464
- msgctxt "widget-page-enhanced-select"
465
- msgid "There was a problem with the request"
466
- msgstr "Il y a eu un problème avec la requête"
467
-
468
- #: classes/es-register.php:707
469
- msgid "is getting even better!"
470
- msgstr "s'améliore toujours!"
471
-
472
- #: classes/es-register.php:708
473
- msgid "But I need you to"
474
- msgstr "Mais j'ai besoin de vous"
475
-
476
- #: classes/es-register.php:708
477
- msgid "help me prioritize"
478
- msgstr "pour m'aider à choisir les priorités"
479
-
480
- #: classes/es-register.php:708
481
- msgid "Please send your response today."
482
- msgstr "Merci d'envoyer votre réponse maintenant."
483
-
484
- #: classes/es-register.php:715
485
- msgid "Here's how you use ES:"
486
- msgstr "Comment utilisez-vous Email Subscribers :"
487
-
488
- #: classes/es-register.php:720
489
- msgid "Used Post Notifications more often than Newsletter"
490
- msgstr "J'utilise plutôt les notifications d'articles que la newsletter"
491
-
492
- #: classes/es-register.php:722
493
- msgid "Used Newsletter more often than Post Notifications"
494
- msgstr "J'utilise plutôt les newletters que les notifications d'articles"
495
-
496
- #: classes/es-register.php:724
497
- msgid "Used Post Notification &amp; Newsletter equally"
498
- msgstr "J'utilise autant les newletters que les notifications d'articles"
499
-
500
- #: classes/es-register.php:728
501
- msgid "Have "
502
- msgstr "J'ai"
503
-
504
- #: classes/es-register.php:728
505
- msgid " Active Subscribers"
506
- msgstr " Abonnés activés"
507
-
508
- #: classes/es-register.php:729
509
- msgid "Post "
510
- msgstr "J'écris"
511
-
512
- #: classes/es-register.php:729
513
- msgid " blog per week"
514
- msgstr " articles par semaine"
515
 
516
- #: classes/es-register.php:745
517
- msgid "How soon do you want these new features?"
518
- msgstr "Quand désirez-vous ces nouvelles fonctionnalités?"
519
-
520
- #: classes/es-register.php:749
521
- msgid "Beautiful Email Designs"
522
- msgstr "Superbes design d'e-mail "
523
-
524
- #: classes/es-register.php:750 classes/es-register.php:755
525
- #: classes/es-register.php:764 classes/es-register.php:769
526
- msgid "Right now!"
527
- msgstr "Tout de suite!"
528
-
529
- #: classes/es-register.php:751 classes/es-register.php:756
530
- #: classes/es-register.php:765 classes/es-register.php:770
531
- msgid "Soon"
532
- msgstr "Bientôt"
533
-
534
- #: classes/es-register.php:752 classes/es-register.php:757
535
- #: classes/es-register.php:766 classes/es-register.php:771
536
- msgid "Later"
537
- msgstr "Plus tard"
538
-
539
- #: classes/es-register.php:754
540
- msgid "Spam Check, Scheduling... (Better Email Delivery)"
541
- msgstr "Vérification de span, planification... (Meilleur réception d'e-mail)"
542
-
543
- #: classes/es-register.php:763
544
- msgid "Discard Fake / Bouncing Emails"
545
- msgstr "Suppression des fakes / Message de non délivrance"
546
-
547
- #: classes/es-register.php:768
548
- msgid "Advanced Reporting"
549
- msgstr "Rapport avancé"
550
-
551
- #: classes/es-register.php:791
552
- msgid "Thank you!"
553
- msgstr "Merci!"
554
-
555
- #: classes/es-register.php:792
556
- msgid "No issues, have a nice day!"
557
- msgstr "Aucune demande, passez une bonne journée!"
558
-
559
- #: classes/es-register.php:1012
560
- msgid "Widget Title"
561
- msgstr "Titre du widget"
562
-
563
- #: classes/es-register.php:1016
564
- msgid "Short description about subscription form"
565
- msgstr "Courte description de votre formulaire d'abonnement"
566
-
567
- #: classes/es-register.php:1020
568
- msgid "Display Name Field"
569
- msgstr "Afficher le champ Nom"
570
-
571
- #: classes/es-register.php:1022 settings/settings-edit.php:140
572
- #: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
573
- msgid "YES"
574
- msgstr "OUI"
575
-
576
- #: classes/es-register.php:1023 settings/settings-edit.php:141
577
- #: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
578
- msgid "NO"
579
- msgstr "NON"
580
-
581
- #: classes/es-register.php:1027
582
- msgid "Subscriber Group"
583
- msgstr "Groupe d'abonnés"
584
-
585
- #: compose/compose-add.php:31 compose/compose-edit.php:48
586
- msgid "Please enter template heading."
587
- msgstr "Veuillez saisir le nom du modèle."
588
-
589
- #: compose/compose-add.php:43
590
- msgid "Template successfully created. "
591
- msgstr "Modèle créé."
592
-
593
- #: compose/compose-add.php:74
594
- msgid "Add new Email"
595
- msgstr "Ajouter un nouveau courriel"
596
-
597
- #: compose/compose-add.php:75 compose/compose-edit.php:86
598
- #: compose/compose-preview.php:28 compose/compose-show.php:66
599
- #: notification/notification-add.php:113 notification/notification-edit.php:124
600
- #: notification/notification-show.php:54 sendmail/sendmail.php:94
601
- #: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
602
- #: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
603
- #: subscribers/view-subscriber-add.php:114 subscribers/view-subscriber-edit.php:113
604
- #: subscribers/view-subscriber-export.php:38
605
- #: subscribers/view-subscriber-import.php:146
606
- #: subscribers/view-subscriber-show.php:246 subscribers/view-subscriber-sync.php:92
607
- msgid "Help"
608
- msgstr "Aide"
609
-
610
- #: compose/compose-add.php:80 compose/compose-edit.php:91
611
- msgid "Newsletter"
612
- msgstr "Newsletters"
613
 
614
- #: compose/compose-add.php:81 compose/compose-edit.php:92
615
- msgid "Post Notification"
616
- msgstr "Notification d'article"
617
 
618
- #: compose/compose-add.php:85 compose/compose-edit.php:96
619
- msgid "Enter your Email Subject"
620
- msgstr "Saisir le sujet du courriel"
621
 
622
- #: compose/compose-add.php:87 compose/compose-edit.php:98
623
- msgid "Keyword: ###POSTTITLE###"
624
- msgstr "Mot clé: ###POSTTITLE###"
625
 
626
- #: compose/compose-add.php:89 compose/compose-edit.php:100
627
- msgid "Enter Content for your Email"
628
- msgstr "Saisir le contenu du courriel"
629
 
630
- #: compose/compose-add.php:93 compose/compose-edit.php:104
631
- #, c-format
632
  msgid ""
633
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
634
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
635
- "###POSTFULL###"
636
  msgstr ""
637
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
638
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
639
- "###POSTFULL###"
640
-
641
- #: compose/compose-add.php:93 compose/compose-edit.php:104
642
- msgid "Available Keywords"
643
- msgstr "Mots clés autorisés"
644
-
645
- #: compose/compose-add.php:97 compose/compose-edit.php:108
646
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
647
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
648
- #: subscribers/view-subscriber-show.php:362 subscribers/view-subscriber-show.php:375
649
- msgid "Status"
650
- msgstr "Statut"
651
-
652
- #: compose/compose-add.php:99 compose/compose-edit.php:110
653
- msgid "Published"
654
- msgstr "Publié"
655
-
656
- #: compose/compose-add.php:101 compose/compose-edit.php:112
657
- msgid "Please select your mail status"
658
- msgstr "Sélectionnez le statut du modèle de courriel"
659
-
660
- #: compose/compose-add.php:105 compose/compose-edit.php:117
661
- #: notification/notification-add.php:253 notification/notification-edit.php:290
662
- #: subscribers/view-subscriber-edit.php:191
663
- msgid "Save"
664
- msgstr "Enregistrer"
665
-
666
- #: compose/compose-edit.php:20 compose/compose-preview.php:18
667
- #: compose/compose-show.php:33 notification/notification-edit.php:20
668
- #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
669
- #: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
670
- msgid "Oops, selected details does not exists."
671
- msgstr "Oups, ces données n'existent pas."
672
-
673
- #: compose/compose-edit.php:61
674
- msgid "Template successfully updated. "
675
- msgstr "Mise à jour du modèle réussie."
676
-
677
- #: compose/compose-edit.php:84
678
- msgid "Edit Email"
679
- msgstr "Modifier l'email"
680
-
681
- #: compose/compose-edit.php:85 compose/compose-show.php:65
682
- #: notification/notification-edit.php:123 notification/notification-show.php:53
683
- msgid "Add New"
684
- msgstr "Ajouter"
685
 
686
- #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
687
- msgid "Preview Mail"
688
- msgstr "Aperçu du courriel"
689
-
690
- #: compose/compose-preview.php:40 compose/compose-show.php:101
691
- #: notification/notification-show.php:100 subscribers/view-subscriber-show.php:404
692
- msgid "Edit"
693
- msgstr "Modifier"
694
-
695
- #: compose/compose-show.php:14 sendmail/sendmail.php:18
696
- #: subscribers/view-subscriber-show.php:17
697
- msgid "Click Here"
698
- msgstr "Cliquez ici"
699
-
700
- #: compose/compose-show.php:47 notification/notification-show.php:35
701
- #: sentmail/sentmail-show.php:36
702
- msgid "Selected record deleted."
703
- msgstr "La sélection a été supprimée."
704
 
705
- #: compose/compose-show.php:77 compose/compose-show.php:84
706
- #: notification/notification-show.php:68 notification/notification-show.php:76
707
- msgid "Email Subject"
708
- msgstr "Sujet"
709
 
710
- #: compose/compose-show.php:78 compose/compose-show.php:85
711
- msgid "Email Template"
712
- msgstr "Type d'email"
713
 
714
- #: compose/compose-show.php:79 compose/compose-show.php:86
715
- msgid "Actions"
716
- msgstr "Actions"
 
 
717
 
718
- #: compose/compose-show.php:102 notification/notification-show.php:103
719
- #: subscribers/view-subscriber-show.php:287 subscribers/view-subscriber-show.php:409
720
- msgid "Delete"
721
- msgstr "Supprimer"
722
 
723
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
724
- #: sentmail/sentmail-show.php:124
725
- msgid "Preview"
726
- msgstr "Aperçu"
 
727
 
728
- #: compose/compose-show.php:111 notification/notification-show.php:143
729
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
730
- #: subscribers/view-subscriber-show.php:432
731
- msgid "No records available."
732
- msgstr "Aucun enregistrement."
733
 
734
- #: export/export-email-address.php:45 export/export-email-address.php:49
735
- msgid "Unexpected url submit has been detected"
736
- msgstr "Une erreur d'URL a été détectée"
737
 
738
- #: help/help.php:47
739
- msgid "Welcome to Email Subscribers!"
740
- msgstr "Bienvenue sur Email Subscribers & Newsletters!"
741
 
742
- #: help/help.php:48
743
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
744
  msgstr ""
745
- "Merci d'avoir installé Email Subscribers & Newsletters. Nous espérons que vous "
746
- "serez satisfaits d'utiliser cette extension."
747
 
748
- #: help/help.php:52
749
- msgid "For more help and tips..."
750
- msgstr "Pour de l'aide et des astuces..."
751
 
752
- #: help/help.php:67
753
- #, c-format
754
  msgid ""
755
- "Like Email Subscribers? If yes, then consider %s to support further developments."
 
756
  msgstr ""
757
- "Vous aimez Email Subscribers? Si oui, merci de nous soutenir %s pour aider aux "
758
- "futurs développements."
759
-
760
- #: help/help.php:67
761
- msgid "donating to us"
762
- msgstr "en nous versant une contribution"
763
-
764
- #: help/help.php:99
765
- msgid "Frequently Asked Questions"
766
- msgstr "Foire aux questions"
767
-
768
- #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
769
- #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
770
- #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
771
- #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
772
- #: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:181
773
- #: help/help.php:184 help/help.php:186
774
- #, c-format
775
- msgid "%s"
776
- msgstr "%s"
777
-
778
- #: help/help.php:118
779
- msgid "How to Add Subscription box to website?"
780
- msgstr "Comment ajouter un formulaire d'abonnement sur votre site?"
781
-
782
- #: help/help.php:127
783
- msgid "General Plugin Settings"
784
- msgstr "Options générales"
785
 
786
- #: help/help.php:130
787
- msgid "How to Import or Export Email Addresses?"
788
- msgstr "Comment importer ou exporter des adresses e-mail?"
789
-
790
- #: help/help.php:133
791
- msgid "How to change/update/translate any texts from Email Subscribers?"
792
- msgstr "Comment changer/mettre à jour/traduire l'extension?"
793
 
794
- #: help/help.php:136
795
- msgid "How to add Unsubscribe link in emails?"
796
- msgstr "Comment ajouter un lien pour se désabonner dans les courriels envoyés?"
797
 
798
- #: help/help.php:139
799
- msgid "How to Compose and Send Newsletter Emails?"
800
- msgstr "Comment créer et envoyer un courriel statique?"
801
 
802
- #: help/help.php:157
803
- msgid "Subscribers are not receiving Emails?"
804
- msgstr "Les abonnés ne reçoivent pas les courriels ?"
805
 
806
- #: help/help.php:160
807
- msgid "How to show subscribe form inside a popup?"
808
- msgstr "Comment afficher le formulaire d'abonnement dans une popup?"
 
809
 
810
- #: help/help.php:163
811
- msgid "How to use Rainmaker’s form in Email Subscribers?"
812
- msgstr "Comment utiliser un formulaire Rainmaker?"
813
 
814
- #: help/help.php:175
815
- msgid "How to Schedule Cron Emails in cPanel?"
816
- msgstr "Comment planifier l'envoi des courriels sur cPanel?"
817
 
818
- #: help/help.php:178
819
- msgid "How to Schedule Cron Emails in Parallels Plesk?"
820
- msgstr "Comment planifier l'envoi des courriels sur Parallels Plesk?"
821
 
822
- #: help/help.php:181
823
- msgid "What to do if Hosting doesn’t support Cron Jobs?"
824
- msgstr "Que faire si votre hébergeur ne propose pas de tâche CRON?"
825
 
826
- #: help/help.php:184
827
- msgid "CSS Help"
828
- msgstr "Aide CSS"
829
 
830
- #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
831
- #: job/es-unsubscribe.php:61
832
- msgid ""
833
- "Oops.. We are getting some technical error. Please try again or contact admin."
834
  msgstr ""
835
- "Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
836
- "l'administrateur du site."
837
 
838
- #: job/es-optin.php:61
839
- msgid "This email address has already been confirmed."
840
- msgstr "Cette adresse a déjà été confirmée."
841
 
842
- #: notification/notification-add.php:33
843
  msgid "Please select subscribers group."
844
  msgstr "Veuillez sélectionner un groupe d'abonnés."
845
 
846
- #: notification/notification-add.php:39
847
  msgid "Please select notification status."
848
  msgstr "Veuillez sélectionner le mode d'envoi de la notification"
849
 
850
- #: notification/notification-add.php:45 notification/notification-edit.php:61
851
  msgid "Please select notification mail subject. Use compose menu to create new."
852
  msgstr ""
853
- "Veuillez sélectionner le modèle de courriel. Utilisez le menu Modèles pour en "
854
- "créer un nouveau."
855
 
856
- #: notification/notification-add.php:51 notification/notification-edit.php:67
857
  msgid "Please select post categories."
858
  msgstr "Veuillez sélectionner une catégorie."
859
 
860
- #: notification/notification-add.php:71
861
  msgid "Notification successfully created. "
862
  msgstr "Notification correctement créée."
863
 
864
- #: notification/notification-add.php:112
865
  msgid "Add Notification"
866
  msgstr "Nouvelle notification"
867
 
868
- #: notification/notification-add.php:120
 
 
 
 
 
 
 
 
 
 
 
 
869
  msgid "Select Subscribers Group"
870
  msgstr "Groupe d'abonnés"
871
 
872
- #: notification/notification-add.php:124 notification/notification-add.php:148
873
- #: notification/notification-edit.php:135 notification/notification-edit.php:168
874
- #: sendmail/sendmail.php:110 sendmail/sendmail.php:137 sendmail/sendmail.php:151
875
- #: subscribers/view-subscriber-add.php:162 subscribers/view-subscriber-edit.php:162
876
- #: subscribers/view-subscriber-import.php:190
877
- #: subscribers/view-subscriber-sync.php:119
878
  msgid "Select"
879
  msgstr "Sélectionner"
880
 
881
- #: notification/notification-add.php:142 notification/notification-edit.php:162
 
882
  msgid "Select Notification Email Subject"
883
  msgstr "Sélectionner le sujet du courriel"
884
 
885
- #: notification/notification-add.php:143 notification/notification-edit.php:163
 
886
  msgid "(Use compose menu to create new)"
887
  msgstr "(utilisez le menu Modèles pour en créer un nouveau)"
888
 
889
- #: notification/notification-add.php:167 notification/notification-edit.php:190
 
890
  msgid "Select Post Categories"
891
  msgstr "Catégories"
892
 
893
- #: notification/notification-add.php:195 notification/notification-edit.php:225
 
894
  msgid "Check All"
895
  msgstr "Sélectionner tout"
896
 
897
- #: notification/notification-add.php:196 notification/notification-edit.php:226
 
898
  msgid "Uncheck All"
899
  msgstr "Désélectionner tout"
900
 
901
- #: notification/notification-add.php:202 notification/notification-edit.php:233
 
902
  msgid "Select your Custom Post Type"
903
  msgstr "Type de contenu"
904
 
905
- #: notification/notification-add.php:203 notification/notification-edit.php:234
 
906
  msgid "(Optional)"
907
  msgstr "(Optionnel)"
908
 
909
- #: notification/notification-add.php:232 notification/notification-edit.php:268
 
910
  msgid "No Custom Post Types Available"
911
  msgstr "Aucun type de contenu personnalisé n'est disponible"
912
 
913
- #: notification/notification-add.php:239 notification/notification-edit.php:275
 
914
  msgid "Select Notification Status when a new post is published"
915
  msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
916
 
917
- #: notification/notification-add.php:243 notification/notification-edit.php:279
918
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
919
  msgid "Send email immediately"
920
  msgstr "Envoyer les courriels immédiatement"
921
 
922
- #: notification/notification-add.php:244 notification/notification-edit.php:280
923
- #: notification/notification-show.php:132
924
  msgid "Add to cron and send email via cron job"
925
  msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
926
 
927
- #: notification/notification-add.php:245 notification/notification-edit.php:281
 
928
  msgid "Disable email notification"
929
  msgstr "Ne pas envoyer"
930
 
931
- #: notification/notification-edit.php:49
932
- msgid "Please select subscribers group"
933
- msgstr "Veuillez sélectionner le groupe d'abonnés"
 
 
934
 
935
- #: notification/notification-edit.php:55
936
- msgid "Please select notification status"
937
- msgstr "Veuillez sélectionner le mode d'envoi"
 
 
 
938
 
939
- #: notification/notification-edit.php:89
940
- msgid "Notification successfully updated. "
941
- msgstr "Mise à jour de la notification réussie. "
 
942
 
943
- #: notification/notification-edit.php:122
944
- msgid "Edit Notification"
945
- msgstr "Modifier la notification"
 
946
 
947
- #: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:289
948
- msgid "Update Subscribers Group"
949
- msgstr "Mettre à jour le groupe"
 
950
 
951
- #: notification/notification-show.php:57
952
  msgid ""
953
- "Use this to setup and send notification emails to your subscribers when a new post "
954
- "is published in your blog."
955
  msgstr ""
956
- "Permet de configurer et envoyer des notifications aux abonnés lorsque de nouveaux "
957
- "articles sont publiés."
 
 
 
 
 
958
 
959
- #: notification/notification-show.php:69 notification/notification-show.php:77
 
960
  msgid "Subscribers Group"
961
  msgstr "Groupe d'abonnés"
962
 
963
- #: notification/notification-show.php:70 notification/notification-show.php:78
 
964
  msgid "Post Categories / Custom Post Types"
965
  msgstr "Catégories / Types de contenu"
966
 
967
- #: notification/notification-show.php:71 notification/notification-show.php:79
 
968
  msgid "Notification Status"
969
  msgstr "Mode d'envoi"
970
 
971
- #: sendmail/sendmail.php:40
972
- msgid "Please select your mail subject."
973
- msgstr "Veuillez choisir le sujet de votre courriel."
974
-
975
- #: sendmail/sendmail.php:46
976
- msgid "Please select your mail type."
977
- msgstr "Veuillez sélectionner le type de courriel."
978
-
979
- #: sendmail/sendmail.php:52
980
- msgid "Please select your group."
981
- msgstr "Veuillez sélectionner le groupe."
982
-
983
- #: sendmail/sendmail.php:59
984
- msgid "Mail sent successfully. "
985
- msgstr "Courriel envoyé. "
986
-
987
- #: sendmail/sendmail.php:63
988
- msgid "Click here to check Statistics"
989
- msgstr "Cliquez ici pour voir les statistiques"
990
-
991
- #: sendmail/sendmail.php:69
992
- msgid "Oops.. We are getting some error. mail not sending."
993
- msgstr "Oups... Problème détecté. Le courriel n'a pas été envoyé."
994
-
995
- #: sendmail/sendmail.php:97
996
- msgid "Use this to send newsletter emails to your subscribers."
997
- msgstr "A utiliser pour envoyer des courriels à vos abonnés."
998
-
999
- #: sendmail/sendmail.php:105
1000
- msgid "Select Email Subject from available list"
1001
- msgstr "Sélectionnez le sujet du courriel dans la liste"
1002
-
1003
- #: sendmail/sendmail.php:132
1004
- msgid "Select Email Type"
1005
- msgstr "Type d'envoi"
1006
-
1007
- #: sendmail/sendmail.php:139
1008
- msgid "Send email via cron job"
1009
- msgstr "Envoyer les courriels via la tâche CRON"
1010
-
1011
- #: sendmail/sendmail.php:146
1012
- msgid "Select Subscribers group to Send Email"
1013
- msgstr "Groupe d'abonnés"
1014
-
1015
- #: sendmail/sendmail.php:178
1016
- msgid "Recipients : 0 "
1017
- msgstr "Destinataires : 0 "
1018
-
1019
- #: sendmail/sendmail.php:180
1020
- #, c-format
1021
- msgid "Recipients : %s"
1022
- msgstr "Destinataires : %s"
1023
-
1024
- #: sendmail/sendmail.php:183
1025
- msgid ""
1026
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1027
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click "
1028
- "on Help for more information."
1029
- msgstr ""
1030
- "<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons de "
1031
- "modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les courriels.</"
1032
- "strong><br>Cliquez sur l'aide pour plus d'information."
1033
-
1034
- #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1035
- msgid "Send Email"
1036
- msgstr "Envoyer"
1037
-
1038
- #: sendmail/sendmail.php:199
1039
- msgid "Reset"
1040
- msgstr "Réinitialiser"
1041
-
1042
- #: sentmail/deliverreport-show.php:14
1043
- msgid "Oops.. Unexpected error occurred. Please try again."
1044
- msgstr "Oups... Erreur inattendue. Merci de réessayer."
1045
-
1046
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1047
- msgid " &lt;&lt; "
1048
- msgstr " &lt;&lt; "
1049
-
1050
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1051
- msgid " &gt;&gt; "
1052
- msgstr " &gt;&gt; "
1053
-
1054
- #: sentmail/deliverreport-show.php:60
1055
- msgid "Delivery Report"
1056
- msgstr "Rapport d'envoi"
1057
-
1058
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1059
- #: subscribers/view-subscriber-export.php:45
1060
- #: subscribers/view-subscriber-export.php:53
1061
- msgid "Sno"
1062
- msgstr "n°"
1063
-
1064
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1065
- msgid "Email"
1066
- msgstr "E-mail"
1067
-
1068
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1069
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1070
- msgid "Sent"
1071
- msgstr "Type d'envoi"
1072
-
1073
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1074
- msgid "Sent Date"
1075
- msgstr "Envoyé le"
1076
-
1077
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1078
- msgid "Viewed Status"
1079
- msgstr "Statut"
1080
-
1081
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1082
- msgid "Viewed Date"
1083
- msgstr "Ouvert le"
1084
-
1085
- #: sentmail/sentmail-preview.php:42
1086
- msgid "Back"
1087
- msgstr "Retour"
1088
-
1089
- #: sentmail/sentmail-show.php:43
1090
- msgid "Successfully deleted all reports except latest 10."
1091
- msgstr "Les rapports ont été supprimés sauf les 10 derniers."
1092
 
1093
- #: sentmail/sentmail-show.php:100
1094
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1095
- msgstr ""
1096
- "Affiche les rapports pour toutes les newsletters et les courriels de notification "
1097
- "envoyés."
1098
 
1099
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1100
- msgid "View Reports"
1101
- msgstr "Afficher les rapports"
 
 
1102
 
1103
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
1104
- msgid "Type"
1105
- msgstr "Type"
1106
 
1107
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1108
- msgid "Start Date"
1109
- msgstr "Date de début"
1110
 
1111
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1112
- msgid "End Date"
1113
- msgstr "Date de fin"
1114
 
1115
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1116
- msgid "Total"
1117
- msgstr "Total"
1118
 
1119
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1120
- #: subscribers/view-subscriber-export.php:48
1121
- #: subscribers/view-subscriber-export.php:56 subscribers/view-subscriber-show.php:365
1122
- #: subscribers/view-subscriber-show.php:378
1123
- msgid "Action"
1124
- msgstr "Action"
1125
 
1126
- #: sentmail/sentmail-show.php:193
1127
- msgid "Optimize Table & Delete Records"
1128
- msgstr "Optimiser la table"
1129
 
1130
- #: sentmail/sentmail-show.php:202
1131
  msgid ""
1132
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1133
- "delete all reports except latest 10."
1134
  msgstr ""
1135
- "Note: cliquez sur le bouton <strong>Optimiser la table</strong> pour supprimer "
1136
- "tous les enregistrements sauf les 10 derniers."
1137
-
1138
- #: settings/setting-sync.php:16
1139
- msgid "Table sync completed successfully."
1140
- msgstr "Synchronisation de la table effectuée."
1141
-
1142
- #: settings/setting-sync.php:29
1143
- msgid "Sync plugin tables"
1144
- msgstr "Synchronisation des tables"
1145
 
1146
- #: settings/setting-sync.php:33
1147
- msgid "Click to sync tables"
1148
- msgstr "Cliquez pour synchroniser les tables"
1149
 
1150
- #: settings/settings-edit.php:23
1151
  msgid "Admin"
1152
  msgstr "Administration"
1153
 
1154
- #: settings/settings-edit.php:24
1155
  msgid "Signup Confirmation"
1156
  msgstr "Confirmation d'abonnement"
1157
 
1158
- #: settings/settings-edit.php:25
 
 
 
 
1159
  msgid "User Roles"
1160
  msgstr "Rôles utilisateur"
1161
 
1162
- #: settings/settings-edit.php:26
1163
- msgid "Cron"
1164
- msgstr "Tâche CRON"
 
1165
 
1166
- #: settings/settings-edit.php:64
1167
  msgid "Save Settings"
1168
  msgstr "Enregistrer les paramètres"
1169
 
1170
- #: settings/settings-edit.php:76
1171
  msgid "Sender of Notifications"
1172
  msgstr "Expéditeur des courriels"
1173
 
1174
- #: settings/settings-edit.php:77
1175
- msgid ""
1176
- "Choose a FROM name and FROM email address for all the emails to be sent from this "
1177
- "plugin."
1178
- msgstr ""
1179
- "Choisissez le nom et l'e-mail de l'expéditeur pour tous les courriels envoyés via "
1180
- "cette extension."
1181
-
1182
- #: settings/settings-edit.php:87
1183
- msgid "Mail Type"
1184
- msgstr "Type d'email"
1185
-
1186
- #: settings/settings-edit.php:88
1187
  msgid ""
1188
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & "
1189
- "4 is to send mails with PHP method mail()."
1190
  msgstr ""
1191
- "Les options 1 & 2 utilisent la méthode wp_mail() de WordPress. Les options 3 & 4 "
1192
- "utilisent la méthode mail() de PHP."
1193
 
1194
- #: settings/settings-edit.php:92
1195
  msgid "1. WP HTML MAIL"
1196
  msgstr "1. WP HTML MAIL"
1197
 
1198
- #: settings/settings-edit.php:93
1199
  msgid "2. WP PLAINTEXT MAIL"
1200
  msgstr "2. WP PLAINTEXT MAIL"
1201
 
1202
- #: settings/settings-edit.php:94
1203
  msgid "3. PHP HTML MAIL"
1204
  msgstr "3. PHP HTML MAIL"
1205
 
1206
- #: settings/settings-edit.php:95
1207
  msgid "4. PHP PLAINTEXT MAIL"
1208
  msgstr "4. PHP PLAINTEXT MAIL"
1209
 
1210
- #: settings/settings-edit.php:102
1211
- msgid "Opt-In Option"
1212
- msgstr "Option de validation"
1213
-
1214
- #: settings/settings-edit.php:103
1215
- msgid ""
1216
- "Double Opt In means subscribers need to confirm their email address by an "
1217
- "activation link sent them on a activation email message.<br />Single Opt In means "
1218
- "subscribers do not need to confirm their email address."
1219
- msgstr ""
1220
- "Double validation: pour valider leur abonnement, les utilisateurs doivent cliquer "
1221
- "sur un lien d'activation envoyé par courriel lors de leur inscription.\n"
1222
- "Simple validation: les utilisateurs n'ont pas besoin de confirmer leur adresse e-"
1223
- "mail."
1224
-
1225
- #: settings/settings-edit.php:107
1226
  msgid "Double Opt In"
1227
  msgstr "Doube validation"
1228
 
1229
- #: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
1230
- #: subscribers/view-subscriber-edit.php:150
1231
- #: subscribers/view-subscriber-import.php:178
1232
- #: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
1233
  msgid "Single Opt In"
1234
  msgstr "Simple validation"
1235
 
1236
- #: settings/settings-edit.php:114
1237
  msgid "Image Size"
1238
  msgstr "Taille d'image"
1239
 
1240
- #: settings/settings-edit.php:115
1241
  msgid ""
1242
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
 
1243
  msgstr "Choisissez la taille d'image dans le courriel pour ###POSTIMAGE###."
1244
 
1245
- #: settings/settings-edit.php:119
1246
  msgid "Full Size"
1247
  msgstr "Grande taille"
1248
 
1249
- #: settings/settings-edit.php:120
1250
  msgid "Medium Size"
1251
  msgstr "Taille moyenne"
1252
 
1253
- #: settings/settings-edit.php:121
1254
  msgid "Thumbnail"
1255
  msgstr "Miniature"
1256
 
1257
- #: settings/settings-edit.php:127
1258
  msgid "Admin Email Addresses"
1259
  msgstr "Adresses e-mail des administrateurs"
1260
 
1261
- #: settings/settings-edit.php:128
1262
  msgid ""
1263
- "Enter the admin email addresses that should receive notifications (separated by "
1264
- "comma)."
1265
  msgstr ""
1266
- "Entrer les adresses des administrateurs qui recevront les notifications (séparés "
1267
- "par une virgule)."
1268
 
1269
- #: settings/settings-edit.php:134
1270
- msgid "Notify admin when a new subscriber signs up"
1271
- msgstr "Notifier l'administrateur d'un nouvel abonné"
1272
-
1273
- #: settings/settings-edit.php:135
1274
  msgid ""
1275
- "To send admin email notifications for the new subscriber. This option must be set "
1276
- "to YES."
1277
  msgstr ""
1278
- "Pour envoyer une notification aux administrateurs lors d'une nouvelle inscription, "
1279
- "cette option doit être sur OUI."
1280
-
1281
- #: settings/settings-edit.php:147
1282
- msgid "Admin Email Subject when a new subscriber signs up"
1283
- msgstr "Sujet du courriel à l'administrateur pour un nouvel abonné"
1284
 
1285
- #: settings/settings-edit.php:148
1286
- msgid ""
1287
- "Enter the subject for the admin email which will be sent whenever a new email is "
1288
- "added and confirmed."
1289
- msgstr ""
1290
- "Entrer le sujet du courriel envoyé à l'administrateur à chaque fois qu'un nouvel "
1291
- "abonné est ajouté et confirmé."
1292
 
1293
- #: settings/settings-edit.php:154
1294
- msgid "Admin Email Content when a new subscriber signs up"
1295
- msgstr "Contenu du courriel à l'administrateur pour un nouvel abonné"
 
1296
 
1297
- #: settings/settings-edit.php:162
1298
  msgid "Sent Report Subject"
1299
  msgstr "Sujet pour le rapport d'envoi"
1300
 
1301
- #: settings/settings-edit.php:163
1302
- msgid "Enter the subject for the sent email report. It will be emailed to Admin."
1303
- msgstr ""
1304
- "Entrer le sujet du rapport d'envoi de courriels. Il sera envoyé à l'administrateur."
1305
-
1306
- #: settings/settings-edit.php:169
1307
  msgid "Sent Report Content"
1308
  msgstr "Contenu du rapport d'envoi"
1309
 
1310
- #: settings/settings-edit.php:170
1311
- msgid ""
1312
- "Enter the content for the sent email report. It will be emailed to Admin. "
1313
- "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1314
- msgstr ""
1315
- "Entrer le contenu du rapport d'envoi de courriels. Il sera envoyé à "
1316
- "l'administrateur. (Mots clés : ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
1317
- "###ENDTIME###)"
1318
-
1319
- #: settings/settings-edit.php:179
1320
- msgid "Double Opt In Email Subject (Confirmation Email)"
1321
- msgstr "Sujet du courriel de confirmation (double validation)"
1322
-
1323
- #: settings/settings-edit.php:180
1324
- msgid ""
1325
- "Enter the subject for the confirmation email to be sent for Double Opt In whenever "
1326
- "a user signs up."
1327
- msgstr ""
1328
- "Entrer le sujet du courriel de confirmation envoyé lors d'une double validation "
1329
- "chaque fois qu'un utilisateur s'inscrit."
1330
-
1331
- #: settings/settings-edit.php:186
1332
- msgid "Double Opt In Email Content (Confirmation Email)"
1333
- msgstr "Contenu du courriel de confirmation (double validation)"
1334
-
1335
- #: settings/settings-edit.php:187
1336
- msgid ""
1337
- "Enter the content for the confirmation email to be sent for Double Opt In whenever "
1338
- "a user signs up. (Keyword: ###NAME###, ###LINK###)"
1339
- msgstr ""
1340
- "Entrer le contenu du courriel de confirmation envoyé lors d'une double validation "
1341
- "chaque fois qu'un utilisateur s'inscrit. (Mot clés : ###NAME###, ###LINK###)"
1342
-
1343
- #: settings/settings-edit.php:193
1344
- msgid "Double Opt In Confirmation Link"
1345
- msgstr "Lien de confirmation"
1346
-
1347
- #: settings/settings-edit.php:194
1348
  msgid "It is a readonly field and you are advised not to modify it."
1349
  msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
1350
 
1351
- #: settings/settings-edit.php:200
1352
  msgid ""
1353
- "Text to display after an email address is successfully subscribed from Double Opt "
1354
- "In (confirmation) Email"
1355
- msgstr "Texte à afficher lors d'un abonnement réussi par double validation"
1356
-
1357
- #: settings/settings-edit.php:201
1358
- msgid ""
1359
- "This text will be displayed once user clicks on email confirmation link from the "
1360
- "Double Opt In (confirmation) Email."
1361
  msgstr ""
1362
- "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de confirmation "
1363
- "dans le courriel de confirmation."
1364
 
1365
- #: settings/settings-edit.php:208
1366
- msgid "Subscriber Welcome Email"
1367
- msgstr "Courriel de bienvenue"
1368
-
1369
- #: settings/settings-edit.php:209
1370
  msgid ""
1371
- "To send welcome email to subscriber after successful signup. This option must be "
1372
- "set to YES."
1373
  msgstr ""
1374
  "Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
1375
  "option doit être sur OUI."
1376
 
1377
- #: settings/settings-edit.php:220
1378
- msgid "Subscriber Welcome Email Subject"
1379
- msgstr "Sujet du courriel de bienvenue"
1380
-
1381
- #: settings/settings-edit.php:221
1382
- msgid ""
1383
- "Enter the subject for the subscriber welcome email. This will be sent whenever a "
1384
- "user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt "
1385
- "In) successfully."
1386
- msgstr ""
1387
- "Entrer le sujet du courriel de bienvenue. Il sera envoyé à chaque fois qu'un "
1388
- "abonnement est confirmé ( simple ou double validation )."
1389
-
1390
- #: settings/settings-edit.php:227
1391
- msgid "Subscriber Welcome Email Content"
1392
- msgstr "Contenu du courriel de bienvenue"
1393
-
1394
- #: settings/settings-edit.php:228
1395
- msgid ""
1396
- "Enter the content for the subscriber welcome email whenever a user's email is "
1397
- "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
1398
- "(Keyword: ###NAME###, ###GROUP###, ###LINK###)"
1399
- msgstr ""
1400
- "Entrer le contenu du courriel de bienvenue. Il sera envoyé à chaque fois qu'un "
1401
- "abonnement est confirmé ( simple ou double validation ). (Mots clés: ###NAME###, "
1402
- "###GROUP###, ###LINK###)"
1403
-
1404
- #: settings/settings-edit.php:236
1405
  msgid "Unsubscribe Link"
1406
  msgstr "Lien de désabonnement"
1407
 
1408
- #: settings/settings-edit.php:237
1409
- msgid ""
1410
- "The unsubscribe link gets added automatically to all emails that are sent from "
1411
- "this plugin. It is a readonly field and you are advised not to modify it."
1412
- msgstr ""
1413
- "Le lien de désabonnement est automatiquement sur tous les courriels envoyés apr "
1414
- "cette extension. C'est un champ en lecture seule et il est conseillé de ne pas le "
1415
- "modifier."
1416
-
1417
- #: settings/settings-edit.php:243
1418
  msgid "Unsubscribe Text in Email"
1419
  msgstr "Texte de désabonnement dans les courriels"
1420
 
1421
- #: settings/settings-edit.php:244
1422
- msgid ""
1423
- "Enter the text for the unsubscribe link. This text is added with unsubscribe link "
1424
- "in the emails. (Keyword: ###LINK###)"
1425
- msgstr ""
1426
- "Entrer le texte contenant le lien de désabonnement. Ce texte est ajouté dans les "
1427
- "courriels. (Mot clé : ###LINK###)"
1428
-
1429
- #: settings/settings-edit.php:250
1430
  msgid "Text to display after an email address is unsubscribed"
1431
  msgstr "Texte à afficher lors d'un désabonnement"
1432
 
1433
- #: settings/settings-edit.php:251
1434
- msgid "This text will be displayed once user clicks on unsubscribe link."
1435
- msgstr ""
1436
- "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de désabonnement."
1437
-
1438
- #: settings/settings-edit.php:258
1439
- msgid "Error in the Confirmation Link"
1440
- msgstr "Erreur sur lien de confirmation"
1441
-
1442
- #: settings/settings-edit.php:259
1443
- msgid ""
1444
- "Default message to display if there is any issue while clicking on confirmation "
1445
- "link from the Double Opt In (confirmation) Emails."
1446
- msgstr ""
1447
- "Message à afficher s'il y a un eu une erreur suite au clic sur le lien de "
1448
- "confirmation du courriel de double validation."
1449
-
1450
- #: settings/settings-edit.php:265
1451
  msgid "Error in the Unsubscribe Link"
1452
  msgstr "Erreur sur le lien de désabonnement"
1453
 
1454
- #: settings/settings-edit.php:266
1455
- msgid ""
1456
- "Default message to display if there is any issue while clicking on unsubscribe "
1457
- "link from the Emails."
1458
- msgstr ""
1459
- "Message à afficher s'il y a un eu une erreur suite au clic sur le lien de "
1460
- "désabonnement des courriels."
1461
-
1462
- #: settings/settings-edit.php:276
1463
  msgid "Select user roles who can access following menus. Only Admin can change this."
1464
  msgstr ""
1465
  "Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
1466
  "administrateurs peuvent changer cette option."
1467
 
1468
- #: settings/settings-edit.php:282
1469
  msgid "Subscribers Menu"
1470
  msgstr "Menu Abonnés"
1471
 
1472
- #: settings/settings-edit.php:286 settings/settings-edit.php:298
1473
- #: settings/settings-edit.php:310 settings/settings-edit.php:322
1474
- #: settings/settings-edit.php:334
1475
  msgid "Administrator Only"
1476
  msgstr "Que les administrateurs"
1477
 
1478
- #: settings/settings-edit.php:287 settings/settings-edit.php:299
1479
- #: settings/settings-edit.php:311 settings/settings-edit.php:323
1480
- #: settings/settings-edit.php:335
1481
  msgid "Administrator/Editor"
1482
  msgstr "Administrateur/Editeur"
1483
 
1484
- #: settings/settings-edit.php:288 settings/settings-edit.php:300
1485
- #: settings/settings-edit.php:312 settings/settings-edit.php:324
1486
- #: settings/settings-edit.php:336
1487
  msgid "Administrator/Editor/Author/Contributor"
1488
  msgstr "Administrateur/Editeur/Auteur/Contributeur"
1489
 
1490
- #: settings/settings-edit.php:294
1491
  msgid "Compose Menu"
1492
  msgstr "Menu Modèles"
1493
 
1494
- #: settings/settings-edit.php:306
1495
  msgid "Post Notifications Menu"
1496
  msgstr "Menu Notifications d'article"
1497
 
1498
- #: settings/settings-edit.php:330
 
 
 
 
 
1499
  msgid "Reports Menu"
1500
  msgstr "Menu Rapports"
1501
 
1502
- #: settings/settings-edit.php:345
1503
  msgid "Cron job URL"
1504
  msgstr "URL de la tâche CRON"
1505
 
1506
- #: settings/settings-edit.php:346
1507
  msgid ""
1508
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1509
  "modify it."
1510
  msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
1511
 
1512
- #: settings/settings-edit.php:355
1513
  msgid "Email Count"
1514
  msgstr "Nombre de courriels"
1515
 
1516
- #: settings/settings-edit.php:356
1517
  msgid "Number of emails that you want to trigger per hour."
1518
  msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
1519
 
1520
- #: settings/settings-edit.php:361
1521
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
1522
- msgstr ""
1523
- "(Votre hébergeur a ses limites. Nous suggérons 50 courriels par heure pour être "
1524
- "sûr)"
1525
-
1526
- #: settings/settings-edit.php:366
1527
- msgid "Admin Report"
1528
- msgstr "Rapport envoyé aux administrateurs"
1529
-
1530
- #: settings/settings-edit.php:367
1531
- msgid ""
1532
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
1533
- "###DATE###, ###SUBJECT###, ###COUNT###)"
1534
- msgstr ""
1535
- "Contenu du courriel envoyé à l'administrateur à chaque fois que la tâche Cron est "
1536
- "déclenchée depuis votre serveur. (Mots clés : ###DATE###, ###SUBJECT###, "
1537
- "###COUNT###)"
1538
-
1539
- #: settings/settings-edit.php:377
1540
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1541
  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=\"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
1576
  msgid "Please enter sender of notifications from name."
1577
  msgstr "Veuillez saisir le nom de l'expéditeur"
1578
 
1579
- #: settings/settings-edit.php:500
1580
  msgid "Please enter sender of notifications from email."
1581
  msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1582
 
1583
- #: settings/settings-edit.php:544
1584
  msgid "Please enter valid mail count."
1585
  msgstr "Veuillez saisir un nombre de courriel valide."
1586
 
1587
- #: settings/settings-edit.php:557
1588
  msgid "Settings Saved."
1589
  msgstr "Options enregistrées."
1590
 
1591
- #: settings/settings-edit.php:560
1592
  msgid "Oops, unable to update."
1593
  msgstr "Oups, impossible de mettre à jour."
1594
 
1595
- #: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
1596
- msgid "Please enter subscriber email address."
1597
- msgstr "Veuillez saisir l'e-mail de l'abonné."
1598
 
1599
- #: subscribers/view-subscriber-add.php:49
1600
- msgid "Please select or create your group for this email."
1601
- msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
1602
 
1603
- #: subscribers/view-subscriber-add.php:56
1604
- msgid ""
1605
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1606
- "group name."
1607
- msgstr ""
1608
- "Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis dans le "
1609
- "nom d'un groupe."
1610
 
1611
- #: subscribers/view-subscriber-add.php:66
1612
- msgid "Subscriber has been saved."
1613
- msgstr "Abonné enregistré."
1614
 
1615
- #: subscribers/view-subscriber-add.php:68
1616
- msgid "Subscriber already exists."
1617
- msgstr "Cet abonné existe déjà."
1618
 
1619
- #: subscribers/view-subscriber-add.php:71
1620
- msgid "Invalid Email."
1621
- msgstr "E-mail non valide."
1622
 
1623
- #: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
1624
- #: subscribers/view-subscriber-export.php:35
1625
- #: subscribers/view-subscriber-import.php:143
1626
- #: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
1627
- msgid "Add New Subscriber"
1628
- msgstr "Ajouter un abonné"
1629
 
1630
- #: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
1631
- #: subscribers/view-subscriber-export.php:36
1632
- #: subscribers/view-subscriber-import.php:210
1633
- #: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
1634
- msgid "Import"
1635
- msgstr "Importer"
1636
-
1637
- #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
1638
- #: subscribers/view-subscriber-import.php:144
1639
- #: subscribers/view-subscriber-show.php:244 subscribers/view-subscriber-sync.php:91
1640
- msgid "Export"
1641
- msgstr "Exporter"
1642
-
1643
- #: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
1644
- #: subscribers/view-subscriber-export.php:37
1645
- #: subscribers/view-subscriber-import.php:145
1646
- #: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:143
1647
- msgid "Sync"
1648
- msgstr "Synchroniser"
1649
-
1650
- #: subscribers/view-subscriber-add.php:123
1651
- msgid "Enter Subscriber's Full name"
1652
- msgstr "Nom complet"
1653
-
1654
- #: subscribers/view-subscriber-add.php:133
1655
- msgid "Enter Subscriber's Email Address"
1656
- msgstr "Adresse e-mail"
1657
-
1658
- #: subscribers/view-subscriber-add.php:143
1659
- msgid "Select Subscriber's Status"
1660
- msgstr "Statut"
1661
-
1662
- #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1663
- #: subscribers/view-subscriber-import.php:175
1664
- #: subscribers/view-subscriber-show.php:309 subscribers/view-subscriber-show.php:336
1665
- msgid "Confirmed"
1666
- msgstr "Confirmé"
1667
-
1668
- #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1669
- #: subscribers/view-subscriber-import.php:176
1670
- #: subscribers/view-subscriber-show.php:310 subscribers/view-subscriber-show.php:337
1671
- msgid "Unconfirmed"
1672
- msgstr "Non confirmé"
1673
-
1674
- #: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
1675
- #: subscribers/view-subscriber-import.php:177
1676
- #: subscribers/view-subscriber-show.php:311 subscribers/view-subscriber-show.php:338
1677
- msgid "Unsubscribed"
1678
- msgstr "Désabonné"
1679
-
1680
- #: subscribers/view-subscriber-add.php:158
1681
- msgid "Select (or) Create Group for Subscriber"
1682
- msgstr "Groupe"
1683
-
1684
- #: subscribers/view-subscriber-add.php:174 subscribers/view-subscriber-import.php:202
1685
- msgid "(or)"
1686
- msgstr "(ou)"
1687
-
1688
- #: subscribers/view-subscriber-add.php:183
1689
- msgid "Add Subscriber"
1690
- msgstr "Ajouter un abonné"
1691
-
1692
- #: subscribers/view-subscriber-edit.php:64
1693
- msgid "Error: Special characters are not allowed in the group name."
1694
- msgstr "Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
1695
 
1696
- #: subscribers/view-subscriber-edit.php:74
1697
- msgid "Subscriber details updated."
1698
- msgstr "Informations sur l'abonné mises à jour."
 
1699
 
1700
- #: subscribers/view-subscriber-edit.php:76
1701
- msgid "Subscriber already exists for this group."
1702
- msgstr "Cet abonné fait déjà parti de ce groupe."
 
 
1703
 
1704
- #: subscribers/view-subscriber-edit.php:108
1705
- msgid "Edit Subscriber"
1706
- msgstr "Modifier un abonné"
1707
 
1708
- #: subscribers/view-subscriber-edit.php:122
1709
- msgid "Subscriber's Full Name"
1710
- msgstr "Nom complet de l'abonné"
 
1711
 
1712
- #: subscribers/view-subscriber-edit.php:132
1713
- msgid "Subscriber's Email Address"
1714
- msgstr "Courriel de l'abonné"
1715
 
1716
- #: subscribers/view-subscriber-edit.php:142
1717
- msgid "Update Subscriber's Status"
 
 
 
1718
  msgstr "Statut"
1719
 
1720
- #: subscribers/view-subscriber-edit.php:157
1721
- msgid "Update Subscriber's Group"
1722
- msgstr "Groupe"
1723
-
1724
- #: subscribers/view-subscriber-export.php:34
1725
- msgid "Export Email Addresses"
1726
- msgstr "Export des adresses e-mail"
1727
 
1728
- #: subscribers/view-subscriber-export.php:46
1729
- #: subscribers/view-subscriber-export.php:54
1730
- msgid "Type of List to Export"
1731
- msgstr "Type de liste à exporter"
1732
 
1733
- #: subscribers/view-subscriber-export.php:47
1734
- #: subscribers/view-subscriber-export.php:55
1735
- msgid "Total Emails Count"
1736
- msgstr "Nombre d'e-mails"
1737
 
1738
- #: subscribers/view-subscriber-export.php:61
1739
- msgid "1"
1740
- msgstr "1"
1741
 
1742
- #: subscribers/view-subscriber-export.php:62
1743
- msgid "All Subscribers"
1744
- msgstr "Tous les abonnés"
 
 
 
1745
 
1746
- #: subscribers/view-subscriber-export.php:64
1747
- #: subscribers/view-subscriber-export.php:70
1748
- #: subscribers/view-subscriber-export.php:76
1749
- #: subscribers/view-subscriber-export.php:82
1750
- #: subscribers/view-subscriber-export.php:88
1751
- msgid "Click to Export in CSV"
1752
- msgstr "Exporter en CSV"
1753
 
1754
- #: subscribers/view-subscriber-export.php:67
1755
- msgid "2"
1756
- msgstr "2"
 
 
 
 
1757
 
1758
- #: subscribers/view-subscriber-export.php:68
1759
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1760
- msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
1761
 
1762
- #: subscribers/view-subscriber-export.php:73
1763
- msgid "3"
1764
- msgstr "3"
1765
 
1766
- #: subscribers/view-subscriber-export.php:74
1767
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1768
- msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
 
 
1769
 
1770
- #: subscribers/view-subscriber-export.php:79
1771
- msgid "4"
1772
- msgstr "4"
1773
 
1774
- #: subscribers/view-subscriber-export.php:80
1775
- msgid "WordPress Registered Users"
1776
- msgstr "Utilisateurs du site"
1777
 
1778
- #: subscribers/view-subscriber-export.php:85
1779
- msgid "5"
1780
- msgstr "5"
1781
 
1782
- #: subscribers/view-subscriber-export.php:86
1783
- msgid "Commented Authors"
1784
- msgstr "Auteurs de commentaires"
1785
 
1786
- #: subscribers/view-subscriber-import.php:44
1787
  msgid ""
1788
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1789
- "Group name."
1790
  msgstr ""
1791
  "Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
1792
  "autorisés pour le nom du groupe."
1793
 
1794
- #: subscribers/view-subscriber-import.php:92
1795
  msgid "email imported."
1796
  msgstr "e-mail importé."
1797
 
1798
- #: subscribers/view-subscriber-import.php:93
1799
  msgid "email already exists."
1800
  msgstr "e-mail existant."
1801
 
1802
- #: subscribers/view-subscriber-import.php:94
1803
  msgid "email are invalid."
1804
  msgstr "e-mail non valide."
1805
 
1806
- #: subscribers/view-subscriber-import.php:97
1807
- #: subscribers/view-subscriber-import.php:126
1808
  msgid "Click here"
1809
  msgstr "Cliquez ici"
1810
 
1811
- #: subscribers/view-subscriber-import.php:97
1812
- #: subscribers/view-subscriber-import.php:126
1813
  msgid " to view details."
1814
  msgstr " pour voir les détails."
1815
 
1816
- #: subscribers/view-subscriber-import.php:105
1817
  msgid "File Upload Failed."
1818
  msgstr "Le téléchargement a échoué."
1819
 
1820
- #: subscribers/view-subscriber-import.php:142
1821
  msgid "Import Email Addresses"
1822
  msgstr "Import d'adresses e-mail"
1823
 
1824
- #: subscribers/view-subscriber-import.php:155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1825
  msgid "Select CSV file"
1826
  msgstr "Sélectionnez un fichier CSV"
1827
 
1828
- #: subscribers/view-subscriber-import.php:157
1829
  msgid "Check CSV structure "
1830
  msgstr "Vérifiez la structure du fichier CSV"
1831
 
1832
- #: subscribers/view-subscriber-import.php:158
1833
  msgid "from here"
1834
  msgstr "ici"
1835
 
1836
- #: subscribers/view-subscriber-import.php:169
1837
  msgid "Select Subscribers Email Status"
1838
  msgstr "Sélectionnez le statut des abonnés"
1839
 
1840
- #: subscribers/view-subscriber-import.php:185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1841
  msgid "Select (or) Create Group for Subscribers"
1842
  msgstr "Sélectionnez ou créez un groupe d'abonnés"
1843
 
1844
- #: subscribers/view-subscriber-show.php:45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1845
  msgid "Selected details does not exists."
1846
  msgstr "L'élément sélectionné n'existe pas."
1847
 
1848
- #: subscribers/view-subscriber-show.php:56 subscribers/view-subscriber-show.php:95
 
1849
  msgid "Record deleted."
1850
  msgstr "Enregistrement supprimé."
1851
 
1852
- #: subscribers/view-subscriber-show.php:67
1853
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1854
  msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
1855
 
1856
- #: subscribers/view-subscriber-show.php:75 subscribers/view-subscriber-show.php:134
 
1857
  msgid "Confirmation emails Resent Successfully."
1858
  msgstr "Courriel(s) de confirmation renvoyé(s)."
1859
 
1860
- #: subscribers/view-subscriber-show.php:100 subscribers/view-subscriber-show.php:139
1861
- #: subscribers/view-subscriber-show.php:177 subscribers/view-subscriber-show.php:216
 
1862
  msgid "No record was selected."
1863
  msgstr "Aucun élément n'est sélectionné."
1864
 
1865
- #: subscribers/view-subscriber-show.php:115
1866
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1867
  msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
1868
 
1869
- #: subscribers/view-subscriber-show.php:163
1870
  msgid "Subscribers Group updated."
1871
  msgstr "Groupe d'abonnés mis à jour."
1872
 
1873
- #: subscribers/view-subscriber-show.php:168
1874
  msgid "Please select New group to update."
1875
  msgstr "Veuillez choisir le nouveau groupe."
1876
 
1877
- #: subscribers/view-subscriber-show.php:202
1878
  msgid "Subscribers Status updated."
1879
  msgstr "Statut des abonnés mis à jour."
1880
 
1881
- #: subscribers/view-subscriber-show.php:207
1882
  msgid "Please select New Status to update."
1883
  msgstr "Veuillez choisir le nouveau statut."
1884
 
1885
- #: subscribers/view-subscriber-show.php:252
1886
- #, c-format
 
 
 
 
 
1887
  msgid "Total Subscribers: %s"
1888
  msgstr "Total d'abonnés : %s"
1889
 
1890
- #: subscribers/view-subscriber-show.php:254
1891
- #, c-format
1892
  msgid "Active Subscribers: %s"
1893
  msgstr "Abonnés activés : %s"
1894
 
1895
- #: subscribers/view-subscriber-show.php:286
1896
  msgid "Bulk Actions"
1897
  msgstr "Actions groupées"
1898
 
1899
- #: subscribers/view-subscriber-show.php:288 subscribers/view-subscriber-show.php:417
 
1900
  msgid "Resend Confirmation"
1901
  msgstr "Renvoyer la confirmation"
1902
 
1903
- #: subscribers/view-subscriber-show.php:290
1904
  msgid "Update Subscribers Status"
1905
  msgstr "Mettre à jour le statut"
1906
 
1907
- #: subscribers/view-subscriber-show.php:293
1908
  msgid "Select Group"
1909
  msgstr "Choix du groupe"
1910
 
1911
- #: subscribers/view-subscriber-show.php:308
1912
  msgid "Select Status"
1913
  msgstr "Choix du statut"
1914
 
1915
- #: subscribers/view-subscriber-show.php:314
1916
  msgid "Apply"
1917
  msgstr "Appliquer"
1918
 
1919
- #: subscribers/view-subscriber-show.php:318
1920
  msgid "All Groups"
1921
  msgstr "Tous les groupes"
1922
 
1923
- #: subscribers/view-subscriber-show.php:335
1924
  msgid "All Status"
1925
  msgstr "Tous les statuts"
1926
 
1927
- #: subscribers/view-subscriber-show.php:342
1928
  msgid "1 to 500 emails"
1929
  msgstr "1 à 500"
1930
 
1931
- #: subscribers/view-subscriber-show.php:343
1932
  msgid "501 to 1000"
1933
  msgstr "501 à 1000"
1934
 
1935
- #: subscribers/view-subscriber-show.php:344
1936
  msgid "1001 to 1500"
1937
  msgstr "1001 à 1500"
1938
 
1939
- #: subscribers/view-subscriber-show.php:345
1940
  msgid "1501 to 2000"
1941
  msgstr "1501 à 2000"
1942
 
1943
- #: subscribers/view-subscriber-show.php:346
1944
  msgid "2001 to 4000"
1945
  msgstr "2001 à 4000"
1946
 
1947
- #: subscribers/view-subscriber-show.php:347
1948
  msgid "4001 to 6000"
1949
  msgstr "4001 à 6000"
1950
 
1951
- #: subscribers/view-subscriber-show.php:348
1952
  msgid "6001 to 10000"
1953
  msgstr "6001 à 10000"
1954
 
1955
- #: subscribers/view-subscriber-show.php:349
1956
  msgid "Display All"
1957
  msgstr "Tout afficher"
1958
 
1959
- #: subscribers/view-subscriber-show.php:360 subscribers/view-subscriber-show.php:373
 
1960
  msgid "Email Address"
1961
  msgstr "Adresses e-mail"
1962
 
1963
- #: subscribers/view-subscriber-show.php:363 subscribers/view-subscriber-show.php:376
 
 
 
 
 
 
1964
  msgid "Group"
1965
  msgstr "Groupe"
1966
 
1967
- #: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
 
1968
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1969
  msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
1970
 
1971
- #: subscribers/view-subscriber-sync.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1972
  msgid "Please select default group to newly registered user."
1973
  msgstr ""
1974
- "Veuillez sélectionner un groupe pour les nouveaux utilisateurs enregistrés sur le "
1975
- "site."
1976
 
1977
- #: subscribers/view-subscriber-sync.php:50
1978
  msgid "Emails Successfully Synced."
1979
  msgstr "E-mails synchronisés."
1980
 
1981
- #: subscribers/view-subscriber-sync.php:88
1982
  msgid "Sync Email"
1983
  msgstr "Synchro E-mail"
1984
 
1985
- #: subscribers/view-subscriber-sync.php:101
1986
  msgid "Sync newly registered users to subscribers list"
1987
  msgstr "Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonnés"
1988
 
1989
- #: subscribers/view-subscriber-sync.php:114
1990
  msgid "Select group to add newly registered users to"
1991
  msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
1992
 
1993
- #. Plugin Name of the plugin/theme
1994
- msgid "Email Subscribers & Newsletters"
1995
- msgstr "Email Subscribers & Newsletters"
 
 
 
 
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 ""
2004
- "Add subscription forms on website, send HTML newsletters & automatically notify "
2005
- "subscribers about new blog posts once it is published."
2006
  msgstr ""
2007
- "Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
2008
- "newsletters en HTML et d'informer automatiquement vos abonnés de vos nouvelles "
2009
- "publications."
2010
 
2011
- #. Author of the plugin/theme
2012
- msgid "Icegram"
2013
- msgstr "Icegram"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:25:18 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: French (France)\n"
11
+ "Plural-Forms: nplurals=2; plural=n > 1\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: fr_FR\n"
24
+ "X-Poedit-SearchPath-0: .."
25
 
26
+ #. URI of the plugin
27
+ msgid "https://www.icegram.com"
28
+ msgstr ""
29
 
30
+ #: ../email-subscribers.php:70
31
+ msgctxt "timezone date format"
32
+ msgid "Y-m-d H:i:s"
33
+ msgstr ""
34
 
35
+ #: ../settings/settings-edit.php:92
36
+ msgid "Email Type"
37
+ msgstr ""
38
 
39
+ #: ../settings/settings-edit.php:93
40
  msgid ""
41
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
42
+ "Option 3 & 4 is to send emails with PHP method mail()."
43
+ msgstr ""
44
+
45
+ #: ../settings/settings-edit.php:107
46
+ msgid "Opt-In Type"
47
  msgstr ""
 
 
48
 
49
+ #: ../settings/settings-edit.php:108
50
  msgid ""
51
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
52
+ "soon as they subscribe to your list. They have to confirm their subscription "
53
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
54
+ "subscriber is not asked to confirm their email address. They are subscribed "
55
+ "directly in the list."
56
  msgstr ""
 
 
57
 
58
+ #: ../settings/settings-edit.php:139
59
+ msgid "Notify Admin when a new subscriber signs up"
60
+ msgstr ""
61
 
62
+ #: ../settings/settings-edit.php:152
63
+ msgid "Admin Email Subject on new subscriber sign up"
64
  msgstr ""
 
 
65
 
66
+ #: ../settings/settings-edit.php:153
67
+ msgid ""
68
+ "Subject for the admin email whenever a new subscriber signs up and is "
69
+ "confirmed."
70
+ msgstr ""
71
 
72
+ #: ../settings/settings-edit.php:159
73
+ msgid "Admin Email Content on new subscriber signs up"
74
+ msgstr ""
75
 
76
+ #: ../settings/settings-edit.php:160
77
+ msgid ""
78
+ "Content for the admin email whenever a new subscriber signs up and is "
79
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
80
  msgstr ""
 
 
81
 
82
+ #: ../settings/settings-edit.php:168
83
+ msgid "Subject for the email report which will be sent to admin."
84
+ msgstr ""
85
 
86
+ #: ../settings/settings-edit.php:175
87
+ msgid ""
88
+ "Content for the email report which will be sent to admin.<br />(Available "
89
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
90
+ msgstr ""
91
 
92
+ #: ../settings/settings-edit.php:186
93
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
94
+ msgstr ""
95
 
96
+ #: ../settings/settings-edit.php:187
97
  msgid ""
98
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
99
+ "subscriber signs up."
100
+ msgstr ""
101
+
102
+ #: ../settings/settings-edit.php:193
103
+ msgid "Double Opt-In Email Content (Confirmation Email)"
104
  msgstr ""
 
 
 
105
 
106
+ #: ../settings/settings-edit.php:194
107
  msgid ""
108
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
109
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
 
 
110
  msgstr ""
 
 
 
 
111
 
112
+ #: ../settings/settings-edit.php:200
113
+ msgid "Double Opt-In Confirmation Link"
114
+ msgstr ""
115
 
116
+ #: ../settings/settings-edit.php:207
117
+ msgid ""
118
+ "Text to display after an email address is successfully subscribed from "
119
+ "Double Opt-In (Confirmation) Email"
120
+ msgstr ""
121
 
122
+ #: ../settings/settings-edit.php:215
123
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
124
+ msgstr ""
125
 
126
+ #: ../settings/settings-edit.php:227
127
+ msgid "Subject for Welcome Email"
128
+ msgstr ""
129
 
130
+ #: ../settings/settings-edit.php:228
131
+ msgid ""
132
+ "Subject for the subscriber welcome email. This will be sent whenever a "
133
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
134
+ "Opt-In) successfully."
135
+ msgstr ""
136
 
137
+ #: ../settings/settings-edit.php:234
138
+ msgid "Email Content for Welcome Email"
139
+ msgstr ""
140
 
141
+ #: ../settings/settings-edit.php:235
142
+ msgid ""
143
+ "Content for the subscriber welcome email whenever a user's email is either "
144
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
145
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
146
+ msgstr ""
147
 
148
+ #: ../settings/settings-edit.php:244
149
+ msgid ""
150
+ "This unsubscribe link is automatically added to all the emails that are sent "
151
+ "from this plugin. It is a readonly field and you are advised not to modify "
152
+ "it."
153
+ msgstr ""
154
 
155
+ #: ../settings/settings-edit.php:251
156
+ msgid ""
157
+ "The text for the unsubscribe link. This text is automatically added with "
158
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
159
+ msgstr ""
160
 
161
+ #: ../settings/settings-edit.php:258
162
+ msgid ""
163
+ "This text will be displayed once user clicks on unsubscribe link from the "
164
+ "email."
165
+ msgstr ""
166
 
167
+ #: ../settings/settings-edit.php:265
168
+ msgid "Error in the Subscribe / Confirmation Link"
169
+ msgstr ""
170
 
171
+ #: ../settings/settings-edit.php:266
172
+ msgid ""
173
+ "Default message to display if there is any issue while clicking on subscribe "
174
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
175
+ msgstr ""
176
 
177
+ #: ../settings/settings-edit.php:273
178
+ msgid ""
179
+ "Default message to display if there is any issue while clicking on "
180
+ "unsubscribe link from the emails."
181
+ msgstr ""
182
 
183
+ #: ../settings/settings-edit.php:372
184
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
185
+ msgstr ""
186
 
187
+ #: ../settings/settings-edit.php:377
188
+ msgid "Cron Report"
189
+ msgstr ""
 
190
 
191
+ #: ../settings/settings-edit.php:378
192
+ msgid ""
193
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
194
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
195
+ msgstr ""
196
 
197
+ #: ../settings/settings-edit.php:389
198
+ msgid ""
199
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
200
+ "schedule-cron-emails/?"
201
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
202
+ "Cron?</a>"
203
+ msgstr ""
204
 
205
+ #: ../settings/settings-edit.php:390
206
+ msgid ""
207
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
208
+ "schedule-cron-emails-in-cpanel/?"
209
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
210
+ "job in cPanel</a>"
211
+ msgstr ""
212
 
213
+ #: ../settings/settings-edit.php:391
214
+ msgid ""
215
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
216
+ "schedule-cron-emails-in-parallels-plesk/?"
217
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
218
+ "job in Plesk</a>"
219
+ msgstr ""
220
 
221
+ #: ../settings/settings-edit.php:392
222
+ msgid ""
223
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
224
+ "if-hosting-doesnt-support-cron-jobs/?"
225
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
226
+ "does not support cron jobs?</a>"
227
+ msgstr ""
228
 
229
+ #: ../compose/compose-edit.php:61
230
+ msgid "Successfully updated. "
231
+ msgstr ""
 
232
 
233
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
234
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
235
+ msgstr ""
236
 
237
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
238
+ #, php-format
239
+ msgid ""
240
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
241
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
242
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
243
+ msgstr ""
244
 
245
+ #: ../compose/compose-add.php:43
246
+ msgid "Successfully created. "
247
+ msgstr ""
 
248
 
249
+ #: ../help/help.php:178
250
+ msgid "Get more help and tips..."
251
+ msgstr ""
 
252
 
253
+ #: ../help/help.php:192
254
+ #, php-format
255
+ msgid "Version: %s"
256
+ msgstr ""
257
 
258
+ #: ../help/help.php:195
259
+ msgid "Questions? Need Help?"
260
+ msgstr ""
 
261
 
262
+ #: ../help/help.php:196
263
+ msgid "Contact Us"
264
+ msgstr ""
 
265
 
266
+ #: ../help/help.php:236
267
+ msgid "Description"
268
+ msgstr ""
 
269
 
270
+ #: ../help/help.php:238
 
271
  msgid ""
272
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
273
+ "leads, send automated new blog post notification emails, create & send "
274
+ "newsletters and manage all this in one single place."
275
  msgstr ""
 
 
276
 
277
+ #: ../help/help.php:240
278
+ msgid "Feature Overview"
279
+ msgstr ""
 
280
 
281
+ #: ../help/help.php:243
282
+ msgid ""
283
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
284
+ "Code)."
285
+ msgstr ""
286
 
287
+ #: ../help/help.php:246
288
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
289
+ msgstr ""
 
290
 
291
+ #: ../help/help.php:249
292
+ msgid "Send automatic welcome email to subscribers."
293
+ msgstr ""
 
294
 
295
+ #: ../help/help.php:252
 
296
  msgid ""
297
+ "Send new post notification emails to subscribers when new posts are "
298
+ "published on your website."
299
  msgstr ""
 
 
300
 
301
+ #: ../help/help.php:255
302
+ msgid "Schedule email (Cron job) or send them manually."
303
+ msgstr ""
 
304
 
305
+ #: ../help/help.php:258
306
+ msgid "Send email notification to admin when a new user signs up."
307
+ msgstr ""
 
308
 
309
+ #: ../help/help.php:261
310
+ msgid "Automatically add Unsubscribe link in the email."
311
+ msgstr ""
 
312
 
313
+ #: ../help/help.php:264
314
+ msgid "Easily migrate subscribers from another app using Import & Export."
 
315
  msgstr ""
 
 
316
 
317
+ #: ../help/help.php:267
318
+ msgid "Use HTML editor to compose newsletters and post notifications."
319
+ msgstr ""
 
320
 
321
+ #: ../help/help.php:270
322
+ msgid "Send newsletters to different groups."
323
+ msgstr ""
 
324
 
325
+ #: ../help/help.php:273
326
+ msgid "Get detailed sent email reports."
327
+ msgstr ""
 
328
 
329
+ #: ../help/help.php:276
330
+ msgid "Control user access (User Roles and Capabilities)."
331
+ msgstr ""
 
332
 
333
+ #: ../help/help.php:279
334
+ msgid "Supports localization and internationalization."
 
 
335
  msgstr ""
 
 
336
 
337
+ #: ../help/help.php:286
338
+ msgid "Add Subscribe form"
339
+ msgstr ""
 
340
 
341
+ #: ../help/help.php:291
342
+ #, php-format
343
+ msgid ""
344
+ "Use any of the following 3 methods :<br>\n"
345
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
346
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
347
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
348
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
349
+ " c) Copy and past this php code to your desired template location : "
350
+ "<strong>%s</strong>"
351
+ msgstr ""
352
 
353
+ #: ../help/help.php:296
354
+ msgid "Additional form settings"
 
355
  msgstr ""
 
356
 
357
+ #: ../help/help.php:311
358
+ #, php-format
359
+ msgid "Modify %s"
360
+ msgstr ""
361
 
362
+ #: ../help/help.php:311
363
+ msgid "default text, email contents"
364
+ msgstr ""
 
365
 
366
+ #: ../help/help.php:311
367
+ msgid ""
368
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
369
+ "Roles"
370
+ msgstr ""
371
 
372
+ #: ../help/help.php:320
373
+ msgid "How to change/update/translate any texts from the plugin?"
374
+ msgstr ""
 
375
 
376
+ #: ../help/help.php:333
377
+ msgid "Usage"
378
+ msgstr ""
 
379
 
380
+ #: ../help/help.php:336
381
+ msgid "Compose and Send Newsletter Emails"
382
+ msgstr ""
 
383
 
384
+ #: ../help/help.php:339
385
+ msgid "Compose and Send Post Notification Emails when new posts are published"
 
 
 
 
386
  msgstr ""
 
 
387
 
388
+ #: ../help/help.php:342
389
+ msgid "Keywords in the Post Notifications"
390
+ msgstr ""
 
391
 
392
+ #: ../help/help.php:345
393
+ msgid "Send a test post notification email to myself/testgroup"
394
+ msgstr ""
 
395
 
396
+ #: ../help/help.php:348
397
+ msgid "Check sent emails"
398
+ msgstr ""
 
399
 
400
+ #: ../help/help.php:355
401
+ msgid "Cron Job Setup"
402
+ msgstr ""
 
403
 
404
+ #: ../help/help.php:361
405
+ msgid "Schedule Cron Emails in cPanel"
406
+ msgstr ""
 
407
 
408
+ #: ../help/help.php:364
409
+ msgid "Schedule Cron Emails in Parallels Plesk"
410
+ msgstr ""
 
411
 
412
+ #: ../help/help.php:367
413
+ msgid "Hosting doesn’t support Cron Jobs?"
414
+ msgstr ""
 
415
 
416
+ #: ../help/help.php:374
417
+ msgid "Troubleshooting Steps"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
 
420
+ #: ../help/help.php:382
421
+ msgid "FAQ's"
422
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
423
 
424
+ #: ../help/help.php:389
425
+ msgid "Want to do more? Here's how.."
426
+ msgstr ""
427
 
428
+ #: ../help/help.php:392
429
+ msgid "Allow Subscribers to get subscribed to any group"
430
+ msgstr ""
431
 
432
+ #: ../help/help.php:397
433
+ msgid "Using our free "
434
+ msgstr ""
435
 
436
+ #: ../help/help.php:398
437
+ msgid "Group Selector"
438
+ msgstr ""
439
 
440
+ #: ../help/help.php:399
 
441
  msgid ""
442
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
443
+ "grouping option right next to the form."
 
444
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
 
446
+ #: ../help/help.php:402
447
+ msgid "The user can then subscribe to whichever group most appeals to them."
448
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
 
450
+ #: ../help/help.php:405
451
+ msgid "For example: Subscribe either to Updates or to Offers."
452
+ msgstr ""
 
453
 
454
+ #: ../help/help.php:409
455
+ msgid "Show your subscribe form inside attractive popups"
456
+ msgstr ""
457
 
458
+ #: ../help/help.php:414
459
+ msgid ""
460
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
461
+ "bars, slide-ins, sidebars, full screen popups etc."
462
+ msgstr ""
463
 
464
+ #: ../help/help.php:417
465
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
466
+ msgstr ""
 
467
 
468
+ #: ../help/help.php:421
469
+ msgid ""
470
+ "Icegram's beautiful designs instantly capture user attention and help "
471
+ "increase sign-ups to your WordPress website."
472
+ msgstr ""
473
 
474
+ #: ../help/help.php:424 ../help/help.php:444
475
+ #, php-format
476
+ msgid "How to %s"
477
+ msgstr ""
 
478
 
479
+ #: ../help/help.php:424
480
+ msgid "show subscribe form inside a popup"
481
+ msgstr ""
482
 
483
+ #: ../help/help.php:428
484
+ msgid "Get beautiful and elegant form styles"
485
+ msgstr ""
486
 
487
+ #: ../help/help.php:434
488
+ msgid "Email subscribers easily integrates with another free plugin "
489
  msgstr ""
 
 
490
 
491
+ #: ../help/help.php:435
492
+ msgid "Rainmaker"
493
+ msgstr ""
494
 
495
+ #: ../help/help.php:438
 
496
  msgid ""
497
+ "Rainmaker extends the core features of Email Subscribers and provides "
498
+ "elegant form styles."
499
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
500
 
501
+ #: ../help/help.php:441
502
+ msgid ""
503
+ "These styles are well designed and beautify your subscription form making it "
504
+ "more appealing."
505
+ msgstr ""
 
 
506
 
507
+ #: ../help/help.php:444
508
+ msgid "add Rainmaker’s form in Email Subscribers"
509
+ msgstr ""
510
 
511
+ #: ../sendmail/sendmail.php:59
512
+ msgid "Email sent successfully. "
513
+ msgstr ""
514
 
515
+ #: ../classes/es-register.php:164
516
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
517
+ msgstr ""
518
 
519
+ #: ../classes/es-register.php:707
520
+ msgctxt "timezone date format"
521
+ msgid "Y-m-d"
522
+ msgstr ""
523
 
524
+ #: ../classes/es-register.php:737
525
+ msgid "Post Notifications more often than Newsletter"
526
+ msgstr ""
527
 
528
+ #: ../classes/es-register.php:739
529
+ msgid "Newsletter more often than Post Notifications"
530
+ msgstr ""
531
 
532
+ #: ../classes/es-register.php:741
533
+ msgid "Post Notification &amp; Newsletter equally"
534
+ msgstr ""
535
 
536
+ #: ../classes/es-register.php:759
537
+ msgid "Using Double Opt In"
538
+ msgstr ""
539
 
540
+ #: ../classes/es-register.php:761
541
+ msgid "Using Single Opt In"
542
+ msgstr ""
543
 
544
+ #: ../classes/es-register.php:810
545
+ msgid "Nah, I don't like improvements"
 
 
546
  msgstr ""
 
 
547
 
548
+ #: ../classes/es-register.php:816
549
+ msgid "Next"
550
+ msgstr ""
551
 
552
+ #: ../notification/notification-add.php:33
553
  msgid "Please select subscribers group."
554
  msgstr "Veuillez sélectionner un groupe d'abonnés."
555
 
556
+ #: ../notification/notification-add.php:39
557
  msgid "Please select notification status."
558
  msgstr "Veuillez sélectionner le mode d'envoi de la notification"
559
 
560
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
561
  msgid "Please select notification mail subject. Use compose menu to create new."
562
  msgstr ""
563
+ "Veuillez sélectionner le modèle de courriel. Utilisez le menu Modèles pour "
564
+ "en créer un nouveau."
565
 
566
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
567
  msgid "Please select post categories."
568
  msgstr "Veuillez sélectionner une catégorie."
569
 
570
+ #: ../notification/notification-add.php:71
571
  msgid "Notification successfully created. "
572
  msgstr "Notification correctement créée."
573
 
574
+ #: ../notification/notification-add.php:112
575
  msgid "Add Notification"
576
  msgstr "Nouvelle notification"
577
 
578
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
579
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
580
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
581
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
582
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
583
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
584
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
585
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
586
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
587
+ msgid "Help"
588
+ msgstr "Aide"
589
+
590
+ #: ../notification/notification-add.php:120
591
  msgid "Select Subscribers Group"
592
  msgstr "Groupe d'abonnés"
593
 
594
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
595
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
596
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
597
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
598
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
599
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
600
  msgid "Select"
601
  msgstr "Sélectionner"
602
 
603
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
604
+ #: 162
605
  msgid "Select Notification Email Subject"
606
  msgstr "Sélectionner le sujet du courriel"
607
 
608
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
609
+ #: 163
610
  msgid "(Use compose menu to create new)"
611
  msgstr "(utilisez le menu Modèles pour en créer un nouveau)"
612
 
613
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
614
+ #: 190
615
  msgid "Select Post Categories"
616
  msgstr "Catégories"
617
 
618
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
619
+ #: 225
620
  msgid "Check All"
621
  msgstr "Sélectionner tout"
622
 
623
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
624
+ #: 226
625
  msgid "Uncheck All"
626
  msgstr "Désélectionner tout"
627
 
628
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
629
+ #: 233
630
  msgid "Select your Custom Post Type"
631
  msgstr "Type de contenu"
632
 
633
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
634
+ #: 234
635
  msgid "(Optional)"
636
  msgstr "(Optionnel)"
637
 
638
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
639
+ #: 268
640
  msgid "No Custom Post Types Available"
641
  msgstr "Aucun type de contenu personnalisé n'est disponible"
642
 
643
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
644
+ #: 275
645
  msgid "Select Notification Status when a new post is published"
646
  msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
647
 
648
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
649
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
650
  msgid "Send email immediately"
651
  msgstr "Envoyer les courriels immédiatement"
652
 
653
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
654
+ #: 132 ../notification/notification-edit.php:280
655
  msgid "Add to cron and send email via cron job"
656
  msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
657
 
658
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
659
+ #: 281
660
  msgid "Disable email notification"
661
  msgstr "Ne pas envoyer"
662
 
663
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
664
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
665
+ #: 117 ../compose/compose-add.php:105
666
+ msgid "Save"
667
+ msgstr "Enregistrer"
668
 
669
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
670
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
671
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
672
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
673
+ msgid "Oops, selected details does not exists."
674
+ msgstr "Oups, ces données n'existent pas."
675
 
676
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
677
+ #: compose/compose-show.php:47
678
+ msgid "Selected record deleted."
679
+ msgstr "La sélection a été supprimée."
680
 
681
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
682
+ #: classes/es-register.php:152
683
+ msgid "Post Notifications"
684
+ msgstr "Notifications d'article"
685
 
686
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
687
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
688
+ msgid "Add New"
689
+ msgstr "Ajouter"
690
 
691
+ #: ../notification/notification-show.php:57
692
  msgid ""
693
+ "Use this to setup and send notification emails to your subscribers when a "
694
+ "new post is published in your blog."
695
  msgstr ""
696
+ "Permet de configurer et envoyer des notifications aux abonnés lorsque de "
697
+ "nouveaux articles sont publiés."
698
+
699
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
700
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:84
701
+ msgid "Email Subject"
702
+ msgstr "Sujet"
703
 
704
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
705
+ #: 77
706
  msgid "Subscribers Group"
707
  msgstr "Groupe d'abonnés"
708
 
709
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
710
+ #: 78
711
  msgid "Post Categories / Custom Post Types"
712
  msgstr "Catégories / Types de contenu"
713
 
714
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
715
+ #: 79
716
  msgid "Notification Status"
717
  msgstr "Mode d'envoi"
718
 
719
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
720
+ #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
721
+ msgid "Edit"
722
+ msgstr "Modifier"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
723
 
724
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
725
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
726
+ #: php:102
727
+ msgid "Delete"
728
+ msgstr "Supprimer"
729
 
730
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
731
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
732
+ #: 432 ../compose/compose-show.php:111
733
+ msgid "No records available."
734
+ msgstr "Aucun enregistrement."
735
 
736
+ #: ../notification/notification-edit.php:49
737
+ msgid "Please select subscribers group"
738
+ msgstr "Veuillez sélectionner le groupe d'abonnés"
739
 
740
+ #: ../notification/notification-edit.php:55
741
+ msgid "Please select notification status"
742
+ msgstr "Veuillez sélectionner le mode d'envoi"
743
 
744
+ #: ../notification/notification-edit.php:89
745
+ msgid "Notification successfully updated. "
746
+ msgstr "Mise à jour de la notification réussie. "
747
 
748
+ #: ../notification/notification-edit.php:122
749
+ msgid "Edit Notification"
750
+ msgstr "Modifier la notification"
751
 
752
+ #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
753
+ #: php:289
754
+ msgid "Update Subscribers Group"
755
+ msgstr "Mettre à jour le groupe"
 
 
756
 
757
+ #. Plugin Name of the plugin/theme
758
+ msgid "Email Subscribers & Newsletters"
759
+ msgstr "Email Subscribers & Newsletters"
760
 
761
+ #. Description of the plugin/theme
762
  msgid ""
763
+ "Add subscription forms on website, send HTML newsletters & automatically "
764
+ "notify subscribers about new blog posts once it is published."
765
  msgstr ""
766
+ "Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
767
+ "newsletters en HTML et d'informer automatiquement vos abonnés de vos "
768
+ "nouvelles publications."
 
 
 
 
 
 
 
769
 
770
+ #. Author of the plugin/theme
771
+ msgid "Icegram"
772
+ msgstr "Icegram"
773
 
774
+ #: ../settings/settings-edit.php:23
775
  msgid "Admin"
776
  msgstr "Administration"
777
 
778
+ #: ../settings/settings-edit.php:24
779
  msgid "Signup Confirmation"
780
  msgstr "Confirmation d'abonnement"
781
 
782
+ #: ../settings/settings-edit.php:25
783
+ msgid "Cron"
784
+ msgstr "Tâche CRON"
785
+
786
+ #: ../settings/settings-edit.php:26
787
  msgid "User Roles"
788
  msgstr "Rôles utilisateur"
789
 
790
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
791
+ #: register.php:158
792
+ msgid "Settings"
793
+ msgstr "Paramètres"
794
 
795
+ #: ../settings/settings-edit.php:67
796
  msgid "Save Settings"
797
  msgstr "Enregistrer les paramètres"
798
 
799
+ #: ../settings/settings-edit.php:81
800
  msgid "Sender of Notifications"
801
  msgstr "Expéditeur des courriels"
802
 
803
+ #: ../settings/settings-edit.php:82
 
 
 
 
 
 
 
 
 
 
 
 
804
  msgid ""
805
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
806
+ "this plugin."
807
  msgstr ""
808
+ "Choisissez le nom et l'e-mail de l'expéditeur pour tous les courriels "
809
+ "envoyés via cette extension."
810
 
811
+ #: ../settings/settings-edit.php:97
812
  msgid "1. WP HTML MAIL"
813
  msgstr "1. WP HTML MAIL"
814
 
815
+ #: ../settings/settings-edit.php:98
816
  msgid "2. WP PLAINTEXT MAIL"
817
  msgstr "2. WP PLAINTEXT MAIL"
818
 
819
+ #: ../settings/settings-edit.php:99
820
  msgid "3. PHP HTML MAIL"
821
  msgstr "3. PHP HTML MAIL"
822
 
823
+ #: ../settings/settings-edit.php:100
824
  msgid "4. PHP PLAINTEXT MAIL"
825
  msgstr "4. PHP PLAINTEXT MAIL"
826
 
827
+ #: ../settings/settings-edit.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
828
  msgid "Double Opt In"
829
  msgstr "Doube validation"
830
 
831
+ #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:
832
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
833
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
834
+ #: subscriber-edit.php:150
835
  msgid "Single Opt In"
836
  msgstr "Simple validation"
837
 
838
+ #: ../settings/settings-edit.php:119
839
  msgid "Image Size"
840
  msgstr "Taille d'image"
841
 
842
+ #: ../settings/settings-edit.php:120
843
  msgid ""
844
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
845
+ "Emails."
846
  msgstr "Choisissez la taille d'image dans le courriel pour ###POSTIMAGE###."
847
 
848
+ #: ../settings/settings-edit.php:124
849
  msgid "Full Size"
850
  msgstr "Grande taille"
851
 
852
+ #: ../settings/settings-edit.php:125
853
  msgid "Medium Size"
854
  msgstr "Taille moyenne"
855
 
856
+ #: ../settings/settings-edit.php:126
857
  msgid "Thumbnail"
858
  msgstr "Miniature"
859
 
860
+ #: ../settings/settings-edit.php:132
861
  msgid "Admin Email Addresses"
862
  msgstr "Adresses e-mail des administrateurs"
863
 
864
+ #: ../settings/settings-edit.php:133
865
  msgid ""
866
+ "Enter the admin email addresses that should receive notifications (separated "
867
+ "by comma)."
868
  msgstr ""
869
+ "Entrer les adresses des administrateurs qui recevront les notifications "
870
+ "(séparés par une virgule)."
871
 
872
+ #: ../settings/settings-edit.php:140
 
 
 
 
873
  msgid ""
874
+ "To send admin email notifications for the new subscriber. This option must "
875
+ "be set to YES."
876
  msgstr ""
877
+ "Pour envoyer une notification aux administrateurs lors d'une nouvelle "
878
+ "inscription, cette option doit être sur OUI."
 
 
 
 
879
 
880
+ #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
881
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
882
+ msgid "YES"
883
+ msgstr "OUI"
 
 
 
884
 
885
+ #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
886
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
887
+ msgid "NO"
888
+ msgstr "NON"
889
 
890
+ #: ../settings/settings-edit.php:167
891
  msgid "Sent Report Subject"
892
  msgstr "Sujet pour le rapport d'envoi"
893
 
894
+ #: ../settings/settings-edit.php:174
 
 
 
 
 
895
  msgid "Sent Report Content"
896
  msgstr "Contenu du rapport d'envoi"
897
 
898
+ #: ../settings/settings-edit.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
899
  msgid "It is a readonly field and you are advised not to modify it."
900
  msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
901
 
902
+ #: ../settings/settings-edit.php:208
903
  msgid ""
904
+ "This text will be displayed once user clicks on email confirmation link from "
905
+ "the Double Opt In (confirmation) Email."
 
 
 
 
 
 
906
  msgstr ""
907
+ "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
908
+ "confirmation dans le courriel de confirmation."
909
 
910
+ #: ../settings/settings-edit.php:216
 
 
 
 
911
  msgid ""
912
+ "To send welcome email to subscriber after successful signup. This option "
913
+ "must be set to YES."
914
  msgstr ""
915
  "Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
916
  "option doit être sur OUI."
917
 
918
+ #: ../settings/settings-edit.php:243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
919
  msgid "Unsubscribe Link"
920
  msgstr "Lien de désabonnement"
921
 
922
+ #: ../settings/settings-edit.php:250
 
 
 
 
 
 
 
 
 
923
  msgid "Unsubscribe Text in Email"
924
  msgstr "Texte de désabonnement dans les courriels"
925
 
926
+ #: ../settings/settings-edit.php:257
 
 
 
 
 
 
 
 
927
  msgid "Text to display after an email address is unsubscribed"
928
  msgstr "Texte à afficher lors d'un désabonnement"
929
 
930
+ #: ../settings/settings-edit.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
931
  msgid "Error in the Unsubscribe Link"
932
  msgstr "Erreur sur le lien de désabonnement"
933
 
934
+ #: ../settings/settings-edit.php:285
 
 
 
 
 
 
 
 
935
  msgid "Select user roles who can access following menus. Only Admin can change this."
936
  msgstr ""
937
  "Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
938
  "administrateurs peuvent changer cette option."
939
 
940
+ #: ../settings/settings-edit.php:291
941
  msgid "Subscribers Menu"
942
  msgstr "Menu Abonnés"
943
 
944
+ #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
945
+ #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
946
+ #: settings/settings-edit.php:343
947
  msgid "Administrator Only"
948
  msgstr "Que les administrateurs"
949
 
950
+ #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
951
+ #: settings/settings-edit.php:320 ../settings/settings-edit.php:332 ..
952
+ #: settings/settings-edit.php:344
953
  msgid "Administrator/Editor"
954
  msgstr "Administrateur/Editeur"
955
 
956
+ #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
957
+ #: settings/settings-edit.php:321 ../settings/settings-edit.php:333 ..
958
+ #: settings/settings-edit.php:345
959
  msgid "Administrator/Editor/Author/Contributor"
960
  msgstr "Administrateur/Editeur/Auteur/Contributeur"
961
 
962
+ #: ../settings/settings-edit.php:303
963
  msgid "Compose Menu"
964
  msgstr "Menu Modèles"
965
 
966
+ #: ../settings/settings-edit.php:315
967
  msgid "Post Notifications Menu"
968
  msgstr "Menu Notifications d'article"
969
 
970
+ #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
971
+ #: register.php:154 ../classes/es-register.php:155
972
+ msgid "Newsletters"
973
+ msgstr "Newsletters"
974
+
975
+ #: ../settings/settings-edit.php:339
976
  msgid "Reports Menu"
977
  msgstr "Menu Rapports"
978
 
979
+ #: ../settings/settings-edit.php:356
980
  msgid "Cron job URL"
981
  msgstr "URL de la tâche CRON"
982
 
983
+ #: ../settings/settings-edit.php:357
984
  msgid ""
985
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
986
  "modify it."
987
  msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
988
 
989
+ #: ../settings/settings-edit.php:366
990
  msgid "Email Count"
991
  msgstr "Nombre de courriels"
992
 
993
+ #: ../settings/settings-edit.php:367
994
  msgid "Number of emails that you want to trigger per hour."
995
  msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
996
 
997
+ #: ../settings/settings-edit.php:388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
999
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1000
 
1001
+ #: ../settings/settings-edit.php:507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1002
  msgid "Please enter sender of notifications from name."
1003
  msgstr "Veuillez saisir le nom de l'expéditeur"
1004
 
1005
+ #: ../settings/settings-edit.php:512
1006
  msgid "Please enter sender of notifications from email."
1007
  msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1008
 
1009
+ #: ../settings/settings-edit.php:556
1010
  msgid "Please enter valid mail count."
1011
  msgstr "Veuillez saisir un nombre de courriel valide."
1012
 
1013
+ #: ../settings/settings-edit.php:569
1014
  msgid "Settings Saved."
1015
  msgstr "Options enregistrées."
1016
 
1017
+ #: ../settings/settings-edit.php:572
1018
  msgid "Oops, unable to update."
1019
  msgstr "Oups, impossible de mettre à jour."
1020
 
1021
+ #: ../settings/setting-sync.php:16
1022
+ msgid "Table sync completed successfully."
1023
+ msgstr "Synchronisation de la table effectuée."
1024
 
1025
+ #: ../settings/setting-sync.php:29
1026
+ msgid "Sync plugin tables"
1027
+ msgstr "Synchronisation des tables"
1028
 
1029
+ #: ../settings/setting-sync.php:33
1030
+ msgid "Click to sync tables"
1031
+ msgstr "Cliquez pour synchroniser les tables"
 
 
 
 
1032
 
1033
+ #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1034
+ msgid "Preview Mail"
1035
+ msgstr "Aperçu du courriel"
1036
 
1037
+ #: ../sentmail/sentmail-preview.php:42
1038
+ msgid "Back"
1039
+ msgstr "Retour"
1040
 
1041
+ #: ../sentmail/sentmail-show.php:43
1042
+ msgid "Successfully deleted all reports except latest 10."
1043
+ msgstr "Les rapports ont été supprimés sauf les 10 derniers."
1044
 
1045
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1046
+ msgid " &lt;&lt; "
1047
+ msgstr " &lt;&lt; "
 
 
 
1048
 
1049
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1050
+ msgid " &gt;&gt; "
1051
+ msgstr " &gt;&gt; "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1052
 
1053
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1054
+ #: register.php:161
1055
+ msgid "Reports"
1056
+ msgstr "Rapports"
1057
 
1058
+ #: ../sentmail/sentmail-show.php:97
1059
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1060
+ msgstr ""
1061
+ "Affiche les rapports pour toutes les newsletters et les courriels de "
1062
+ "notification envoyés."
1063
 
1064
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1065
+ msgid "View Reports"
1066
+ msgstr "Afficher les rapports"
1067
 
1068
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1069
+ #: compose/compose-show.php:103
1070
+ msgid "Preview"
1071
+ msgstr "Aperçu"
1072
 
1073
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1074
+ msgid "Type"
1075
+ msgstr "Type"
1076
 
1077
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1078
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1079
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1080
+ #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1081
+ msgid "Status"
1082
  msgstr "Statut"
1083
 
1084
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1085
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
1086
+ msgid "Sent"
1087
+ msgstr "Type d'envoi"
 
 
 
1088
 
1089
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1090
+ msgid "Start Date"
1091
+ msgstr "Date de début"
 
1092
 
1093
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1094
+ msgid "End Date"
1095
+ msgstr "Date de fin"
 
1096
 
1097
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1098
+ msgid "Total"
1099
+ msgstr "Total"
1100
 
1101
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1102
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
1103
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1104
+ #: subscriber-export.php:56
1105
+ msgid "Action"
1106
+ msgstr "Action"
1107
 
1108
+ #: ../sentmail/sentmail-show.php:190
1109
+ msgid "Optimize Table & Delete Records"
1110
+ msgstr "Optimiser la table"
 
 
 
 
1111
 
1112
+ #: ../sentmail/sentmail-show.php:199
1113
+ msgid ""
1114
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1115
+ "button to delete all reports except latest 10."
1116
+ msgstr ""
1117
+ "Note: cliquez sur le bouton <strong>Optimiser la table</strong> pour "
1118
+ "supprimer tous les enregistrements sauf les 10 derniers."
1119
 
1120
+ #: ../sentmail/deliverreport-show.php:14
1121
+ msgid "Oops.. Unexpected error occurred. Please try again."
1122
+ msgstr "Oups... Erreur inattendue. Merci de réessayer."
1123
 
1124
+ #: ../sentmail/deliverreport-show.php:57
1125
+ msgid "Delivery Report"
1126
+ msgstr "Rapport d'envoi"
1127
 
1128
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
1129
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
1130
+ #: export.php:53
1131
+ msgid "Sno"
1132
+ msgstr "n°"
1133
 
1134
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
1135
+ msgid "Email"
1136
+ msgstr "E-mail"
1137
 
1138
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
1139
+ msgid "Sent Date"
1140
+ msgstr "Envoyé le"
1141
 
1142
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1143
+ msgid "Viewed Status"
1144
+ msgstr "Statut"
1145
 
1146
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
1147
+ msgid "Viewed Date"
1148
+ msgstr "Ouvert le"
1149
 
1150
+ #: ../subscribers/view-subscriber-import.php:44
1151
  msgid ""
1152
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1153
+ "the Group name."
1154
  msgstr ""
1155
  "Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
1156
  "autorisés pour le nom du groupe."
1157
 
1158
+ #: ../subscribers/view-subscriber-import.php:92
1159
  msgid "email imported."
1160
  msgstr "e-mail importé."
1161
 
1162
+ #: ../subscribers/view-subscriber-import.php:93
1163
  msgid "email already exists."
1164
  msgstr "e-mail existant."
1165
 
1166
+ #: ../subscribers/view-subscriber-import.php:94
1167
  msgid "email are invalid."
1168
  msgstr "e-mail non valide."
1169
 
1170
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1171
+ #: import.php:126
1172
  msgid "Click here"
1173
  msgstr "Cliquez ici"
1174
 
1175
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1176
+ #: import.php:126
1177
  msgid " to view details."
1178
  msgstr " pour voir les détails."
1179
 
1180
+ #: ../subscribers/view-subscriber-import.php:105
1181
  msgid "File Upload Failed."
1182
  msgstr "Le téléchargement a échoué."
1183
 
1184
+ #: ../subscribers/view-subscriber-import.php:142
1185
  msgid "Import Email Addresses"
1186
  msgstr "Import d'adresses e-mail"
1187
 
1188
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1189
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1190
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
1191
+ #: subscribers/view-subscriber-sync.php:89
1192
+ msgid "Add New Subscriber"
1193
+ msgstr "Ajouter un abonné"
1194
+
1195
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1196
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
1197
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1198
+ msgid "Export"
1199
+ msgstr "Exporter"
1200
+
1201
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1202
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1203
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1204
+ #: subscribers/view-subscriber-sync.php:143
1205
+ msgid "Sync"
1206
+ msgstr "Synchroniser"
1207
+
1208
+ #: ../subscribers/view-subscriber-import.php:155
1209
  msgid "Select CSV file"
1210
  msgstr "Sélectionnez un fichier CSV"
1211
 
1212
+ #: ../subscribers/view-subscriber-import.php:157
1213
  msgid "Check CSV structure "
1214
  msgstr "Vérifiez la structure du fichier CSV"
1215
 
1216
+ #: ../subscribers/view-subscriber-import.php:158
1217
  msgid "from here"
1218
  msgstr "ici"
1219
 
1220
+ #: ../subscribers/view-subscriber-import.php:169
1221
  msgid "Select Subscribers Email Status"
1222
  msgstr "Sélectionnez le statut des abonnés"
1223
 
1224
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1225
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1226
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1227
+ msgid "Confirmed"
1228
+ msgstr "Confirmé"
1229
+
1230
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1231
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1232
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1233
+ msgid "Unconfirmed"
1234
+ msgstr "Non confirmé"
1235
+
1236
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1237
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1238
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1239
+ msgid "Unsubscribed"
1240
+ msgstr "Désabonné"
1241
+
1242
+ #: ../subscribers/view-subscriber-import.php:185
1243
  msgid "Select (or) Create Group for Subscribers"
1244
  msgstr "Sélectionnez ou créez un groupe d'abonnés"
1245
 
1246
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1247
+ #: add.php:174
1248
+ msgid "(or)"
1249
+ msgstr "(ou)"
1250
+
1251
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1252
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1253
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1254
+ #: subscribers/view-subscriber-sync.php:90
1255
+ msgid "Import"
1256
+ msgstr "Importer"
1257
+
1258
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1259
+ #: sendmail/sendmail.php:18
1260
+ msgid "Click Here"
1261
+ msgstr "Cliquez ici"
1262
+
1263
+ #: ../subscribers/view-subscriber-show.php:45
1264
  msgid "Selected details does not exists."
1265
  msgstr "L'élément sélectionné n'existe pas."
1266
 
1267
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1268
+ #: php:95
1269
  msgid "Record deleted."
1270
  msgstr "Enregistrement supprimé."
1271
 
1272
+ #: ../subscribers/view-subscriber-show.php:67
1273
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1274
  msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
1275
 
1276
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1277
+ #: php:134
1278
  msgid "Confirmation emails Resent Successfully."
1279
  msgstr "Courriel(s) de confirmation renvoyé(s)."
1280
 
1281
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1282
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1283
+ #: subscriber-show.php:216
1284
  msgid "No record was selected."
1285
  msgstr "Aucun élément n'est sélectionné."
1286
 
1287
+ #: ../subscribers/view-subscriber-show.php:115
1288
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1289
  msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
1290
 
1291
+ #: ../subscribers/view-subscriber-show.php:163
1292
  msgid "Subscribers Group updated."
1293
  msgstr "Groupe d'abonnés mis à jour."
1294
 
1295
+ #: ../subscribers/view-subscriber-show.php:168
1296
  msgid "Please select New group to update."
1297
  msgstr "Veuillez choisir le nouveau groupe."
1298
 
1299
+ #: ../subscribers/view-subscriber-show.php:202
1300
  msgid "Subscribers Status updated."
1301
  msgstr "Statut des abonnés mis à jour."
1302
 
1303
+ #: ../subscribers/view-subscriber-show.php:207
1304
  msgid "Please select New Status to update."
1305
  msgstr "Veuillez choisir le nouveau statut."
1306
 
1307
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1308
+ #: classes/es-register.php:146
1309
+ msgid "Subscribers"
1310
+ msgstr "Abonnés"
1311
+
1312
+ #: ../subscribers/view-subscriber-show.php:252
1313
+ #, php-format
1314
  msgid "Total Subscribers: %s"
1315
  msgstr "Total d'abonnés : %s"
1316
 
1317
+ #: ../subscribers/view-subscriber-show.php:254
1318
+ #, php-format
1319
  msgid "Active Subscribers: %s"
1320
  msgstr "Abonnés activés : %s"
1321
 
1322
+ #: ../subscribers/view-subscriber-show.php:286
1323
  msgid "Bulk Actions"
1324
  msgstr "Actions groupées"
1325
 
1326
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1327
+ #: show.php:417
1328
  msgid "Resend Confirmation"
1329
  msgstr "Renvoyer la confirmation"
1330
 
1331
+ #: ../subscribers/view-subscriber-show.php:290
1332
  msgid "Update Subscribers Status"
1333
  msgstr "Mettre à jour le statut"
1334
 
1335
+ #: ../subscribers/view-subscriber-show.php:293
1336
  msgid "Select Group"
1337
  msgstr "Choix du groupe"
1338
 
1339
+ #: ../subscribers/view-subscriber-show.php:308
1340
  msgid "Select Status"
1341
  msgstr "Choix du statut"
1342
 
1343
+ #: ../subscribers/view-subscriber-show.php:314
1344
  msgid "Apply"
1345
  msgstr "Appliquer"
1346
 
1347
+ #: ../subscribers/view-subscriber-show.php:318
1348
  msgid "All Groups"
1349
  msgstr "Tous les groupes"
1350
 
1351
+ #: ../subscribers/view-subscriber-show.php:335
1352
  msgid "All Status"
1353
  msgstr "Tous les statuts"
1354
 
1355
+ #: ../subscribers/view-subscriber-show.php:342
1356
  msgid "1 to 500 emails"
1357
  msgstr "1 à 500"
1358
 
1359
+ #: ../subscribers/view-subscriber-show.php:343
1360
  msgid "501 to 1000"
1361
  msgstr "501 à 1000"
1362
 
1363
+ #: ../subscribers/view-subscriber-show.php:344
1364
  msgid "1001 to 1500"
1365
  msgstr "1001 à 1500"
1366
 
1367
+ #: ../subscribers/view-subscriber-show.php:345
1368
  msgid "1501 to 2000"
1369
  msgstr "1501 à 2000"
1370
 
1371
+ #: ../subscribers/view-subscriber-show.php:346
1372
  msgid "2001 to 4000"
1373
  msgstr "2001 à 4000"
1374
 
1375
+ #: ../subscribers/view-subscriber-show.php:347
1376
  msgid "4001 to 6000"
1377
  msgstr "4001 à 6000"
1378
 
1379
+ #: ../subscribers/view-subscriber-show.php:348
1380
  msgid "6001 to 10000"
1381
  msgstr "6001 à 10000"
1382
 
1383
+ #: ../subscribers/view-subscriber-show.php:349
1384
  msgid "Display All"
1385
  msgstr "Tout afficher"
1386
 
1387
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1388
+ #: show.php:373
1389
  msgid "Email Address"
1390
  msgstr "Adresses e-mail"
1391
 
1392
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1393
+ #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1394
+ msgid "Name"
1395
+ msgstr "Nom"
1396
+
1397
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1398
+ #: show.php:376
1399
  msgid "Group"
1400
  msgstr "Groupe"
1401
 
1402
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1403
+ #: show.php:377
1404
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1405
  msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
1406
 
1407
+ #: ../subscribers/view-subscriber-export.php:34
1408
+ msgid "Export Email Addresses"
1409
+ msgstr "Export des adresses e-mail"
1410
+
1411
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1412
+ #: export.php:54
1413
+ msgid "Type of List to Export"
1414
+ msgstr "Type de liste à exporter"
1415
+
1416
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1417
+ #: export.php:55
1418
+ msgid "Total Emails Count"
1419
+ msgstr "Nombre d'e-mails"
1420
+
1421
+ #: ../subscribers/view-subscriber-export.php:61
1422
+ msgid "1"
1423
+ msgstr "1"
1424
+
1425
+ #: ../subscribers/view-subscriber-export.php:62
1426
+ msgid "All Subscribers"
1427
+ msgstr "Tous les abonnés"
1428
+
1429
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1430
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1431
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1432
+ msgid "Click to Export in CSV"
1433
+ msgstr "Exporter en CSV"
1434
+
1435
+ #: ../subscribers/view-subscriber-export.php:67
1436
+ msgid "2"
1437
+ msgstr "2"
1438
+
1439
+ #: ../subscribers/view-subscriber-export.php:68
1440
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1441
+ msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
1442
+
1443
+ #: ../subscribers/view-subscriber-export.php:73
1444
+ msgid "3"
1445
+ msgstr "3"
1446
+
1447
+ #: ../subscribers/view-subscriber-export.php:74
1448
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1449
+ msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
1450
+
1451
+ #: ../subscribers/view-subscriber-export.php:79
1452
+ msgid "4"
1453
+ msgstr "4"
1454
+
1455
+ #: ../subscribers/view-subscriber-export.php:80
1456
+ msgid "WordPress Registered Users"
1457
+ msgstr "Utilisateurs du site"
1458
+
1459
+ #: ../subscribers/view-subscriber-export.php:85
1460
+ msgid "5"
1461
+ msgstr "5"
1462
+
1463
+ #: ../subscribers/view-subscriber-export.php:86
1464
+ msgid "Commented Authors"
1465
+ msgstr "Auteurs de commentaires"
1466
+
1467
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1468
+ #: php:54
1469
+ msgid "Please enter subscriber email address."
1470
+ msgstr "Veuillez saisir l'e-mail de l'abonné."
1471
+
1472
+ #: ../subscribers/view-subscriber-add.php:49
1473
+ msgid "Please select or create your group for this email."
1474
+ msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
1475
+
1476
+ #: ../subscribers/view-subscriber-add.php:56
1477
+ msgid ""
1478
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1479
+ "the group name."
1480
+ msgstr ""
1481
+ "Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis dans "
1482
+ "le nom d'un groupe."
1483
+
1484
+ #: ../subscribers/view-subscriber-add.php:66
1485
+ msgid "Subscriber has been saved."
1486
+ msgstr "Abonné enregistré."
1487
+
1488
+ #: ../subscribers/view-subscriber-add.php:68
1489
+ msgid "Subscriber already exists."
1490
+ msgstr "Cet abonné existe déjà."
1491
+
1492
+ #: ../subscribers/view-subscriber-add.php:71
1493
+ msgid "Invalid Email."
1494
+ msgstr "E-mail non valide."
1495
+
1496
+ #: ../subscribers/view-subscriber-add.php:123
1497
+ msgid "Enter Subscriber's Full name"
1498
+ msgstr "Nom complet"
1499
+
1500
+ #: ../subscribers/view-subscriber-add.php:133
1501
+ msgid "Enter Subscriber's Email Address"
1502
+ msgstr "Adresse e-mail"
1503
+
1504
+ #: ../subscribers/view-subscriber-add.php:143
1505
+ msgid "Select Subscriber's Status"
1506
+ msgstr "Statut"
1507
+
1508
+ #: ../subscribers/view-subscriber-add.php:158
1509
+ msgid "Select (or) Create Group for Subscriber"
1510
+ msgstr "Groupe"
1511
+
1512
+ #: ../subscribers/view-subscriber-add.php:183
1513
+ msgid "Add Subscriber"
1514
+ msgstr "Ajouter un abonné"
1515
+
1516
+ #: ../subscribers/view-subscriber-edit.php:64
1517
+ msgid "Error: Special characters are not allowed in the group name."
1518
+ msgstr "Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
1519
+
1520
+ #: ../subscribers/view-subscriber-edit.php:74
1521
+ msgid "Subscriber details updated."
1522
+ msgstr "Informations sur l'abonné mises à jour."
1523
+
1524
+ #: ../subscribers/view-subscriber-edit.php:76
1525
+ msgid "Subscriber already exists for this group."
1526
+ msgstr "Cet abonné fait déjà parti de ce groupe."
1527
+
1528
+ #: ../subscribers/view-subscriber-edit.php:108
1529
+ msgid "Edit Subscriber"
1530
+ msgstr "Modifier un abonné"
1531
+
1532
+ #: ../subscribers/view-subscriber-edit.php:122
1533
+ msgid "Subscriber's Full Name"
1534
+ msgstr "Nom complet de l'abonné"
1535
+
1536
+ #: ../subscribers/view-subscriber-edit.php:132
1537
+ msgid "Subscriber's Email Address"
1538
+ msgstr "Courriel de l'abonné"
1539
+
1540
+ #: ../subscribers/view-subscriber-edit.php:142
1541
+ msgid "Update Subscriber's Status"
1542
+ msgstr "Statut"
1543
+
1544
+ #: ../subscribers/view-subscriber-edit.php:157
1545
+ msgid "Update Subscriber's Group"
1546
+ msgstr "Groupe"
1547
+
1548
+ #: ../subscribers/view-subscriber-sync.php:36
1549
  msgid "Please select default group to newly registered user."
1550
  msgstr ""
1551
+ "Veuillez sélectionner un groupe pour les nouveaux utilisateurs enregistrés "
1552
+ "sur le site."
1553
 
1554
+ #: ../subscribers/view-subscriber-sync.php:50
1555
  msgid "Emails Successfully Synced."
1556
  msgstr "E-mails synchronisés."
1557
 
1558
+ #: ../subscribers/view-subscriber-sync.php:88
1559
  msgid "Sync Email"
1560
  msgstr "Synchro E-mail"
1561
 
1562
+ #: ../subscribers/view-subscriber-sync.php:101
1563
  msgid "Sync newly registered users to subscribers list"
1564
  msgstr "Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonnés"
1565
 
1566
+ #: ../subscribers/view-subscriber-sync.php:114
1567
  msgid "Select group to add newly registered users to"
1568
  msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
1569
 
1570
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1571
+ msgid "Please enter template heading."
1572
+ msgstr "Veuillez saisir le nom du modèle."
1573
+
1574
+ #: ../compose/compose-edit.php:84
1575
+ msgid "Edit Email"
1576
+ msgstr "Modifier l'email"
1577
 
1578
+ #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1579
+ msgid "Select your Email Template"
1580
+ msgstr "Choisissez le type d'e-mail"
 
1581
 
1582
+ #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
1583
+ msgid "Newsletter"
1584
+ msgstr "Newsletters"
1585
+
1586
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
1587
+ msgid "Post Notification"
1588
+ msgstr "Notification d'article"
1589
+
1590
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1591
+ msgid "Enter your Email Subject"
1592
+ msgstr "Saisir le sujet du courriel"
1593
+
1594
+ #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1595
+ msgid "Enter Content for your Email"
1596
+ msgstr "Saisir le contenu du courriel"
1597
+
1598
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
1599
+ msgid "Available Keywords"
1600
+ msgstr "Mots clés autorisés"
1601
+
1602
+ #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1603
+ msgid "Published"
1604
+ msgstr "Publié"
1605
+
1606
+ #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1607
+ msgid "Please select your mail status"
1608
+ msgstr "Sélectionnez le statut du modèle de courriel"
1609
+
1610
+ #: ../compose/compose-add.php:74
1611
+ msgid "Add new Email"
1612
+ msgstr "Ajouter un nouveau courriel"
1613
+
1614
+ #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1615
+ #: register.php:149
1616
+ msgid "Compose"
1617
+ msgstr "Modèles"
1618
+
1619
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1620
+ msgid "Email Template"
1621
+ msgstr "Type d'email"
1622
+
1623
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1624
+ msgid "Actions"
1625
+ msgstr "Actions"
1626
+
1627
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1628
+ msgid "Unexpected url submit has been detected"
1629
+ msgstr "Une erreur d'URL a été détectée"
1630
+
1631
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1632
+ #: 58 ../job/es-optin.php:68
1633
  msgid ""
1634
+ "Oops.. We are getting some technical error. Please try again or contact "
1635
+ "admin."
1636
  msgstr ""
1637
+ "Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
1638
+ "l'administrateur du site."
 
1639
 
1640
+ #: ../job/es-optin.php:61
1641
+ msgid "This email address has already been confirmed."
1642
+ msgstr "Cette adresse a déjà été confirmée."
1643
+
1644
+ #: ../help/help.php:173
1645
+ msgid "Welcome to Email Subscribers!"
1646
+ msgstr "Bienvenue sur Email Subscribers & Newsletters!"
1647
+
1648
+ #: ../help/help.php:174
1649
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1650
+ msgstr ""
1651
+ "Merci d'avoir installé Email Subscribers & Newsletters. Nous espérons que "
1652
+ "vous serez satisfaits d'utiliser cette extension."
1653
+
1654
+ #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1655
+ #: php:38
1656
+ msgid "Subscribe"
1657
+ msgstr "S'abonner"
1658
+
1659
+ #: ../help/help.php:201
1660
+ #, php-format
1661
+ msgid ""
1662
+ "Like Email Subscribers? If yes, then consider %s to support further "
1663
+ "developments."
1664
+ msgstr ""
1665
+ "Vous aimez Email Subscribers? Si oui, merci de nous soutenir %s pour aider "
1666
+ "aux futurs développements."
1667
+
1668
+ #: ../help/help.php:201
1669
+ msgid "donating to us"
1670
+ msgstr "en nous versant une contribution"
1671
+
1672
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1673
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1674
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1675
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1676
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1677
+ #: 380 ../help/help.php:382
1678
+ #, php-format
1679
+ msgid "%s"
1680
+ msgstr "%s"
1681
+
1682
+ #: ../help/help.php:288
1683
+ msgid "How to Add Subscription box to website?"
1684
+ msgstr "Comment ajouter un formulaire d'abonnement sur votre site?"
1685
+
1686
+ #: ../help/help.php:299
1687
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1688
+ msgstr ""
1689
+ "Comment rediriger les abonnés vers une nouvelle page/url après une "
1690
+ "inscription réussie?"
1691
+
1692
+ #: ../help/help.php:302
1693
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
1694
+ msgstr "Comment ajouter un captcha au formulaire d'abonnement?"
1695
+
1696
+ #: ../help/help.php:308
1697
+ msgid "General Plugin Settings"
1698
+ msgstr "Options générales"
1699
+
1700
+ #: ../help/help.php:314
1701
+ msgid "How to Import or Export Email Addresses?"
1702
+ msgstr "Comment importer ou exporter des adresses e-mail?"
1703
+
1704
+ #: ../help/help.php:317
1705
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
1706
+ msgstr "Comment ajouter/mettre à jour un groupe d'abonnés?"
1707
+
1708
+ #: ../help/help.php:323
1709
+ msgid "How to add Unsubscribe link in emails?"
1710
+ msgstr "Comment ajouter un lien pour se désabonner dans les courriels envoyés?"
1711
+
1712
+ #: ../help/help.php:358
1713
+ msgid "How to Schedule Cron Emails?"
1714
+ msgstr "Comment programmer un envoi d'e-mail en tache Cron?"
1715
+
1716
+ #: ../help/help.php:377
1717
+ msgid "Subscribers are not receiving Emails?"
1718
+ msgstr "Les abonnés ne reçoivent pas les courriels ?"
1719
+
1720
+ #: ../help/help.php:380
1721
+ msgid "CSS Help"
1722
+ msgstr "Aide CSS"
1723
+
1724
+ #: ../sendmail/sendmail.php:40
1725
+ msgid "Please select your mail subject."
1726
+ msgstr "Veuillez choisir le sujet de votre courriel."
1727
+
1728
+ #: ../sendmail/sendmail.php:46
1729
+ msgid "Please select your mail type."
1730
+ msgstr "Veuillez sélectionner le type de courriel."
1731
+
1732
+ #: ../sendmail/sendmail.php:52
1733
+ msgid "Please select your group."
1734
+ msgstr "Veuillez sélectionner le groupe."
1735
+
1736
+ #: ../sendmail/sendmail.php:63
1737
+ msgid "Click here to check Statistics"
1738
+ msgstr "Cliquez ici pour voir les statistiques"
1739
+
1740
+ #: ../sendmail/sendmail.php:69
1741
+ msgid "Oops.. We are getting some error. mail not sending."
1742
+ msgstr "Oups... Problème détecté. Le courriel n'a pas été envoyé."
1743
+
1744
+ #: ../sendmail/sendmail.php:97
1745
+ msgid "Use this to send newsletter emails to your subscribers."
1746
+ msgstr "A utiliser pour envoyer des courriels à vos abonnés."
1747
+
1748
+ #: ../sendmail/sendmail.php:105
1749
+ msgid "Select Email Subject from available list"
1750
+ msgstr "Sélectionnez le sujet du courriel dans la liste"
1751
+
1752
+ #: ../sendmail/sendmail.php:132
1753
+ msgid "Select Email Type"
1754
+ msgstr "Type d'envoi"
1755
+
1756
+ #: ../sendmail/sendmail.php:139
1757
+ msgid "Send email via cron job"
1758
+ msgstr "Envoyer les courriels via la tâche CRON"
1759
+
1760
+ #: ../sendmail/sendmail.php:146
1761
+ msgid "Select Subscribers group to Send Email"
1762
+ msgstr "Groupe d'abonnés"
1763
+
1764
+ #: ../sendmail/sendmail.php:178
1765
+ msgid "Recipients : 0 "
1766
+ msgstr "Destinataires : 0 "
1767
+
1768
+ #: ../sendmail/sendmail.php:180
1769
+ #, php-format
1770
+ msgid "Recipients : %s"
1771
+ msgstr "Destinataires : %s"
1772
+
1773
+ #: ../sendmail/sendmail.php:183
1774
+ msgid ""
1775
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1776
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1777
+ "</strong><br>Click on Help for more information."
1778
+ msgstr ""
1779
+ "<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons "
1780
+ "de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
1781
+ "courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
1782
+
1783
+ #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1784
+ msgid "Send Email"
1785
+ msgstr "Envoyer"
1786
+
1787
+ #: ../sendmail/sendmail.php:199
1788
+ msgid "Reset"
1789
+ msgstr "Réinitialiser"
1790
+
1791
+ #: ../base/es-defined.php:32
1792
+ msgid ""
1793
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1794
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1795
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1796
+ "</a> rating. A huge thank you from Icegram in advance!"
1797
+ msgstr ""
1798
+ "Si vous aimez <strong>Email Subscribers</strong>, attribuez-lui <a "
1799
+ "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1800
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1801
+ "</a>. Un grand merci d'Icegram d'avance!"
1802
+
1803
+ #: ../classes/es-common.php:13
1804
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1805
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
1806
+
1807
+ #: ../classes/es-common.php:16
1808
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1809
+ msgstr "<span style=\"color:#FF0000\">Non confirmé</span>"
1810
+
1811
+ #: ../classes/es-common.php:19
1812
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1813
+ msgstr "<span style=\"color:#999900\">Désabonné</span>"
1814
+
1815
+ #: ../classes/es-common.php:22
1816
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1817
+ msgstr "<span style=\"color:#0000FF\">Simple vérification</span>"
1818
+
1819
+ #: ../classes/es-common.php:25
1820
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1821
+ msgstr "<span style=\"color:#00CC00;font-weight:bold\">Vu</span>"
1822
+
1823
+ #: ../classes/es-common.php:28
1824
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1825
+ msgstr "<span style=\"color:#999900;\">Aucune donnée</span>"
1826
+
1827
+ #: ../classes/es-common.php:31
1828
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1829
+ msgstr "<span style=\"color:#FF0000\">Désactivé</span>"
1830
+
1831
+ #: ../classes/es-common.php:34
1832
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1833
+ msgstr "<span style=\"color:#FF0000\">En file d'attente</span>"
1834
+
1835
+ #: ../classes/es-common.php:37
1836
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1837
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Envoyé</span>"
1838
+
1839
+ #: ../classes/es-common.php:40
1840
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1841
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1842
+
1843
+ #: ../classes/es-common.php:43
1844
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1845
+ msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
1846
+
1847
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1848
+ #: register.php:724
1849
+ msgid "Email Subscribers"
1850
+ msgstr "Email Subscribers & Newsletters"
1851
+
1852
+ #: ../classes/es-register.php:163
1853
+ msgid "Help & Info"
1854
+ msgstr "Aide & Infos"
1855
+
1856
+ #: ../classes/es-register.php:175
1857
+ msgctxt "view-subscriber-enhanced-select"
1858
+ msgid "Please enter subscriber email address."
1859
+ msgstr "Entrer l'adresse e-mail de l'abonné."
1860
+
1861
+ #: ../classes/es-register.php:176
1862
+ msgctxt "view-subscriber-enhanced-select"
1863
+ msgid "Please select subscriber email status."
1864
+ msgstr "Sélectionner le type d'envoi pour cet abonné."
1865
+
1866
+ #: ../classes/es-register.php:177
1867
+ msgctxt "view-subscriber-enhanced-select"
1868
+ msgid "Please select or create group for this subscriber."
1869
+ msgstr "Sélectionner ou créer un groupe pour cet abonné."
1870
+
1871
+ #: ../classes/es-register.php:178
1872
+ msgctxt "view-subscriber-enhanced-select"
1873
+ msgid "Do you want to delete this record?"
1874
+ msgstr "Voulez-vous supprimer cette ligne?"
1875
+
1876
+ #: ../classes/es-register.php:179
1877
+ msgctxt "view-subscriber-enhanced-select"
1878
+ msgid "Please select the bulk action."
1879
+ msgstr "Veuillez sélectionner une action."
1880
+
1881
+ #: ../classes/es-register.php:180
1882
+ msgctxt "view-subscriber-enhanced-select"
1883
+ msgid "Are you sure you want to delete selected records?"
1884
+ msgstr "Voulez-vous supprimer les lignes sélectionnées?"
1885
+
1886
+ #: ../classes/es-register.php:181
1887
+ msgctxt "view-subscriber-enhanced-select"
1888
+ msgid ""
1889
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1890
+ "update subscriber current status to 'Unconfirmed'."
1891
+ msgstr ""
1892
+ "Voulez-vous renvoyer un message de confirmation?\\n A noter: le statut de "
1893
+ "l'abonné passera à 'En attente de confirmation'."
1894
+
1895
+ #: ../classes/es-register.php:182
1896
+ msgctxt "view-subscriber-enhanced-select"
1897
+ msgid "Please select new subscriber group."
1898
+ msgstr "Veuillez choisir un groupe d'abonnés."
1899
+
1900
+ #: ../classes/es-register.php:183
1901
+ msgctxt "view-subscriber-enhanced-select"
1902
+ msgid "Please select new status for subscribers"
1903
+ msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
1904
+
1905
+ #: ../classes/es-register.php:184
1906
+ msgctxt "view-subscriber-enhanced-select"
1907
+ msgid "Do you want to update subscribers group?"
1908
+ msgstr "Voulez-vous mettre à jour ce groupe?"
1909
+
1910
+ #: ../classes/es-register.php:185
1911
+ msgctxt "view-subscriber-enhanced-select"
1912
+ msgid "Do you want to update subscribers status?"
1913
+ msgstr "Voulez vous modifier le statut de ces abonnés?"
1914
+
1915
+ #: ../classes/es-register.php:186
1916
+ msgctxt "view-subscriber-enhanced-select"
1917
+ msgid ""
1918
+ "Please select only csv file. Please check official website for csv structure."
1919
+ "."
1920
+ msgstr ""
1921
+ "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
1922
+ "la structure du fichier csv."
1923
+
1924
+ #: ../classes/es-register.php:194
1925
+ msgctxt "compose-enhanced-select"
1926
+ msgid "Please enter the Email Subject."
1927
+ msgstr "Veuillez saisir le sujet de votre courriel."
1928
+
1929
+ #: ../classes/es-register.php:195
1930
+ msgctxt "compose-enhanced-select"
1931
+ msgid "Do you want to delete this record?"
1932
+ msgstr "Voulez-vous supprimer cet enregistrement?"
1933
+
1934
+ #: ../classes/es-register.php:203
1935
+ msgctxt "notification-enhanced-select"
1936
+ msgid "Please select subscribers group."
1937
+ msgstr "Veuillez choisir un groupe."
1938
+
1939
+ #: ../classes/es-register.php:204
1940
+ msgctxt "notification-enhanced-select"
1941
+ msgid "Please select notification mail subject. Use compose menu to create new."
1942
+ msgstr ""
1943
+ "Veuillez choisir le modèle de courriel. Utilisez le menu Modèles pour en "
1944
+ "créer un nouveau."
1945
+
1946
+ #: ../classes/es-register.php:205
1947
+ msgctxt "notification-enhanced-select"
1948
+ msgid "Please select notification status."
1949
+ msgstr "Veuillez sélectionner le statut de la notification."
1950
+
1951
+ #: ../classes/es-register.php:206
1952
+ msgctxt "notification-enhanced-select"
1953
+ msgid "Do you want to delete this record?"
1954
+ msgstr "Voulez-vous supprimer cet enregistrement?"
1955
+
1956
+ #: ../classes/es-register.php:214
1957
+ msgctxt "sendmail-enhanced-select"
1958
+ msgid "Please select your mail subject."
1959
+ msgstr "Veuillez choisir le sujet du courriel."
1960
+
1961
+ #: ../classes/es-register.php:215
1962
+ msgctxt "sendmail-enhanced-select"
1963
+ msgid "Please select your mail type."
1964
+ msgstr "Veuillez choisir le type d'envoi."
1965
+
1966
+ #: ../classes/es-register.php:216
1967
+ msgctxt "sendmail-enhanced-select"
1968
+ msgid ""
1969
+ "Have you double checked your selected group? If so, let's go ahead and send "
1970
+ "this."
1971
+ msgstr ""
1972
+ "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
1973
+ "envoyer."
1974
+
1975
+ #: ../classes/es-register.php:224
1976
+ msgctxt "sentmail-enhanced-select"
1977
+ msgid "Do you want to delete this record?"
1978
+ msgstr "Voulez-vous supprimer cet enregistrement?"
1979
+
1980
+ #: ../classes/es-register.php:225
1981
+ msgctxt "sentmail-enhanced-select"
1982
+ msgid "Do you want to delete all records except latest 10?"
1983
+ msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
1984
+
1985
+ #: ../classes/es-register.php:233
1986
+ msgctxt "cron-enhanced-select"
1987
+ msgid "Please select enter number of mails you want to send per hour/trigger."
1988
+ msgstr ""
1989
+ "Veuillez saisir le nombre de courriels que vous voulez envoyer par "
1990
+ "heure/envoi."
1991
+
1992
+ #: ../classes/es-register.php:234
1993
+ msgctxt "cron-enhanced-select"
1994
+ msgid "Please enter the mail count, only number."
1995
+ msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
1996
+
1997
+ #: ../classes/es-register.php:247
1998
+ msgctxt "widget-enhanced-select"
1999
+ msgid "Please enter email address"
2000
+ msgstr "Veuillez saisir une adresse e-mail"
2001
+
2002
+ #: ../classes/es-register.php:248
2003
+ msgctxt "widget-enhanced-select"
2004
+ msgid "Please provide a valid email address"
2005
+ msgstr "Veuillez saisir une adresse e-mail valide"
2006
+
2007
+ #: ../classes/es-register.php:249
2008
+ msgctxt "widget-enhanced-select"
2009
+ msgid "loading..."
2010
+ msgstr "envoi..."
2011
+
2012
+ #: ../classes/es-register.php:250
2013
+ msgctxt "widget-enhanced-select"
2014
+ msgid "Cannot create XMLHTTP instance"
2015
+ msgstr "Impossible de créer l'instance XMLHTTP"
2016
+
2017
+ #: ../classes/es-register.php:251
2018
+ msgctxt "widget-enhanced-select"
2019
+ msgid "Successfully Subscribed."
2020
+ msgstr "Mise à jour réussie."
2021
+
2022
+ #: ../classes/es-register.php:252
2023
+ msgctxt "widget-enhanced-select"
2024
+ msgid ""
2025
+ "Your subscription was successful! Within a few minutes, kindly check the "
2026
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2027
+ "mail in your mailbox, please check your spam folder."
2028
+ msgstr ""
2029
+ "Pour confirmer votre abonnement, consultez votre boîte de reception et "
2030
+ "cliquez sur le lien qui vous a été envoyé."
2031
+
2032
+ #: ../classes/es-register.php:253
2033
+ msgctxt "widget-enhanced-select"
2034
+ msgid "Email Address already exists!"
2035
+ msgstr "Cet adresse e-mail existe déjà !"
2036
+
2037
+ #: ../classes/es-register.php:254
2038
+ msgctxt "widget-enhanced-select"
2039
+ msgid "Oops.. Unexpected error occurred."
2040
+ msgstr "Oups.. une erreur inattendue s'est produite."
2041
+
2042
+ #: ../classes/es-register.php:255
2043
+ msgctxt "widget-enhanced-select"
2044
+ msgid "Invalid email address"
2045
+ msgstr "Adresse e-mail non valide"
2046
+
2047
+ #: ../classes/es-register.php:256
2048
+ msgctxt "widget-enhanced-select"
2049
+ msgid "Please try after some time"
2050
+ msgstr "Veuillez réessayer dans quelques instants"
2051
+
2052
+ #: ../classes/es-register.php:257
2053
+ msgctxt "widget-enhanced-select"
2054
+ msgid "There was a problem with the request"
2055
+ msgstr "Il y a eu un problème avec la requête"
2056
+
2057
+ #: ../classes/es-register.php:264
2058
+ msgctxt "widget-page-enhanced-select"
2059
+ msgid "Please enter email address"
2060
+ msgstr "Veuillez saisir une adresse e-mail"
2061
+
2062
+ #: ../classes/es-register.php:265
2063
+ msgctxt "widget-page-enhanced-select"
2064
+ msgid "Please provide a valid email address"
2065
+ msgstr "Veuillez saisir une adresse e-mail valide"
2066
+
2067
+ #: ../classes/es-register.php:266
2068
+ msgctxt "widget-page-enhanced-select"
2069
+ msgid "loading..."
2070
+ msgstr "chargement..."
2071
+
2072
+ #: ../classes/es-register.php:267
2073
+ msgctxt "widget-page-enhanced-select"
2074
+ msgid "Cannot create XMLHTTP instance"
2075
+ msgstr "Impossible de créer l'instance XMLHTTP"
2076
+
2077
+ #: ../classes/es-register.php:268
2078
+ msgctxt "widget-page-enhanced-select"
2079
+ msgid "Successfully Subscribed."
2080
+ msgstr "Abonnement réussi."
2081
+
2082
+ #: ../classes/es-register.php:269
2083
+ msgctxt "widget-page-enhanced-select"
2084
+ msgid ""
2085
+ "Your subscription was successful! Within a few minutes, kindly check the "
2086
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2087
+ "mail in your mailbox, please check your spam folder."
2088
+ msgstr ""
2089
+ "Pour confirmer votre abonnement, consultez votre boîte de reception et "
2090
+ "cliquez sur le lien qui vous a été envoyé."
2091
+
2092
+ #: ../classes/es-register.php:270
2093
+ msgctxt "widget-page-enhanced-select"
2094
+ msgid "Email Address already exists!"
2095
+ msgstr "Cette adresse existe déjà !"
2096
+
2097
+ #: ../classes/es-register.php:271
2098
+ msgctxt "widget-page-enhanced-select"
2099
+ msgid "Oops.. Unexpected error occurred."
2100
+ msgstr "Oups... Une erreur inattendue s'est produite."
2101
+
2102
+ #: ../classes/es-register.php:272
2103
+ msgctxt "widget-page-enhanced-select"
2104
+ msgid "Invalid email address"
2105
+ msgstr "Adresse e-mail non valide"
2106
+
2107
+ #: ../classes/es-register.php:273
2108
+ msgctxt "widget-page-enhanced-select"
2109
+ msgid "Please try after some time"
2110
+ msgstr "Veuillez réessayer plus tard"
2111
+
2112
+ #: ../classes/es-register.php:274
2113
+ msgctxt "widget-page-enhanced-select"
2114
+ msgid "There was a problem with the request"
2115
+ msgstr "Il y a eu un problème avec la requête"
2116
+
2117
+ #: ../classes/es-register.php:724
2118
+ msgid "is getting even better!"
2119
+ msgstr "s'améliore toujours!"
2120
+
2121
+ #: ../classes/es-register.php:725
2122
+ msgid "But I need you to"
2123
+ msgstr "Mais j'ai besoin de vous"
2124
+
2125
+ #: ../classes/es-register.php:725
2126
+ msgid "help me prioritize"
2127
+ msgstr "pour m'aider à choisir les priorités"
2128
+
2129
+ #: ../classes/es-register.php:725
2130
+ msgid "Please send your response today."
2131
+ msgstr "Merci d'envoyer votre réponse maintenant."
2132
+
2133
+ #: ../classes/es-register.php:732
2134
+ msgid "Here's how you use ES:"
2135
+ msgstr "Comment utilisez-vous Email Subscribers :"
2136
+
2137
+ #: ../classes/es-register.php:745
2138
+ msgid "Have "
2139
+ msgstr "J'ai"
2140
+
2141
+ #: ../classes/es-register.php:745
2142
+ msgid " Active Subscribers"
2143
+ msgstr " Abonnés activés"
2144
+
2145
+ #: ../classes/es-register.php:746
2146
+ msgid "Post "
2147
+ msgstr "J'écris"
2148
+
2149
+ #: ../classes/es-register.php:746
2150
+ msgid " blog per week"
2151
+ msgstr " articles par semaine"
2152
+
2153
+ #: ../classes/es-register.php:750
2154
+ msgid "Send emails via Cron"
2155
+ msgstr "Envoi d'e-mails via Cron"
2156
+
2157
+ #: ../classes/es-register.php:752
2158
+ msgid "Send emails Immediately"
2159
+ msgstr "Envoi d'e-mails immédiatement"
2160
+
2161
+ #: ../classes/es-register.php:779
2162
+ msgid "How soon do you want these new features?"
2163
+ msgstr "Quand désirez-vous ces nouvelles fonctionnalités?"
2164
+
2165
+ #: ../classes/es-register.php:783
2166
+ msgid "Beautiful Email Designs"
2167
+ msgstr "Superbes design d'e-mail "
2168
+
2169
+ #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
2170
+ #: register.php:794 ../classes/es-register.php:799
2171
+ msgid "Right now!"
2172
+ msgstr "Tout de suite!"
2173
+
2174
+ #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
2175
+ #: register.php:795 ../classes/es-register.php:800
2176
+ msgid "Soon"
2177
+ msgstr "Bientôt"
2178
+
2179
+ #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
2180
+ #: register.php:796 ../classes/es-register.php:801
2181
+ msgid "Later"
2182
+ msgstr "Plus tard"
2183
+
2184
+ #: ../classes/es-register.php:788
2185
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
2186
+ msgstr "Vérification de span, planification... (Meilleur réception d'e-mail)"
2187
+
2188
+ #: ../classes/es-register.php:793
2189
+ msgid "Discard Fake / Bouncing Emails"
2190
+ msgstr "Suppression des fakes / Message de non délivrance"
2191
+
2192
+ #: ../classes/es-register.php:798
2193
+ msgid "Advanced Reporting"
2194
+ msgstr "Rapport avancé"
2195
+
2196
+ #: ../classes/es-register.php:826
2197
+ msgid "Thank you!"
2198
+ msgstr "Merci!"
2199
+
2200
+ #: ../classes/es-register.php:827
2201
+ msgid "No issues, have a nice day!"
2202
+ msgstr "Aucune demande, passez une bonne journée!"
2203
+
2204
+ #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
2205
+ msgid "Email *"
2206
+ msgstr "E-mail *"
2207
+
2208
+ #: ../classes/es-register.php:1035
2209
+ msgid "Widget Title"
2210
+ msgstr "Titre du widget"
2211
+
2212
+ #: ../classes/es-register.php:1039
2213
+ msgid "Short description about subscription form"
2214
+ msgstr "Courte description de votre formulaire d'abonnement"
2215
+
2216
+ #: ../classes/es-register.php:1043
2217
+ msgid "Display Name Field"
2218
+ msgstr "Afficher le champ Nom"
2219
+
2220
+ #: ../classes/es-register.php:1050
2221
+ msgid "Subscriber Group"
2222
+ msgstr "Groupe d'abonnés"
languages/email-subscribers-hu_HU.mo CHANGED
Binary file
languages/email-subscribers-hu_HU.po CHANGED
@@ -1,1963 +1,2211 @@
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-23 09:25+0200\n"
7
- "Last-Translator: \n"
8
- "Language-Team: \n"
9
- "Language: hu\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 2.0.2\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Loco-Target-Locale: hu_HU\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 "Beállítások"
29
 
30
- #: classes/es-register.php:192
31
- msgctxt "compose-enhanced-select"
32
- msgid "Please enter the Email Subject."
33
- msgstr "Kérem írja be a levél tárgyát."
34
 
35
- #: classes/es-register.php:707
36
- msgid "is getting even better!"
37
- msgstr "még jobb lesz!"
38
 
39
- #: classes/es-register.php:708
40
- msgid "But I need you to"
41
- msgstr "De szükségem van arra, hogy"
 
 
42
 
43
- #: classes/es-register.php:708
44
- msgid "help me prioritize"
45
- msgstr "segítsen sorrendet kialakítani"
46
 
47
- #: classes/es-register.php:708
48
- msgid "Please send your response today."
49
- msgstr "kérem küldje a válaszát még ma!"
 
 
 
 
 
50
 
51
- #: classes/es-register.php:715
52
- msgid "Here's how you use ES:"
53
- msgstr "Így használd az ES-t:"
54
 
55
- #: classes/es-register.php:720
56
- msgid "Used Post Notifications more often than Newsletter"
57
- msgstr "Az új bejegyzést gyakrabban használta, mint a hírlevelet"
58
 
59
- #: classes/es-register.php:722
60
- msgid "Used Newsletter more often than Post Notifications"
61
- msgstr "A hírlevelet gyakrabban használta, mint a új bejegyzés értesítést"
 
 
62
 
63
- #: classes/es-register.php:724
64
- msgid "Used Post Notification &amp; Newsletter equally"
65
- msgstr "Használt új bejegyzés értesítő &amp; Hírlevél szintén"
66
 
67
- #: classes/es-register.php:728
68
- msgid "Have "
69
- msgstr "Van "
 
 
70
 
71
- #: classes/es-register.php:728
72
- msgid " Active Subscribers"
73
- msgstr " Aktív előfizető"
74
 
75
- #: classes/es-register.php:729
76
- msgid "Post "
77
- msgstr "Bejegyzés "
 
 
78
 
79
- #: classes/es-register.php:729
80
- msgid " blog per week"
81
- msgstr " blog hetente"
82
 
83
- #: classes/es-register.php:733
84
- msgid "Send mails via Cron"
85
- msgstr "Időzített levélküldés"
 
 
86
 
87
- #: classes/es-register.php:735
88
- msgid "Send mails Immediately"
89
- msgstr "Azonnali levélküldés"
90
 
91
- #: classes/es-register.php:745
92
- msgid "How soon do you want these new features?"
93
- msgstr "Mikor szeretnéd ezeket az új funkciókat?"
 
 
94
 
95
- #: classes/es-register.php:749
96
- msgid "Beautiful Email Designs"
97
- msgstr "Gyönyörű e-mail dizájn."
98
 
99
- #: classes/es-register.php:750 classes/es-register.php:755 classes/es-register.php:764
100
- #: classes/es-register.php:769
101
- msgid "Right now!"
102
- msgstr "Most!"
 
103
 
104
- #: classes/es-register.php:751 classes/es-register.php:756 classes/es-register.php:765
105
- #: classes/es-register.php:770
106
- msgid "Soon"
107
- msgstr "Hamarosan"
108
 
109
- #: classes/es-register.php:752 classes/es-register.php:757 classes/es-register.php:766
110
- #: classes/es-register.php:771
111
- msgid "Later"
112
- msgstr "Később"
113
 
114
- #: classes/es-register.php:754
115
- msgid "Spam Check, Scheduling... (Better Email Delivery)"
116
- msgstr "Levélszemét ellenőrzése. Folyamatban.... (még jobb célbatalálási arány)"
 
 
 
117
 
118
- #: classes/es-register.php:763
119
- msgid "Discard Fake / Bouncing Emails"
120
- msgstr "A hamisítá levelek elvetése / Visszautasított levelek"
121
 
122
- #: classes/es-register.php:768
123
- msgid "Advanced Reporting"
124
- msgstr "Részletesebb jelentések"
 
 
 
125
 
126
- #: classes/es-register.php:791
127
- msgid "Thank you!"
128
- msgstr "Köszönjük!"
 
 
 
129
 
130
- #: classes/es-register.php:792
131
- msgid "No issues, have a nice day!"
132
- msgstr "Semmi probléma a mai nap!"
 
 
133
 
134
- #: help/help.php:67
135
- #, c-format
136
  msgid ""
137
- "Like Email Subscribers? If yes, then consider %s to support further developments."
138
- msgstr "Ha teszik a bővítmény, kérem %s hogy tovább fejleszthessük. "
 
139
 
140
- #: help/help.php:67
141
- msgid "donating to us"
142
- msgstr "Adományozás"
143
 
144
- #: help/help.php:139
145
- msgid "What are the keywords available in the Post Notification template?"
146
- msgstr "Mely kulcsszavak elérhetők az új bejegyzés értesítő sablonjához? "
 
 
147
 
148
- #: help/help.php:178
149
- msgid "CSS Help"
150
- msgstr "CSS segítség"
 
 
151
 
152
- #: settings/settings-edit.php:23
153
- msgid "Admin"
154
- msgstr "Adminisztrátor"
155
 
156
- #: settings/settings-edit.php:24
157
- msgid "Signup Confirmation"
158
- msgstr "Bejelentkezés visszaigazolás"
159
 
160
- #: settings/settings-edit.php:26
161
- msgid "Cron"
162
- msgstr "Időzítés"
 
 
163
 
164
- #: settings/settings-edit.php:228
165
  msgid ""
166
- "Enter the content for the subscriber welcome email whenever a user's email is "
167
- "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
168
- "(Keyword: ###NAME###, ###GROUP###, ###LINK###)"
 
169
  msgstr ""
170
- "Az új előfizetőt üdvözló levél tartalma. Minden esetben megkapja, akár Double Opt "
171
- "In, akár Single Opt In. (Sablon kulcsszavak: ###NAME###, ###GROUP###, ###LINK###)"
172
 
173
- #: subscribers/view-subscriber-export.php:62
174
- msgid "All Subscribers"
175
- msgstr "Minden előfizető"
 
 
 
 
176
 
177
- #: subscribers/view-subscriber-export.php:68
178
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
179
- msgstr "Aktív előfizető, ahol a stáusz: visszagazolt vagy nincs double opt-in"
 
 
 
 
180
 
181
- #: subscribers/view-subscriber-export.php:74
182
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
 
 
 
 
183
  msgstr ""
184
- "Nem aktív előfizetők, ahol a státusz nem visszaigazolt, vagy pedig leiratkozott. "
185
 
186
- #: subscribers/view-subscriber-export.php:79
187
- msgid "4"
188
- msgstr "4"
189
 
190
- #: subscribers/view-subscriber-export.php:85
191
- msgid "5"
192
- msgstr "5"
193
 
194
- #: subscribers/view-subscriber-show.php:252
195
- #, c-format
196
- msgid "Total Subscribers: %s"
197
- msgstr "Az összes előfizető száma: %s"
198
 
199
- #: subscribers/view-subscriber-show.php:254
200
- #, c-format
201
- msgid "Active Subscribers: %s"
202
- msgstr "Az aktív előfizetők száma: %s"
 
 
 
203
 
204
- #: subscribers/view-subscriber-show.php:342
205
- msgid "1 to 500 emails"
206
- msgstr "1-től 500 e-mail"
207
 
208
- #: subscribers/view-subscriber-show.php:343
209
- msgid "501 to 1000"
210
- msgstr "501-1000 e-mail"
211
 
212
- #: subscribers/view-subscriber-show.php:344
213
- msgid "1001 to 1500"
214
- msgstr "1001-1500 e-mail"
 
215
 
216
- #: subscribers/view-subscriber-show.php:345
217
- msgid "1501 to 2000"
218
- msgstr "1501- 2000"
219
 
220
- #: subscribers/view-subscriber-show.php:346
221
- msgid "2001 to 4000"
222
- msgstr "2001-4000"
223
 
224
- #: subscribers/view-subscriber-show.php:347
225
- msgid "4001 to 6000"
226
- msgstr "4001-6000"
227
 
228
- #: subscribers/view-subscriber-show.php:348
229
- msgid "6001 to 10000"
230
- msgstr "6001-10 000"
 
 
 
231
 
232
- #: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
233
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
234
- msgstr "A regisztráció időpontja: <br>(Y-M-D H:I:S)"
235
 
236
- #: base/es-defined.php:32
237
  msgid ""
238
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
239
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
240
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A huge "
241
- "thank you from Icegram in advance!"
242
  msgstr ""
243
- "Ha tetszett az <strong>Email Subscribers bővítmény </strong>, kérem adjon "
244
- "értékelést:<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
245
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> . "
246
- "Köszönjük előre is. "
247
 
248
- #: classes/es-common.php:13
249
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
250
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Visszaigazolt</span>"
251
 
252
- #: classes/es-common.php:16
253
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
254
- msgstr "<span style=\"color:#FF0000\">Nincs visszaigazolva</span>"
255
 
256
- #: classes/es-common.php:19
257
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
258
- msgstr "<span style=\"color:#999900\">Leiratkozott</span>"
 
 
259
 
260
- #: classes/es-common.php:22
261
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
262
- msgstr "<span style=\"color:#0000FF\">Megerősítés nélkül</span>"
263
 
264
- #: classes/es-common.php:25
265
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
266
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Megtekintett</span>"
267
 
268
- #: classes/es-common.php:28
269
- msgid "<span style=\"color:#999900;\">Nodata</span>"
270
- msgstr "<span style=\"color:#999900;\">Nincs visszajelzés</span>"
271
 
272
- #: classes/es-common.php:31
273
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
274
- msgstr "<span style=\"color:#FF0000\">Letiltva</span>"
275
 
276
- #: classes/es-common.php:34
277
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
278
- msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
279
 
280
- #: classes/es-common.php:37
281
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
282
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Kiküldve</span>"
283
 
284
- #: classes/es-common.php:40
285
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
286
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
287
 
288
- #: classes/es-common.php:43
289
- msgid "<span style=\"color:#993399;\">Immediately</span>"
290
- msgstr "<span style=\"color:#993399;\">Azonnal</span>"
291
 
292
- #: classes/es-loadwidget.php:28 classes/es-register.php:961
293
- #: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
294
- msgid "Name"
295
- msgstr "Név"
296
 
297
- #: classes/es-loadwidget.php:33 classes/es-register.php:966
298
- msgid "Email *"
299
- msgstr "E-mail*"
300
 
301
- #: classes/es-loadwidget.php:38 classes/es-register.php:971
302
- msgid "Subscribe"
303
- msgstr "Feliratkozás"
 
 
 
 
 
 
 
 
304
 
305
- #: classes/es-register.php:140 classes/es-register.php:141 classes/es-register.php:707
306
- msgid "Email Subscribers"
307
- msgstr "Email Subscribers"
308
 
309
- #: classes/es-register.php:143 classes/es-register.php:144
310
- #: subscribers/view-subscriber-show.php:241
311
- msgid "Subscribers"
312
- msgstr "Feliratkozottak"
313
 
314
- #: classes/es-register.php:146 classes/es-register.php:147 compose/compose-show.php:64
315
- msgid "Compose"
316
- msgstr "E-mail szerkesztése"
317
 
318
- #: classes/es-register.php:149 classes/es-register.php:150
319
- #: notification/notification-show.php:52
320
- msgid "Post Notifications"
321
- msgstr "Új bejegyzés értesítés"
322
 
323
- #: classes/es-register.php:152 classes/es-register.php:153 sendmail/sendmail.php:93
324
- #: settings/settings-edit.php:318
325
- msgid "Newsletters"
326
- msgstr "Hírlevél"
327
 
328
- #: classes/es-register.php:158 classes/es-register.php:159
329
- #: sentmail/sentmail-show.php:96
330
- msgid "Reports"
331
- msgstr "Jelentések"
 
332
 
333
- #: classes/es-register.php:161
334
- msgid "Help & Info"
335
- msgstr "Segítség & Információ"
336
 
337
- #: classes/es-register.php:162
338
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
339
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Segítség"
340
 
341
- #: classes/es-register.php:173
342
- msgctxt "view-subscriber-enhanced-select"
343
- msgid "Please enter subscriber email address."
344
- msgstr "Adja meg az előfizető e-mail címét."
345
 
346
- #: classes/es-register.php:174
347
- msgctxt "view-subscriber-enhanced-select"
348
- msgid "Please select subscriber email status."
349
- msgstr "Válassza ki az előfizető e-mail státuszát."
350
 
351
- #: classes/es-register.php:175
352
- msgctxt "view-subscriber-enhanced-select"
353
- msgid "Please select or create group for this subscriber."
354
- msgstr "Törölni akarja ezt az adatot?"
355
 
356
- #: classes/es-register.php:176
357
- msgctxt "view-subscriber-enhanced-select"
358
- msgid "Do you want to delete this record?"
359
- msgstr "Biztos törölni szeretnéd?"
360
 
361
- #: classes/es-register.php:177
362
- msgctxt "view-subscriber-enhanced-select"
363
- msgid "Please select the bulk action."
364
- msgstr "Kérem válassza a tömeges műveleteket!"
365
 
366
- #: classes/es-register.php:178
367
- msgctxt "view-subscriber-enhanced-select"
368
- msgid "Are you sure you want to delete selected records?"
369
- msgstr "Biztosan törlöd ezeket az adatokat? "
370
 
371
- #: classes/es-register.php:179
372
- msgctxt "view-subscriber-enhanced-select"
373
- msgid ""
374
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
375
- "subscriber current status to 'Unconfirmed'."
376
  msgstr ""
377
- "Valóban újra akarja küldeni az e-mail visszaigazoló levelet? \vHa igen, akkor az "
378
- "előfizető ismét 'nem igazolt' státuszú lesz. "
379
 
380
- #: classes/es-register.php:180
381
- msgctxt "view-subscriber-enhanced-select"
382
- msgid "Please select new subscriber group."
383
- msgstr "KÉrem válassza ki az előfizetői csoportot"
384
 
385
- #: classes/es-register.php:181
386
- msgctxt "view-subscriber-enhanced-select"
387
- msgid "Please select new status for subscribers"
388
- msgstr "Add meg az előfizetők új státuszát!"
389
 
390
- #: classes/es-register.php:182
391
- msgctxt "view-subscriber-enhanced-select"
392
- msgid "Do you want to update subscribers group?"
393
- msgstr "Frissíteni akarja az előfizetői csoportokat? "
394
-
395
- #: classes/es-register.php:183
396
- msgctxt "view-subscriber-enhanced-select"
397
- msgid "Do you want to update subscribers status?"
398
- msgstr "Frissítsük a feliratkozók státuszát?"
399
-
400
- #: classes/es-register.php:184
401
- msgctxt "view-subscriber-enhanced-select"
402
- msgid "Please select only csv file. Please check official website for csv structure.."
403
- msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
404
 
405
- #: classes/es-register.php:193
406
- msgctxt "compose-enhanced-select"
407
- msgid "Do you want to delete this record?"
408
- msgstr "Valóban ki akarja törölni ezt az adatot? "
409
 
410
- #: classes/es-register.php:201
411
- msgctxt "notification-enhanced-select"
412
- msgid "Please select subscribers group."
413
- msgstr "Kérem válassza ki az előfizetői csoportot!"
414
 
415
- #: classes/es-register.php:202
416
- msgctxt "notification-enhanced-select"
417
- msgid "Please select notification mail subject. Use compose menu to create new."
418
- msgstr "KÉrem válassza ki az értesítőlevél tárgyát!"
419
 
420
- #: classes/es-register.php:203
421
- msgctxt "notification-enhanced-select"
422
- msgid "Please select notification status."
423
- msgstr "Válassza ki az értesítőlevél státuszát!"
424
 
425
- #: classes/es-register.php:204
426
- msgctxt "notification-enhanced-select"
427
- msgid "Do you want to delete this record?"
428
- msgstr "Valóban törölni akarja ezt az adatot? "
429
 
430
- #: classes/es-register.php:212
431
- msgctxt "sendmail-enhanced-select"
432
- msgid "Please select your mail subject."
433
- msgstr "Kérem töltse ki a levél tárgyát!"
434
 
435
- #: classes/es-register.php:213
436
- msgctxt "sendmail-enhanced-select"
437
- msgid "Please select your mail type."
438
- msgstr "Az e-mail típusa (időzített vagy azonnali)"
439
 
440
- #: classes/es-register.php:214
441
- msgctxt "sendmail-enhanced-select"
442
  msgid ""
443
- "Have you double checked your selected group? If so, let's go ahead and send this."
 
444
  msgstr ""
445
- "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
446
- "rendben, akkor klikkelj megint."
447
 
448
- #: classes/es-register.php:222
449
- msgctxt "sentmail-enhanced-select"
450
- msgid "Do you want to delete this record?"
451
- msgstr "Szeretné törölni ezt az adatot? "
452
 
453
- #: classes/es-register.php:223
454
- msgctxt "sentmail-enhanced-select"
455
- msgid "Do you want to delete all records except latest 10?"
456
- msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
457
 
458
- #: classes/es-register.php:231
459
- msgctxt "cron-enhanced-select"
460
- msgid "Please select enter number of mails you want to send per hour/trigger."
461
  msgstr ""
462
- "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként küldeni?"
463
 
464
- #: classes/es-register.php:232
465
- msgctxt "cron-enhanced-select"
466
- msgid "Please enter the mail count, only number."
467
- msgstr "Kérem egy számot adjon meg, hány e-mail? "
 
468
 
469
- #: classes/es-register.php:245
470
- msgctxt "widget-enhanced-select"
471
- msgid "Please enter email address"
472
- msgstr "Kérjük adja meg az e-mail címét"
473
 
474
- #: classes/es-register.php:246
475
- msgctxt "widget-enhanced-select"
476
- msgid "Please provide a valid email address"
477
- msgstr "Kérem adjon meg egy érvényes e-mail címet!"
 
478
 
479
- #: classes/es-register.php:247
480
- msgctxt "widget-enhanced-select"
481
- msgid "loading..."
482
- msgstr "betöltés..."
483
 
484
- #: classes/es-register.php:248
485
- msgctxt "widget-enhanced-select"
486
- msgid "Cannot create XMLHTTP instance"
487
- msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
488
 
489
- #: classes/es-register.php:249
490
- msgctxt "widget-enhanced-select"
491
- msgid "Successfully Subscribed."
492
- msgstr "Sikeres feliratkozás"
493
 
494
- #: classes/es-register.php:250
495
- msgctxt "widget-enhanced-select"
496
- msgid ""
497
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
498
- "your mailbox and confirm your subscription. If you can't see the mail in your "
499
- "mailbox, please check your spam folder."
500
  msgstr ""
501
- "Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. Ha nem "
502
- "érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor sincs meg, "
503
- "akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail címet adtál meg. "
504
 
505
- #: classes/es-register.php:251
506
- msgctxt "widget-enhanced-select"
507
- msgid "Email Address already exists!"
508
- msgstr "Ez az e-mail cím már létezik"
509
 
510
- #: classes/es-register.php:252
511
- msgctxt "widget-enhanced-select"
512
- msgid "Oops.. Unexpected error occurred."
513
- msgstr "Váratlan hiba"
 
514
 
515
- #: classes/es-register.php:253
516
- msgctxt "widget-enhanced-select"
517
- msgid "Invalid email address"
518
- msgstr "Hibás e-mail cím"
 
519
 
520
- #: classes/es-register.php:254
521
- msgctxt "widget-enhanced-select"
522
- msgid "Please try after some time"
523
- msgstr "Kérem próbálja meg kicsit később!"
524
 
525
- #: classes/es-register.php:255
526
- msgctxt "widget-enhanced-select"
527
- msgid "There was a problem with the request"
528
- msgstr "Sajnos valami hiba történt."
529
 
530
- #: classes/es-register.php:262
531
- msgctxt "widget-page-enhanced-select"
532
- msgid "Please enter email address"
533
- msgstr "KÉrem adja meg az e-mail címét!"
534
 
535
- #: classes/es-register.php:263
536
- msgctxt "widget-page-enhanced-select"
537
- msgid "Please provide a valid email address"
538
- msgstr "Kérem adjon meg egy érvényes e-mail címet."
539
 
540
- #: classes/es-register.php:264
541
- msgctxt "widget-page-enhanced-select"
542
- msgid "loading..."
543
- msgstr "Kis türelmet..."
544
 
545
- #: classes/es-register.php:265
546
- msgctxt "widget-page-enhanced-select"
547
- msgid "Cannot create XMLHTTP instance"
548
- msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
549
 
550
- #: classes/es-register.php:266
551
- msgctxt "widget-page-enhanced-select"
552
- msgid "Successfully Subscribed."
553
- msgstr "Sikeres feliratkozás."
554
 
555
- #: classes/es-register.php:267
556
- msgctxt "widget-page-enhanced-select"
557
- msgid ""
558
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
559
- "your mailbox and confirm your subscription. If you can't see the mail in your "
560
- "mailbox, please check your spam folder."
561
  msgstr ""
562
- "Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. Ha nem "
563
- "érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor sincs meg, "
564
- "akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail címet adtál meg. "
565
 
566
- #: classes/es-register.php:268
567
- msgctxt "widget-page-enhanced-select"
568
- msgid "Email Address already exists!"
569
- msgstr "Ilyen e-mail cím már létezik. "
570
 
571
- #: classes/es-register.php:269
572
- msgctxt "widget-page-enhanced-select"
573
- msgid "Oops.. Unexpected error occurred."
574
- msgstr "Váratlan hiba lépett fel"
575
 
576
- #: classes/es-register.php:270
577
- msgctxt "widget-page-enhanced-select"
578
- msgid "Invalid email address"
579
- msgstr "Hibás e-mail cím."
580
 
581
- #: classes/es-register.php:271
582
- msgctxt "widget-page-enhanced-select"
583
- msgid "Please try after some time"
584
- msgstr "Kérem próbálja meg később. "
585
 
586
- #: classes/es-register.php:272
587
- msgctxt "widget-page-enhanced-select"
588
- msgid "There was a problem with the request"
589
- msgstr "Valami hiba történt. "
590
 
591
- #: classes/es-register.php:1009
592
- msgid "Widget Title"
593
- msgstr "Widget Cím"
594
 
595
- #: classes/es-register.php:1013
596
- msgid "Short description about subscription form"
597
- msgstr "A feliratkozó űrlap rövid leírása"
598
 
599
- #: classes/es-register.php:1017
600
- msgid "Display Name Field"
601
- msgstr "Feliratkozásnál kérjük a nevet is? "
 
 
602
 
603
- #: classes/es-register.php:1019 settings/settings-edit.php:140
604
- #: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
605
- msgid "YES"
606
- msgstr "Igen"
607
 
608
- #: classes/es-register.php:1020 settings/settings-edit.php:141
609
- #: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
610
- msgid "NO"
611
- msgstr "Nem"
612
 
613
- #: classes/es-register.php:1024
614
- msgid "Subscriber Group"
615
- msgstr "Előfizetői csoport"
616
 
617
- #: compose/compose-add.php:31 compose/compose-edit.php:48
618
- msgid "Please enter template heading."
619
- msgstr "Mi legyen a sablon címe? "
 
 
 
 
 
 
 
 
620
 
621
- #: compose/compose-add.php:43
622
- msgid "Template successfully created. "
623
- msgstr "Sikeresen létrehoztad a sablont"
624
 
625
- #: compose/compose-add.php:74
626
- msgid "Add new Email"
627
- msgstr "Új e-mail hozzáadása"
 
 
 
 
 
628
 
629
- #: compose/compose-add.php:75 compose/compose-edit.php:86
630
- #: compose/compose-preview.php:28 compose/compose-show.php:66
631
- #: notification/notification-add.php:113 notification/notification-edit.php:124
632
- #: notification/notification-show.php:54 sendmail/sendmail.php:94
633
- #: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
634
- #: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
635
- #: subscribers/view-subscriber-add.php:114 subscribers/view-subscriber-edit.php:113
636
- #: subscribers/view-subscriber-export.php:38
637
- #: subscribers/view-subscriber-import.php:146 subscribers/view-subscriber-show.php:246
638
- #: subscribers/view-subscriber-sync.php:92
639
- msgid "Help"
640
- msgstr "Segítség"
641
 
642
- #: compose/compose-add.php:78 compose/compose-edit.php:89
643
- msgid "Select your Mail Template"
644
- msgstr "Választ ki az e-mail sablont!"
 
645
 
646
- #: compose/compose-add.php:80 compose/compose-edit.php:91
647
- msgid "Newsletter"
648
- msgstr "Hírlevél"
 
649
 
650
- #: compose/compose-add.php:81 compose/compose-edit.php:92
651
- msgid "Post Notification"
652
- msgstr "Értesítés az új bejegyzésről"
 
653
 
654
- #: compose/compose-add.php:85 compose/compose-edit.php:96
655
- msgid "Enter your Email Subject"
656
- msgstr "Írd be az e-mail tárgyát!"
 
657
 
658
- #: compose/compose-add.php:87 compose/compose-edit.php:98
659
- msgid "Keyword: ###POSTTITLE###"
660
- msgstr "Kulcsszó: ###POSTTITLE###"
 
661
 
662
- #: compose/compose-add.php:89 compose/compose-edit.php:100
663
- msgid "Enter Content for your Email"
664
- msgstr "Írd be az e-mail tartalmát!"
 
665
 
666
- #: compose/compose-add.php:93 compose/compose-edit.php:104
667
- #, c-format
668
- msgid ""
669
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
670
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
671
- "###POSTFULL###"
672
- msgstr ""
673
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
674
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
675
- "###POSTFULL###"
676
 
677
- #: compose/compose-add.php:93 compose/compose-edit.php:104
678
- msgid "Available Keywords"
679
- msgstr "Választható kulcsszavak"
 
680
 
681
- #: compose/compose-add.php:97 compose/compose-edit.php:108
682
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
683
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
684
- #: subscribers/view-subscriber-show.php:362 subscribers/view-subscriber-show.php:375
685
- msgid "Status"
686
- msgstr "Státusz"
687
 
688
- #: compose/compose-add.php:99 compose/compose-edit.php:110
689
- msgid "Published"
690
- msgstr "Közzétéve"
 
691
 
692
- #: compose/compose-add.php:101 compose/compose-edit.php:112
693
- msgid "Please select your mail status"
694
- msgstr "Válaszd ki az e-mail státuszát"
 
695
 
696
- #: compose/compose-add.php:105 compose/compose-edit.php:117
697
- #: notification/notification-add.php:253 notification/notification-edit.php:290
698
- #: subscribers/view-subscriber-edit.php:191
699
  msgid "Save"
700
  msgstr "Mentés"
701
 
702
- #: compose/compose-edit.php:20 compose/compose-preview.php:18
703
- #: compose/compose-show.php:33 notification/notification-edit.php:20
704
- #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
705
- #: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
706
  msgid "Oops, selected details does not exists."
707
  msgstr "A részleteket add meg kérlek"
708
 
709
- #: compose/compose-edit.php:61
710
- msgid "Template successfully updated. "
711
- msgstr "A sablont sikeresen frissítetted. "
 
712
 
713
- #: compose/compose-edit.php:84
714
- msgid "Edit Email"
715
- msgstr "E-mail szerkesztése"
 
716
 
717
- #: compose/compose-edit.php:85 compose/compose-show.php:65
718
- #: notification/notification-edit.php:123 notification/notification-show.php:53
719
  msgid "Add New"
720
  msgstr "Új hozzáadása"
721
 
722
- #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
723
- msgid "Preview Mail"
724
- msgstr "E-mail megtekintés"
725
-
726
- #: compose/compose-preview.php:40 compose/compose-show.php:101
727
- #: notification/notification-show.php:100 subscribers/view-subscriber-show.php:404
728
- msgid "Edit"
729
- msgstr "Szerkesztés"
730
-
731
- #: compose/compose-show.php:14 sendmail/sendmail.php:18
732
- #: subscribers/view-subscriber-show.php:17
733
- msgid "Click Here"
734
- msgstr "Klikk ide"
735
-
736
- #: compose/compose-show.php:47 notification/notification-show.php:35
737
- #: sentmail/sentmail-show.php:36
738
- msgid "Selected record deleted."
739
- msgstr "Sikeresen törölve"
740
 
741
- #: compose/compose-show.php:77 compose/compose-show.php:84
742
- #: notification/notification-show.php:68 notification/notification-show.php:76
743
  msgid "Email Subject"
744
  msgstr "Tárgy"
745
 
746
- #: compose/compose-show.php:78 compose/compose-show.php:85
747
- msgid "Email Template"
748
- msgstr "E-mail sablon"
 
749
 
750
- #: compose/compose-show.php:79 compose/compose-show.php:86
751
- msgid "Actions"
752
- msgstr "Tevékenységek"
 
 
 
 
 
 
 
 
 
 
 
753
 
754
- #: compose/compose-show.php:102 notification/notification-show.php:103
755
- #: subscribers/view-subscriber-show.php:287 subscribers/view-subscriber-show.php:409
 
756
  msgid "Delete"
757
  msgstr "Törlés"
758
 
759
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
760
- #: sentmail/sentmail-show.php:124
761
- msgid "Preview"
762
- msgstr "Előnézet"
763
-
764
- #: compose/compose-show.php:111 notification/notification-show.php:143
765
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
766
- #: subscribers/view-subscriber-show.php:432
767
  msgid "No records available."
768
  msgstr "Nincs ilyen adat."
769
 
770
- #: export/export-email-address.php:45 export/export-email-address.php:49
771
- msgid "Unexpected url submit has been detected"
772
- msgstr "Nem az URL"
773
-
774
- #: help/help.php:47
775
- msgid "Welcome to Email Subscribers!"
776
- msgstr "Üdvözöljük!"
777
-
778
- #: help/help.php:48
779
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
780
- msgstr "Köszönjük, hogy telepítette a bővítményünket és reméljük elégedett lesz. "
781
 
782
- #: help/help.php:52
783
- msgid "For more help and tips..."
784
- msgstr "Még több segítség..."
785
 
786
- #: help/help.php:99
787
- msgid "Frequently Asked Questions"
788
- msgstr "Gyakran Ismételt Kérdések"
789
 
790
- #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
791
- #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
792
- #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
793
- #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
794
- #: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
795
- #, c-format
796
- msgid "%s"
797
- msgstr "%s"
798
 
799
- #: help/help.php:118
800
- msgid "How to Add Subscription box to website?"
801
- msgstr "Hogyan lehet a feliratkozó űrlapot elhelyezni a honlapon?"
 
802
 
803
- #: help/help.php:127
804
- msgid "General Plugin Settings"
805
- msgstr "Általános beállítások"
806
 
807
- #: help/help.php:127
808
  msgid ""
809
- " (How to modify the existing email content like Confirmation email, Welcome email, "
810
- "Admin emails)"
811
  msgstr ""
812
- "(Hogyan módosíthatod a létező e-mail tartalmát pl. visszaigazoló e-mail, üdvözlő e-"
813
- "mail, értesítő e-mail. )"
814
 
815
- #: help/help.php:130
816
- msgid "How to Import or Export Email Addresses?"
817
- msgstr "A feliratkozók importálása és exportálása"
818
 
819
- #: help/help.php:133
820
- msgid "How to change/update/translate any texts from Email Subscribers?"
821
- msgstr ""
822
- "Hogyan tudsz szerkeszteni, fordítani vagy új szöveget feltölteni a feliratkozóknak "
823
- "küldendő e-mailbe?"
824
 
825
- #: help/help.php:136
826
- msgid "How to add Unsubscribe link in emails?"
827
- msgstr "Hogyan tudod az e-mailbe a leiratkozás linket elhelyezni?"
 
 
 
 
828
 
829
- #: help/help.php:142
830
- msgid "How to Compose and Send Newsletter Emails?"
831
- msgstr "Hogyan tudsz hírlevelet szerkeszteni és küldeni? "
832
 
833
- #: help/help.php:145
834
- msgid ""
835
- "How to Configure and Send Post Notification emails to subscribers when new posts "
836
- "are published?"
837
- msgstr ""
838
- "Hogyan tudod beállítani az admin értesítő leveleket, amikor új bejegyzésről küldünk "
839
- "értesítést? "
840
 
841
- #: help/help.php:148
842
- msgid "How to Send a sample new post notification email to testgroup/myself?"
843
- msgstr "Hogyan tudsz egy próba e-mailt küldeni a tesztelőknek vagy magadnak? "
844
 
845
- #: help/help.php:151
846
- msgid "How to check Sent emails reports?"
847
- msgstr "Hogyan tudod az elküldött e-mailekről szóló jelentést megnézni? "
848
 
849
- #: help/help.php:154
850
- msgid "How to Add/Update Existing Subscribers Group?"
851
- msgstr "Hogyan adjunk hozzá vagy módosítsunk a z előfizetői csoportokon?"
 
 
852
 
853
- #: help/help.php:157
854
- msgid "Subscribers are not receiving Emails?"
855
- msgstr "Az előfizetőid nem kapták meg az e-mailc? "
856
 
857
- #: help/help.php:160
858
- msgid "How to show subscribe form inside a popup?"
859
- msgstr "Hogyan lehet a feliratkozú űrlapot egy előugró ablakba helyezni? "
860
 
861
- #: help/help.php:163
862
- msgid "How to use Rainmaker’s form in Email Subscribers?"
863
- msgstr "Hogyan tudod a Rainmaker űrlapját használni a feliratkozáshoz?"
864
 
865
- #: help/help.php:166
866
- msgid "How to Schedule Cron Mails?"
867
- msgstr "Hogyan tudod az időzítést beállítani?"
868
 
869
- #: help/help.php:169
870
- msgid "How to Schedule Cron Emails in cPanel?"
871
- msgstr "Hogyan tudod az időzítést a cPanelen beállítani"
872
 
873
- #: help/help.php:172
874
- msgid "How to Schedule Cron Emails in Parallels Plesk?"
875
- msgstr "Hogyan tudod az időzítést beállítani a Plesk-en ? "
 
 
 
876
 
877
- #: help/help.php:175
878
- msgid "What to do if Hosting doesn’t support Cron Jobs?"
879
- msgstr "Mit tehetsz, ha a tárhelyszolgáltató nem engedélyezi az időzítéseket (Cron)"
880
 
881
- #: help/help.php:180
882
- msgid "Commonly Asked Questions"
883
- msgstr "GY.I.K."
 
 
884
 
885
- #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
886
- #: job/es-unsubscribe.php:61
887
- msgid "Oops.. We are getting some technical error. Please try again or contact admin."
888
- msgstr ""
889
- "Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
890
- "szakembert."
891
 
892
- #: job/es-optin.php:61
893
- msgid "This email address has already been confirmed."
894
- msgstr "Ilyen e-mail cím már szerepel."
895
 
896
- #: notification/notification-add.php:33
897
- msgid "Please select subscribers group."
898
- msgstr "Kérem válassza ki az előfizetői csoportot"
899
 
900
- #: notification/notification-add.php:39
901
- msgid "Please select notification status."
902
- msgstr "Kérem válassza ki az értesítés státuszát."
903
 
904
- #: notification/notification-add.php:45 notification/notification-edit.php:61
905
- msgid "Please select notification mail subject. Use compose menu to create new."
 
 
906
  msgstr ""
907
- "Az értesítő levél tárgya. Az e-mail szerkesztése menüpontban tud újat létrehozni. "
 
908
 
909
- #: notification/notification-add.php:51 notification/notification-edit.php:67
910
- msgid "Please select post categories."
911
- msgstr "Kérem válassza ki, mely kategóriák érintettek."
 
 
 
 
912
 
913
- #: notification/notification-add.php:71
914
- msgid "Notification successfully created. "
915
- msgstr "Az értesítőlevél sikeresen elkészült."
 
916
 
917
- #: notification/notification-add.php:112
918
- msgid "Add Notification"
919
- msgstr "Új bejegyzés-értesítő hozzáadása"
 
920
 
921
- #: notification/notification-add.php:120
922
- msgid "Select Subscribers Group"
923
- msgstr "Válaszd ki az előfizetői csoportot"
924
 
925
- #: notification/notification-add.php:124 notification/notification-add.php:148
926
- #: notification/notification-edit.php:135 notification/notification-edit.php:168
927
- #: sendmail/sendmail.php:110 sendmail/sendmail.php:137 sendmail/sendmail.php:151
928
- #: subscribers/view-subscriber-add.php:162 subscribers/view-subscriber-edit.php:162
929
- #: subscribers/view-subscriber-import.php:190 subscribers/view-subscriber-sync.php:119
930
- msgid "Select"
931
- msgstr "Választ"
932
 
933
- #: notification/notification-add.php:142 notification/notification-edit.php:162
934
- msgid "Select Notification Email Subject"
935
- msgstr "Mi legyen az értesítő levél tárgya? "
936
 
937
- #: notification/notification-add.php:143 notification/notification-edit.php:163
938
- msgid "(Use compose menu to create new)"
939
- msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
 
 
 
 
940
 
941
- #: notification/notification-add.php:167 notification/notification-edit.php:190
942
- msgid "Select Post Categories"
943
- msgstr "Válszd ki a bejegyzés kategóriáját"
 
 
944
 
945
- #: notification/notification-add.php:195 notification/notification-edit.php:225
946
- msgid "Check All"
947
- msgstr "Mindegyik kijelölése"
948
 
949
- #: notification/notification-add.php:196 notification/notification-edit.php:226
950
- msgid "Uncheck All"
951
- msgstr "Kijelölések visszavonása"
952
 
953
- #: notification/notification-add.php:202 notification/notification-edit.php:233
954
- msgid "Select your Custom Post Type"
955
- msgstr "Válaszd ki e bejegyzés típusát"
956
 
957
- #: notification/notification-add.php:203 notification/notification-edit.php:234
958
- msgid "(Optional)"
959
- msgstr "(választható)"
960
 
961
- #: notification/notification-add.php:232 notification/notification-edit.php:268
962
- msgid "No Custom Post Types Available"
963
- msgstr "Nincsen egyéni bejegyzés típus"
 
 
964
 
965
- #: notification/notification-add.php:239 notification/notification-edit.php:275
966
- msgid "Select Notification Status when a new post is published"
967
- msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
968
 
969
- #: notification/notification-add.php:243 notification/notification-edit.php:279
970
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
971
- msgid "Send email immediately"
972
- msgstr "Levéküldés azonnal"
 
973
 
974
- #: notification/notification-add.php:244 notification/notification-edit.php:280
975
- #: notification/notification-show.php:132
976
- msgid "Add to cron and send email via cron job"
977
- msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
 
978
 
979
- #: notification/notification-add.php:245 notification/notification-edit.php:281
980
- msgid "Disable email notification"
981
- msgstr "Az új bejegyzések értesítésének letiltása"
 
 
982
 
983
- #: notification/notification-edit.php:49
984
- msgid "Please select subscribers group"
985
- msgstr "Válaszd ki az előfizetői csoportot"
986
 
987
- #: notification/notification-edit.php:55
988
- msgid "Please select notification status"
989
- msgstr "Mit tegyünk az új bejegyzés értesítővel? "
990
 
991
- #: notification/notification-edit.php:89
992
- msgid "Notification successfully updated. "
993
- msgstr "Értesítés sikeresen módosítva"
 
994
 
995
- #: notification/notification-edit.php:122
996
- msgid "Edit Notification"
997
- msgstr "Új bejegyzés értesítés szerkesztése"
998
 
999
- #: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:289
1000
- msgid "Update Subscribers Group"
1001
- msgstr "Előfizetői csoport frissítése"
1002
 
1003
- #: notification/notification-show.php:57
1004
  msgid ""
1005
- "Use this to setup and send notification emails to your subscribers when a new post "
1006
- "is published in your blog."
1007
- msgstr ""
1008
- "Új bejegyzés értesítő: amikor az új bejegyzés elkészül, itt tudod beállítani, "
1009
- "milyen értesítést küldjön a feliratkozottaknak. "
1010
-
1011
- #: notification/notification-show.php:69 notification/notification-show.php:77
1012
- msgid "Subscribers Group"
1013
- msgstr "Előfieztői csoportok"
1014
-
1015
- #: notification/notification-show.php:70 notification/notification-show.php:78
1016
- msgid "Post Categories / Custom Post Types"
1017
- msgstr "Bejegyzés kategóriája / egyedi bejegyzés típus"
1018
-
1019
- #: notification/notification-show.php:71 notification/notification-show.php:79
1020
- msgid "Notification Status"
1021
- msgstr "Értesítés sttusza"
1022
-
1023
- #: sendmail/sendmail.php:40
1024
- msgid "Please select your mail subject."
1025
- msgstr "Mi legyen a levél tárgya? "
1026
-
1027
- #: sendmail/sendmail.php:46
1028
- msgid "Please select your mail type."
1029
- msgstr "Az e-mail kiküldés típusaa"
1030
-
1031
- #: sendmail/sendmail.php:52
1032
- msgid "Please select your group."
1033
- msgstr "Válaszd ki az előfizetői csoportot"
1034
 
1035
- #: sendmail/sendmail.php:59
1036
- msgid "Mail sent successfully. "
1037
- msgstr "Sikeres kiküldés"
1038
 
1039
- #: sendmail/sendmail.php:63
1040
- msgid "Click here to check Statistics"
1041
- msgstr "Itt megnézheted a statisztikákat"
1042
 
1043
- #: sendmail/sendmail.php:69
1044
- msgid "Oops.. We are getting some error. mail not sending."
1045
- msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
1046
 
1047
- #: sendmail/sendmail.php:97
1048
- msgid "Use this to send newsletter emails to your subscribers."
1049
- msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
1050
 
1051
- #: sendmail/sendmail.php:105
1052
- msgid "Select Email Subject from available list"
1053
- msgstr "Válassza ki az e-mail tárgyát az alábbi listából!"
1054
 
1055
- #: sendmail/sendmail.php:132
1056
- msgid "Select Email Type"
1057
- msgstr "Válassza ki az e-mail típusát!"
1058
 
1059
- #: sendmail/sendmail.php:139
1060
- msgid "Send email via cron job"
1061
- msgstr "Időzített e-mail küldés"
1062
 
1063
- #: sendmail/sendmail.php:146
1064
- msgid "Select Subscribers group to Send Email"
1065
- msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1066
 
1067
- #: sendmail/sendmail.php:178
1068
- msgid "Recipients : 0 "
1069
- msgstr "Címzettek: 0"
1070
 
1071
- #: sendmail/sendmail.php:180
1072
- #, c-format
1073
- msgid "Recipients : %s"
1074
- msgstr "Címzettek: %s"
1075
 
1076
- #: sendmail/sendmail.php:183
1077
- msgid ""
1078
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1079
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click on "
1080
- "Help for more information."
1081
- msgstr ""
1082
- "<br><br><strong>Több mint 100 címzettnek küldünk levelet<br>Szerintünk ne most "
1083
- "egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints a súgóra "
1084
- "további segítségért!"
1085
 
1086
- #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1087
- msgid "Send Email"
1088
- msgstr "Hírlevél küldése"
1089
 
1090
- #: sendmail/sendmail.php:199
1091
- msgid "Reset"
1092
- msgstr "Alapbeállítások visszaállítása"
1093
 
1094
- #: sentmail/deliverreport-show.php:14
1095
- msgid "Oops.. Unexpected error occurred. Please try again."
1096
- msgstr "Hiba történt, ismét próbáld meg. "
1097
 
1098
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1099
  msgid " &lt;&lt; "
1100
  msgstr " &lt;&lt; "
1101
 
1102
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1103
  msgid " &gt;&gt; "
1104
  msgstr " &gt;&gt; "
1105
 
1106
- #: sentmail/deliverreport-show.php:60
1107
- msgid "Delivery Report"
1108
- msgstr "Kézbesítési jelentés"
1109
-
1110
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1111
- #: subscribers/view-subscriber-export.php:45 subscribers/view-subscriber-export.php:53
1112
- msgid "Sno"
1113
- msgstr "Sno"
1114
-
1115
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1116
- msgid "Email"
1117
- msgstr "Email címed"
1118
-
1119
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1120
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1121
- msgid "Sent"
1122
- msgstr "Elküldve"
1123
-
1124
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1125
- msgid "Sent Date"
1126
- msgstr "Kiküldés dátuma"
1127
-
1128
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1129
- msgid "Viewed Status"
1130
- msgstr "Megnyitás státusza"
1131
-
1132
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1133
- msgid "Viewed Date"
1134
- msgstr "Megnyitás dátuma"
1135
-
1136
- #: sentmail/sentmail-preview.php:42
1137
- msgid "Back"
1138
- msgstr "Előző"
1139
-
1140
- #: sentmail/sentmail-show.php:43
1141
- msgid "Successfully deleted all reports except latest 10."
1142
- msgstr "Minden jelentést törölték, kivéve az utolsó tizet. "
1143
 
1144
- #: sentmail/sentmail-show.php:100
1145
  msgid "It will show reports for all Newsletters & Post Notification emails sent."
1146
  msgstr ""
1147
- "Ez mindent jelentést megmutat a kiküldött hírlevelekről és bejegyzés-értesítő "
1148
- "levelekről"
1149
 
1150
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1151
  msgid "View Reports"
1152
  msgstr "Jelentés megtekintése"
1153
 
1154
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
 
 
 
 
 
1155
  msgid "Type"
1156
  msgstr "Típus"
1157
 
1158
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
 
 
 
 
 
 
 
 
 
 
 
 
1159
  msgid "Start Date"
1160
  msgstr "Indulás Dátuma"
1161
 
1162
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1163
  msgid "End Date"
1164
  msgstr "Zárás dátuma"
1165
 
1166
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1167
  msgid "Total"
1168
  msgstr "Teljes"
1169
 
1170
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1171
- #: subscribers/view-subscriber-export.php:48 subscribers/view-subscriber-export.php:56
1172
- #: subscribers/view-subscriber-show.php:365 subscribers/view-subscriber-show.php:378
 
1173
  msgid "Action"
1174
  msgstr "Action"
1175
 
1176
- #: sentmail/sentmail-show.php:193
1177
  msgid "Optimize Table & Delete Records"
1178
  msgstr "Az előfizetői adatbázis optimalizálása, előfizetők törlése"
1179
 
1180
- #: sentmail/sentmail-show.php:202
1181
  msgid ""
1182
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1183
- "delete all reports except latest 10."
1184
  msgstr ""
1185
- "Kattintson a <strong>Táblázat optimalizálása és adatok törlése</strong> gombra, "
1186
- "hogy az utolsó 10 kivételével törölje az eddigi jelentéseket. "
1187
-
1188
- #: settings/setting-sync.php:16
1189
- msgid "Table sync completed successfully."
1190
- msgstr "Sikeresen szinkronizáltuk a táblákat"
1191
 
1192
- #: settings/setting-sync.php:29
1193
- msgid "Sync plugin tables"
1194
- msgstr "Táblák szinkronizálása"
1195
 
1196
- #: settings/setting-sync.php:33
1197
- msgid "Click to sync tables"
1198
- msgstr "Ide kattintva elkezdődik a táblák szinkronizálása"
1199
 
1200
- #: settings/settings-edit.php:25
1201
- msgid "User Roles"
1202
- msgstr "Felhasználói jogosultságok"
 
 
1203
 
1204
- #: settings/settings-edit.php:64
1205
- msgid "Save Settings"
1206
- msgstr "Beállítások mentése"
1207
 
1208
- #: settings/settings-edit.php:76
1209
- msgid "Sender of Notifications"
1210
- msgstr "Az értesítések küldőjw"
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."
1216
- msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
1217
 
1218
- #: settings/settings-edit.php:87
1219
- msgid "Mail Type"
1220
- msgstr "Az e-mail típusa"
1221
 
1222
- #: settings/settings-edit.php:88
1223
  msgid ""
1224
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 "
1225
- "is to send mails with PHP method mail()."
1226
- msgstr ""
1227
- "Az 1. és 2. lehetőség a WordPress beépített levélküldőjét használja, a 3. és 4. "
1228
- "lehetőség pedig a PHP mail funkcióját."
1229
-
1230
- #: settings/settings-edit.php:92
1231
- msgid "1. WP HTML MAIL"
1232
- msgstr "1. WordPress HTML e-mail"
1233
 
1234
- #: settings/settings-edit.php:93
1235
- msgid "2. WP PLAINTEXT MAIL"
1236
- msgstr "2. WordPress e-mail csak szöveg"
1237
 
1238
- #: settings/settings-edit.php:94
1239
- msgid "3. PHP HTML MAIL"
1240
- msgstr "3. PHP HTML e-mail"
1241
 
1242
- #: settings/settings-edit.php:95
1243
- msgid "4. PHP PLAINTEXT MAIL"
1244
- msgstr "4. PHP csak szöveges e-mail"
1245
 
1246
- #: settings/settings-edit.php:102
1247
- msgid "Opt-In Option"
1248
- msgstr "Opt-in kiválasztása"
 
1249
 
1250
- #: settings/settings-edit.php:103
1251
- msgid ""
1252
- "Double Opt In means subscribers need to confirm their email address by an "
1253
- "activation link sent them on a activation email message.<br />Single Opt In means "
1254
- "subscribers do not need to confirm their email address."
1255
- msgstr ""
1256
- "Kettős opt-in azt jelenti, hogy a feliratkozó egy e-mail cím megerősítő levelet "
1257
- "kap. Az -emailben lévő hivatkozásra kattintva visszaigazolja az e-mail címét, és "
1258
- "utána fogunk csak hírlevelet vagy értesítő levelet küldeni számára."
1259
 
1260
- #: settings/settings-edit.php:107
1261
- msgid "Double Opt In"
1262
- msgstr "Kettős opt-in"
1263
 
1264
- #: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
1265
- #: subscribers/view-subscriber-edit.php:150 subscribers/view-subscriber-import.php:178
1266
- #: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
1267
- msgid "Single Opt In"
1268
- msgstr "Visszaigazolás nélkül"
1269
 
1270
- #: settings/settings-edit.php:114
1271
- msgid "Image Size"
1272
- msgstr "Képméret"
 
 
 
1273
 
1274
- #: settings/settings-edit.php:115
1275
- msgid ""
1276
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
1277
- msgstr "Az értesítőlevélben a ###POTIMAGE### képméretének kiválasztása "
 
1278
 
1279
- #: settings/settings-edit.php:119
1280
- msgid "Full Size"
1281
- msgstr "Teljes méretű kép"
 
 
 
1282
 
1283
- #: settings/settings-edit.php:120
1284
- msgid "Medium Size"
1285
- msgstr "Közepes méretű kép"
1286
 
1287
- #: settings/settings-edit.php:121
1288
- msgid "Thumbnail"
1289
- msgstr "Bélyegkép"
1290
 
1291
- #: settings/settings-edit.php:127
1292
- msgid "Admin Email Addresses"
1293
- msgstr "Az adminisztrátor e-mail címei"
1294
 
1295
- #: settings/settings-edit.php:128
1296
- msgid ""
1297
- "Enter the admin email addresses that should receive notifications (separated by "
1298
- "comma)."
1299
- msgstr ""
1300
- "Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a levelek "
1301
- "küldéséről"
1302
 
1303
- #: settings/settings-edit.php:134
1304
- msgid "Notify admin when a new subscriber signs up"
1305
- msgstr "Értesítse az adminisztrátort, ha új elfőizető regisztrál"
 
 
1306
 
1307
- #: settings/settings-edit.php:135
1308
- msgid ""
1309
- "To send admin email notifications for the new subscriber. This option must be set "
1310
- "to YES."
1311
- msgstr ""
1312
- "Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, állítsuk "
1313
- "\"IGEN\"-re. "
1314
 
1315
- #: settings/settings-edit.php:147
1316
- msgid "Admin Email Subject when a new subscriber signs up"
1317
- msgstr "Az új előfizetőről értesítő adminisztrátornak szóló levél tárgya."
 
 
1318
 
1319
- #: settings/settings-edit.php:148
1320
- msgid ""
1321
- "Enter the subject for the admin email which will be sent whenever a new email is "
1322
- "added and confirmed."
1323
- msgstr ""
1324
- "Adja meg az új előfizetőről értesítő, adminisztrátornak címzett levél tárgyát. "
1325
 
1326
- #: settings/settings-edit.php:154
1327
- msgid "Admin Email Content when a new subscriber signs up"
1328
- msgstr "Az új előfizetőről értesítő levél tartalma."
 
1329
 
1330
- #: settings/settings-edit.php:155
1331
- msgid ""
1332
- "Enter the email content for the admin email which will be sent whenever a new email "
1333
- "is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1334
- msgstr ""
1335
- "Gépelje be az új előfizetőről értesítő levél tartalmát (Rövidítések: ###NAME###, "
1336
- "###EMAIL###)"
1337
 
1338
- #: settings/settings-edit.php:162
1339
- msgid "Sent Report Subject"
1340
- msgstr "A levél kiküldés értesítőlevelének tárgya"
 
1341
 
1342
- #: settings/settings-edit.php:163
1343
- msgid "Enter the subject for the sent email report. It will be emailed to Admin."
1344
- msgstr "Az e-mail kiküldéséről szóló jelentés tartalma"
1345
 
1346
- #: settings/settings-edit.php:169
1347
- msgid "Sent Report Content"
1348
- msgstr "Az elküldött levelek értesítőlevelének tartalma"
 
1349
 
1350
- #: settings/settings-edit.php:170
1351
- msgid ""
1352
- "Enter the content for the sent email report. It will be emailed to Admin. (Keyword: "
1353
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1354
  msgstr ""
1355
- "Géplje be a tartalmát az e-mail kiküldéséről szóló értesítésnek (Rövidítések: "
1356
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1357
 
1358
- #: settings/settings-edit.php:179
1359
- msgid "Double Opt In Email Subject (Confirmation Email)"
1360
- msgstr "E-mail cím megerősítést kérő levél tárgya"
 
1361
 
1362
- #: settings/settings-edit.php:180
1363
- msgid ""
1364
- "Enter the subject for the confirmation email to be sent for Double Opt In whenever "
1365
- "a user signs up."
1366
- msgstr "Kérem adja meg a tárgyát az e-mail cím megerősítését kérő levélnek!"
1367
 
1368
- #: settings/settings-edit.php:186
1369
- msgid "Double Opt In Email Content (Confirmation Email)"
1370
- msgstr "Az e-mail cím megerősítést kérő levél tartalma"
1371
 
1372
- #: settings/settings-edit.php:187
1373
- msgid ""
1374
- "Enter the content for the confirmation email to be sent for Double Opt In whenever "
1375
- "a user signs up. (Keyword: ###NAME###, ###LINK###)"
1376
- msgstr "Kérem adja meg az e-mail megerősítő üzenet tartalmát!"
1377
 
1378
- #: settings/settings-edit.php:193
1379
- msgid "Double Opt In Confirmation Link"
1380
- msgstr "E-mail visszaigazoló linke"
1381
 
1382
- #: settings/settings-edit.php:194
1383
- msgid "It is a readonly field and you are advised not to modify it."
1384
- msgstr "Csak olvasható mező"
1385
 
1386
- #: settings/settings-edit.php:200
1387
- msgid ""
1388
- "Text to display after an email address is successfully subscribed from Double Opt "
1389
- "In (confirmation) Email"
1390
- msgstr "Ez az üzenet jelenik meg, miután az e-mailt sikeresen visszaigazolták. "
1391
 
1392
- #: settings/settings-edit.php:201
1393
- msgid ""
1394
- "This text will be displayed once user clicks on email confirmation link from the "
1395
- "Double Opt In (confirmation) Email."
1396
- msgstr ""
1397
- "Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló linkre "
1398
- "kattint"
1399
 
1400
- #: settings/settings-edit.php:208
1401
- msgid "Subscriber Welcome Email"
1402
- msgstr "Az előfizetőt üdvözlő e-mail"
 
1403
 
1404
- #: settings/settings-edit.php:209
1405
- msgid ""
1406
- "To send welcome email to subscriber after successful signup. This option must be "
1407
- "set to YES."
1408
- msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
1409
 
1410
- #: settings/settings-edit.php:220
1411
- msgid "Subscriber Welcome Email Subject"
1412
- msgstr "Az üdvözlő levél tárgya"
1413
 
1414
- #: settings/settings-edit.php:221
1415
- msgid ""
1416
- "Enter the subject for the subscriber welcome email. This will be sent whenever a "
1417
- "user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1418
- "successfully."
1419
- msgstr ""
1420
- "Adja meg a tárgyát az új előfizetőt üdvözlő levélnek. Ezt a levelet küldjük ki, "
1421
- "miután visszaigzolta az e-mail címét, illetve anélkül is, (ha nincs kettős opt-in)"
1422
 
1423
- #: settings/settings-edit.php:227
1424
- msgid "Subscriber Welcome Email Content"
1425
- msgstr "Az új feliratkozót üdvözlő e-mail tartalma"
1426
 
1427
- #: settings/settings-edit.php:236
1428
- msgid "Unsubscribe Link"
1429
- msgstr "Leiratkozó link"
1430
 
1431
- #: settings/settings-edit.php:237
1432
- msgid ""
1433
- "The unsubscribe link gets added automatically to all emails that are sent from this "
1434
- "plugin. It is a readonly field and you are advised not to modify it."
1435
- msgstr "A leiratkozó linket automatikusan a levélhez tesszük. Ne változtassa meg!"
1436
 
1437
- #: settings/settings-edit.php:243
1438
- msgid "Unsubscribe Text in Email"
1439
- msgstr "A leiratkozó link szövete"
1440
 
1441
- #: settings/settings-edit.php:244
1442
- msgid ""
1443
- "Enter the text for the unsubscribe link. This text is added with unsubscribe link "
1444
- "in the emails. (Keyword: ###LINK###)"
1445
- msgstr ""
1446
- "A leiratkozó link szövege. Ezt a szöveget adjuk a leiratkozó linkhez. (rövidítés: "
1447
- "###LINK###)"
1448
 
1449
- #: settings/settings-edit.php:250
1450
- msgid "Text to display after an email address is unsubscribed"
1451
- msgstr "A leiratkozás után megjelenő szöveg."
1452
 
1453
- #: settings/settings-edit.php:251
1454
- msgid "This text will be displayed once user clicks on unsubscribe link."
1455
- msgstr "Ezt a szöveget írjuk ki, ha valaki leiratkozik listáról"
1456
 
1457
- #: settings/settings-edit.php:258
1458
- msgid "Error in the Confirmation Link"
1459
- msgstr "Az e-mailt visszaigazoló link hibás."
1460
 
1461
- #: settings/settings-edit.php:259
1462
- msgid ""
1463
- "Default message to display if there is any issue while clicking on confirmation "
1464
- "link from the Double Opt In (confirmation) Emails."
1465
- msgstr ""
1466
- "Ezt a hibaüzenetet írjuk ki, ha bármi miatt nem fogadjuk el a visszaigazoló linkre "
1467
- "kattintást. "
1468
 
1469
- #: settings/settings-edit.php:265
1470
- msgid "Error in the Unsubscribe Link"
1471
- msgstr "A leriratkozó link hibás."
1472
 
1473
- #: settings/settings-edit.php:266
1474
- msgid ""
1475
- "Default message to display if there is any issue while clicking on unsubscribe link "
1476
- "from the Emails."
1477
- msgstr ""
1478
- "Ezt az üzenetet írjuk ki, ha valamiért nem tudjuk a leiratkozást megvalósítani"
1479
 
1480
- #: settings/settings-edit.php:276
1481
- msgid "Select user roles who can access following menus. Only Admin can change this."
1482
- msgstr ""
1483
- "Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a menük "
1484
- "kezelésére."
1485
 
1486
- #: settings/settings-edit.php:282
1487
- msgid "Subscribers Menu"
1488
- msgstr "Előfizetők"
1489
 
1490
- #: settings/settings-edit.php:286 settings/settings-edit.php:298
1491
- #: settings/settings-edit.php:310 settings/settings-edit.php:322
1492
- #: settings/settings-edit.php:334
1493
- msgid "Administrator Only"
1494
- msgstr "Csak adminisztrátor"
1495
 
1496
- #: settings/settings-edit.php:287 settings/settings-edit.php:299
1497
- #: settings/settings-edit.php:311 settings/settings-edit.php:323
1498
- #: settings/settings-edit.php:335
1499
- msgid "Administrator/Editor"
1500
- msgstr "Adminisztrátor/Szerkesztő"
1501
 
1502
- #: settings/settings-edit.php:288 settings/settings-edit.php:300
1503
- #: settings/settings-edit.php:312 settings/settings-edit.php:324
1504
- #: settings/settings-edit.php:336
1505
- msgid "Administrator/Editor/Author/Contributor"
1506
- msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1507
 
1508
- #: settings/settings-edit.php:294
1509
- msgid "Compose Menu"
1510
- msgstr "Szerkesztés"
 
1511
 
1512
- #: settings/settings-edit.php:306
1513
- msgid "Post Notifications Menu"
1514
- msgstr "Új bejegyzésről értesítés"
1515
-
1516
- #: settings/settings-edit.php:330
1517
- msgid "Reports Menu"
1518
- msgstr "Jelentések"
1519
-
1520
- #: settings/settings-edit.php:345
1521
- msgid "Cron job URL"
1522
- msgstr "Időzítés URL-je"
1523
-
1524
- #: settings/settings-edit.php:346
1525
- msgid ""
1526
- "This is your Cron Job URL. It is a readonly field and you are advised not to modify "
1527
- "it."
1528
- msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1529
 
1530
- #: settings/settings-edit.php:355
1531
- msgid "Email Count"
1532
- msgstr "E-mail számláló."
1533
 
1534
- #: settings/settings-edit.php:356
1535
- msgid "Number of emails that you want to trigger per hour."
1536
- msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
 
1537
 
1538
- #: settings/settings-edit.php:361
1539
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
1540
- msgstr ""
1541
- "(A tárhelyszolgáltató által beállított limitnél kevesebbet. Általában 50 e-mail "
1542
- "óránként bele szokott férni)"
1543
 
1544
- #: settings/settings-edit.php:366
1545
- msgid "Admin Report"
1546
- msgstr "Adminisztrátori jelentés"
1547
 
1548
- #: settings/settings-edit.php:367
1549
- msgid ""
1550
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
1551
- "###DATE###, ###SUBJECT###, ###COUNT###)"
1552
- msgstr ""
1553
- "Értesítsük az adminisztrátort, ha az időzítés elindult. (rövidítések: : ###DATE###, "
1554
- "###SUBJECT###, ###COUNT###)"
1555
 
1556
- #: settings/settings-edit.php:377
1557
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
1558
- 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=\"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
 
1593
- #: settings/settings-edit.php:495
1594
- msgid "Please enter sender of notifications from name."
1595
- msgstr "Az értesítőlevél feladójának neve"
1596
-
1597
- #: settings/settings-edit.php:500
1598
- msgid "Please enter sender of notifications from email."
1599
- msgstr "Az értesítőlevél levél feladójának e-mail címe"
1600
 
1601
- #: settings/settings-edit.php:544
1602
- msgid "Please enter valid mail count."
1603
- msgstr "Kérem, hogy egy számot írjon be!"
1604
 
1605
- #: settings/settings-edit.php:557
1606
- msgid "Settings Saved."
1607
- msgstr "Sikeres mentés"
1608
 
1609
- #: settings/settings-edit.php:560
1610
- msgid "Oops, unable to update."
1611
- msgstr "Nem sikerült menteni. "
1612
 
1613
- #: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
 
1614
  msgid "Please enter subscriber email address."
1615
  msgstr "Írd be az előfizető e-mail címét!"
1616
 
1617
- #: subscribers/view-subscriber-add.php:49
1618
  msgid "Please select or create your group for this email."
1619
  msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
1620
 
1621
- #: subscribers/view-subscriber-add.php:56
1622
  msgid ""
1623
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1624
- "group name."
1625
  msgstr ""
1626
- "HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,|=_+\\\"]"
 
1627
 
1628
- #: subscribers/view-subscriber-add.php:66
1629
  msgid "Subscriber has been saved."
1630
  msgstr "Feliratkozót mentettem."
1631
 
1632
- #: subscribers/view-subscriber-add.php:68
1633
  msgid "Subscriber already exists."
1634
  msgstr "Ilyen címmel már feliratkoztak"
1635
 
1636
- #: subscribers/view-subscriber-add.php:71
1637
  msgid "Invalid Email."
1638
  msgstr "Hibás e-mail cím"
1639
 
1640
- #: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
1641
- #: subscribers/view-subscriber-export.php:35
1642
- #: subscribers/view-subscriber-import.php:143 subscribers/view-subscriber-show.php:242
1643
- #: subscribers/view-subscriber-sync.php:89
1644
- msgid "Add New Subscriber"
1645
- msgstr "Új előfizető hozzáadása"
1646
-
1647
- #: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
1648
- #: subscribers/view-subscriber-export.php:36
1649
- #: subscribers/view-subscriber-import.php:210 subscribers/view-subscriber-show.php:243
1650
- #: subscribers/view-subscriber-sync.php:90
1651
- msgid "Import"
1652
- msgstr "Importálás"
1653
-
1654
- #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
1655
- #: subscribers/view-subscriber-import.php:144 subscribers/view-subscriber-show.php:244
1656
- #: subscribers/view-subscriber-sync.php:91
1657
- msgid "Export"
1658
- msgstr "Exportálás"
1659
-
1660
- #: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
1661
- #: subscribers/view-subscriber-export.php:37
1662
- #: subscribers/view-subscriber-import.php:145 subscribers/view-subscriber-show.php:245
1663
- #: subscribers/view-subscriber-sync.php:143
1664
- msgid "Sync"
1665
- msgstr "Szinkronizálás"
1666
-
1667
- #: subscribers/view-subscriber-add.php:123
1668
  msgid "Enter Subscriber's Full name"
1669
  msgstr "Írd be az előfizető nevét!"
1670
 
1671
- #: subscribers/view-subscriber-add.php:133
1672
  msgid "Enter Subscriber's Email Address"
1673
  msgstr "Írd be az előfizető e-mail címét!"
1674
 
1675
- #: subscribers/view-subscriber-add.php:143
1676
  msgid "Select Subscriber's Status"
1677
  msgstr "Előfizető státuszának kiválasztása"
1678
 
1679
- #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1680
- #: subscribers/view-subscriber-import.php:175 subscribers/view-subscriber-show.php:309
1681
- #: subscribers/view-subscriber-show.php:336
1682
- msgid "Confirmed"
1683
- msgstr "Megerősítve"
1684
-
1685
- #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1686
- #: subscribers/view-subscriber-import.php:176 subscribers/view-subscriber-show.php:310
1687
- #: subscribers/view-subscriber-show.php:337
1688
- msgid "Unconfirmed"
1689
- msgstr "Nem megerősített"
1690
-
1691
- #: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
1692
- #: subscribers/view-subscriber-import.php:177 subscribers/view-subscriber-show.php:311
1693
- #: subscribers/view-subscriber-show.php:338
1694
- msgid "Unsubscribed"
1695
- msgstr "Leiratkozva"
1696
-
1697
- #: subscribers/view-subscriber-add.php:158
1698
  msgid "Select (or) Create Group for Subscriber"
1699
  msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
1700
 
1701
- #: subscribers/view-subscriber-add.php:174 subscribers/view-subscriber-import.php:202
1702
- msgid "(or)"
1703
- msgstr "(vagy)"
1704
-
1705
- #: subscribers/view-subscriber-add.php:183
1706
  msgid "Add Subscriber"
1707
  msgstr "Új előfizető hozzáadása"
1708
 
1709
- #: subscribers/view-subscriber-edit.php:64
1710
  msgid "Error: Special characters are not allowed in the group name."
1711
  msgstr "HIBA: csak betű és szám legyen a csoport nevében"
1712
 
1713
- #: subscribers/view-subscriber-edit.php:74
1714
  msgid "Subscriber details updated."
1715
  msgstr "Az előfizető adatainak mentése"
1716
 
1717
- #: subscribers/view-subscriber-edit.php:76
1718
  msgid "Subscriber already exists for this group."
1719
  msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
1720
 
1721
- #: subscribers/view-subscriber-edit.php:108
1722
  msgid "Edit Subscriber"
1723
  msgstr "Előfizetők szerkesztése"
1724
 
1725
- #: subscribers/view-subscriber-edit.php:122
1726
  msgid "Subscriber's Full Name"
1727
  msgstr "Az előfizető teljes neve"
1728
 
1729
- #: subscribers/view-subscriber-edit.php:132
1730
  msgid "Subscriber's Email Address"
1731
  msgstr "A feliratkozó e-mail címe"
1732
 
1733
- #: subscribers/view-subscriber-edit.php:142
1734
  msgid "Update Subscriber's Status"
1735
  msgstr "Előfizető státuszának mentése"
1736
 
1737
- #: subscribers/view-subscriber-edit.php:157
1738
  msgid "Update Subscriber's Group"
1739
  msgstr "Az előfizetői csoport mentése"
1740
 
1741
- #: subscribers/view-subscriber-export.php:34
1742
- msgid "Export Email Addresses"
1743
- msgstr "E-mail címek exportálása"
1744
 
1745
- #: subscribers/view-subscriber-export.php:46 subscribers/view-subscriber-export.php:54
1746
- msgid "Type of List to Export"
1747
- msgstr "Milyen típusú fájlba exportáljunk? "
1748
 
1749
- #: subscribers/view-subscriber-export.php:47 subscribers/view-subscriber-export.php:55
1750
- msgid "Total Emails Count"
1751
- msgstr "Összes e-mail"
1752
 
1753
- #: subscribers/view-subscriber-export.php:61
1754
- msgid "1"
1755
- msgstr "1"
1756
 
1757
- #: subscribers/view-subscriber-export.php:64 subscribers/view-subscriber-export.php:70
1758
- #: subscribers/view-subscriber-export.php:76 subscribers/view-subscriber-export.php:82
1759
- #: subscribers/view-subscriber-export.php:88
1760
- msgid "Click to Export in CSV"
1761
- msgstr "CSV fájl exportálása"
1762
 
1763
- #: subscribers/view-subscriber-export.php:67
1764
- msgid "2"
1765
- msgstr "2"
1766
 
1767
- #: subscribers/view-subscriber-export.php:73
1768
- msgid "3"
1769
- msgstr "3"
1770
 
1771
- #: subscribers/view-subscriber-export.php:80
1772
- msgid "WordPress Registered Users"
1773
- msgstr "Regisztrált felhasználó"
1774
 
1775
- #: subscribers/view-subscriber-export.php:86
1776
- msgid "Commented Authors"
1777
- msgstr "Hozzászóló felhasználó"
1778
 
1779
- #: subscribers/view-subscriber-import.php:44
1780
- msgid ""
1781
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1782
- "Group name."
1783
- msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
1784
 
1785
- #: subscribers/view-subscriber-import.php:92
1786
- msgid "email imported."
1787
- msgstr "Az e-maileket sikeresen importáltuk"
1788
 
1789
- #: subscribers/view-subscriber-import.php:93
1790
- msgid "email already exists."
1791
- msgstr "Már létező e-mail cím"
1792
 
1793
- #: subscribers/view-subscriber-import.php:94
1794
- msgid "email are invalid."
1795
- msgstr "Érvénytelen az e-mail cím"
1796
 
1797
- #: subscribers/view-subscriber-import.php:97
1798
- #: subscribers/view-subscriber-import.php:126
1799
- msgid "Click here"
1800
- msgstr "Kattintás ide"
1801
 
1802
- #: subscribers/view-subscriber-import.php:97
1803
- #: subscribers/view-subscriber-import.php:126
1804
- msgid " to view details."
1805
- msgstr "a részletek megtekintése"
1806
 
1807
- #: subscribers/view-subscriber-import.php:105
1808
- msgid "File Upload Failed."
1809
- msgstr "Nem sikerült az importálás"
 
1810
 
1811
- #: subscribers/view-subscriber-import.php:142
1812
- msgid "Import Email Addresses"
1813
- msgstr "E-mail címek importálása"
1814
 
1815
- #: subscribers/view-subscriber-import.php:155
1816
- msgid "Select CSV file"
1817
- msgstr "CSV fájl kiválasztása"
1818
 
1819
- #: subscribers/view-subscriber-import.php:157
1820
- msgid "Check CSV structure "
1821
- msgstr "A CSV fájl struktúrájának ellenőrzése"
1822
 
1823
- #: subscribers/view-subscriber-import.php:158
1824
- msgid "from here"
1825
- msgstr "Inne"
 
 
 
 
 
1826
 
1827
- #: subscribers/view-subscriber-import.php:169
1828
- msgid "Select Subscribers Email Status"
1829
- msgstr "Válaszd ki az előfizetők státuszát"
1830
 
1831
- #: subscribers/view-subscriber-import.php:185
1832
- msgid "Select (or) Create Group for Subscribers"
1833
- msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
1834
 
1835
- #: subscribers/view-subscriber-show.php:45
1836
- msgid "Selected details does not exists."
1837
- msgstr "A kiválasztottak nincsenek meg"
1838
 
1839
- #: subscribers/view-subscriber-show.php:56 subscribers/view-subscriber-show.php:95
1840
- msgid "Record deleted."
1841
- msgstr "Törölve"
 
1842
 
1843
- #: subscribers/view-subscriber-show.php:67
1844
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1845
- msgstr ""
1846
- "Ha szeretnél visszagiazoló levelet küldeni, a Beállítások menüben az Opt-in "
1847
- "beállítást \"kettős opt-in\" - re kell változtatni."
 
1848
 
1849
- #: subscribers/view-subscriber-show.php:75 subscribers/view-subscriber-show.php:134
1850
- msgid "Confirmation emails Resent Successfully."
1851
- msgstr "A visszaigazolást kérő levelet ismét kiküldtük."
1852
 
1853
- #: subscribers/view-subscriber-show.php:100 subscribers/view-subscriber-show.php:139
1854
- #: subscribers/view-subscriber-show.php:177 subscribers/view-subscriber-show.php:216
1855
- msgid "No record was selected."
1856
- msgstr "Nem választottál ki egyetlen adatot sem"
 
 
 
 
 
1857
 
1858
- #: subscribers/view-subscriber-show.php:115
1859
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1860
- msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
1861
 
1862
- #: subscribers/view-subscriber-show.php:163
1863
- msgid "Subscribers Group updated."
1864
- msgstr "A feliratkozók csoportját frissítettük"
1865
 
1866
- #: subscribers/view-subscriber-show.php:168
1867
- msgid "Please select New group to update."
1868
- msgstr "Választ ki egy új feliratkozói csoportot"
1869
 
1870
- #: subscribers/view-subscriber-show.php:202
1871
- msgid "Subscribers Status updated."
1872
- msgstr "A feliratkozók státuszát frissítettük. "
1873
 
1874
- #: subscribers/view-subscriber-show.php:207
1875
- msgid "Please select New Status to update."
1876
- msgstr "Válaszd ki a feliratkozók új státuszát"
1877
 
1878
- #: subscribers/view-subscriber-show.php:286
1879
- msgid "Bulk Actions"
1880
- msgstr "Tömeges műveletek"
1881
 
1882
- #: subscribers/view-subscriber-show.php:288 subscribers/view-subscriber-show.php:417
1883
- msgid "Resend Confirmation"
1884
- msgstr "A visszaigazoló levél újbóli kiküldése"
1885
 
1886
- #: subscribers/view-subscriber-show.php:290
1887
- msgid "Update Subscribers Status"
1888
- msgstr "Frissítettük a feliratkozók státuszát"
1889
 
1890
- #: subscribers/view-subscriber-show.php:293
1891
- msgid "Select Group"
1892
- msgstr "Előfizetői csoport kiválasztása"
1893
 
1894
- #: subscribers/view-subscriber-show.php:308
1895
- msgid "Select Status"
1896
- msgstr "Válassza ki a státuszát"
1897
 
1898
- #: subscribers/view-subscriber-show.php:314
1899
- msgid "Apply"
1900
- msgstr "Alkalmaz"
1901
 
1902
- #: subscribers/view-subscriber-show.php:318
1903
- msgid "All Groups"
1904
- msgstr "Minden előfizetői csoport"
1905
 
1906
- #: subscribers/view-subscriber-show.php:335
1907
- msgid "All Status"
1908
- msgstr "Minden státusz"
1909
 
1910
- #: subscribers/view-subscriber-show.php:349
1911
- msgid "Display All"
1912
- msgstr "Mindent megjelenít"
1913
 
1914
- #: subscribers/view-subscriber-show.php:360 subscribers/view-subscriber-show.php:373
1915
- msgid "Email Address"
1916
- msgstr "E-mail cím"
1917
 
1918
- #: subscribers/view-subscriber-show.php:363 subscribers/view-subscriber-show.php:376
1919
- msgid "Group"
1920
- msgstr "Előfizetői csoport"
1921
 
1922
- #: subscribers/view-subscriber-sync.php:36
1923
- msgid "Please select default group to newly registered user."
1924
- msgstr "Válaszd ki, hogy melyik csoportba kerüljenek az új feliratkozók"
1925
 
1926
- #: subscribers/view-subscriber-sync.php:50
1927
- msgid "Emails Successfully Synced."
1928
- msgstr "Sikeres szinkronizálás"
 
1929
 
1930
- #: subscribers/view-subscriber-sync.php:88
1931
- msgid "Sync Email"
1932
- msgstr "E-mailek szinkronizálása"
 
 
 
 
 
 
1933
 
1934
- #: subscribers/view-subscriber-sync.php:101
1935
- msgid "Sync newly registered users to subscribers list"
1936
- msgstr "Az újjonan feliratkozottak szinkronizálása a meglévőkkel"
1937
 
1938
- #: subscribers/view-subscriber-sync.php:114
1939
- msgid "Select group to add newly registered users to"
1940
- msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
1941
 
1942
- #. Plugin Name of the plugin/theme
1943
- msgid "Email Subscribers & Newsletters"
1944
- msgstr "Email Subscribers & Newsletters"
 
 
 
 
 
 
 
 
1945
 
1946
- #. #-#-#-#-# tmp-email-subscribers.pot (Email Subscribers & Newsletters 3.2.3)
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 ""
1955
- "Add subscription forms on website, send HTML newsletters & automatically notify "
1956
- "subscribers about new blog posts once it is published."
1957
  msgstr ""
1958
- "A feliratkozó űrlap hozzáadása, HTML hírlevél és új bejegyzés értesítő (e-mail "
1959
- "küldése, amikor egy bejegyzést közzétesznek)"
1960
 
1961
- #. Author of the plugin/theme
1962
- msgid "Icegram"
1963
- msgstr "Icegram"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:26:18 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Hungarian\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: hu_HU\n"
24
+ "X-Poedit-SearchPath-0: .."
25
 
26
+ #. URI of the plugin
27
+ msgid "https://www.icegram.com"
28
+ msgstr ""
 
29
 
30
+ #: ../email-subscribers.php:70
31
+ msgctxt "timezone date format"
32
+ msgid "Y-m-d H:i:s"
33
+ msgstr ""
34
 
35
+ #: ../settings/settings-edit.php:92
36
+ msgid "Email Type"
37
+ msgstr ""
38
 
39
+ #: ../settings/settings-edit.php:93
40
+ msgid ""
41
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
42
+ "Option 3 & 4 is to send emails with PHP method mail()."
43
+ msgstr ""
44
 
45
+ #: ../settings/settings-edit.php:107
46
+ msgid "Opt-In Type"
47
+ msgstr ""
48
 
49
+ #: ../settings/settings-edit.php:108
50
+ msgid ""
51
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
52
+ "soon as they subscribe to your list. They have to confirm their subscription "
53
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
54
+ "subscriber is not asked to confirm their email address. They are subscribed "
55
+ "directly in the list."
56
+ msgstr ""
57
 
58
+ #: ../settings/settings-edit.php:139
59
+ msgid "Notify Admin when a new subscriber signs up"
60
+ msgstr ""
61
 
62
+ #: ../settings/settings-edit.php:152
63
+ msgid "Admin Email Subject on new subscriber sign up"
64
+ msgstr ""
65
 
66
+ #: ../settings/settings-edit.php:153
67
+ msgid ""
68
+ "Subject for the admin email whenever a new subscriber signs up and is "
69
+ "confirmed."
70
+ msgstr ""
71
 
72
+ #: ../settings/settings-edit.php:159
73
+ msgid "Admin Email Content on new subscriber signs up"
74
+ msgstr ""
75
 
76
+ #: ../settings/settings-edit.php:160
77
+ msgid ""
78
+ "Content for the admin email whenever a new subscriber signs up and is "
79
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
80
+ msgstr ""
81
 
82
+ #: ../settings/settings-edit.php:168
83
+ msgid "Subject for the email report which will be sent to admin."
84
+ msgstr ""
85
 
86
+ #: ../settings/settings-edit.php:175
87
+ msgid ""
88
+ "Content for the email report which will be sent to admin.<br />(Available "
89
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
90
+ msgstr ""
91
 
92
+ #: ../settings/settings-edit.php:186
93
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
94
+ msgstr ""
95
 
96
+ #: ../settings/settings-edit.php:187
97
+ msgid ""
98
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
99
+ "subscriber signs up."
100
+ msgstr ""
101
 
102
+ #: ../settings/settings-edit.php:193
103
+ msgid "Double Opt-In Email Content (Confirmation Email)"
104
+ msgstr ""
105
 
106
+ #: ../settings/settings-edit.php:194
107
+ msgid ""
108
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
109
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
110
+ msgstr ""
111
 
112
+ #: ../settings/settings-edit.php:200
113
+ msgid "Double Opt-In Confirmation Link"
114
+ msgstr ""
115
 
116
+ #: ../settings/settings-edit.php:207
117
+ msgid ""
118
+ "Text to display after an email address is successfully subscribed from "
119
+ "Double Opt-In (Confirmation) Email"
120
+ msgstr ""
121
 
122
+ #: ../settings/settings-edit.php:215
123
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
124
+ msgstr ""
 
125
 
126
+ #: ../settings/settings-edit.php:227
127
+ msgid "Subject for Welcome Email"
128
+ msgstr ""
 
129
 
130
+ #: ../settings/settings-edit.php:228
131
+ msgid ""
132
+ "Subject for the subscriber welcome email. This will be sent whenever a "
133
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
134
+ "Opt-In) successfully."
135
+ msgstr ""
136
 
137
+ #: ../settings/settings-edit.php:234
138
+ msgid "Email Content for Welcome Email"
139
+ msgstr ""
140
 
141
+ #: ../settings/settings-edit.php:235
142
+ msgid ""
143
+ "Content for the subscriber welcome email whenever a user's email is either "
144
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
145
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
146
+ msgstr ""
147
 
148
+ #: ../settings/settings-edit.php:244
149
+ msgid ""
150
+ "This unsubscribe link is automatically added to all the emails that are sent "
151
+ "from this plugin. It is a readonly field and you are advised not to modify "
152
+ "it."
153
+ msgstr ""
154
 
155
+ #: ../settings/settings-edit.php:251
156
+ msgid ""
157
+ "The text for the unsubscribe link. This text is automatically added with "
158
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
159
+ msgstr ""
160
 
161
+ #: ../settings/settings-edit.php:258
 
162
  msgid ""
163
+ "This text will be displayed once user clicks on unsubscribe link from the "
164
+ "email."
165
+ msgstr ""
166
 
167
+ #: ../settings/settings-edit.php:265
168
+ msgid "Error in the Subscribe / Confirmation Link"
169
+ msgstr ""
170
 
171
+ #: ../settings/settings-edit.php:266
172
+ msgid ""
173
+ "Default message to display if there is any issue while clicking on subscribe "
174
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
175
+ msgstr ""
176
 
177
+ #: ../settings/settings-edit.php:273
178
+ msgid ""
179
+ "Default message to display if there is any issue while clicking on "
180
+ "unsubscribe link from the emails."
181
+ msgstr ""
182
 
183
+ #: ../settings/settings-edit.php:372
184
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
185
+ msgstr ""
186
 
187
+ #: ../settings/settings-edit.php:377
188
+ msgid "Cron Report"
189
+ msgstr ""
190
 
191
+ #: ../settings/settings-edit.php:378
192
+ msgid ""
193
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
194
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
195
+ msgstr ""
196
 
197
+ #: ../settings/settings-edit.php:389
198
  msgid ""
199
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
200
+ "schedule-cron-emails/?"
201
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
202
+ "Cron?</a>"
203
  msgstr ""
 
 
204
 
205
+ #: ../settings/settings-edit.php:390
206
+ msgid ""
207
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
208
+ "schedule-cron-emails-in-cpanel/?"
209
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
210
+ "job in cPanel</a>"
211
+ msgstr ""
212
 
213
+ #: ../settings/settings-edit.php:391
214
+ msgid ""
215
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
216
+ "schedule-cron-emails-in-parallels-plesk/?"
217
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
218
+ "job in Plesk</a>"
219
+ msgstr ""
220
 
221
+ #: ../settings/settings-edit.php:392
222
+ msgid ""
223
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
224
+ "if-hosting-doesnt-support-cron-jobs/?"
225
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
226
+ "does not support cron jobs?</a>"
227
  msgstr ""
 
228
 
229
+ #: ../compose/compose-edit.php:61
230
+ msgid "Successfully updated. "
231
+ msgstr ""
232
 
233
+ #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
234
+ msgid "Select your Email Template"
235
+ msgstr ""
236
 
237
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
238
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
239
+ msgstr ""
 
240
 
241
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
242
+ #, php-format
243
+ msgid ""
244
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
245
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
246
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
247
+ msgstr ""
248
 
249
+ #: ../compose/compose-add.php:43
250
+ msgid "Successfully created. "
251
+ msgstr ""
252
 
253
+ #: ../help/help.php:178
254
+ msgid "Get more help and tips..."
255
+ msgstr ""
256
 
257
+ #: ../help/help.php:192
258
+ #, php-format
259
+ msgid "Version: %s"
260
+ msgstr ""
261
 
262
+ #: ../help/help.php:195
263
+ msgid "Questions? Need Help?"
264
+ msgstr ""
265
 
266
+ #: ../help/help.php:196
267
+ msgid "Contact Us"
268
+ msgstr ""
269
 
270
+ #: ../help/help.php:236
271
+ msgid "Description"
272
+ msgstr ""
273
 
274
+ #: ../help/help.php:238
275
+ msgid ""
276
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
277
+ "leads, send automated new blog post notification emails, create & send "
278
+ "newsletters and manage all this in one single place."
279
+ msgstr ""
280
 
281
+ #: ../help/help.php:240
282
+ msgid "Feature Overview"
283
+ msgstr ""
284
 
285
+ #: ../help/help.php:243
286
  msgid ""
287
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
288
+ "Code)."
 
 
289
  msgstr ""
 
 
 
 
290
 
291
+ #: ../help/help.php:246
292
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
293
+ msgstr ""
294
 
295
+ #: ../help/help.php:249
296
+ msgid "Send automatic welcome email to subscribers."
297
+ msgstr ""
298
 
299
+ #: ../help/help.php:252
300
+ msgid ""
301
+ "Send new post notification emails to subscribers when new posts are "
302
+ "published on your website."
303
+ msgstr ""
304
 
305
+ #: ../help/help.php:255
306
+ msgid "Schedule email (Cron job) or send them manually."
307
+ msgstr ""
308
 
309
+ #: ../help/help.php:258
310
+ msgid "Send email notification to admin when a new user signs up."
311
+ msgstr ""
312
 
313
+ #: ../help/help.php:261
314
+ msgid "Automatically add Unsubscribe link in the email."
315
+ msgstr ""
316
 
317
+ #: ../help/help.php:264
318
+ msgid "Easily migrate subscribers from another app using Import & Export."
319
+ msgstr ""
320
 
321
+ #: ../help/help.php:267
322
+ msgid "Use HTML editor to compose newsletters and post notifications."
323
+ msgstr ""
324
 
325
+ #: ../help/help.php:270
326
+ msgid "Send newsletters to different groups."
327
+ msgstr ""
328
 
329
+ #: ../help/help.php:273
330
+ msgid "Get detailed sent email reports."
331
+ msgstr ""
332
 
333
+ #: ../help/help.php:276
334
+ msgid "Control user access (User Roles and Capabilities)."
335
+ msgstr ""
336
 
337
+ #: ../help/help.php:279
338
+ msgid "Supports localization and internationalization."
339
+ msgstr ""
 
340
 
341
+ #: ../help/help.php:286
342
+ msgid "Add Subscribe form"
343
+ msgstr ""
344
 
345
+ #: ../help/help.php:291
346
+ #, php-format
347
+ msgid ""
348
+ "Use any of the following 3 methods :<br>\n"
349
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
350
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
351
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
352
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
353
+ " c) Copy and past this php code to your desired template location : "
354
+ "<strong>%s</strong>"
355
+ msgstr ""
356
 
357
+ #: ../help/help.php:296
358
+ msgid "Additional form settings"
359
+ msgstr ""
360
 
361
+ #: ../help/help.php:299
362
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
363
+ msgstr ""
 
364
 
365
+ #: ../help/help.php:302
366
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
367
+ msgstr ""
368
 
369
+ #: ../help/help.php:311
370
+ #, php-format
371
+ msgid "Modify %s"
372
+ msgstr ""
373
 
374
+ #: ../help/help.php:311
375
+ msgid "default text, email contents"
376
+ msgstr ""
 
377
 
378
+ #: ../help/help.php:311
379
+ msgid ""
380
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
381
+ "Roles"
382
+ msgstr ""
383
 
384
+ #: ../help/help.php:317
385
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
386
+ msgstr ""
387
 
388
+ #: ../help/help.php:320
389
+ msgid "How to change/update/translate any texts from the plugin?"
390
+ msgstr ""
391
 
392
+ #: ../help/help.php:333
393
+ msgid "Usage"
394
+ msgstr ""
 
395
 
396
+ #: ../help/help.php:336
397
+ msgid "Compose and Send Newsletter Emails"
398
+ msgstr ""
 
399
 
400
+ #: ../help/help.php:339
401
+ msgid "Compose and Send Post Notification Emails when new posts are published"
402
+ msgstr ""
 
403
 
404
+ #: ../help/help.php:342
405
+ msgid "Keywords in the Post Notifications"
406
+ msgstr ""
 
407
 
408
+ #: ../help/help.php:345
409
+ msgid "Send a test post notification email to myself/testgroup"
410
+ msgstr ""
 
411
 
412
+ #: ../help/help.php:348
413
+ msgid "Check sent emails"
414
+ msgstr ""
 
415
 
416
+ #: ../help/help.php:355
417
+ msgid "Cron Job Setup"
 
 
 
418
  msgstr ""
 
 
419
 
420
+ #: ../help/help.php:358
421
+ msgid "How to Schedule Cron Emails?"
422
+ msgstr ""
 
423
 
424
+ #: ../help/help.php:361
425
+ msgid "Schedule Cron Emails in cPanel"
426
+ msgstr ""
 
427
 
428
+ #: ../help/help.php:364
429
+ msgid "Schedule Cron Emails in Parallels Plesk"
430
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
431
 
432
+ #: ../help/help.php:367
433
+ msgid "Hosting doesn’t support Cron Jobs?"
434
+ msgstr ""
 
435
 
436
+ #: ../help/help.php:374
437
+ msgid "Troubleshooting Steps"
438
+ msgstr ""
 
439
 
440
+ #: ../help/help.php:382
441
+ msgid "FAQ's"
442
+ msgstr ""
 
443
 
444
+ #: ../help/help.php:389
445
+ msgid "Want to do more? Here's how.."
446
+ msgstr ""
 
447
 
448
+ #: ../help/help.php:392
449
+ msgid "Allow Subscribers to get subscribed to any group"
450
+ msgstr ""
 
451
 
452
+ #: ../help/help.php:397
453
+ msgid "Using our free "
454
+ msgstr ""
 
455
 
456
+ #: ../help/help.php:398
457
+ msgid "Group Selector"
458
+ msgstr ""
 
459
 
460
+ #: ../help/help.php:399
 
461
  msgid ""
462
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
463
+ "grouping option right next to the form."
464
  msgstr ""
 
 
465
 
466
+ #: ../help/help.php:402
467
+ msgid "The user can then subscribe to whichever group most appeals to them."
468
+ msgstr ""
 
469
 
470
+ #: ../help/help.php:405
471
+ msgid "For example: Subscribe either to Updates or to Offers."
472
+ msgstr ""
 
473
 
474
+ #: ../help/help.php:409
475
+ msgid "Show your subscribe form inside attractive popups"
 
476
  msgstr ""
 
477
 
478
+ #: ../help/help.php:414
479
+ msgid ""
480
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
481
+ "bars, slide-ins, sidebars, full screen popups etc."
482
+ msgstr ""
483
 
484
+ #: ../help/help.php:417
485
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
486
+ msgstr ""
 
487
 
488
+ #: ../help/help.php:421
489
+ msgid ""
490
+ "Icegram's beautiful designs instantly capture user attention and help "
491
+ "increase sign-ups to your WordPress website."
492
+ msgstr ""
493
 
494
+ #: ../help/help.php:424 ../help/help.php:444
495
+ #, php-format
496
+ msgid "How to %s"
497
+ msgstr ""
498
 
499
+ #: ../help/help.php:424
500
+ msgid "show subscribe form inside a popup"
501
+ msgstr ""
 
502
 
503
+ #: ../help/help.php:428
504
+ msgid "Get beautiful and elegant form styles"
505
+ msgstr ""
 
506
 
507
+ #: ../help/help.php:434
508
+ msgid "Email subscribers easily integrates with another free plugin "
 
 
 
 
509
  msgstr ""
 
 
 
510
 
511
+ #: ../help/help.php:435
512
+ msgid "Rainmaker"
513
+ msgstr ""
 
514
 
515
+ #: ../help/help.php:438
516
+ msgid ""
517
+ "Rainmaker extends the core features of Email Subscribers and provides "
518
+ "elegant form styles."
519
+ msgstr ""
520
 
521
+ #: ../help/help.php:441
522
+ msgid ""
523
+ "These styles are well designed and beautify your subscription form making it "
524
+ "more appealing."
525
+ msgstr ""
526
 
527
+ #: ../help/help.php:444
528
+ msgid "add Rainmaker’s form in Email Subscribers"
529
+ msgstr ""
 
530
 
531
+ #: ../sendmail/sendmail.php:59
532
+ msgid "Email sent successfully. "
533
+ msgstr ""
 
534
 
535
+ #: ../classes/es-register.php:164
536
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
537
+ msgstr ""
 
538
 
539
+ #: ../classes/es-register.php:707
540
+ msgctxt "timezone date format"
541
+ msgid "Y-m-d"
542
+ msgstr ""
543
 
544
+ #: ../classes/es-register.php:737
545
+ msgid "Post Notifications more often than Newsletter"
546
+ msgstr ""
 
547
 
548
+ #: ../classes/es-register.php:739
549
+ msgid "Newsletter more often than Post Notifications"
550
+ msgstr ""
 
551
 
552
+ #: ../classes/es-register.php:741
553
+ msgid "Post Notification &amp; Newsletter equally"
554
+ msgstr ""
 
555
 
556
+ #: ../classes/es-register.php:750
557
+ msgid "Send emails via Cron"
 
 
 
 
558
  msgstr ""
 
 
 
559
 
560
+ #: ../classes/es-register.php:752
561
+ msgid "Send emails Immediately"
562
+ msgstr ""
 
563
 
564
+ #: ../classes/es-register.php:759
565
+ msgid "Using Double Opt In"
566
+ msgstr ""
 
567
 
568
+ #: ../classes/es-register.php:761
569
+ msgid "Using Single Opt In"
570
+ msgstr ""
 
571
 
572
+ #: ../classes/es-register.php:810
573
+ msgid "Nah, I don't like improvements"
574
+ msgstr ""
 
575
 
576
+ #: ../classes/es-register.php:816
577
+ msgid "Next"
578
+ msgstr ""
 
579
 
580
+ #: ../notification/notification-add.php:33
581
+ msgid "Please select subscribers group."
582
+ msgstr "Kérem válassza ki az előfizetői csoportot"
583
 
584
+ #: ../notification/notification-add.php:39
585
+ msgid "Please select notification status."
586
+ msgstr "Kérem válassza ki az értesítés státuszát."
587
 
588
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
589
+ msgid "Please select notification mail subject. Use compose menu to create new."
590
+ msgstr ""
591
+ "Az értesítő levél tárgya. Az e-mail szerkesztése menüpontban tud újat "
592
+ "létrehozni. "
593
 
594
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
595
+ msgid "Please select post categories."
596
+ msgstr "Kérem válassza ki, mely kategóriák érintettek."
 
597
 
598
+ #: ../notification/notification-add.php:71
599
+ msgid "Notification successfully created. "
600
+ msgstr "Az értesítőlevél sikeresen elkészült."
 
601
 
602
+ #: ../notification/notification-add.php:112
603
+ msgid "Add Notification"
604
+ msgstr "Új bejegyzés-értesítő hozzáadása"
605
 
606
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
607
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
608
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
609
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
610
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
611
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
612
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
613
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
614
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
615
+ msgid "Help"
616
+ msgstr "Segítség"
617
 
618
+ #: ../notification/notification-add.php:120
619
+ msgid "Select Subscribers Group"
620
+ msgstr "Válaszd ki az előfizetői csoportot"
621
 
622
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
623
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
624
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
625
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
626
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
627
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
628
+ msgid "Select"
629
+ msgstr "Választ"
630
 
631
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
632
+ #: 162
633
+ msgid "Select Notification Email Subject"
634
+ msgstr "Mi legyen az értesítő levél tárgya? "
 
 
 
 
 
 
 
 
635
 
636
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
637
+ #: 163
638
+ msgid "(Use compose menu to create new)"
639
+ msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
640
 
641
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
642
+ #: 190
643
+ msgid "Select Post Categories"
644
+ msgstr "Válszd ki a bejegyzés kategóriáját"
645
 
646
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
647
+ #: 225
648
+ msgid "Check All"
649
+ msgstr "Mindegyik kijelölése"
650
 
651
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
652
+ #: 226
653
+ msgid "Uncheck All"
654
+ msgstr "Kijelölések visszavonása"
655
 
656
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
657
+ #: 233
658
+ msgid "Select your Custom Post Type"
659
+ msgstr "Válaszd ki e bejegyzés típusát"
660
 
661
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
662
+ #: 234
663
+ msgid "(Optional)"
664
+ msgstr "(választható)"
665
 
666
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
667
+ #: 268
668
+ msgid "No Custom Post Types Available"
669
+ msgstr "Nincsen egyéni bejegyzés típus"
 
 
 
 
 
 
670
 
671
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
672
+ #: 275
673
+ msgid "Select Notification Status when a new post is published"
674
+ msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
675
 
676
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
677
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
678
+ msgid "Send email immediately"
679
+ msgstr "Levéküldés azonnal"
 
 
680
 
681
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
682
+ #: 132 ../notification/notification-edit.php:280
683
+ msgid "Add to cron and send email via cron job"
684
+ msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
685
 
686
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
687
+ #: 281
688
+ msgid "Disable email notification"
689
+ msgstr "Az új bejegyzések értesítésének letiltása"
690
 
691
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
692
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
693
+ #: 117 ../compose/compose-add.php:105
694
  msgid "Save"
695
  msgstr "Mentés"
696
 
697
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
698
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
699
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
700
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
701
  msgid "Oops, selected details does not exists."
702
  msgstr "A részleteket add meg kérlek"
703
 
704
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
705
+ #: compose/compose-show.php:47
706
+ msgid "Selected record deleted."
707
+ msgstr "Sikeresen törölve"
708
 
709
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
710
+ #: classes/es-register.php:152
711
+ msgid "Post Notifications"
712
+ msgstr "Új bejegyzés értesítés"
713
 
714
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
715
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
716
  msgid "Add New"
717
  msgstr "Új hozzáadása"
718
 
719
+ #: ../notification/notification-show.php:57
720
+ msgid ""
721
+ "Use this to setup and send notification emails to your subscribers when a "
722
+ "new post is published in your blog."
723
+ msgstr ""
724
+ "Új bejegyzés értesítő: amikor az új bejegyzés elkészül, itt tudod beállítani,"
725
+ " milyen értesítést küldjön a feliratkozottaknak. "
 
 
 
 
 
 
 
 
 
 
 
726
 
727
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
728
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:84
729
  msgid "Email Subject"
730
  msgstr "Tárgy"
731
 
732
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
733
+ #: 77
734
+ msgid "Subscribers Group"
735
+ msgstr "Előfieztői csoportok"
736
 
737
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
738
+ #: 78
739
+ msgid "Post Categories / Custom Post Types"
740
+ msgstr "Bejegyzés kategóriája / egyedi bejegyzés típus"
741
+
742
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
743
+ #: 79
744
+ msgid "Notification Status"
745
+ msgstr "Értesítés sttusza"
746
+
747
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
748
+ #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
749
+ msgid "Edit"
750
+ msgstr "Szerkesztés"
751
 
752
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
753
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
754
+ #: php:102
755
  msgid "Delete"
756
  msgstr "Törlés"
757
 
758
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
759
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
760
+ #: 432 ../compose/compose-show.php:111
 
 
 
 
 
761
  msgid "No records available."
762
  msgstr "Nincs ilyen adat."
763
 
764
+ #: ../notification/notification-edit.php:49
765
+ msgid "Please select subscribers group"
766
+ msgstr "Válaszd ki az előfizetői csoportot"
 
 
 
 
 
 
 
 
767
 
768
+ #: ../notification/notification-edit.php:55
769
+ msgid "Please select notification status"
770
+ msgstr "Mit tegyünk az új bejegyzés értesítővel? "
771
 
772
+ #: ../notification/notification-edit.php:89
773
+ msgid "Notification successfully updated. "
774
+ msgstr "Értesítés sikeresen módosítva"
775
 
776
+ #: ../notification/notification-edit.php:122
777
+ msgid "Edit Notification"
778
+ msgstr "Új bejegyzés értesítés szerkesztése"
 
 
 
 
 
779
 
780
+ #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
781
+ #: php:289
782
+ msgid "Update Subscribers Group"
783
+ msgstr "Előfizetői csoport frissítése"
784
 
785
+ #. Plugin Name of the plugin/theme
786
+ msgid "Email Subscribers & Newsletters"
787
+ msgstr "Email Subscribers & Newsletters"
788
 
789
+ #. Description of the plugin/theme
790
  msgid ""
791
+ "Add subscription forms on website, send HTML newsletters & automatically "
792
+ "notify subscribers about new blog posts once it is published."
793
  msgstr ""
794
+ "A feliratkozó űrlap hozzáadása, HTML hírlevél és új bejegyzés értesítő (e-"
795
+ "mail küldése, amikor egy bejegyzést közzétesznek)"
796
 
797
+ #. Author of the plugin/theme
798
+ msgid "Icegram"
799
+ msgstr "Icegram"
800
 
801
+ #: ../settings/settings-edit.php:23
802
+ msgid "Admin"
803
+ msgstr "Adminisztrátor"
 
 
804
 
805
+ #: ../settings/settings-edit.php:24
806
+ msgid "Signup Confirmation"
807
+ msgstr "Bejelentkezés visszaigazolás"
808
+
809
+ #: ../settings/settings-edit.php:25
810
+ msgid "Cron"
811
+ msgstr "Időzítés"
812
 
813
+ #: ../settings/settings-edit.php:26
814
+ msgid "User Roles"
815
+ msgstr "Felhasználói jogosultságok"
816
 
817
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
818
+ #: register.php:158
819
+ msgid "Settings"
820
+ msgstr "Beállítások"
 
 
 
821
 
822
+ #: ../settings/settings-edit.php:67
823
+ msgid "Save Settings"
824
+ msgstr "Beállítások mentése"
825
 
826
+ #: ../settings/settings-edit.php:81
827
+ msgid "Sender of Notifications"
828
+ msgstr "Az értesítések küldőjw"
829
 
830
+ #: ../settings/settings-edit.php:82
831
+ msgid ""
832
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
833
+ "this plugin."
834
+ msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
835
 
836
+ #: ../settings/settings-edit.php:97
837
+ msgid "1. WP HTML MAIL"
838
+ msgstr "1. WordPress HTML e-mail"
839
 
840
+ #: ../settings/settings-edit.php:98
841
+ msgid "2. WP PLAINTEXT MAIL"
842
+ msgstr "2. WordPress e-mail csak szöveg"
843
 
844
+ #: ../settings/settings-edit.php:99
845
+ msgid "3. PHP HTML MAIL"
846
+ msgstr "3. PHP HTML e-mail"
847
 
848
+ #: ../settings/settings-edit.php:100
849
+ msgid "4. PHP PLAINTEXT MAIL"
850
+ msgstr "4. PHP csak szöveges e-mail"
851
 
852
+ #: ../settings/settings-edit.php:112
853
+ msgid "Double Opt In"
854
+ msgstr "Kettős opt-in"
855
 
856
+ #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:
857
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
858
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
859
+ #: subscriber-edit.php:150
860
+ msgid "Single Opt In"
861
+ msgstr "Visszaigazolás nélkül"
862
 
863
+ #: ../settings/settings-edit.php:119
864
+ msgid "Image Size"
865
+ msgstr "Képméret"
866
 
867
+ #: ../settings/settings-edit.php:120
868
+ msgid ""
869
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
870
+ "Emails."
871
+ msgstr "Az értesítőlevélben a ###POTIMAGE### képméretének kiválasztása "
872
 
873
+ #: ../settings/settings-edit.php:124
874
+ msgid "Full Size"
875
+ msgstr "Teljes méretű kép"
 
 
 
876
 
877
+ #: ../settings/settings-edit.php:125
878
+ msgid "Medium Size"
879
+ msgstr "Közepes méretű kép"
880
 
881
+ #: ../settings/settings-edit.php:126
882
+ msgid "Thumbnail"
883
+ msgstr "Bélyegkép"
884
 
885
+ #: ../settings/settings-edit.php:132
886
+ msgid "Admin Email Addresses"
887
+ msgstr "Az adminisztrátor e-mail címei"
888
 
889
+ #: ../settings/settings-edit.php:133
890
+ msgid ""
891
+ "Enter the admin email addresses that should receive notifications (separated "
892
+ "by comma)."
893
  msgstr ""
894
+ "Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a "
895
+ "levelek küldéséről"
896
 
897
+ #: ../settings/settings-edit.php:140
898
+ msgid ""
899
+ "To send admin email notifications for the new subscriber. This option must "
900
+ "be set to YES."
901
+ msgstr ""
902
+ "Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
903
+ "állítsuk \"IGEN\"-re. "
904
 
905
+ #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
906
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
907
+ msgid "YES"
908
+ msgstr "Igen"
909
 
910
+ #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
911
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
912
+ msgid "NO"
913
+ msgstr "Nem"
914
 
915
+ #: ../settings/settings-edit.php:167
916
+ msgid "Sent Report Subject"
917
+ msgstr "A levél kiküldés értesítőlevelének tárgya"
918
 
919
+ #: ../settings/settings-edit.php:174
920
+ msgid "Sent Report Content"
921
+ msgstr "Az elküldött levelek értesítőlevelének tartalma"
 
 
 
 
922
 
923
+ #: ../settings/settings-edit.php:201
924
+ msgid "It is a readonly field and you are advised not to modify it."
925
+ msgstr "Csak olvasható mező"
926
 
927
+ #: ../settings/settings-edit.php:208
928
+ msgid ""
929
+ "This text will be displayed once user clicks on email confirmation link from "
930
+ "the Double Opt In (confirmation) Email."
931
+ msgstr ""
932
+ "Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
933
+ "linkre kattint"
934
 
935
+ #: ../settings/settings-edit.php:216
936
+ msgid ""
937
+ "To send welcome email to subscriber after successful signup. This option "
938
+ "must be set to YES."
939
+ msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
940
 
941
+ #: ../settings/settings-edit.php:243
942
+ msgid "Unsubscribe Link"
943
+ msgstr "Leiratkozó link"
944
 
945
+ #: ../settings/settings-edit.php:250
946
+ msgid "Unsubscribe Text in Email"
947
+ msgstr "A leiratkozó link szövete"
948
 
949
+ #: ../settings/settings-edit.php:257
950
+ msgid "Text to display after an email address is unsubscribed"
951
+ msgstr "A leiratkozás után megjelenő szöveg."
952
 
953
+ #: ../settings/settings-edit.php:272
954
+ msgid "Error in the Unsubscribe Link"
955
+ msgstr "A leriratkozó link hibás."
956
 
957
+ #: ../settings/settings-edit.php:285
958
+ msgid "Select user roles who can access following menus. Only Admin can change this."
959
+ msgstr ""
960
+ "Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
961
+ "menük kezelésére."
962
 
963
+ #: ../settings/settings-edit.php:291
964
+ msgid "Subscribers Menu"
965
+ msgstr "Előfizetők"
966
 
967
+ #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
968
+ #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
969
+ #: settings/settings-edit.php:343
970
+ msgid "Administrator Only"
971
+ msgstr "Csak adminisztrátor"
972
 
973
+ #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
974
+ #: settings/settings-edit.php:320 ../settings/settings-edit.php:332 ..
975
+ #: settings/settings-edit.php:344
976
+ msgid "Administrator/Editor"
977
+ msgstr "Adminisztrátor/Szerkesztő"
978
 
979
+ #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
980
+ #: settings/settings-edit.php:321 ../settings/settings-edit.php:333 ..
981
+ #: settings/settings-edit.php:345
982
+ msgid "Administrator/Editor/Author/Contributor"
983
+ msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
984
 
985
+ #: ../settings/settings-edit.php:303
986
+ msgid "Compose Menu"
987
+ msgstr "Szerkesztés"
988
 
989
+ #: ../settings/settings-edit.php:315
990
+ msgid "Post Notifications Menu"
991
+ msgstr "Új bejegyzésről értesítés"
992
 
993
+ #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
994
+ #: register.php:154 ../classes/es-register.php:155
995
+ msgid "Newsletters"
996
+ msgstr "Hírlevél"
997
 
998
+ #: ../settings/settings-edit.php:339
999
+ msgid "Reports Menu"
1000
+ msgstr "Jelentések"
1001
 
1002
+ #: ../settings/settings-edit.php:356
1003
+ msgid "Cron job URL"
1004
+ msgstr "Időzítés URL-je"
1005
 
1006
+ #: ../settings/settings-edit.php:357
1007
  msgid ""
1008
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1009
+ "modify it."
1010
+ msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1011
 
1012
+ #: ../settings/settings-edit.php:366
1013
+ msgid "Email Count"
1014
+ msgstr "E-mail számláló."
1015
 
1016
+ #: ../settings/settings-edit.php:367
1017
+ msgid "Number of emails that you want to trigger per hour."
1018
+ msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
1019
 
1020
+ #: ../settings/settings-edit.php:388
1021
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1022
+ msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1023
 
1024
+ #: ../settings/settings-edit.php:507
1025
+ msgid "Please enter sender of notifications from name."
1026
+ msgstr "Az értesítőlevél feladójának neve"
1027
 
1028
+ #: ../settings/settings-edit.php:512
1029
+ msgid "Please enter sender of notifications from email."
1030
+ msgstr "Az értesítőlevél levél feladójának e-mail címe"
1031
 
1032
+ #: ../settings/settings-edit.php:556
1033
+ msgid "Please enter valid mail count."
1034
+ msgstr "Kérem, hogy egy számot írjon be!"
1035
 
1036
+ #: ../settings/settings-edit.php:569
1037
+ msgid "Settings Saved."
1038
+ msgstr "Sikeres mentés"
1039
 
1040
+ #: ../settings/settings-edit.php:572
1041
+ msgid "Oops, unable to update."
1042
+ msgstr "Nem sikerült menteni. "
1043
 
1044
+ #: ../settings/setting-sync.php:16
1045
+ msgid "Table sync completed successfully."
1046
+ msgstr "Sikeresen szinkronizáltuk a táblákat"
1047
 
1048
+ #: ../settings/setting-sync.php:29
1049
+ msgid "Sync plugin tables"
1050
+ msgstr "Táblák szinkronizálása"
 
1051
 
1052
+ #: ../settings/setting-sync.php:33
1053
+ msgid "Click to sync tables"
1054
+ msgstr "Ide kattintva elkezdődik a táblák szinkronizálása"
 
 
 
 
 
 
1055
 
1056
+ #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1057
+ msgid "Preview Mail"
1058
+ msgstr "E-mail megtekintés"
1059
 
1060
+ #: ../sentmail/sentmail-preview.php:42
1061
+ msgid "Back"
1062
+ msgstr "Előző"
1063
 
1064
+ #: ../sentmail/sentmail-show.php:43
1065
+ msgid "Successfully deleted all reports except latest 10."
1066
+ msgstr "Minden jelentést törölték, kivéve az utolsó tizet. "
1067
 
1068
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1069
  msgid " &lt;&lt; "
1070
  msgstr " &lt;&lt; "
1071
 
1072
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1073
  msgid " &gt;&gt; "
1074
  msgstr " &gt;&gt; "
1075
 
1076
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1077
+ #: register.php:161
1078
+ msgid "Reports"
1079
+ msgstr "Jelentések"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1080
 
1081
+ #: ../sentmail/sentmail-show.php:97
1082
  msgid "It will show reports for all Newsletters & Post Notification emails sent."
1083
  msgstr ""
1084
+ "Ez mindent jelentést megmutat a kiküldött hírlevelekről és bejegyzés-"
1085
+ "értesítő levelekről"
1086
 
1087
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1088
  msgid "View Reports"
1089
  msgstr "Jelentés megtekintése"
1090
 
1091
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1092
+ #: compose/compose-show.php:103
1093
+ msgid "Preview"
1094
+ msgstr "Előnézet"
1095
+
1096
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1097
  msgid "Type"
1098
  msgstr "Típus"
1099
 
1100
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1101
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1102
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1103
+ #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1104
+ msgid "Status"
1105
+ msgstr "Státusz"
1106
+
1107
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1108
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
1109
+ msgid "Sent"
1110
+ msgstr "Elküldve"
1111
+
1112
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1113
  msgid "Start Date"
1114
  msgstr "Indulás Dátuma"
1115
 
1116
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1117
  msgid "End Date"
1118
  msgstr "Zárás dátuma"
1119
 
1120
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1121
  msgid "Total"
1122
  msgstr "Teljes"
1123
 
1124
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1125
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
1126
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1127
+ #: subscriber-export.php:56
1128
  msgid "Action"
1129
  msgstr "Action"
1130
 
1131
+ #: ../sentmail/sentmail-show.php:190
1132
  msgid "Optimize Table & Delete Records"
1133
  msgstr "Az előfizetői adatbázis optimalizálása, előfizetők törlése"
1134
 
1135
+ #: ../sentmail/sentmail-show.php:199
1136
  msgid ""
1137
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1138
+ "button to delete all reports except latest 10."
1139
  msgstr ""
1140
+ "Kattintson a <strong>Táblázat optimalizálása és adatok törlése</strong> "
1141
+ "gombra, hogy az utolsó 10 kivételével törölje az eddigi jelentéseket. "
 
 
 
 
1142
 
1143
+ #: ../sentmail/deliverreport-show.php:14
1144
+ msgid "Oops.. Unexpected error occurred. Please try again."
1145
+ msgstr "Hiba történt, ismét próbáld meg. "
1146
 
1147
+ #: ../sentmail/deliverreport-show.php:57
1148
+ msgid "Delivery Report"
1149
+ msgstr "Kézbesítési jelentés"
1150
 
1151
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
1152
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
1153
+ #: export.php:53
1154
+ msgid "Sno"
1155
+ msgstr "Sno"
1156
 
1157
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
1158
+ msgid "Email"
1159
+ msgstr "Email címed"
1160
 
1161
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
1162
+ msgid "Sent Date"
1163
+ msgstr "Kiküldés dátuma"
1164
 
1165
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1166
+ msgid "Viewed Status"
1167
+ msgstr "Megnyitás státusza"
 
 
1168
 
1169
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
1170
+ msgid "Viewed Date"
1171
+ msgstr "Megnyitás dátuma"
1172
 
1173
+ #: ../subscribers/view-subscriber-import.php:44
1174
  msgid ""
1175
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1176
+ "the Group name."
1177
+ msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
 
 
 
 
 
 
1178
 
1179
+ #: ../subscribers/view-subscriber-import.php:92
1180
+ msgid "email imported."
1181
+ msgstr "Az e-maileket sikeresen importáltuk"
1182
 
1183
+ #: ../subscribers/view-subscriber-import.php:93
1184
+ msgid "email already exists."
1185
+ msgstr "Már létező e-mail cím"
1186
 
1187
+ #: ../subscribers/view-subscriber-import.php:94
1188
+ msgid "email are invalid."
1189
+ msgstr "Érvénytelen az e-mail cím"
1190
 
1191
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1192
+ #: import.php:126
1193
+ msgid "Click here"
1194
+ msgstr "Kattintás ide"
1195
 
1196
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1197
+ #: import.php:126
1198
+ msgid " to view details."
1199
+ msgstr "a részletek megtekintése"
 
 
 
 
 
1200
 
1201
+ #: ../subscribers/view-subscriber-import.php:105
1202
+ msgid "File Upload Failed."
1203
+ msgstr "Nem sikerült az importálás"
1204
 
1205
+ #: ../subscribers/view-subscriber-import.php:142
1206
+ msgid "Import Email Addresses"
1207
+ msgstr "E-mail címek importálása"
 
 
1208
 
1209
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1210
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1211
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
1212
+ #: subscribers/view-subscriber-sync.php:89
1213
+ msgid "Add New Subscriber"
1214
+ msgstr "Új előfizető hozzáadása"
1215
 
1216
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1217
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
1218
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1219
+ msgid "Export"
1220
+ msgstr "Exportálás"
1221
 
1222
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1223
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1224
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1225
+ #: subscribers/view-subscriber-sync.php:143
1226
+ msgid "Sync"
1227
+ msgstr "Szinkronizálás"
1228
 
1229
+ #: ../subscribers/view-subscriber-import.php:155
1230
+ msgid "Select CSV file"
1231
+ msgstr "CSV fájl kiválasztása"
1232
 
1233
+ #: ../subscribers/view-subscriber-import.php:157
1234
+ msgid "Check CSV structure "
1235
+ msgstr "A CSV fájl struktúrájának ellenőrzése"
1236
 
1237
+ #: ../subscribers/view-subscriber-import.php:158
1238
+ msgid "from here"
1239
+ msgstr "Inne"
1240
 
1241
+ #: ../subscribers/view-subscriber-import.php:169
1242
+ msgid "Select Subscribers Email Status"
1243
+ msgstr "Válaszd ki az előfizetők státuszát"
 
 
 
 
1244
 
1245
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1246
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1247
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1248
+ msgid "Confirmed"
1249
+ msgstr "Megerősítve"
1250
 
1251
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1252
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1253
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1254
+ msgid "Unconfirmed"
1255
+ msgstr "Nem megerősített"
 
 
1256
 
1257
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1258
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1259
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1260
+ msgid "Unsubscribed"
1261
+ msgstr "Leiratkozva"
1262
 
1263
+ #: ../subscribers/view-subscriber-import.php:185
1264
+ msgid "Select (or) Create Group for Subscribers"
1265
+ msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
 
 
 
1266
 
1267
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1268
+ #: add.php:174
1269
+ msgid "(or)"
1270
+ msgstr "(vagy)"
1271
 
1272
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1273
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1274
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1275
+ #: subscribers/view-subscriber-sync.php:90
1276
+ msgid "Import"
1277
+ msgstr "Importálás"
 
1278
 
1279
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1280
+ #: sendmail/sendmail.php:18
1281
+ msgid "Click Here"
1282
+ msgstr "Klikk ide"
1283
 
1284
+ #: ../subscribers/view-subscriber-show.php:45
1285
+ msgid "Selected details does not exists."
1286
+ msgstr "A kiválasztottak nincsenek meg"
1287
 
1288
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1289
+ #: php:95
1290
+ msgid "Record deleted."
1291
+ msgstr "Törölve"
1292
 
1293
+ #: ../subscribers/view-subscriber-show.php:67
1294
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
 
1295
  msgstr ""
1296
+ "Ha szeretnél visszagiazoló levelet küldeni, a Beállítások menüben az Opt-in "
1297
+ "beállítást \"kettős opt-in\" - re kell változtatni."
1298
 
1299
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1300
+ #: php:134
1301
+ msgid "Confirmation emails Resent Successfully."
1302
+ msgstr "A visszaigazolást kérő levelet ismét kiküldtük."
1303
 
1304
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1305
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1306
+ #: subscriber-show.php:216
1307
+ msgid "No record was selected."
1308
+ msgstr "Nem választottál ki egyetlen adatot sem"
1309
 
1310
+ #: ../subscribers/view-subscriber-show.php:115
1311
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1312
+ msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
1313
 
1314
+ #: ../subscribers/view-subscriber-show.php:163
1315
+ msgid "Subscribers Group updated."
1316
+ msgstr "A feliratkozók csoportját frissítettük"
 
 
1317
 
1318
+ #: ../subscribers/view-subscriber-show.php:168
1319
+ msgid "Please select New group to update."
1320
+ msgstr "Választ ki egy új feliratkozói csoportot"
1321
 
1322
+ #: ../subscribers/view-subscriber-show.php:202
1323
+ msgid "Subscribers Status updated."
1324
+ msgstr "A feliratkozók státuszát frissítettük. "
1325
 
1326
+ #: ../subscribers/view-subscriber-show.php:207
1327
+ msgid "Please select New Status to update."
1328
+ msgstr "Válaszd ki a feliratkozók új státuszát"
 
 
1329
 
1330
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1331
+ #: classes/es-register.php:146
1332
+ msgid "Subscribers"
1333
+ msgstr "Feliratkozottak"
 
 
 
1334
 
1335
+ #: ../subscribers/view-subscriber-show.php:252
1336
+ #, php-format
1337
+ msgid "Total Subscribers: %s"
1338
+ msgstr "Az összes előfizető száma: %s"
1339
 
1340
+ #: ../subscribers/view-subscriber-show.php:254
1341
+ #, php-format
1342
+ msgid "Active Subscribers: %s"
1343
+ msgstr "Az aktív előfizetők száma: %s"
 
1344
 
1345
+ #: ../subscribers/view-subscriber-show.php:286
1346
+ msgid "Bulk Actions"
1347
+ msgstr "Tömeges műveletek"
1348
 
1349
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1350
+ #: show.php:417
1351
+ msgid "Resend Confirmation"
1352
+ msgstr "A visszaigazoló levél újbóli kiküldése"
 
 
 
 
1353
 
1354
+ #: ../subscribers/view-subscriber-show.php:290
1355
+ msgid "Update Subscribers Status"
1356
+ msgstr "Frissítettük a feliratkozók státuszát"
1357
 
1358
+ #: ../subscribers/view-subscriber-show.php:293
1359
+ msgid "Select Group"
1360
+ msgstr "Előfizetői csoport kiválasztása"
1361
 
1362
+ #: ../subscribers/view-subscriber-show.php:308
1363
+ msgid "Select Status"
1364
+ msgstr "Válassza ki a státuszát"
 
 
1365
 
1366
+ #: ../subscribers/view-subscriber-show.php:314
1367
+ msgid "Apply"
1368
+ msgstr "Alkalmaz"
1369
 
1370
+ #: ../subscribers/view-subscriber-show.php:318
1371
+ msgid "All Groups"
1372
+ msgstr "Minden előfizetői csoport"
 
 
 
 
1373
 
1374
+ #: ../subscribers/view-subscriber-show.php:335
1375
+ msgid "All Status"
1376
+ msgstr "Minden státusz"
1377
 
1378
+ #: ../subscribers/view-subscriber-show.php:342
1379
+ msgid "1 to 500 emails"
1380
+ msgstr "1-től 500 e-mail"
1381
 
1382
+ #: ../subscribers/view-subscriber-show.php:343
1383
+ msgid "501 to 1000"
1384
+ msgstr "501-1000 e-mail"
1385
 
1386
+ #: ../subscribers/view-subscriber-show.php:344
1387
+ msgid "1001 to 1500"
1388
+ msgstr "1001-1500 e-mail"
 
 
 
 
1389
 
1390
+ #: ../subscribers/view-subscriber-show.php:345
1391
+ msgid "1501 to 2000"
1392
+ msgstr "1501- 2000"
1393
 
1394
+ #: ../subscribers/view-subscriber-show.php:346
1395
+ msgid "2001 to 4000"
1396
+ msgstr "2001-4000"
 
 
 
1397
 
1398
+ #: ../subscribers/view-subscriber-show.php:347
1399
+ msgid "4001 to 6000"
1400
+ msgstr "4001-6000"
 
 
1401
 
1402
+ #: ../subscribers/view-subscriber-show.php:348
1403
+ msgid "6001 to 10000"
1404
+ msgstr "6001-10 000"
1405
 
1406
+ #: ../subscribers/view-subscriber-show.php:349
1407
+ msgid "Display All"
1408
+ msgstr "Mindent megjelenít"
 
 
1409
 
1410
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1411
+ #: show.php:373
1412
+ msgid "Email Address"
1413
+ msgstr "E-mail cím"
 
1414
 
1415
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1416
+ #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1417
+ msgid "Name"
1418
+ msgstr "Név"
 
1419
 
1420
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1421
+ #: show.php:376
1422
+ msgid "Group"
1423
+ msgstr "Előfizetői csoport"
1424
 
1425
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1426
+ #: show.php:377
1427
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1428
+ msgstr "A regisztráció időpontja: <br>(Y-M-D H:I:S)"
 
 
 
 
 
 
 
 
 
 
 
 
 
1429
 
1430
+ #: ../subscribers/view-subscriber-export.php:34
1431
+ msgid "Export Email Addresses"
1432
+ msgstr "E-mail címek exportálása"
1433
 
1434
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1435
+ #: export.php:54
1436
+ msgid "Type of List to Export"
1437
+ msgstr "Milyen típusú fájlba exportáljunk? "
1438
 
1439
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1440
+ #: export.php:55
1441
+ msgid "Total Emails Count"
1442
+ msgstr "Összes e-mail"
 
1443
 
1444
+ #: ../subscribers/view-subscriber-export.php:61
1445
+ msgid "1"
1446
+ msgstr "1"
1447
 
1448
+ #: ../subscribers/view-subscriber-export.php:62
1449
+ msgid "All Subscribers"
1450
+ msgstr "Minden előfizető"
 
 
 
 
1451
 
1452
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1453
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1454
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1455
+ msgid "Click to Export in CSV"
1456
+ msgstr "CSV fájl exportálása"
1457
 
1458
+ #: ../subscribers/view-subscriber-export.php:67
1459
+ msgid "2"
1460
+ msgstr "2"
 
 
 
 
1461
 
1462
+ #: ../subscribers/view-subscriber-export.php:68
1463
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1464
+ msgstr "Aktív előfizető, ahol a stáusz: visszagazolt vagy nincs double opt-in"
 
 
 
 
1465
 
1466
+ #: ../subscribers/view-subscriber-export.php:73
1467
+ msgid "3"
1468
+ msgstr "3"
 
 
 
 
1469
 
1470
+ #: ../subscribers/view-subscriber-export.php:74
1471
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
 
 
1472
  msgstr ""
1473
+ "Nem aktív előfizetők, ahol a státusz nem visszaigazolt, vagy pedig "
1474
+ "leiratkozott. "
 
1475
 
1476
+ #: ../subscribers/view-subscriber-export.php:79
1477
+ msgid "4"
1478
+ msgstr "4"
 
 
 
 
1479
 
1480
+ #: ../subscribers/view-subscriber-export.php:80
1481
+ msgid "WordPress Registered Users"
1482
+ msgstr "Regisztrált felhasználó"
1483
 
1484
+ #: ../subscribers/view-subscriber-export.php:85
1485
+ msgid "5"
1486
+ msgstr "5"
1487
 
1488
+ #: ../subscribers/view-subscriber-export.php:86
1489
+ msgid "Commented Authors"
1490
+ msgstr "Hozzászóló felhasználó"
1491
 
1492
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1493
+ #: php:54
1494
  msgid "Please enter subscriber email address."
1495
  msgstr "Írd be az előfizető e-mail címét!"
1496
 
1497
+ #: ../subscribers/view-subscriber-add.php:49
1498
  msgid "Please select or create your group for this email."
1499
  msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
1500
 
1501
+ #: ../subscribers/view-subscriber-add.php:56
1502
  msgid ""
1503
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1504
+ "the group name."
1505
  msgstr ""
1506
+ "HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,"
1507
+ "|=_+\\\"]"
1508
 
1509
+ #: ../subscribers/view-subscriber-add.php:66
1510
  msgid "Subscriber has been saved."
1511
  msgstr "Feliratkozót mentettem."
1512
 
1513
+ #: ../subscribers/view-subscriber-add.php:68
1514
  msgid "Subscriber already exists."
1515
  msgstr "Ilyen címmel már feliratkoztak"
1516
 
1517
+ #: ../subscribers/view-subscriber-add.php:71
1518
  msgid "Invalid Email."
1519
  msgstr "Hibás e-mail cím"
1520
 
1521
+ #: ../subscribers/view-subscriber-add.php:123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1522
  msgid "Enter Subscriber's Full name"
1523
  msgstr "Írd be az előfizető nevét!"
1524
 
1525
+ #: ../subscribers/view-subscriber-add.php:133
1526
  msgid "Enter Subscriber's Email Address"
1527
  msgstr "Írd be az előfizető e-mail címét!"
1528
 
1529
+ #: ../subscribers/view-subscriber-add.php:143
1530
  msgid "Select Subscriber's Status"
1531
  msgstr "Előfizető státuszának kiválasztása"
1532
 
1533
+ #: ../subscribers/view-subscriber-add.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1534
  msgid "Select (or) Create Group for Subscriber"
1535
  msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
1536
 
1537
+ #: ../subscribers/view-subscriber-add.php:183
 
 
 
 
1538
  msgid "Add Subscriber"
1539
  msgstr "Új előfizető hozzáadása"
1540
 
1541
+ #: ../subscribers/view-subscriber-edit.php:64
1542
  msgid "Error: Special characters are not allowed in the group name."
1543
  msgstr "HIBA: csak betű és szám legyen a csoport nevében"
1544
 
1545
+ #: ../subscribers/view-subscriber-edit.php:74
1546
  msgid "Subscriber details updated."
1547
  msgstr "Az előfizető adatainak mentése"
1548
 
1549
+ #: ../subscribers/view-subscriber-edit.php:76
1550
  msgid "Subscriber already exists for this group."
1551
  msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
1552
 
1553
+ #: ../subscribers/view-subscriber-edit.php:108
1554
  msgid "Edit Subscriber"
1555
  msgstr "Előfizetők szerkesztése"
1556
 
1557
+ #: ../subscribers/view-subscriber-edit.php:122
1558
  msgid "Subscriber's Full Name"
1559
  msgstr "Az előfizető teljes neve"
1560
 
1561
+ #: ../subscribers/view-subscriber-edit.php:132
1562
  msgid "Subscriber's Email Address"
1563
  msgstr "A feliratkozó e-mail címe"
1564
 
1565
+ #: ../subscribers/view-subscriber-edit.php:142
1566
  msgid "Update Subscriber's Status"
1567
  msgstr "Előfizető státuszának mentése"
1568
 
1569
+ #: ../subscribers/view-subscriber-edit.php:157
1570
  msgid "Update Subscriber's Group"
1571
  msgstr "Az előfizetői csoport mentése"
1572
 
1573
+ #: ../subscribers/view-subscriber-sync.php:36
1574
+ msgid "Please select default group to newly registered user."
1575
+ msgstr "Válaszd ki, hogy melyik csoportba kerüljenek az új feliratkozók"
1576
 
1577
+ #: ../subscribers/view-subscriber-sync.php:50
1578
+ msgid "Emails Successfully Synced."
1579
+ msgstr "Sikeres szinkronizálás"
1580
 
1581
+ #: ../subscribers/view-subscriber-sync.php:88
1582
+ msgid "Sync Email"
1583
+ msgstr "E-mailek szinkronizálása"
1584
 
1585
+ #: ../subscribers/view-subscriber-sync.php:101
1586
+ msgid "Sync newly registered users to subscribers list"
1587
+ msgstr "Az újjonan feliratkozottak szinkronizálása a meglévőkkel"
1588
 
1589
+ #: ../subscribers/view-subscriber-sync.php:114
1590
+ msgid "Select group to add newly registered users to"
1591
+ msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
 
 
1592
 
1593
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1594
+ msgid "Please enter template heading."
1595
+ msgstr "Mi legyen a sablon címe? "
1596
 
1597
+ #: ../compose/compose-edit.php:84
1598
+ msgid "Edit Email"
1599
+ msgstr "E-mail szerkesztése"
1600
 
1601
+ #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
1602
+ msgid "Newsletter"
1603
+ msgstr "Hírlevél"
1604
 
1605
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
1606
+ msgid "Post Notification"
1607
+ msgstr "Értesítés az új bejegyzésről"
1608
 
1609
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1610
+ msgid "Enter your Email Subject"
1611
+ msgstr "Írd be az e-mail tárgyát!"
 
 
1612
 
1613
+ #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1614
+ msgid "Enter Content for your Email"
1615
+ msgstr "Írd be az e-mail tartalmát!"
1616
 
1617
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
1618
+ msgid "Available Keywords"
1619
+ msgstr "Választható kulcsszavak"
1620
 
1621
+ #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1622
+ msgid "Published"
1623
+ msgstr "Közzétéve"
1624
 
1625
+ #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1626
+ msgid "Please select your mail status"
1627
+ msgstr "Válaszd ki az e-mail státuszát"
 
1628
 
1629
+ #: ../compose/compose-add.php:74
1630
+ msgid "Add new Email"
1631
+ msgstr "Új e-mail hozzáadása"
 
1632
 
1633
+ #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1634
+ #: register.php:149
1635
+ msgid "Compose"
1636
+ msgstr "E-mail szerkesztése"
1637
 
1638
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1639
+ msgid "Email Template"
1640
+ msgstr "E-mail sablon"
1641
 
1642
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1643
+ msgid "Actions"
1644
+ msgstr "Tevékenységek"
1645
 
1646
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1647
+ msgid "Unexpected url submit has been detected"
1648
+ msgstr "Nem az URL"
1649
 
1650
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1651
+ #: 58 ../job/es-optin.php:68
1652
+ msgid ""
1653
+ "Oops.. We are getting some technical error. Please try again or contact "
1654
+ "admin."
1655
+ msgstr ""
1656
+ "Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
1657
+ "szakembert."
1658
 
1659
+ #: ../job/es-optin.php:61
1660
+ msgid "This email address has already been confirmed."
1661
+ msgstr "Ilyen e-mail cím már szerepel."
1662
 
1663
+ #: ../help/help.php:173
1664
+ msgid "Welcome to Email Subscribers!"
1665
+ msgstr "Üdvözöljük!"
1666
 
1667
+ #: ../help/help.php:174
1668
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1669
+ msgstr "Köszönjük, hogy telepítette a bővítményünket és reméljük elégedett lesz. "
1670
 
1671
+ #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1672
+ #: php:38
1673
+ msgid "Subscribe"
1674
+ msgstr "Feliratkozás"
1675
 
1676
+ #: ../help/help.php:201
1677
+ #, php-format
1678
+ msgid ""
1679
+ "Like Email Subscribers? If yes, then consider %s to support further "
1680
+ "developments."
1681
+ msgstr "Ha teszik a bővítmény, kérem %s hogy tovább fejleszthessük. "
1682
 
1683
+ #: ../help/help.php:201
1684
+ msgid "donating to us"
1685
+ msgstr "Adományozás"
1686
 
1687
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1688
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1689
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1690
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1691
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1692
+ #: 380 ../help/help.php:382
1693
+ #, php-format
1694
+ msgid "%s"
1695
+ msgstr "%s"
1696
 
1697
+ #: ../help/help.php:288
1698
+ msgid "How to Add Subscription box to website?"
1699
+ msgstr "Hogyan lehet a feliratkozó űrlapot elhelyezni a honlapon?"
1700
 
1701
+ #: ../help/help.php:308
1702
+ msgid "General Plugin Settings"
1703
+ msgstr "Általános beállítások"
1704
 
1705
+ #: ../help/help.php:314
1706
+ msgid "How to Import or Export Email Addresses?"
1707
+ msgstr "A feliratkozók importálása és exportálása"
1708
 
1709
+ #: ../help/help.php:323
1710
+ msgid "How to add Unsubscribe link in emails?"
1711
+ msgstr "Hogyan tudod az e-mailbe a leiratkozás linket elhelyezni?"
1712
 
1713
+ #: ../help/help.php:377
1714
+ msgid "Subscribers are not receiving Emails?"
1715
+ msgstr "Az előfizetőid nem kapták meg az e-mailc? "
1716
 
1717
+ #: ../help/help.php:380
1718
+ msgid "CSS Help"
1719
+ msgstr "CSS segítség"
1720
 
1721
+ #: ../sendmail/sendmail.php:40
1722
+ msgid "Please select your mail subject."
1723
+ msgstr "Mi legyen a levél tárgya? "
1724
 
1725
+ #: ../sendmail/sendmail.php:46
1726
+ msgid "Please select your mail type."
1727
+ msgstr "Az e-mail kiküldés típusaa"
1728
 
1729
+ #: ../sendmail/sendmail.php:52
1730
+ msgid "Please select your group."
1731
+ msgstr "Válaszd ki az előfizetői csoportot"
1732
 
1733
+ #: ../sendmail/sendmail.php:63
1734
+ msgid "Click here to check Statistics"
1735
+ msgstr "Itt megnézheted a statisztikákat"
1736
 
1737
+ #: ../sendmail/sendmail.php:69
1738
+ msgid "Oops.. We are getting some error. mail not sending."
1739
+ msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
1740
 
1741
+ #: ../sendmail/sendmail.php:97
1742
+ msgid "Use this to send newsletter emails to your subscribers."
1743
+ msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
1744
 
1745
+ #: ../sendmail/sendmail.php:105
1746
+ msgid "Select Email Subject from available list"
1747
+ msgstr "Válassza ki az e-mail tárgyát az alábbi listából!"
1748
 
1749
+ #: ../sendmail/sendmail.php:132
1750
+ msgid "Select Email Type"
1751
+ msgstr "Válassza ki az e-mail típusát!"
1752
 
1753
+ #: ../sendmail/sendmail.php:139
1754
+ msgid "Send email via cron job"
1755
+ msgstr "Időzített e-mail küldés"
1756
 
1757
+ #: ../sendmail/sendmail.php:146
1758
+ msgid "Select Subscribers group to Send Email"
1759
+ msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1760
 
1761
+ #: ../sendmail/sendmail.php:178
1762
+ msgid "Recipients : 0 "
1763
+ msgstr "Címzettek: 0"
1764
 
1765
+ #: ../sendmail/sendmail.php:180
1766
+ #, php-format
1767
+ msgid "Recipients : %s"
1768
+ msgstr "Címzettek: %s"
1769
 
1770
+ #: ../sendmail/sendmail.php:183
1771
+ msgid ""
1772
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1773
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1774
+ "</strong><br>Click on Help for more information."
1775
+ msgstr ""
1776
+ "<br><br><strong>Több mint 100 címzettnek küldünk levelet<br>Szerintünk ne "
1777
+ "most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
1778
+ "a súgóra további segítségért!"
1779
 
1780
+ #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1781
+ msgid "Send Email"
1782
+ msgstr "Hírlevél küldése"
1783
 
1784
+ #: ../sendmail/sendmail.php:199
1785
+ msgid "Reset"
1786
+ msgstr "Alapbeállítások visszaállítása"
1787
 
1788
+ #: ../base/es-defined.php:32
1789
+ msgid ""
1790
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1791
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1792
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1793
+ "</a> rating. A huge thank you from Icegram in advance!"
1794
+ msgstr ""
1795
+ "Ha tetszett az <strong>Email Subscribers bővítmény </strong>, kérem adjon "
1796
+ "értékelést:<a target=\"_blank\" href=\"https://wordpress."
1797
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1798
+ "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
1799
 
1800
+ #: ../classes/es-common.php:13
1801
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1802
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Visszaigazolt</span>"
 
 
 
1803
 
1804
+ #: ../classes/es-common.php:16
1805
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1806
+ msgstr "<span style=\"color:#FF0000\">Nincs visszaigazolva</span>"
1807
+
1808
+ #: ../classes/es-common.php:19
1809
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1810
+ msgstr "<span style=\"color:#999900\">Leiratkozott</span>"
1811
+
1812
+ #: ../classes/es-common.php:22
1813
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1814
+ msgstr "<span style=\"color:#0000FF\">Megerősítés nélkül</span>"
1815
+
1816
+ #: ../classes/es-common.php:25
1817
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1818
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Megtekintett</span>"
1819
+
1820
+ #: ../classes/es-common.php:28
1821
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1822
+ msgstr "<span style=\"color:#999900;\">Nincs visszajelzés</span>"
1823
+
1824
+ #: ../classes/es-common.php:31
1825
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1826
+ msgstr "<span style=\"color:#FF0000\">Letiltva</span>"
1827
+
1828
+ #: ../classes/es-common.php:34
1829
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1830
+ msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
1831
+
1832
+ #: ../classes/es-common.php:37
1833
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1834
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Kiküldve</span>"
1835
+
1836
+ #: ../classes/es-common.php:40
1837
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1838
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
1839
+
1840
+ #: ../classes/es-common.php:43
1841
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1842
+ msgstr "<span style=\"color:#993399;\">Azonnal</span>"
1843
+
1844
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1845
+ #: register.php:724
1846
+ msgid "Email Subscribers"
1847
+ msgstr "Email Subscribers"
1848
+
1849
+ #: ../classes/es-register.php:163
1850
+ msgid "Help & Info"
1851
+ msgstr "Segítség & Információ"
1852
+
1853
+ #: ../classes/es-register.php:175
1854
+ msgctxt "view-subscriber-enhanced-select"
1855
+ msgid "Please enter subscriber email address."
1856
+ msgstr "Adja meg az előfizető e-mail címét."
1857
+
1858
+ #: ../classes/es-register.php:176
1859
+ msgctxt "view-subscriber-enhanced-select"
1860
+ msgid "Please select subscriber email status."
1861
+ msgstr "Válassza ki az előfizető e-mail státuszát."
1862
+
1863
+ #: ../classes/es-register.php:177
1864
+ msgctxt "view-subscriber-enhanced-select"
1865
+ msgid "Please select or create group for this subscriber."
1866
+ msgstr "Törölni akarja ezt az adatot?"
1867
+
1868
+ #: ../classes/es-register.php:178
1869
+ msgctxt "view-subscriber-enhanced-select"
1870
+ msgid "Do you want to delete this record?"
1871
+ msgstr "Biztos törölni szeretnéd?"
1872
+
1873
+ #: ../classes/es-register.php:179
1874
+ msgctxt "view-subscriber-enhanced-select"
1875
+ msgid "Please select the bulk action."
1876
+ msgstr "Kérem válassza a tömeges műveleteket!"
1877
+
1878
+ #: ../classes/es-register.php:180
1879
+ msgctxt "view-subscriber-enhanced-select"
1880
+ msgid "Are you sure you want to delete selected records?"
1881
+ msgstr "Biztosan törlöd ezeket az adatokat? "
1882
+
1883
+ #: ../classes/es-register.php:181
1884
+ msgctxt "view-subscriber-enhanced-select"
1885
  msgid ""
1886
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1887
+ "update subscriber current status to 'Unconfirmed'."
1888
  msgstr ""
1889
+ "Valóban újra akarja küldeni az e-mail visszaigazoló levelet? Ha igen, akkor "
1890
+ "az előfizető ismét 'nem igazolt' státuszú lesz. "
1891
 
1892
+ #: ../classes/es-register.php:182
1893
+ msgctxt "view-subscriber-enhanced-select"
1894
+ msgid "Please select new subscriber group."
1895
+ msgstr "KÉrem válassza ki az előfizetői csoportot"
1896
+
1897
+ #: ../classes/es-register.php:183
1898
+ msgctxt "view-subscriber-enhanced-select"
1899
+ msgid "Please select new status for subscribers"
1900
+ msgstr "Add meg az előfizetők új státuszát!"
1901
+
1902
+ #: ../classes/es-register.php:184
1903
+ msgctxt "view-subscriber-enhanced-select"
1904
+ msgid "Do you want to update subscribers group?"
1905
+ msgstr "Frissíteni akarja az előfizetői csoportokat? "
1906
+
1907
+ #: ../classes/es-register.php:185
1908
+ msgctxt "view-subscriber-enhanced-select"
1909
+ msgid "Do you want to update subscribers status?"
1910
+ msgstr "Frissítsük a feliratkozók státuszát?"
1911
+
1912
+ #: ../classes/es-register.php:186
1913
+ msgctxt "view-subscriber-enhanced-select"
1914
+ msgid ""
1915
+ "Please select only csv file. Please check official website for csv structure."
1916
+ "."
1917
+ msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
1918
+
1919
+ #: ../classes/es-register.php:194
1920
+ msgctxt "compose-enhanced-select"
1921
+ msgid "Please enter the Email Subject."
1922
+ msgstr "Kérem írja be a levél tárgyát."
1923
+
1924
+ #: ../classes/es-register.php:195
1925
+ msgctxt "compose-enhanced-select"
1926
+ msgid "Do you want to delete this record?"
1927
+ msgstr "Valóban ki akarja törölni ezt az adatot? "
1928
+
1929
+ #: ../classes/es-register.php:203
1930
+ msgctxt "notification-enhanced-select"
1931
+ msgid "Please select subscribers group."
1932
+ msgstr "Kérem válassza ki az előfizetői csoportot!"
1933
+
1934
+ #: ../classes/es-register.php:204
1935
+ msgctxt "notification-enhanced-select"
1936
+ msgid "Please select notification mail subject. Use compose menu to create new."
1937
+ msgstr "KÉrem válassza ki az értesítőlevél tárgyát!"
1938
+
1939
+ #: ../classes/es-register.php:205
1940
+ msgctxt "notification-enhanced-select"
1941
+ msgid "Please select notification status."
1942
+ msgstr "Válassza ki az értesítőlevél státuszát!"
1943
+
1944
+ #: ../classes/es-register.php:206
1945
+ msgctxt "notification-enhanced-select"
1946
+ msgid "Do you want to delete this record?"
1947
+ msgstr "Valóban törölni akarja ezt az adatot? "
1948
+
1949
+ #: ../classes/es-register.php:214
1950
+ msgctxt "sendmail-enhanced-select"
1951
+ msgid "Please select your mail subject."
1952
+ msgstr "Kérem töltse ki a levél tárgyát!"
1953
+
1954
+ #: ../classes/es-register.php:215
1955
+ msgctxt "sendmail-enhanced-select"
1956
+ msgid "Please select your mail type."
1957
+ msgstr "Az e-mail típusa (időzített vagy azonnali)"
1958
+
1959
+ #: ../classes/es-register.php:216
1960
+ msgctxt "sendmail-enhanced-select"
1961
+ msgid ""
1962
+ "Have you double checked your selected group? If so, let's go ahead and send "
1963
+ "this."
1964
+ msgstr ""
1965
+ "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
1966
+ "rendben, akkor klikkelj megint."
1967
+
1968
+ #: ../classes/es-register.php:224
1969
+ msgctxt "sentmail-enhanced-select"
1970
+ msgid "Do you want to delete this record?"
1971
+ msgstr "Szeretné törölni ezt az adatot? "
1972
+
1973
+ #: ../classes/es-register.php:225
1974
+ msgctxt "sentmail-enhanced-select"
1975
+ msgid "Do you want to delete all records except latest 10?"
1976
+ msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
1977
+
1978
+ #: ../classes/es-register.php:233
1979
+ msgctxt "cron-enhanced-select"
1980
+ msgid "Please select enter number of mails you want to send per hour/trigger."
1981
+ msgstr ""
1982
+ "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
1983
+ "küldeni?"
1984
+
1985
+ #: ../classes/es-register.php:234
1986
+ msgctxt "cron-enhanced-select"
1987
+ msgid "Please enter the mail count, only number."
1988
+ msgstr "Kérem egy számot adjon meg, hány e-mail? "
1989
+
1990
+ #: ../classes/es-register.php:247
1991
+ msgctxt "widget-enhanced-select"
1992
+ msgid "Please enter email address"
1993
+ msgstr "Kérjük adja meg az e-mail címét"
1994
+
1995
+ #: ../classes/es-register.php:248
1996
+ msgctxt "widget-enhanced-select"
1997
+ msgid "Please provide a valid email address"
1998
+ msgstr "Kérem adjon meg egy érvényes e-mail címet!"
1999
+
2000
+ #: ../classes/es-register.php:249
2001
+ msgctxt "widget-enhanced-select"
2002
+ msgid "loading..."
2003
+ msgstr "betöltés..."
2004
+
2005
+ #: ../classes/es-register.php:250
2006
+ msgctxt "widget-enhanced-select"
2007
+ msgid "Cannot create XMLHTTP instance"
2008
+ msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2009
+
2010
+ #: ../classes/es-register.php:251
2011
+ msgctxt "widget-enhanced-select"
2012
+ msgid "Successfully Subscribed."
2013
+ msgstr "Sikeres feliratkozás"
2014
+
2015
+ #: ../classes/es-register.php:252
2016
+ msgctxt "widget-enhanced-select"
2017
+ msgid ""
2018
+ "Your subscription was successful! Within a few minutes, kindly check the "
2019
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2020
+ "mail in your mailbox, please check your spam folder."
2021
+ msgstr ""
2022
+ "Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. "
2023
+ "Ha nem érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor "
2024
+ "sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
2025
+ "címet adtál meg. "
2026
+
2027
+ #: ../classes/es-register.php:253
2028
+ msgctxt "widget-enhanced-select"
2029
+ msgid "Email Address already exists!"
2030
+ msgstr "Ez az e-mail cím már létezik"
2031
+
2032
+ #: ../classes/es-register.php:254
2033
+ msgctxt "widget-enhanced-select"
2034
+ msgid "Oops.. Unexpected error occurred."
2035
+ msgstr "Váratlan hiba"
2036
+
2037
+ #: ../classes/es-register.php:255
2038
+ msgctxt "widget-enhanced-select"
2039
+ msgid "Invalid email address"
2040
+ msgstr "Hibás e-mail cím"
2041
+
2042
+ #: ../classes/es-register.php:256
2043
+ msgctxt "widget-enhanced-select"
2044
+ msgid "Please try after some time"
2045
+ msgstr "Kérem próbálja meg kicsit később!"
2046
+
2047
+ #: ../classes/es-register.php:257
2048
+ msgctxt "widget-enhanced-select"
2049
+ msgid "There was a problem with the request"
2050
+ msgstr "Sajnos valami hiba történt."
2051
+
2052
+ #: ../classes/es-register.php:264
2053
+ msgctxt "widget-page-enhanced-select"
2054
+ msgid "Please enter email address"
2055
+ msgstr "KÉrem adja meg az e-mail címét!"
2056
+
2057
+ #: ../classes/es-register.php:265
2058
+ msgctxt "widget-page-enhanced-select"
2059
+ msgid "Please provide a valid email address"
2060
+ msgstr "Kérem adjon meg egy érvényes e-mail címet."
2061
+
2062
+ #: ../classes/es-register.php:266
2063
+ msgctxt "widget-page-enhanced-select"
2064
+ msgid "loading..."
2065
+ msgstr "Kis türelmet..."
2066
+
2067
+ #: ../classes/es-register.php:267
2068
+ msgctxt "widget-page-enhanced-select"
2069
+ msgid "Cannot create XMLHTTP instance"
2070
+ msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2071
+
2072
+ #: ../classes/es-register.php:268
2073
+ msgctxt "widget-page-enhanced-select"
2074
+ msgid "Successfully Subscribed."
2075
+ msgstr "Sikeres feliratkozás."
2076
+
2077
+ #: ../classes/es-register.php:269
2078
+ msgctxt "widget-page-enhanced-select"
2079
+ msgid ""
2080
+ "Your subscription was successful! Within a few minutes, kindly check the "
2081
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2082
+ "mail in your mailbox, please check your spam folder."
2083
+ msgstr ""
2084
+ "Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. "
2085
+ "Ha nem érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor "
2086
+ "sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
2087
+ "címet adtál meg. "
2088
+
2089
+ #: ../classes/es-register.php:270
2090
+ msgctxt "widget-page-enhanced-select"
2091
+ msgid "Email Address already exists!"
2092
+ msgstr "Ilyen e-mail cím már létezik. "
2093
+
2094
+ #: ../classes/es-register.php:271
2095
+ msgctxt "widget-page-enhanced-select"
2096
+ msgid "Oops.. Unexpected error occurred."
2097
+ msgstr "Váratlan hiba lépett fel"
2098
+
2099
+ #: ../classes/es-register.php:272
2100
+ msgctxt "widget-page-enhanced-select"
2101
+ msgid "Invalid email address"
2102
+ msgstr "Hibás e-mail cím."
2103
+
2104
+ #: ../classes/es-register.php:273
2105
+ msgctxt "widget-page-enhanced-select"
2106
+ msgid "Please try after some time"
2107
+ msgstr "Kérem próbálja meg később. "
2108
+
2109
+ #: ../classes/es-register.php:274
2110
+ msgctxt "widget-page-enhanced-select"
2111
+ msgid "There was a problem with the request"
2112
+ msgstr "Valami hiba történt. "
2113
+
2114
+ #: ../classes/es-register.php:724
2115
+ msgid "is getting even better!"
2116
+ msgstr "még jobb lesz!"
2117
+
2118
+ #: ../classes/es-register.php:725
2119
+ msgid "But I need you to"
2120
+ msgstr "De szükségem van arra, hogy"
2121
+
2122
+ #: ../classes/es-register.php:725
2123
+ msgid "help me prioritize"
2124
+ msgstr "segítsen sorrendet kialakítani"
2125
+
2126
+ #: ../classes/es-register.php:725
2127
+ msgid "Please send your response today."
2128
+ msgstr "kérem küldje a válaszát még ma!"
2129
+
2130
+ #: ../classes/es-register.php:732
2131
+ msgid "Here's how you use ES:"
2132
+ msgstr "Így használd az ES-t:"
2133
+
2134
+ #: ../classes/es-register.php:745
2135
+ msgid "Have "
2136
+ msgstr "Van "
2137
+
2138
+ #: ../classes/es-register.php:745
2139
+ msgid " Active Subscribers"
2140
+ msgstr " Aktív előfizető"
2141
+
2142
+ #: ../classes/es-register.php:746
2143
+ msgid "Post "
2144
+ msgstr "Bejegyzés "
2145
+
2146
+ #: ../classes/es-register.php:746
2147
+ msgid " blog per week"
2148
+ msgstr " blog hetente"
2149
+
2150
+ #: ../classes/es-register.php:779
2151
+ msgid "How soon do you want these new features?"
2152
+ msgstr "Mikor szeretnéd ezeket az új funkciókat?"
2153
+
2154
+ #: ../classes/es-register.php:783
2155
+ msgid "Beautiful Email Designs"
2156
+ msgstr "Gyönyörű e-mail dizájn."
2157
+
2158
+ #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
2159
+ #: register.php:794 ../classes/es-register.php:799
2160
+ msgid "Right now!"
2161
+ msgstr "Most!"
2162
+
2163
+ #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
2164
+ #: register.php:795 ../classes/es-register.php:800
2165
+ msgid "Soon"
2166
+ msgstr "Hamarosan"
2167
+
2168
+ #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
2169
+ #: register.php:796 ../classes/es-register.php:801
2170
+ msgid "Later"
2171
+ msgstr "Később"
2172
+
2173
+ #: ../classes/es-register.php:788
2174
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
2175
+ msgstr "Levélszemét ellenőrzése. Folyamatban.... (még jobb célbatalálási arány)"
2176
+
2177
+ #: ../classes/es-register.php:793
2178
+ msgid "Discard Fake / Bouncing Emails"
2179
+ msgstr "A hamisítá levelek elvetése / Visszautasított levelek"
2180
+
2181
+ #: ../classes/es-register.php:798
2182
+ msgid "Advanced Reporting"
2183
+ msgstr "Részletesebb jelentések"
2184
+
2185
+ #: ../classes/es-register.php:826
2186
+ msgid "Thank you!"
2187
+ msgstr "Köszönjük!"
2188
+
2189
+ #: ../classes/es-register.php:827
2190
+ msgid "No issues, have a nice day!"
2191
+ msgstr "Semmi probléma a mai nap!"
2192
+
2193
+ #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
2194
+ msgid "Email *"
2195
+ msgstr "E-mail*"
2196
+
2197
+ #: ../classes/es-register.php:1035
2198
+ msgid "Widget Title"
2199
+ msgstr "Widget Cím"
2200
+
2201
+ #: ../classes/es-register.php:1039
2202
+ msgid "Short description about subscription form"
2203
+ msgstr "A feliratkozó űrlap rövid leírása"
2204
+
2205
+ #: ../classes/es-register.php:1043
2206
+ msgid "Display Name Field"
2207
+ msgstr "Feliratkozásnál kérjük a nevet is? "
2208
+
2209
+ #: ../classes/es-register.php:1050
2210
+ msgid "Subscriber Group"
2211
+ msgstr "Előfizetői csoport"
languages/email-subscribers-lt_LT.mo CHANGED
Binary file
languages/email-subscribers-lt_LT.po CHANGED
@@ -1,19 +1,20 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
6
- "PO-Revision-Date: 2017-07-03 11:21+0000\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Lithuanian\n"
9
- "Language: lt-LT\n"
 
10
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 "
11
  "&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Loco-Source-Locale: lt_LT\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
 
17
  "X-Poedit-Basepath: .\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
@@ -25,1148 +26,1101 @@ msgstr ""
25
  "X-Loco-Target-Locale: lt_LT\n"
26
  "X-Loco-Parser: loco_parse_po"
27
 
28
- #: classes/es-register.php:733
29
- msgid "Send emails via Cron"
30
- msgstr "Siųsti laiškus naudojant periodines užduotis (cron)"
31
 
32
- #: classes/es-register.php:735
33
- msgid "Send emails Immediately"
34
- msgstr "Siųsti laiškus nedelsiant"
 
35
 
36
- #: compose/compose-add.php:78 compose/compose-edit.php:89
37
- msgid "Select your Email Template"
38
- msgstr "Pasirinkite laiško šabloną"
39
 
40
- #: help/help.php:127
41
  msgid ""
42
- " (Modify existing emails like Confirmation, Welcome, Admin emails and Cron "
43
- "Settings and Assign User Roles)"
 
 
 
 
44
  msgstr ""
45
- " (Keiskite esamus laiškus, tokius kaip Patvirtinimo, Pasveikinimo, "
46
- "Administratoriaus laiškus ir periodinių užduočių (cron) nustatymus bei "
47
- "priskirkite vartotojo teises)"
48
 
49
- #: help/help.php:142
50
  msgid ""
51
- "How to Configure and Send Post Notification Emails to subscribers when new "
52
- "posts are published?"
 
 
 
53
  msgstr ""
54
- "Kaip sukonfigūruoti ir siųsti prenumeratoriams pranešimus apie naujus įrašus,"
55
- " kai tik jie patalpinami?"
56
 
57
- #: help/help.php:145
58
- msgid "What are the available keywords in the Post Notifications?"
59
- msgstr "Kokie galimi raktažodžiai pranešimuose apie įrašus?"
60
 
61
- #: help/help.php:148
62
- msgid "How to send a sample new post notification email to testgroup/myself?"
63
  msgstr ""
64
- "Kaip siųsti pranešimo apie naujus įrašus laiško pavyzdį testinei grupei ar "
65
- "sau?"
66
 
67
- #: help/help.php:151
68
- msgid "How to check sent emails?"
69
- msgstr "Kaip patikrinti išsiųstus laiškus?"
 
 
70
 
71
- #: help/help.php:154
72
- msgid "How to Add/Update Existing Subscribers Group & Status?"
73
- msgstr "Kaip pridėti ar atnaujinti esamų prenumeratorių grupę bei statusą?"
74
 
75
- #: help/help.php:166
76
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
77
  msgstr ""
78
- "Kaip nukreipti prenumeratorius į naują puslapį po sėkmingos registracijos?"
79
 
80
- #: help/help.php:169
81
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
82
- msgstr "Kaip pridėti captcha Email Subscribers prenumeratos formoje?"
83
 
84
- #: help/help.php:172
85
- msgid "How to Schedule Cron Emails?"
86
- msgstr "Kaip nustatyti cron laiško siuntimo laiką?"
 
 
87
 
88
- #: help/help.php:186
89
- msgid "Common FAQ's"
90
- msgstr "Bendri DUK"
91
 
92
- #: settings/settings-edit.php:155
93
  msgid ""
94
- "Enter the email content for the admin email which will be sent whenever a "
95
- "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, "
96
- "###GROUP###)"
 
 
 
97
  msgstr ""
98
- "Įveskite administratoriui siunčiamo laiško turinį, kuris siunčiamas po naujo "
99
- "el. pašto pridėjimo ir patvirtinimo. (Raktažodis: ###NAME###, ###EMAIL###, "
100
- "###GROUP###)"
101
 
102
- #: base/es-defined.php:32
103
  msgid ""
104
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
105
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
106
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
107
- "</a> rating. A huge thank you from Icegram in advance!"
108
  msgstr ""
109
- "Jei jums patinka <strong>Email Subscribers</strong>, prašome pasidalinti <a "
110
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
111
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
112
- "</a> reitingu. Icegram dėkoja iš anksto!"
113
 
114
- #: classes/es-common.php:13
115
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
116
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Patvirtinta</span>"
117
 
118
- #: classes/es-common.php:16
119
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
120
- msgstr "<span style=\"color:#FF0000\">Nepatvirtintas</span>"
 
 
121
 
122
- #: classes/es-common.php:19
123
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
124
- msgstr "<span style=\"color:#999900\">Nutraukė prenumeratą</span>"
125
 
126
- #: classes/es-common.php:22
127
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
128
- msgstr "<span style=\"color:#0000FF\">Viengubas patvirtinimas</span>"
129
 
130
- #: classes/es-common.php:25
131
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
132
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Peržiūrėta</span>"
 
 
 
133
 
134
- #: classes/es-common.php:28
135
- msgid "<span style=\"color:#999900;\">Nodata</span>"
136
- msgstr "<span style=\"color:#999900;\">Nėra duomenų</span>"
137
 
138
- #: classes/es-common.php:31
139
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
140
- msgstr "<span style=\"color:#FF0000\">Išjungta</span>"
 
 
 
141
 
142
- #: classes/es-common.php:34
143
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
144
- msgstr "<span style=\"color:#FF0000\">Eilėje</span>"
 
 
 
145
 
146
- #: classes/es-common.php:37
147
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
148
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Išsiųsta</span>"
 
 
149
 
150
- #: classes/es-common.php:40
151
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
 
 
152
  msgstr ""
153
- "<span style=\"color:#20b2aa;font-weight:bold;\">naudojant periodines "
154
- "užduotis (cron)</span>"
155
 
156
- #: classes/es-common.php:43
157
- msgid "<span style=\"color:#993399;\">Immediately</span>"
158
- msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
159
 
160
- #: classes/es-loadwidget.php:28 classes/es-register.php:964
161
- #: subscribers/view-subscriber-show.php:361
162
- #: subscribers/view-subscriber-show.php:374
163
- msgid "Name"
164
- msgstr "Vardas"
165
 
166
- #: classes/es-loadwidget.php:33 classes/es-register.php:969
167
- msgid "Email *"
168
- msgstr "El. paštas *"
 
 
169
 
170
- #: classes/es-loadwidget.php:38 classes/es-register.php:974
171
- msgid "Subscribe"
172
- msgstr "Prenumeruoti"
173
 
174
- #. Name of the plugin
175
- #: classes/es-register.php:140 classes/es-register.php:141
176
- #: classes/es-register.php:707
177
- msgid "Email Subscribers"
178
- msgstr "Email Subscribers"
179
 
180
- #: classes/es-register.php:143 classes/es-register.php:144
181
- #: subscribers/view-subscriber-show.php:241
182
- msgid "Subscribers"
183
- msgstr "Prenumeratoriai"
 
184
 
185
- #: classes/es-register.php:146 classes/es-register.php:147
186
- #: compose/compose-show.php:64
187
- msgid "Compose"
188
- msgstr "Kurti naują"
 
 
 
189
 
190
- #: classes/es-register.php:149 classes/es-register.php:150
191
- #: notification/notification-show.php:52
192
- msgid "Post Notifications"
193
- msgstr "Pranešimai apie įrašus"
 
 
 
194
 
195
- #: classes/es-register.php:152 classes/es-register.php:153
196
- #: sendmail/sendmail.php:93 settings/settings-edit.php:318
197
- msgid "Newsletters"
198
- msgstr "Naujienlaiškio siuntimas"
 
 
 
199
 
200
- #: classes/es-register.php:155 classes/es-register.php:156
201
- #: settings/settings-edit.php:41
202
- msgid "Settings"
203
- msgstr "Nustatymai"
 
 
 
204
 
205
- #: classes/es-register.php:158 classes/es-register.php:159
206
- #: sentmail/sentmail-show.php:96
207
- msgid "Reports"
208
- msgstr "Ataskaitos"
209
 
210
- #: classes/es-register.php:161
211
- msgid "Help & Info"
212
- msgstr "Pagalba ir informacija"
213
 
214
- #: classes/es-register.php:162
215
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
 
 
 
 
216
  msgstr ""
217
- "<span style=\"color:#f18500;font-weight:bolder;\">Pagalba ir informacija"
218
 
219
- #: classes/es-register.php:173
220
- msgctxt "view-subscriber-enhanced-select"
221
- msgid "Please enter subscriber email address."
222
- msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
223
 
224
- #: classes/es-register.php:174
225
- msgctxt "view-subscriber-enhanced-select"
226
- msgid "Please select subscriber email status."
227
- msgstr "Prašome pasirinkti prenumeratoriaus el. pašto statusą."
228
 
229
- #: classes/es-register.php:175
230
- msgctxt "view-subscriber-enhanced-select"
231
- msgid "Please select or create group for this subscriber."
232
- msgstr "Prašome pasirinkti arba sukurti grupę šiam prenumeratoriui."
233
 
234
- #: classes/es-register.php:176
235
- msgctxt "view-subscriber-enhanced-select"
236
- msgid "Do you want to delete this record?"
237
- msgstr "Ar norite ištrinti šį įrašą?"
238
 
239
- #: classes/es-register.php:177
240
- msgctxt "view-subscriber-enhanced-select"
241
- msgid "Please select the bulk action."
242
- msgstr "Prašome pasirinkti masinį veiksmą."
243
 
244
- #: classes/es-register.php:178
245
- msgctxt "view-subscriber-enhanced-select"
246
- msgid "Are you sure you want to delete selected records?"
247
- msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
248
 
249
- #: classes/es-register.php:179
250
- msgctxt "view-subscriber-enhanced-select"
251
  msgid ""
252
- "Do you want to resend confirmation email? \\nAlso please note, this will "
253
- "update subscriber current status to 'Unconfirmed'."
 
254
  msgstr ""
255
- "Ar norite pakartotinai išsiųsti patvirtinimo laišką? \\nAtkreipkite dėmesį, "
256
- "kad bus prenumeratoriaus dabartinis statusas bus pakeistas į "
257
- "\"Nepatvirtinta\"."
258
 
259
- #: classes/es-register.php:180
260
- msgctxt "view-subscriber-enhanced-select"
261
- msgid "Please select new subscriber group."
262
- msgstr "Prašome pasirinkti naują prenumeratorių grupę."
263
 
264
- #: classes/es-register.php:181
265
- msgctxt "view-subscriber-enhanced-select"
266
- msgid "Please select new status for subscribers"
267
- msgstr "Prašome pasirinkti naują prenumeratorių statusą"
 
268
 
269
- #: classes/es-register.php:182
270
- msgctxt "view-subscriber-enhanced-select"
271
- msgid "Do you want to update subscribers group?"
272
- msgstr "Ar norite atnaujinti prenumeratorių grupę?"
273
 
274
- #: classes/es-register.php:183
275
- msgctxt "view-subscriber-enhanced-select"
276
- msgid "Do you want to update subscribers status?"
277
- msgstr "Ar norite atnaujinti prenumeratorių statusą?"
278
 
279
- #: classes/es-register.php:184
280
- msgctxt "view-subscriber-enhanced-select"
281
  msgid ""
282
- "Please select only csv file. Please check official website for csv structure."
283
- "."
284
  msgstr ""
285
- "Prašome pasirinkti tik CSV failą. CSV struktūrą pasitikrinkite oficialioje "
286
- "svetainėje."
287
 
288
- #: classes/es-register.php:192
289
- msgctxt "compose-enhanced-select"
290
- msgid "Please enter the Email Subject."
291
- msgstr "Prašome įvesti laiško temą"
292
 
293
- #: classes/es-register.php:193
294
- msgctxt "compose-enhanced-select"
295
- msgid "Do you want to delete this record?"
296
- msgstr "Ar norite ištrinti šį įrašą?"
297
 
298
- #: classes/es-register.php:201
299
- msgctxt "notification-enhanced-select"
300
- msgid "Please select subscribers group."
301
- msgstr "Prašome pasirinkti prenumeratorių grupę."
302
 
303
- #: classes/es-register.php:202
304
- msgctxt "notification-enhanced-select"
305
- msgid ""
306
- "Please select notification mail subject. Use compose menu to create new."
307
  msgstr ""
308
- "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
309
- "meniu \"Sukurti\"."
310
 
311
- #: classes/es-register.php:203
312
- msgctxt "notification-enhanced-select"
313
- msgid "Please select notification status."
314
- msgstr "Prašome pasirinkti pranešimo statusą."
315
 
316
- #: classes/es-register.php:204
317
- msgctxt "notification-enhanced-select"
318
- msgid "Do you want to delete this record?"
319
- msgstr "Ar norite ištrinti šį įrašą?"
320
 
321
- #: classes/es-register.php:212
322
- msgctxt "sendmail-enhanced-select"
323
- msgid "Please select your mail subject."
324
- msgstr "Prašome pasirinkti laiško temą."
325
 
326
- #: classes/es-register.php:213
327
- msgctxt "sendmail-enhanced-select"
328
- msgid "Please select your mail type."
329
- msgstr "Prašome pasirinkti laiško tipą."
330
 
331
- #: classes/es-register.php:214
332
- msgctxt "sendmail-enhanced-select"
 
 
 
 
 
 
 
 
333
  msgid ""
334
- "Have you double checked your selected group? If so, let's go ahead and send "
335
- "this."
 
 
 
 
 
336
  msgstr ""
337
- "Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
338
- "siųskite tai."
339
 
340
- #: classes/es-register.php:222
341
- msgctxt "sentmail-enhanced-select"
342
- msgid "Do you want to delete this record?"
343
- msgstr "Ar norite ištrinti šį įrašą?"
344
 
345
- #: classes/es-register.php:223
346
- msgctxt "sentmail-enhanced-select"
347
- msgid "Do you want to delete all records except latest 10?"
348
- msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
349
 
350
- #: classes/es-register.php:231
351
- msgctxt "cron-enhanced-select"
352
- msgid "Please select enter number of mails you want to send per hour/trigger."
353
  msgstr ""
354
- "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
355
 
356
- #: classes/es-register.php:232
357
- msgctxt "cron-enhanced-select"
358
- msgid "Please enter the mail count, only number."
359
- msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
 
360
 
361
- #: classes/es-register.php:245
362
- msgctxt "widget-enhanced-select"
363
- msgid "Please enter email address"
364
- msgstr "Prašome įvesti el. pašto adresą"
365
 
366
- #: classes/es-register.php:246
367
- msgctxt "widget-enhanced-select"
368
- msgid "Please provide a valid email address"
369
- msgstr "Prašome nurodyti teisingą el. pašto adresą"
370
 
371
- #: classes/es-register.php:247
372
- msgctxt "widget-enhanced-select"
373
- msgid "loading..."
374
- msgstr "kraunasi..."
375
 
376
- #: classes/es-register.php:248
377
- msgctxt "widget-enhanced-select"
378
- msgid "Cannot create XMLHTTP instance"
379
- msgstr "Nepavyko sukurti XMLHTTP instancijos"
380
 
381
- #: classes/es-register.php:249
382
- msgctxt "widget-enhanced-select"
383
- msgid "Successfully Subscribed."
384
- msgstr "Užsiprenumeravote sėkmingai."
385
 
386
- #: classes/es-register.php:250
387
- msgctxt "widget-enhanced-select"
388
- msgid ""
389
- "Your subscription was successful! Within a few minutes, kindly check the "
390
- "mail in your mailbox and confirm your subscription. If you can't see the "
391
- "mail in your mailbox, please check your spam folder."
392
  msgstr ""
393
- "Jūsų prenumerata pavyko! Per keletą minučių patikrinkite patvirtinimo laišką "
394
- "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
395
- "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
396
-
397
- #: classes/es-register.php:251
398
- msgctxt "widget-enhanced-select"
399
- msgid "Email Address already exists!"
400
- msgstr "El. pašto adresas jau egzistuoja!"
401
 
402
- #: classes/es-register.php:252
403
- msgctxt "widget-enhanced-select"
404
- msgid "Oops.. Unexpected error occurred."
405
- msgstr "Oi.. įvyko netikėta klaida."
406
 
407
- #: classes/es-register.php:253
408
- msgctxt "widget-enhanced-select"
409
- msgid "Invalid email address"
410
- msgstr "Neteisingas el. pašto adresas"
411
 
412
- #: classes/es-register.php:254
413
- msgctxt "widget-enhanced-select"
414
- msgid "Please try after some time"
415
- msgstr "Bandykite vėliau"
416
 
417
- #: classes/es-register.php:255
418
- msgctxt "widget-enhanced-select"
419
- msgid "There was a problem with the request"
420
- msgstr "Iškilo problema dėl užklausos"
421
 
422
- #: classes/es-register.php:262
423
- msgctxt "widget-page-enhanced-select"
424
- msgid "Please enter email address"
425
- msgstr "Prašome įvesti el. pašto adresą"
426
 
427
- #: classes/es-register.php:263
428
- msgctxt "widget-page-enhanced-select"
429
- msgid "Please provide a valid email address"
430
- msgstr "Prašome nurodyti teisingą el. pašto adresą"
431
 
432
- #: classes/es-register.php:264
433
- msgctxt "widget-page-enhanced-select"
434
- msgid "loading..."
435
- msgstr "kraunasi..."
436
 
437
- #: classes/es-register.php:265
438
- msgctxt "widget-page-enhanced-select"
439
- msgid "Cannot create XMLHTTP instance"
440
- msgstr "Nepavyko sukurti XMLHTTP instancijos"
441
 
442
- #: classes/es-register.php:266
443
- msgctxt "widget-page-enhanced-select"
444
- msgid "Successfully Subscribed."
445
- msgstr "Užsiprenumeravote sėkmingai."
446
 
447
- #: classes/es-register.php:267
448
- msgctxt "widget-page-enhanced-select"
449
- msgid ""
450
- "Your subscription was successful! Within a few minutes, kindly check the "
451
- "mail in your mailbox and confirm your subscription. If you can't see the "
452
- "mail in your mailbox, please check your spam folder."
453
  msgstr ""
454
- "Jūsų prenumerata pavyko! Per keletą minučių patikrinkite patvirtinimo laišką "
455
- "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
456
- "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
457
 
458
- #: classes/es-register.php:268
459
- msgctxt "widget-page-enhanced-select"
460
- msgid "Email Address already exists!"
461
- msgstr "El. pašto adresas jau egzistuoja!"
462
 
463
- #: classes/es-register.php:269
464
- msgctxt "widget-page-enhanced-select"
465
- msgid "Oops.. Unexpected error occurred."
466
- msgstr "Oi.. įvyko netikėta klaida."
 
467
 
468
- #: classes/es-register.php:270
469
- msgctxt "widget-page-enhanced-select"
470
- msgid "Invalid email address"
471
- msgstr "Neteisingas el. pašto adresas"
472
 
473
- #: classes/es-register.php:271
474
- msgctxt "widget-page-enhanced-select"
475
- msgid "Please try after some time"
476
- msgstr "Bandykite vėliau"
477
 
478
- #: classes/es-register.php:272
479
- msgctxt "widget-page-enhanced-select"
480
- msgid "There was a problem with the request"
481
- msgstr "Iškilo problema dėl užklausos"
482
 
483
- #: classes/es-register.php:707
484
- msgid "is getting even better!"
485
- msgstr "dar geriau!"
 
 
486
 
487
- #: classes/es-register.php:708
488
- msgid "But I need you to"
489
- msgstr "Bet man reikia jums"
490
 
491
- #: classes/es-register.php:708
492
- msgid "help me prioritize"
493
- msgstr "padėti man nustatyti prioritetus"
 
 
494
 
495
- #: classes/es-register.php:708
496
- msgid "Please send your response today."
497
- msgstr "Prašome atsiųsti savo atsakymą šiandien."
 
498
 
499
- #: classes/es-register.php:715
500
- msgid "Here's how you use ES:"
501
- msgstr "Štai kaip jūs naudojate ES:"
502
 
503
- #: classes/es-register.php:720
504
- msgid "Used Post Notifications more often than Newsletter"
505
- msgstr "Naudojo įrašų pranešimus dažniau nei naujienlaiškį"
506
 
507
- #: classes/es-register.php:722
508
- msgid "Used Newsletter more often than Post Notifications"
509
- msgstr "Naudojo naujienlaiškį dažniau nei įrašų pranešimus"
510
 
511
- #: classes/es-register.php:724
512
- msgid "Used Post Notification &amp; Newsletter equally"
513
- msgstr "Naudojo įrašų pranešimus ir naujienlaiškį vienodai"
514
 
515
- #: classes/es-register.php:728
516
- msgid "Have "
517
- msgstr "Turi"
 
 
518
 
519
- #: classes/es-register.php:728
520
- msgid " Active Subscribers"
521
- msgstr "Aktyvūs prenumeratoriai"
 
 
522
 
523
- #: classes/es-register.php:729
524
- msgid "Post "
525
- msgstr "Įrašas"
526
 
527
- #: classes/es-register.php:729
528
- msgid " blog per week"
529
- msgstr "įrašų per savaitę"
530
 
531
- #: classes/es-register.php:745
532
- msgid "How soon do you want these new features?"
533
- msgstr "Kaip greitai jūs norite šių naujų funkcijų?"
534
 
535
- #: classes/es-register.php:749
536
- msgid "Beautiful Email Designs"
537
- msgstr "Gražūs laiškų dizainai"
 
538
 
539
- #: classes/es-register.php:750 classes/es-register.php:755
540
- #: classes/es-register.php:764 classes/es-register.php:769
541
- msgid "Right now!"
542
- msgstr "Dabar!"
543
 
544
- #: classes/es-register.php:751 classes/es-register.php:756
545
- #: classes/es-register.php:765 classes/es-register.php:770
546
- msgid "Soon"
547
- msgstr "Greitai"
548
 
549
- #: classes/es-register.php:752 classes/es-register.php:757
550
- #: classes/es-register.php:766 classes/es-register.php:771
551
- msgid "Later"
552
- msgstr "Vėliau"
553
 
554
- #: classes/es-register.php:754
555
- msgid "Spam Check, Scheduling... (Better Email Delivery)"
556
- msgstr "Šlamšto tikrinimas, nustatymas... (geresnis laiškų pristatymas)"
557
 
558
- #: classes/es-register.php:763
559
- msgid "Discard Fake / Bouncing Emails"
560
- msgstr "Išmesti neteisingus / neveikiančius el. pašto adresus"
561
 
562
- #: classes/es-register.php:768
563
- msgid "Advanced Reporting"
564
- msgstr "Detalesnės ataskaitos"
565
 
566
- #: classes/es-register.php:791
567
- msgid "Thank you!"
568
- msgstr "Ačiū!"
569
 
570
- #: classes/es-register.php:792
571
- msgid "No issues, have a nice day!"
572
- msgstr "Jokių problemų, gražios dienos!"
573
 
574
- #: classes/es-register.php:1012
575
- msgid "Widget Title"
576
- msgstr "Valdiklio pavadinimas"
577
 
578
- #: classes/es-register.php:1016
579
- msgid "Short description about subscription form"
580
- msgstr "Trumpas prenumeratos formos aprašymas"
 
 
581
 
582
- #: classes/es-register.php:1020
583
- msgid "Display Name Field"
584
- msgstr "Rodyti vardo lauką"
585
 
586
- #: classes/es-register.php:1022 settings/settings-edit.php:140
587
- #: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
588
- msgid "YES"
589
- msgstr "Taip"
590
 
591
- #: classes/es-register.php:1023 settings/settings-edit.php:141
592
- #: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
593
- msgid "NO"
594
- msgstr "Ne"
595
 
596
- #: classes/es-register.php:1027
597
- msgid "Subscriber Group"
598
- msgstr "Prenumeratoriaus grupė"
 
 
 
 
 
 
 
 
599
 
600
- #: compose/compose-add.php:31 compose/compose-edit.php:48
601
- msgid "Please enter template heading."
602
- msgstr "Prašome įvesti šablono antraštę."
603
 
604
- #: compose/compose-add.php:43
605
- msgid "Template successfully created. "
606
- msgstr "Šablonas sėkmingai sukurtas."
 
 
 
 
 
607
 
608
- #: compose/compose-add.php:74
609
- msgid "Add new Email"
610
- msgstr "Pridėti naują el. paštą"
 
611
 
612
- #: compose/compose-add.php:75 compose/compose-edit.php:86
613
- #: compose/compose-preview.php:28 compose/compose-show.php:66
614
- #: notification/notification-add.php:113
615
- #: notification/notification-edit.php:124
616
- #: notification/notification-show.php:54 sendmail/sendmail.php:94
617
- #: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
618
- #: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
619
- #: subscribers/view-subscriber-add.php:114
620
- #: subscribers/view-subscriber-edit.php:113
621
- #: subscribers/view-subscriber-export.php:38
622
- #: subscribers/view-subscriber-import.php:146
623
- #: subscribers/view-subscriber-show.php:246
624
- #: subscribers/view-subscriber-sync.php:92
625
- msgid "Help"
626
- msgstr "Pagalba"
627
 
628
- #: compose/compose-add.php:80 compose/compose-edit.php:91
629
- msgid "Newsletter"
630
- msgstr "Naujienlaiškis"
 
631
 
632
- #: compose/compose-add.php:81 compose/compose-edit.php:92
633
- msgid "Post Notification"
634
- msgstr "Pranešimas apie įrašą"
 
635
 
636
- #: compose/compose-add.php:85 compose/compose-edit.php:96
637
- msgid "Enter your Email Subject"
638
- msgstr "Įveskite laiško temą"
 
639
 
640
- #: compose/compose-add.php:87 compose/compose-edit.php:98
641
- msgid "Keyword: ###POSTTITLE###"
642
- msgstr "Raktažodis: ###POSTTITLE###"
 
643
 
644
- #: compose/compose-add.php:89 compose/compose-edit.php:100
645
- msgid "Enter Content for your Email"
646
- msgstr "Įveskite laiško turinį"
 
647
 
648
- #: compose/compose-add.php:93 compose/compose-edit.php:104
649
- #, c-format
650
- msgid ""
651
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
652
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
653
- "###POSTDESC###, ###POSTFULL###"
654
- msgstr ""
655
- "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
656
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
657
- "###POSTDESC###, ###POSTFULL###"
658
 
659
- #: compose/compose-add.php:93 compose/compose-edit.php:104
660
- msgid "Available Keywords"
661
- msgstr "Galimi raktažodžiai"
 
662
 
663
- #: compose/compose-add.php:97 compose/compose-edit.php:108
664
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
665
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
666
- #: subscribers/view-subscriber-show.php:362
667
- #: subscribers/view-subscriber-show.php:375
668
- msgid "Status"
669
- msgstr "Statusas"
670
 
671
- #: compose/compose-add.php:99 compose/compose-edit.php:110
672
- msgid "Published"
673
- msgstr "Paskelbta"
 
 
 
674
 
675
- #: compose/compose-add.php:101 compose/compose-edit.php:112
676
- msgid "Please select your mail status"
677
- msgstr "Prašome pasirinkti laiško statusą."
 
678
 
679
- #: compose/compose-add.php:105 compose/compose-edit.php:117
680
- #: notification/notification-add.php:253
681
- #: notification/notification-edit.php:290
682
- #: subscribers/view-subscriber-edit.php:191
683
  msgid "Save"
684
  msgstr "Saugoti"
685
 
686
- #: compose/compose-edit.php:20 compose/compose-preview.php:18
687
- #: compose/compose-show.php:33 notification/notification-edit.php:20
688
- #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
689
- #: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
690
  msgid "Oops, selected details does not exists."
691
  msgstr "Oi, pažymėti duomenys neegzistuoja."
692
 
693
- #: compose/compose-edit.php:61
694
- msgid "Template successfully updated. "
695
- msgstr "Šablonas sėkmingai atnaujintas."
 
696
 
697
- #: compose/compose-edit.php:84
698
- msgid "Edit Email"
699
- msgstr "Redaguoti el. paštą"
 
700
 
701
- #: compose/compose-edit.php:85 compose/compose-show.php:65
702
- #: notification/notification-edit.php:123 notification/notification-show.php:53
703
  msgid "Add New"
704
  msgstr "Pridėti naują"
705
 
706
- #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
707
- msgid "Preview Mail"
708
- msgstr "Peržiūrėti laišką"
709
-
710
- #: compose/compose-preview.php:40 compose/compose-show.php:101
711
- #: notification/notification-show.php:100
712
- #: subscribers/view-subscriber-show.php:404
713
- msgid "Edit"
714
- msgstr "Redaguoti"
715
-
716
- #: compose/compose-show.php:14 sendmail/sendmail.php:18
717
- #: subscribers/view-subscriber-show.php:17
718
- msgid "Click Here"
719
- msgstr "Spauskite čia"
720
-
721
- #: compose/compose-show.php:47 notification/notification-show.php:35
722
- #: sentmail/sentmail-show.php:36
723
- msgid "Selected record deleted."
724
- msgstr "Pasirinktas įrašas ištrintas."
725
 
726
- #: compose/compose-show.php:77 compose/compose-show.php:84
727
- #: notification/notification-show.php:68 notification/notification-show.php:76
728
  msgid "Email Subject"
729
  msgstr "Laiško tema"
730
 
731
- #: compose/compose-show.php:78 compose/compose-show.php:85
732
- msgid "Email Template"
733
- msgstr "Laiško šablonas"
 
734
 
735
- #: compose/compose-show.php:79 compose/compose-show.php:86
736
- msgid "Actions"
737
- msgstr "Veiksmai"
 
 
 
 
 
 
 
 
 
 
 
738
 
739
- #: compose/compose-show.php:102 notification/notification-show.php:103
740
- #: subscribers/view-subscriber-show.php:287
741
- #: subscribers/view-subscriber-show.php:409
742
  msgid "Delete"
743
  msgstr "Trinti"
744
 
745
- #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
746
- #: sentmail/sentmail-show.php:124
747
- msgid "Preview"
748
- msgstr "Peržiūra"
749
-
750
- #: compose/compose-show.php:111 notification/notification-show.php:143
751
- #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
752
- #: subscribers/view-subscriber-show.php:432
753
  msgid "No records available."
754
  msgstr "Nėra įrašų."
755
 
756
- #: export/export-email-address.php:45 export/export-email-address.php:49
757
- msgid "Unexpected url submit has been detected"
758
- msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
759
 
760
- #: help/help.php:47
761
- msgid "Welcome to Email Subscribers!"
762
- msgstr "Sveiki prisijungę prie El. pašto prenumeratorių!"
763
 
764
- #: help/help.php:48
765
- msgid ""
766
- "Thanks for installing and we hope you will enjoy using Email Subscribers."
767
- msgstr ""
768
- "Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
769
- "prenumeratorius."
 
 
 
 
 
 
770
 
771
- #: help/help.php:52
772
- msgid "For more help and tips..."
773
- msgstr "Norėdami gauti daugiau pagalbos ir patarimų..."
774
 
775
- #: help/help.php:67
776
- #, c-format
777
  msgid ""
778
- "Like Email Subscribers? If yes, then consider %s to support further "
779
- "developments."
780
  msgstr ""
781
- "Patinka Email Subscribers? Jei taip, apsvarstykite %s paremti tolimesnį "
782
- "vystymą."
 
783
 
784
- #: help/help.php:67
785
- msgid "donating to us"
786
- msgstr "dovanojant mums"
787
 
788
- #: help/help.php:99
789
- msgid "Frequently Asked Questions"
790
- msgstr "Dažnai užduodami klausimai"
791
-
792
- #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
793
- #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
794
- #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
795
- #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
796
- #: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:181
797
- #: help/help.php:184 help/help.php:186
798
- #, c-format
799
- msgid "%s"
800
- msgstr "%s"
801
 
802
- #: help/help.php:118
803
- msgid "How to Add Subscription box to website?"
804
- msgstr "Kaip pridėti prenumeratos formą svetainėje?"
805
 
806
- #: help/help.php:127
807
- msgid "General Plugin Settings"
808
- msgstr "Bendrieji įskiepio nustatymai"
809
 
810
- #: help/help.php:130
811
- msgid "How to Import or Export Email Addresses?"
812
- msgstr "Kaip importuoti ar eksportuoti el. pašto adresus?"
813
 
814
- #: help/help.php:133
815
- msgid "How to change/update/translate any texts from Email Subscribers?"
816
- msgstr ""
817
- "Kaip pakeisti/atnaujinti/išversti bet kokį El. pašto prenumeratorių tekstą?"
818
 
819
- #: help/help.php:136
820
- msgid "How to add Unsubscribe link in emails?"
821
- msgstr "Kaip pridėti prenumeratos atsisakymo nuorodą laiškuose?"
822
 
823
- #: help/help.php:139
824
- msgid "How to Compose and Send Newsletter Emails?"
825
- msgstr "Kaip kurti ir siųsti naujienlaiškių laiškus?"
826
 
827
- #: help/help.php:157
828
- msgid "Subscribers are not receiving Emails?"
829
- msgstr "Prenumeratoriai negauna laiškų?"
 
 
 
 
830
 
831
- #: help/help.php:160
832
- msgid "How to show subscribe form inside a popup?"
833
- msgstr "Kaip rodyti prenumeratos formą iššokančiame lange?"
834
 
835
- #: help/help.php:163
836
- msgid "How to use Rainmaker’s form in Email Subscribers?"
837
- msgstr "Kaip naudoti Rainmaker formą El. pašto prenumeratai?"
838
 
839
- #: help/help.php:175
840
- msgid "How to Schedule Cron Emails in cPanel?"
841
- msgstr "Kaip nustatyti tvarkaraštį periodinių užduočių (cron) laiškams cPanel?"
842
 
843
- #: help/help.php:178
844
- msgid "How to Schedule Cron Emails in Parallels Plesk?"
845
- msgstr ""
846
- "Kaip nustatyti tvarkaraštį periodinių užduočių (cron) laiškams Parallels "
847
- "Plesk?"
848
 
849
- #: help/help.php:181
850
- msgid "What to do if Hosting doesn’t support Cron Jobs?"
851
- msgstr " daryti jei serveris nepalaiko periodinių užduočių (cron job)?"
852
 
853
- #: help/help.php:184
854
- msgid "CSS Help"
855
- msgstr "CSS pagalba"
 
 
 
 
 
 
 
856
 
857
- #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
858
- #: job/es-unsubscribe.php:61
859
  msgid ""
860
- "Oops.. We are getting some technical error. Please try again or contact "
861
- "admin."
862
  msgstr ""
863
- "Oi.. Iškilo techninė klaida. Bandykite dar kartą arba susisiekite su "
864
- "administratoriumi."
865
 
866
- #: job/es-optin.php:61
867
- msgid "This email address has already been confirmed."
868
- msgstr "Šis el. pašto adresas jau patvirtintas."
869
 
870
- #: notification/notification-add.php:33
871
- msgid "Please select subscribers group."
872
- msgstr "Prašome pasirinkti prenumeratorių grupę."
873
 
874
- #: notification/notification-add.php:39
875
- msgid "Please select notification status."
876
- msgstr "Prašome pasirinkti pranešimo statusą."
 
 
 
 
877
 
878
- #: notification/notification-add.php:45 notification/notification-edit.php:61
879
  msgid ""
880
- "Please select notification mail subject. Use compose menu to create new."
 
881
  msgstr ""
882
- "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
883
- "meniu \"Sukurti\"."
884
 
885
- #: notification/notification-add.php:51 notification/notification-edit.php:67
886
- msgid "Please select post categories."
887
- msgstr "Prašome pasirinkti įrašo kategorijas."
 
 
 
 
888
 
889
- #: notification/notification-add.php:71
890
- msgid "Notification successfully created. "
891
- msgstr "Pranešimas sėkmingai sukurtas."
 
892
 
893
- #: notification/notification-add.php:112
894
- msgid "Add Notification"
895
- msgstr "Pridėti pranešimą"
 
896
 
897
- #: notification/notification-add.php:120
898
- msgid "Select Subscribers Group"
899
- msgstr "Pasirinkite prenumeratorių grupę"
900
 
901
- #: notification/notification-add.php:124 notification/notification-add.php:148
902
- #: notification/notification-edit.php:135
903
- #: notification/notification-edit.php:168 sendmail/sendmail.php:110
904
- #: sendmail/sendmail.php:137 sendmail/sendmail.php:151
905
- #: subscribers/view-subscriber-add.php:162
906
- #: subscribers/view-subscriber-edit.php:162
907
- #: subscribers/view-subscriber-import.php:190
908
- #: subscribers/view-subscriber-sync.php:119
909
- msgid "Select"
910
- msgstr "Pasirinkite"
911
 
912
- #: notification/notification-add.php:142 notification/notification-edit.php:162
913
- msgid "Select Notification Email Subject"
914
- msgstr "Pasirinkite pranešimo laiško temą"
915
 
916
- #: notification/notification-add.php:143 notification/notification-edit.php:163
917
- msgid "(Use compose menu to create new)"
918
- msgstr "(Norėdami sukurti naują, naudokite meniu Kurti)"
 
 
 
 
919
 
920
- #: notification/notification-add.php:167 notification/notification-edit.php:190
921
- msgid "Select Post Categories"
922
- msgstr "Pasirinkite įrašo kategorijas"
 
 
 
 
923
 
924
- #: notification/notification-add.php:195 notification/notification-edit.php:225
925
- msgid "Check All"
926
- msgstr "Žymėti viską"
927
 
928
- #: notification/notification-add.php:196 notification/notification-edit.php:226
929
- msgid "Uncheck All"
930
- msgstr "Nežymėti nieko"
931
 
932
- #: notification/notification-add.php:202 notification/notification-edit.php:233
933
- msgid "Select your Custom Post Type"
934
- msgstr "Pasirinkite pasirinktinio įrašo tipą"
935
 
936
- #: notification/notification-add.php:203 notification/notification-edit.php:234
937
- msgid "(Optional)"
938
- msgstr "(Neprivalomas)"
939
 
940
- #: notification/notification-add.php:232 notification/notification-edit.php:268
941
- msgid "No Custom Post Types Available"
942
- msgstr "Nėra laisvų pasirinktinio įrašo tipų"
 
 
943
 
944
- #: notification/notification-add.php:239 notification/notification-edit.php:275
945
- msgid "Select Notification Status when a new post is published"
946
- msgstr "Pasirinkite pranešimo statusą, kai naujas įrašas yra paskelbiamas"
947
 
948
- #: notification/notification-add.php:243
949
- #: notification/notification-edit.php:279
950
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
951
- msgid "Send email immediately"
952
- msgstr "Siųsti laišką nedelsiant"
953
 
954
- #: notification/notification-add.php:244
955
- #: notification/notification-edit.php:280
956
- #: notification/notification-show.php:132
957
- msgid "Add to cron and send email via cron job"
958
- msgstr ""
959
- "Pridėti prie periodinių užduočių (cron) ir siųsti laiškus naudojant "
960
- "periodines užduotis (cron job)"
961
 
962
- #: notification/notification-add.php:245 notification/notification-edit.php:281
963
- msgid "Disable email notification"
964
- msgstr "Išjungti pranešimą el. paštu"
 
 
965
 
966
- #: notification/notification-edit.php:49
967
- msgid "Please select subscribers group"
968
- msgstr "Prašome pasirinkti prenumeratorių grupę"
969
 
970
- #: notification/notification-edit.php:55
971
- msgid "Please select notification status"
972
- msgstr "Prašome pasirinkti pranešimo statusą"
973
 
974
- #: notification/notification-edit.php:89
975
- msgid "Notification successfully updated. "
976
- msgstr "Pranešimas sėkmingai atnaujintas."
 
977
 
978
- #: notification/notification-edit.php:122
979
- msgid "Edit Notification"
980
- msgstr "Redaguoti pranešimą"
981
 
982
- #: notification/notification-edit.php:131
983
- #: subscribers/view-subscriber-show.php:289
984
- msgid "Update Subscribers Group"
985
- msgstr "Atnaujinti prenumeratorių grupę"
986
 
987
- #: notification/notification-show.php:57
988
  msgid ""
989
- "Use this to setup and send notification emails to your subscribers when a "
990
- "new post is published in your blog."
991
  msgstr ""
992
- "Naudokite norėdami nustatyti ir siųsti pranešimo laiškus savo "
993
- "prenumeratoriams, kai paskelbiamas naujas įrašas jūsų svetainėje."
994
 
995
- #: notification/notification-show.php:69 notification/notification-show.php:77
996
- msgid "Subscribers Group"
997
- msgstr "Prenumeratorių grupė"
998
 
999
- #: notification/notification-show.php:70 notification/notification-show.php:78
1000
- msgid "Post Categories / Custom Post Types"
1001
- msgstr "Įrašo kategorijos / Pasirinktiniai įrašo tipai"
1002
 
1003
- #: notification/notification-show.php:71 notification/notification-show.php:79
1004
- msgid "Notification Status"
1005
- msgstr "Pranešimo statusas"
 
 
1006
 
1007
- #: sendmail/sendmail.php:40
1008
- msgid "Please select your mail subject."
1009
- msgstr "Prašome pasirinkti laiško temą."
1010
 
1011
- #: sendmail/sendmail.php:46
1012
- msgid "Please select your mail type."
1013
- msgstr "Prašome pasirinkti laiško tipą."
1014
 
1015
- #: sendmail/sendmail.php:52
1016
- msgid "Please select your group."
1017
- msgstr "Prašome pasirinkti savo grupę."
1018
 
1019
- #: sendmail/sendmail.php:59
1020
- msgid "Mail sent successfully. "
1021
- msgstr "Laiškas išsiųstas sėkmingai."
1022
-
1023
- #: sendmail/sendmail.php:63
1024
- msgid "Click here to check Statistics"
1025
- msgstr "Norėdami peržiūrėti statistiką, spauskite čia"
1026
-
1027
- #: sendmail/sendmail.php:69
1028
- msgid "Oops.. We are getting some error. mail not sending."
1029
- msgstr "Oi.. Iškilo šiek tiek klaidų. Laiškas nesiunčiamas."
1030
-
1031
- #: sendmail/sendmail.php:97
1032
- msgid "Use this to send newsletter emails to your subscribers."
1033
- msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
1034
-
1035
- #: sendmail/sendmail.php:105
1036
- msgid "Select Email Subject from available list"
1037
- msgstr "Pasirinkite laiško temą iš sąrašo"
1038
-
1039
- #: sendmail/sendmail.php:132
1040
- msgid "Select Email Type"
1041
- msgstr "Pasirinkite laiško tipą"
1042
-
1043
- #: sendmail/sendmail.php:139
1044
- msgid "Send email via cron job"
1045
- msgstr "Siųsti laišką naudojant periodines užduotis (cron job)"
1046
 
1047
- #: sendmail/sendmail.php:146
1048
- msgid "Select Subscribers group to Send Email"
1049
- msgstr "Pasirinkite prenumeratorių grupę, kuriai siųsti laišką"
1050
 
1051
- #: sendmail/sendmail.php:178
1052
- msgid "Recipients : 0 "
1053
- msgstr "Gavėjai: 0"
1054
 
1055
- #: sendmail/sendmail.php:180
1056
- #, c-format
1057
- msgid "Recipients : %s"
1058
- msgstr "Gavėjai: %s"
1059
 
1060
- #: sendmail/sendmail.php:183
1061
- msgid ""
1062
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1063
- "that you change above Mail Type to Cron and Send Mail via Cron Job.</strong>"
1064
- "<br>Click on Help for more information."
1065
- msgstr ""
1066
- "<br><br><strong>Jūsų gavėjų skaičius viršija 100.<br>Mes primygtinai siūlome "
1067
- "jums pakeisti pašto siuntimo tipą į periodinių užduočių (cron) ir siųsti "
1068
- "laiškus naudojant periodines užduotis (cron).</strong><br>Norėdami gauti "
1069
- "daugiau informacijos spauskite Pagalba."
1070
 
1071
- #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1072
- msgid "Send Email"
1073
- msgstr "Siųsti laišką"
1074
 
1075
- #: sendmail/sendmail.php:199
1076
- msgid "Reset"
1077
- msgstr "Atstatyti"
1078
 
1079
- #: sentmail/deliverreport-show.php:14
1080
- msgid "Oops.. Unexpected error occurred. Please try again."
1081
- msgstr "Oi.. įvyko netikėta klaida. Bandykite dar kartą."
1082
 
1083
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1084
  msgid " &lt;&lt; "
1085
  msgstr "&lt;&lt;"
1086
 
1087
- #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1088
  msgid " &gt;&gt; "
1089
  msgstr "&gt;&gt;"
1090
 
1091
- #: sentmail/deliverreport-show.php:60
1092
- msgid "Delivery Report"
1093
- msgstr "Pristatymo ataskaita"
1094
-
1095
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1096
- #: subscribers/view-subscriber-export.php:45
1097
- #: subscribers/view-subscriber-export.php:53
1098
- msgid "Sno"
1099
- msgstr "Nr."
1100
-
1101
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1102
- msgid "Email"
1103
- msgstr "El. paštas"
1104
-
1105
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1106
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1107
- msgid "Sent"
1108
- msgstr "Išsiųsta"
1109
-
1110
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1111
- msgid "Sent Date"
1112
- msgstr "Išsiuntimo data"
1113
-
1114
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1115
- msgid "Viewed Status"
1116
- msgstr "Peržiūrėjimo būsena"
1117
-
1118
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1119
- msgid "Viewed Date"
1120
- msgstr "Peržiūrėjimo data"
1121
-
1122
- #: sentmail/sentmail-preview.php:42
1123
- msgid "Back"
1124
- msgstr "Atgal"
1125
-
1126
- #: sentmail/sentmail-show.php:43
1127
- msgid "Successfully deleted all reports except latest 10."
1128
- msgstr "Sėkmingai ištrintos visos, išskyrus naujausias 10, ataskaitos."
1129
 
1130
- #: sentmail/sentmail-show.php:100
1131
- msgid ""
1132
- "It will show reports for all Newsletters & Post Notification emails sent."
1133
  msgstr ""
1134
  "Jis parodys visų el. paštu siųstų naujienlaiškių ir pranešimų apie įrašus "
1135
  "ataskaitas."
1136
 
1137
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1138
  msgid "View Reports"
1139
  msgstr "Peržiūrėti ataskaitas"
1140
 
1141
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
 
 
 
 
 
1142
  msgid "Type"
1143
  msgstr "Tipas"
1144
 
1145
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
 
 
 
 
 
 
 
 
 
 
 
 
1146
  msgid "Start Date"
1147
  msgstr "Pradžios data"
1148
 
1149
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1150
  msgid "End Date"
1151
  msgstr "Pabaigos Data"
1152
 
1153
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1154
  msgid "Total"
1155
  msgstr "Viso"
1156
 
1157
- #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1158
- #: subscribers/view-subscriber-export.php:48
1159
- #: subscribers/view-subscriber-export.php:56
1160
- #: subscribers/view-subscriber-show.php:365
1161
- #: subscribers/view-subscriber-show.php:378
1162
  msgid "Action"
1163
  msgstr "Veiksmas"
1164
 
1165
- #: sentmail/sentmail-show.php:193
1166
  msgid "Optimize Table & Delete Records"
1167
  msgstr "Optimizuoti lentelę ir trinti įrašus"
1168
 
1169
- #: sentmail/sentmail-show.php:202
1170
  msgid ""
1171
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1172
  "button to delete all reports except latest 10."
@@ -1174,932 +1128,1110 @@ msgstr ""
1174
  "Pastaba: Norėdami ištrinti visus, išskyrus 10 naujausių, ataskaitų, "
1175
  "paspauskite <strong>Optimizuoti lentelę ir trinti įrašus</strong> mygtuką."
1176
 
1177
- #: settings/setting-sync.php:16
1178
- msgid "Table sync completed successfully."
1179
- msgstr "Lentelės sinchronizavimas sėkmingai įvykdytas."
1180
-
1181
- #: settings/setting-sync.php:29
1182
- msgid "Sync plugin tables"
1183
- msgstr "Sinchronizuoti įskiepio lenteles"
1184
-
1185
- #: settings/setting-sync.php:33
1186
- msgid "Click to sync tables"
1187
- msgstr "Spauskite jei norite sinchronizuoti lenteles"
1188
 
1189
- #: settings/settings-edit.php:23
1190
- msgid "Admin"
1191
- msgstr "Administratorius"
1192
 
1193
- #: settings/settings-edit.php:24
1194
- msgid "Signup Confirmation"
1195
- msgstr "Registracijos patvirtinimas"
 
 
1196
 
1197
- #: settings/settings-edit.php:25
1198
- msgid "User Roles"
1199
- msgstr "Vartotojo vaidmenys"
1200
 
1201
- #: settings/settings-edit.php:26
1202
- msgid "Cron"
1203
- msgstr "Periodinės užduotys (cron)"
1204
 
1205
- #: settings/settings-edit.php:64
1206
- msgid "Save Settings"
1207
- msgstr "Išsaugoti nustatymus"
1208
 
1209
- #: settings/settings-edit.php:76
1210
- msgid "Sender of Notifications"
1211
- msgstr "Pranešimų siuntėjas"
1212
 
1213
- #: settings/settings-edit.php:77
1214
  msgid ""
1215
- "Choose a FROM name and FROM email address for all the emails to be sent from "
1216
- "this plugin."
1217
  msgstr ""
1218
- "Pasirinkite siuntėjo vardą ir elektroninio pašto adresą visiems šio įskiepio "
1219
- "siunčiamiems laiškams."
1220
 
1221
- #: settings/settings-edit.php:87
1222
- msgid "Mail Type"
1223
- msgstr "Laiško tipas"
1224
 
1225
- #: settings/settings-edit.php:88
1226
- msgid ""
1227
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1228
- "Option 3 & 4 is to send mails with PHP method mail()."
1229
- msgstr ""
1230
- "1 ir 2 variantai naudoja standartinį Wordpress metodą wp_mail(). 3 ir 4 "
1231
- "variantai naudoja PHP metodą mail()."
1232
 
1233
- #: settings/settings-edit.php:92
1234
- msgid "1. WP HTML MAIL"
1235
- msgstr "1. WP HTML laiškas"
1236
 
1237
- #: settings/settings-edit.php:93
1238
- msgid "2. WP PLAINTEXT MAIL"
1239
- msgstr "2. WP paprasto teksto laiškas"
 
1240
 
1241
- #: settings/settings-edit.php:94
1242
- msgid "3. PHP HTML MAIL"
1243
- msgstr "3. PHP HTML laiškas"
 
1244
 
1245
- #: settings/settings-edit.php:95
1246
- msgid "4. PHP PLAINTEXT MAIL"
1247
- msgstr "4. PHP paprasto teksto laiškas"
1248
 
1249
- #: settings/settings-edit.php:102
1250
- msgid "Opt-In Option"
1251
- msgstr "Prenumeratos patvirtinimas"
1252
 
1253
- #: settings/settings-edit.php:103
1254
- msgid ""
1255
- "Double Opt In means subscribers need to confirm their email address by an "
1256
- "activation link sent them on a activation email message.<br />Single Opt In "
1257
- "means subscribers do not need to confirm their email address."
1258
- msgstr ""
1259
- "Dvigubas patvirtinimas reiškia, kad prenumeratoriai turi patvirtinti savo el."
1260
- " pašto adresą aktyvuodami nuorodą aktyvacijos laiške.<br />Viengubas "
1261
- "patvirtinimas reiškia, kad prenumeratoriai neturi patvirtinti savo el. pašto "
1262
- "adreso."
1263
 
1264
- #: settings/settings-edit.php:107
1265
- msgid "Double Opt In"
1266
- msgstr "Dvigubas patvirtinimas"
 
 
1267
 
1268
- #: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
1269
- #: subscribers/view-subscriber-edit.php:150
1270
- #: subscribers/view-subscriber-import.php:178
1271
- #: subscribers/view-subscriber-show.php:312
1272
- #: subscribers/view-subscriber-show.php:339
1273
- msgid "Single Opt In"
1274
- msgstr "Viengubas patvirtinimas"
1275
 
1276
- #: settings/settings-edit.php:114
1277
- msgid "Image Size"
1278
- msgstr "Paveikslėlio dydis"
1279
 
1280
- #: settings/settings-edit.php:115
1281
- msgid ""
1282
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1283
- "Emails."
1284
- msgstr ""
1285
- "Pasirinkite vaizdo dydį ###POSTIMAGE###, kuris bus rodomas pranešimų apie "
1286
- "įrašus laiškuose."
1287
 
1288
- #: settings/settings-edit.php:119
1289
- msgid "Full Size"
1290
- msgstr "Visas dydis"
1291
 
1292
- #: settings/settings-edit.php:120
1293
- msgid "Medium Size"
1294
- msgstr "Vidutinis dydis"
1295
 
1296
- #: settings/settings-edit.php:121
1297
- msgid "Thumbnail"
1298
- msgstr "Miniatiūra"
 
 
1299
 
1300
- #: settings/settings-edit.php:127
1301
- msgid "Admin Email Addresses"
1302
- msgstr "Administratorių el. pašto adresai"
 
 
1303
 
1304
- #: settings/settings-edit.php:128
1305
- msgid ""
1306
- "Enter the admin email addresses that should receive notifications (separated "
1307
- "by comma)."
1308
- msgstr ""
1309
- "Įveskite Administratorių elektroninio pašto adresus, kuriais turėtų būti "
1310
- "siunčiami pranešimai (atskiriant kableliu)."
1311
 
1312
- #: settings/settings-edit.php:134
1313
- msgid "Notify admin when a new subscriber signs up"
1314
- msgstr "Informuoti administratorių, kai naujas prenumeratorius užsiregistruoja"
1315
 
1316
- #: settings/settings-edit.php:135
1317
- msgid ""
1318
- "To send admin email notifications for the new subscriber. This option must "
1319
- "be set to YES."
1320
- msgstr ""
1321
- "Norėdami siųsti pranešimus administratoriams apie naujus prenumeratorius, "
1322
- "turite nustatyti TAIP."
1323
 
1324
- #: settings/settings-edit.php:147
1325
- msgid "Admin Email Subject when a new subscriber signs up"
1326
- msgstr "Laiško administratoriui, kai prenumeratorius užsiregistruoja, tema"
 
 
 
1327
 
1328
- #: settings/settings-edit.php:148
1329
- msgid ""
1330
- "Enter the subject for the admin email which will be sent whenever a new "
1331
- "email is added and confirmed."
1332
- msgstr ""
1333
- "Įrašykite laiško administratoriui, kuris siunčiamas kai naujas el. pašto "
1334
- "adresas pridedamas ir patvirtinamas, temą."
1335
 
1336
- #: settings/settings-edit.php:154
1337
- msgid "Admin Email Content when a new subscriber signs up"
1338
- msgstr "Laiško administratoriui, kai prenumeratorius užsiregistruoja, turinys"
1339
 
1340
- #: settings/settings-edit.php:162
1341
- msgid "Sent Report Subject"
1342
- msgstr "Išsiųstų laiškų ataskaitos tema"
 
1343
 
1344
- #: settings/settings-edit.php:163
1345
- msgid ""
1346
- "Enter the subject for the sent email report. It will be emailed to Admin."
1347
  msgstr ""
1348
- "Įrašykite siųstų laiškų ataskaitos laiško temą. Jis bus siunčiamas "
1349
- "administratoriui."
1350
-
1351
- #: settings/settings-edit.php:169
1352
- msgid "Sent Report Content"
1353
- msgstr "Išsiųstų laiškų ataskaitos turinys"
1354
 
1355
- #: settings/settings-edit.php:170
1356
- msgid ""
1357
- "Enter the content for the sent email report. It will be emailed to Admin. "
1358
- "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1359
- msgstr ""
1360
- "Įrašykite siųstų laiškų ataskaitos laiško turinį. Jis bus siunčiamas "
1361
- "administratoriui. (Raktažodis: ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
1362
- "###ENDTIME###)"
1363
 
1364
- #: settings/settings-edit.php:179
1365
- msgid "Double Opt In Email Subject (Confirmation Email)"
1366
- msgstr "Dvigubo patvirtinimo laiško tema (Patvirtinimo laiškas)"
 
 
1367
 
1368
- #: settings/settings-edit.php:180
1369
- msgid ""
1370
- "Enter the subject for the confirmation email to be sent for Double Opt In "
1371
- "whenever a user signs up."
1372
  msgstr ""
1373
- "Įrašykite dvigubo patvirtinimo laiško, kuris bus siunčiamas, kai vartotojas "
1374
- "užsisakys prenumeratą, temą"
1375
 
1376
- #: settings/settings-edit.php:186
1377
- msgid "Double Opt In Email Content (Confirmation Email)"
1378
- msgstr "Dvigubo patvirtinimo laiško turinys (Patvirtinimo laiškas)"
1379
 
1380
- #: settings/settings-edit.php:187
1381
- msgid ""
1382
- "Enter the content for the confirmation email to be sent for Double Opt In "
1383
- "whenever a user signs up. (Keyword: ###NAME###, ###LINK###)"
1384
- msgstr ""
1385
- "Įveskite dvigubo patvirtinimo laiško, kuris bus siunčiamas, kai vartotojas "
1386
- "užsisakys prenumeratą, turinį. (Raktažodis: ###NAME###, ###LINK###)"
1387
 
1388
- #: settings/settings-edit.php:193
1389
- msgid "Double Opt In Confirmation Link"
1390
- msgstr "Dvigubo patvirtinimo nuoroda"
1391
 
1392
- #: settings/settings-edit.php:194
1393
- msgid "It is a readonly field and you are advised not to modify it."
1394
- msgstr "Laukas tik skaitymui ir patartina jo nekeisti."
1395
 
1396
- #: settings/settings-edit.php:200
1397
- msgid ""
1398
- "Text to display after an email address is successfully subscribed from "
1399
- "Double Opt In (confirmation) Email"
1400
- msgstr ""
1401
- "Rodomas tekstas po sėkmingos prenumeratos patvirtinimo iš dvigubo "
1402
- "patvirtinimo laiško."
1403
-
1404
- #: settings/settings-edit.php:201
1405
- msgid ""
1406
- "This text will be displayed once user clicks on email confirmation link from "
1407
- "the Double Opt In (confirmation) Email."
1408
- msgstr ""
1409
- "Šis tekstas bus rodomas, kai vartotojas paspaus ant dvigubo patvirtinimo "
1410
- "laiške esančios nuorodos."
1411
-
1412
- #: settings/settings-edit.php:208
1413
- msgid "Subscriber Welcome Email"
1414
- msgstr "Prenumeratoriaus pasveikinimo laiškas"
1415
-
1416
- #: settings/settings-edit.php:209
1417
- msgid ""
1418
- "To send welcome email to subscriber after successful signup. This option "
1419
- "must be set to YES."
1420
- msgstr ""
1421
- "Norėdami išsiųsti pasveikinimo laišką prenumeratoriui po sėkmingos "
1422
- "registracijos, turite nustatyti TAIP."
1423
-
1424
- #: settings/settings-edit.php:220
1425
- msgid "Subscriber Welcome Email Subject"
1426
- msgstr "Prenumeratoriaus pasveikinimo laiško tema"
1427
-
1428
- #: settings/settings-edit.php:221
1429
- msgid ""
1430
- "Enter the subject for the subscriber welcome email. This will be sent "
1431
- "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1432
- "(if Single Opt In) successfully."
1433
- msgstr ""
1434
- "Įrašykite prenumeratoriaus pasveikinimo laiško temą. Jis bus siunčiamas, kai "
1435
- "vartotojo el. pašto adresas patvirtinamas (Dvigubo patvirtinimo atveju) arba "
1436
- "užsiregistruoja (Viengubo patvirtinimo atveju) sėkmingai."
1437
-
1438
- #: settings/settings-edit.php:227
1439
- msgid "Subscriber Welcome Email Content"
1440
- msgstr "Prenumeratoriaus pasveikinimo laiško turinys"
1441
 
1442
- #: settings/settings-edit.php:228
1443
- msgid ""
1444
- "Enter the content for the subscriber welcome email whenever a user's email "
1445
- "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1446
- "successfully. (Keyword: ###NAME###, ###GROUP###, ###LINK###)"
1447
- msgstr ""
1448
- "Įveskite prenumeratoriaus sveikinimo laiško turinį, kuris bus siunčiamas, "
1449
- "kai prenumeratoriaus el. pašto adresas patvirtinimas (dvigubo patvirtinimo "
1450
- "atveju) arba prenumerata sėkminga (viengubo patvirtinimo atveju). "
1451
- "(Raktažodis: ###NAME###, ###GROUP###, ###LINK###)"
1452
 
1453
- #: settings/settings-edit.php:236
1454
- msgid "Unsubscribe Link"
1455
- msgstr "Prenumeratos atsisakymo nuoroda"
 
1456
 
1457
- #: settings/settings-edit.php:237
1458
- msgid ""
1459
- "The unsubscribe link gets added automatically to all emails that are sent "
1460
- "from this plugin. It is a readonly field and you are advised not to modify "
1461
- "it."
1462
- msgstr ""
1463
- "Prenumeratos atsisakymo nuoroda prideda automatiškai visuose el. pašto "
1464
- "laiškuose, kurie siunčiami šio įskiepio. Šis laukas tik skaitymui ir "
1465
- "nerekomenduojame jo keisti."
1466
 
1467
- #: settings/settings-edit.php:243
1468
- msgid "Unsubscribe Text in Email"
1469
- msgstr "Prenumeratos atsisakymo tekstas laiške"
 
1470
 
1471
- #: settings/settings-edit.php:244
1472
- msgid ""
1473
- "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1474
- "link in the emails. (Keyword: ###LINK###)"
1475
- msgstr ""
1476
- "Įveskite prenumeratos atsisakymo nuorodos tekstą. Jis bus pridėtas kartu su "
1477
- "prenumeratos atsisakymo nuoroda visuose laiškuose. (Raktažodis: ###LINK###)"
1478
 
1479
- #: settings/settings-edit.php:250
1480
- msgid "Text to display after an email address is unsubscribed"
1481
- msgstr "Rodomas tekstas po el. pašto adreso prenumeratos atšaukimo."
1482
 
1483
- #: settings/settings-edit.php:251
1484
- msgid "This text will be displayed once user clicks on unsubscribe link."
1485
- msgstr ""
1486
- "Šis tekstas bus rodomas, kai vartotojas paspaus ant prenumeratos atsisakymo "
1487
- "nuorodos."
1488
 
1489
- #: settings/settings-edit.php:258
1490
- msgid "Error in the Confirmation Link"
1491
- msgstr "Patvirtinimo nuorodos klaida"
1492
 
1493
- #: settings/settings-edit.php:259
1494
- msgid ""
1495
- "Default message to display if there is any issue while clicking on "
1496
- "confirmation link from the Double Opt In (confirmation) Emails."
1497
- msgstr ""
1498
- "Numatytoji žinutė, kuri rodoma, jei kyla kokių nors problemų paspaudus ant "
1499
- "patvirtinimo nuorodos dvigubo patvirtinimo laiške."
1500
 
1501
- #: settings/settings-edit.php:265
1502
- msgid "Error in the Unsubscribe Link"
1503
- msgstr "Prenumeratos atsisakymo nuorodos klaida"
1504
 
1505
- #: settings/settings-edit.php:266
1506
- msgid ""
1507
- "Default message to display if there is any issue while clicking on "
1508
- "unsubscribe link from the Emails."
1509
- msgstr ""
1510
- "Numatytoji žinutė, kuri rodoma, jei kyla problemų paspaudus ant laiškuose "
1511
- "rodomos prenumeratos atsisakymo nuorodos."
1512
 
1513
- #: settings/settings-edit.php:276
1514
- msgid ""
1515
- "Select user roles who can access following menus. Only Admin can change this."
1516
- msgstr ""
1517
- "Pasirinkite vartotojo vaidmenis, kurie gali pasiekti šiuos meniu. Tik "
1518
- "administratorius gali tai pakeisti."
1519
 
1520
- #: settings/settings-edit.php:282
1521
- msgid "Subscribers Menu"
1522
- msgstr "Prenumeratorių meniu"
1523
 
1524
- #: settings/settings-edit.php:286 settings/settings-edit.php:298
1525
- #: settings/settings-edit.php:310 settings/settings-edit.php:322
1526
- #: settings/settings-edit.php:334
1527
- msgid "Administrator Only"
1528
- msgstr "Tik administratoriui"
1529
 
1530
- #: settings/settings-edit.php:287 settings/settings-edit.php:299
1531
- #: settings/settings-edit.php:311 settings/settings-edit.php:323
1532
- #: settings/settings-edit.php:335
1533
- msgid "Administrator/Editor"
1534
- msgstr "Administratorius/redaktorius"
1535
 
1536
- #: settings/settings-edit.php:288 settings/settings-edit.php:300
1537
- #: settings/settings-edit.php:312 settings/settings-edit.php:324
1538
- #: settings/settings-edit.php:336
1539
- msgid "Administrator/Editor/Author/Contributor"
1540
- msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
1541
 
1542
- #: settings/settings-edit.php:294
1543
- msgid "Compose Menu"
1544
- msgstr "Kurti meniu"
1545
 
1546
- #: settings/settings-edit.php:306
1547
- msgid "Post Notifications Menu"
1548
- msgstr "Pranešimų apie įrašus meniu"
1549
 
1550
- #: settings/settings-edit.php:330
1551
- msgid "Reports Menu"
1552
- msgstr "Ataskaitų meniu"
 
1553
 
1554
- #: settings/settings-edit.php:345
1555
- msgid "Cron job URL"
1556
- msgstr "Periodinių užduočių (cron) adresas"
 
1557
 
1558
- #: settings/settings-edit.php:346
1559
- msgid ""
1560
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
1561
- "modify it."
1562
- msgstr ""
1563
- "Tai jūsų periodinės užduoties (cron) adresas. Laukas tik skaitymui ir "
1564
- "patartina jo nekeisti."
1565
 
1566
- #: settings/settings-edit.php:355
1567
- msgid "Email Count"
1568
- msgstr "Laiškų skaičius"
 
1569
 
1570
- #: settings/settings-edit.php:356
1571
- msgid "Number of emails that you want to trigger per hour."
1572
- msgstr "Laiškų, kuriuos norite išsiųsti per valandą, skaičius"
1573
 
1574
- #: settings/settings-edit.php:361
1575
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
1576
- msgstr ""
1577
- "(Jūsų serveris turi limitą. Saugumo dėlei, mes siūlome 50 laiškų per valandą "
1578
- "limitą)"
1579
 
1580
- #: settings/settings-edit.php:366
1581
- msgid "Admin Report"
1582
- msgstr "Administratoriaus ataskaita"
 
1583
 
1584
- #: settings/settings-edit.php:367
1585
- msgid ""
1586
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
1587
- "###DATE###, ###SUBJECT###, ###COUNT###)"
1588
- msgstr ""
1589
- "Siųsti laišką administratoriui, kai periodinės užduoties (cron) adresas yra "
1590
- "aktyvuojamas serveryje. (Raktažodžiai: ###DATE###, ###SUBJECT###, "
1591
- "###COUNT###)"
1592
 
1593
- #: settings/settings-edit.php:377
1594
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
1595
- msgstr ""
1596
- "Kas yra periodinės užduotys (cron)(automatiniai laiškai) ir kaip jas "
1597
- "nustatyti?"
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
 
1635
- #: settings/settings-edit.php:495
1636
- msgid "Please enter sender of notifications from name."
1637
- msgstr "Prašome įvesti pranešimų siuntėjo vardą."
1638
 
1639
- #: settings/settings-edit.php:500
1640
- msgid "Please enter sender of notifications from email."
1641
- msgstr "Prašome įvesti pranešimų siuntėjo el. paštą."
1642
 
1643
- #: settings/settings-edit.php:544
1644
- msgid "Please enter valid mail count."
1645
- msgstr "Prašome įvesti teisingą laiškų kiekį."
1646
 
1647
- #: settings/settings-edit.php:557
1648
- msgid "Settings Saved."
1649
- msgstr "Nustatymai išsaugoti."
1650
 
1651
- #: settings/settings-edit.php:560
1652
- msgid "Oops, unable to update."
1653
- msgstr "Oi, negalima atnaujinti."
1654
 
1655
- #: subscribers/view-subscriber-add.php:36
1656
- #: subscribers/view-subscriber-edit.php:54
1657
  msgid "Please enter subscriber email address."
1658
  msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
1659
 
1660
- #: subscribers/view-subscriber-add.php:49
1661
  msgid "Please select or create your group for this email."
1662
  msgstr "Prašome pasirinkti arba sukurti grupę šiam el. paštui."
1663
 
1664
- #: subscribers/view-subscriber-add.php:56
1665
  msgid ""
1666
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1667
  "the group name."
1668
  msgstr ""
1669
- "Klaida: Grupės pavadinime negalima naudoti specialių simbolių (['^$%&*()}"
1670
- "{@#~?><>,|=_+\\\"])."
1671
 
1672
- #: subscribers/view-subscriber-add.php:66
1673
  msgid "Subscriber has been saved."
1674
  msgstr "Prenumeratorius išsaugotas."
1675
 
1676
- #: subscribers/view-subscriber-add.php:68
1677
  msgid "Subscriber already exists."
1678
  msgstr "Prenumeratorius jau yra."
1679
 
1680
- #: subscribers/view-subscriber-add.php:71
1681
  msgid "Invalid Email."
1682
  msgstr "Neteisingas el. paštas."
1683
 
1684
- #: subscribers/view-subscriber-add.php:110
1685
- #: subscribers/view-subscriber-edit.php:109
1686
- #: subscribers/view-subscriber-export.php:35
1687
- #: subscribers/view-subscriber-import.php:143
1688
- #: subscribers/view-subscriber-show.php:242
1689
- #: subscribers/view-subscriber-sync.php:89
1690
- msgid "Add New Subscriber"
1691
- msgstr "Pridėti naują prenumeratorių"
1692
-
1693
- #: subscribers/view-subscriber-add.php:111
1694
- #: subscribers/view-subscriber-edit.php:110
1695
- #: subscribers/view-subscriber-export.php:36
1696
- #: subscribers/view-subscriber-import.php:210
1697
- #: subscribers/view-subscriber-show.php:243
1698
- #: subscribers/view-subscriber-sync.php:90
1699
- msgid "Import"
1700
- msgstr "Importuoti"
1701
-
1702
- #: subscribers/view-subscriber-add.php:112
1703
- #: subscribers/view-subscriber-edit.php:111
1704
- #: subscribers/view-subscriber-import.php:144
1705
- #: subscribers/view-subscriber-show.php:244
1706
- #: subscribers/view-subscriber-sync.php:91
1707
- msgid "Export"
1708
- msgstr "Eksportuoti"
1709
-
1710
- #: subscribers/view-subscriber-add.php:113
1711
- #: subscribers/view-subscriber-edit.php:112
1712
- #: subscribers/view-subscriber-export.php:37
1713
- #: subscribers/view-subscriber-import.php:145
1714
- #: subscribers/view-subscriber-show.php:245
1715
- #: subscribers/view-subscriber-sync.php:143
1716
- msgid "Sync"
1717
- msgstr "Sinchronizuoti"
1718
-
1719
- #: subscribers/view-subscriber-add.php:123
1720
  msgid "Enter Subscriber's Full name"
1721
  msgstr "Įveskite prenumeratoriaus vardą ir pavardę"
1722
 
1723
- #: subscribers/view-subscriber-add.php:133
1724
  msgid "Enter Subscriber's Email Address"
1725
  msgstr "Įveskite prenumeratoriaus el. pašto adresą"
1726
 
1727
- #: subscribers/view-subscriber-add.php:143
1728
  msgid "Select Subscriber's Status"
1729
  msgstr "Pasirinkite prenumeratoriaus statusą"
1730
 
1731
- #: subscribers/view-subscriber-add.php:148
1732
- #: subscribers/view-subscriber-edit.php:147
1733
- #: subscribers/view-subscriber-import.php:175
1734
- #: subscribers/view-subscriber-show.php:309
1735
- #: subscribers/view-subscriber-show.php:336
1736
- msgid "Confirmed"
1737
- msgstr "Patvirtinta"
1738
-
1739
- #: subscribers/view-subscriber-add.php:149
1740
- #: subscribers/view-subscriber-edit.php:148
1741
- #: subscribers/view-subscriber-import.php:176
1742
- #: subscribers/view-subscriber-show.php:310
1743
- #: subscribers/view-subscriber-show.php:337
1744
- msgid "Unconfirmed"
1745
- msgstr "Nepatvirtintas"
1746
-
1747
- #: subscribers/view-subscriber-add.php:150
1748
- #: subscribers/view-subscriber-edit.php:149
1749
- #: subscribers/view-subscriber-import.php:177
1750
- #: subscribers/view-subscriber-show.php:311
1751
- #: subscribers/view-subscriber-show.php:338
1752
- msgid "Unsubscribed"
1753
- msgstr "Nutraukė prenumeratą"
1754
-
1755
- #: subscribers/view-subscriber-add.php:158
1756
  msgid "Select (or) Create Group for Subscriber"
1757
  msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriui"
1758
 
1759
- #: subscribers/view-subscriber-add.php:174
1760
- #: subscribers/view-subscriber-import.php:202
1761
- msgid "(or)"
1762
- msgstr "(arba)"
1763
-
1764
- #: subscribers/view-subscriber-add.php:183
1765
  msgid "Add Subscriber"
1766
  msgstr "Pridėti prenumeratorių"
1767
 
1768
- #: subscribers/view-subscriber-edit.php:64
1769
  msgid "Error: Special characters are not allowed in the group name."
1770
  msgstr "Klaida: Grupės pavadinime negalima naudoti specialių simbolių."
1771
 
1772
- #: subscribers/view-subscriber-edit.php:74
1773
  msgid "Subscriber details updated."
1774
  msgstr "Prenumeratoriaus duomenys atnaujinti."
1775
 
1776
- #: subscribers/view-subscriber-edit.php:76
1777
  msgid "Subscriber already exists for this group."
1778
  msgstr "Prenumeratorius jau yra šioje grupėje."
1779
 
1780
- #: subscribers/view-subscriber-edit.php:108
1781
  msgid "Edit Subscriber"
1782
  msgstr "Redaguoti prenumeratorių"
1783
 
1784
- #: subscribers/view-subscriber-edit.php:122
1785
  msgid "Subscriber's Full Name"
1786
  msgstr "Prenumeratoriaus pilnas vardas"
1787
 
1788
- #: subscribers/view-subscriber-edit.php:132
1789
  msgid "Subscriber's Email Address"
1790
  msgstr "Prenumeratoriaus el. pašto adresas"
1791
 
1792
- #: subscribers/view-subscriber-edit.php:142
1793
  msgid "Update Subscriber's Status"
1794
  msgstr "Atnaujinti prenumeratoriaus statusą"
1795
 
1796
- #: subscribers/view-subscriber-edit.php:157
1797
  msgid "Update Subscriber's Group"
1798
  msgstr "Atnaujinti prenumeratoriaus grupę"
1799
 
1800
- #: subscribers/view-subscriber-export.php:34
1801
- msgid "Export Email Addresses"
1802
- msgstr "Eksportuoti el. pašto adresus"
1803
 
1804
- #: subscribers/view-subscriber-export.php:46
1805
- #: subscribers/view-subscriber-export.php:54
1806
- msgid "Type of List to Export"
1807
- msgstr "Sąrašo eksportuoti tipas"
1808
 
1809
- #: subscribers/view-subscriber-export.php:47
1810
- #: subscribers/view-subscriber-export.php:55
1811
- msgid "Total Emails Count"
1812
- msgstr "Laiškų skaičius iš viso"
1813
 
1814
- #: subscribers/view-subscriber-export.php:61
1815
- msgid "1"
1816
- msgstr "1"
1817
 
1818
- #: subscribers/view-subscriber-export.php:62
1819
- msgid "All Subscribers"
1820
- msgstr "Visi prenumeratoriai"
1821
 
1822
- #: subscribers/view-subscriber-export.php:64
1823
- #: subscribers/view-subscriber-export.php:70
1824
- #: subscribers/view-subscriber-export.php:76
1825
- #: subscribers/view-subscriber-export.php:82
1826
- #: subscribers/view-subscriber-export.php:88
1827
- msgid "Click to Export in CSV"
1828
- msgstr "Norėdami eksportuoti CSV, spauskite čia"
1829
 
1830
- #: subscribers/view-subscriber-export.php:67
1831
- msgid "2"
1832
- msgstr "2"
1833
 
1834
- #: subscribers/view-subscriber-export.php:68
1835
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1836
- msgstr ""
1837
- "Aktyvūs prenumeratoriai (Statusas: Patvirtinta ir viengubas patvirtinimas)"
1838
 
1839
- #: subscribers/view-subscriber-export.php:73
1840
- msgid "3"
1841
- msgstr "3"
1842
 
1843
- #: subscribers/view-subscriber-export.php:74
1844
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1845
- msgstr ""
1846
- "Neaktyvūs prenumeratoriai (Statusas: Nepatvirtintas ir Nutraukė prenumeratą)"
1847
 
1848
- #: subscribers/view-subscriber-export.php:79
1849
- msgid "4"
1850
- msgstr "4"
1851
 
1852
- #: subscribers/view-subscriber-export.php:80
1853
- msgid "WordPress Registered Users"
1854
- msgstr "WordPress registruoti vartotojai"
1855
 
1856
- #: subscribers/view-subscriber-export.php:85
1857
- msgid "5"
1858
- msgstr "5"
1859
 
1860
- #: subscribers/view-subscriber-export.php:86
1861
- msgid "Commented Authors"
1862
- msgstr "Komentuoti autoriai"
1863
 
1864
- #: subscribers/view-subscriber-import.php:44
1865
- msgid ""
1866
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1867
- "the Group name."
1868
- msgstr ""
1869
- "Klaida: Grupės pavadinime negalima naudoti specialių simbolių (['^$%&*()}"
1870
- "{@#~?><>,|=_+\\\"])."
1871
 
1872
- #: subscribers/view-subscriber-import.php:92
1873
- msgid "email imported."
1874
- msgstr "el. paštas importuotas."
1875
 
1876
- #: subscribers/view-subscriber-import.php:93
1877
- msgid "email already exists."
1878
- msgstr "el. paštas jau egzistuoja."
 
1879
 
1880
- #: subscribers/view-subscriber-import.php:94
1881
- msgid "email are invalid."
1882
- msgstr "netinkamas el. pašto adresas."
1883
 
1884
- #: subscribers/view-subscriber-import.php:97
1885
- #: subscribers/view-subscriber-import.php:126
1886
- msgid "Click here"
1887
- msgstr "Spauskite čia"
1888
 
1889
- #: subscribers/view-subscriber-import.php:97
1890
- #: subscribers/view-subscriber-import.php:126
1891
- msgid " to view details."
1892
- msgstr "peržiūrėti detales."
1893
 
1894
- #: subscribers/view-subscriber-import.php:105
1895
- msgid "File Upload Failed."
1896
- msgstr "Nepavyko įkelti failo."
 
 
 
 
 
1897
 
1898
- #: subscribers/view-subscriber-import.php:142
1899
- msgid "Import Email Addresses"
1900
- msgstr "Importuoti el. pašto adresus"
1901
 
1902
- #: subscribers/view-subscriber-import.php:155
1903
- msgid "Select CSV file"
1904
- msgstr "Pasirinkite CSV failą"
1905
 
1906
- #: subscribers/view-subscriber-import.php:157
1907
- msgid "Check CSV structure "
1908
- msgstr "Patikrinkite CSV struktūrą"
 
 
1909
 
1910
- #: subscribers/view-subscriber-import.php:158
1911
- msgid "from here"
1912
- msgstr "iš čia"
 
1913
 
1914
- #: subscribers/view-subscriber-import.php:169
1915
- msgid "Select Subscribers Email Status"
1916
- msgstr "Pasirinkite prenumeratoriaus el. pašto statusą"
 
 
 
 
 
1917
 
1918
- #: subscribers/view-subscriber-import.php:185
1919
- msgid "Select (or) Create Group for Subscribers"
1920
- msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriams"
1921
 
1922
- #: subscribers/view-subscriber-show.php:45
1923
- msgid "Selected details does not exists."
1924
- msgstr "Pažymėti duomenys neegzistuoja."
 
 
 
 
 
 
1925
 
1926
- #: subscribers/view-subscriber-show.php:56
1927
- #: subscribers/view-subscriber-show.php:95
1928
- msgid "Record deleted."
1929
- msgstr "Įrašas ištrintas."
1930
 
1931
- #: subscribers/view-subscriber-show.php:67
1932
- msgid ""
1933
- "To send confirmation email, please change the Opt-in option to Double Opt In."
1934
- msgstr ""
1935
- "Norėdami siųsti patvirtinimo laišką, prašome pakeisti prenumeratos "
1936
- "patvirtinimo nustatymą į Dvigubas patvirtinimas."
1937
 
1938
- #: subscribers/view-subscriber-show.php:75
1939
- #: subscribers/view-subscriber-show.php:134
1940
- msgid "Confirmation emails Resent Successfully."
1941
- msgstr "Patvirtinimo laiškai pakartotinai išsiųsti sėkmingai."
1942
 
1943
- #: subscribers/view-subscriber-show.php:100
1944
- #: subscribers/view-subscriber-show.php:139
1945
- #: subscribers/view-subscriber-show.php:177
1946
- #: subscribers/view-subscriber-show.php:216
1947
- msgid "No record was selected."
1948
- msgstr "Nebuvo pasirinktas įrašas."
1949
 
1950
- #: subscribers/view-subscriber-show.php:115
1951
- msgid ""
1952
- "To send confirmation mail, please change the Opt-in option to Double Opt In."
1953
- msgstr ""
1954
- "Norėdami išsiųsti patvirtinimo laišką, prašome pakeisti prenumeravimo "
1955
- "variantą į \"Dvigubas patvirtinimas\"."
1956
 
1957
- #: subscribers/view-subscriber-show.php:163
1958
- msgid "Subscribers Group updated."
1959
- msgstr "Atnaujinta prenumeratorių grupė."
1960
 
1961
- #: subscribers/view-subscriber-show.php:168
1962
- msgid "Please select New group to update."
1963
- msgstr "Prašome pasirinkti naują grupę atnaujinimui."
1964
 
1965
- #: subscribers/view-subscriber-show.php:202
1966
- msgid "Subscribers Status updated."
1967
- msgstr "Prenumeratorių būsena atnaujinta."
1968
 
1969
- #: subscribers/view-subscriber-show.php:207
1970
- msgid "Please select New Status to update."
1971
- msgstr "Prašome pasirinkti naują būseną atnaujinimui."
1972
 
1973
- #: subscribers/view-subscriber-show.php:252
1974
- #, c-format
1975
- msgid "Total Subscribers: %s"
1976
- msgstr "Prenumeratorių iš viso: %s"
1977
 
1978
- #: subscribers/view-subscriber-show.php:254
1979
- #, c-format
1980
- msgid "Active Subscribers: %s"
1981
- msgstr "Aktyvių prenumeratorių: %s"
1982
 
1983
- #: subscribers/view-subscriber-show.php:286
1984
- msgid "Bulk Actions"
1985
- msgstr "Masiniai veiksmai"
1986
 
1987
- #: subscribers/view-subscriber-show.php:288
1988
- #: subscribers/view-subscriber-show.php:417
1989
- msgid "Resend Confirmation"
1990
- msgstr "Persiųsti patvirtinimą dar kartą"
1991
 
1992
- #: subscribers/view-subscriber-show.php:290
1993
- msgid "Update Subscribers Status"
1994
- msgstr "Atnaujinti prenumeratorių būseną"
1995
 
1996
- #: subscribers/view-subscriber-show.php:293
1997
- msgid "Select Group"
1998
- msgstr "Pasirinkti grupę"
1999
 
2000
- #: subscribers/view-subscriber-show.php:308
2001
- msgid "Select Status"
2002
- msgstr "Pasirinkite būseną"
2003
 
2004
- #: subscribers/view-subscriber-show.php:314
2005
- msgid "Apply"
2006
- msgstr "Tinkinti"
2007
 
2008
- #: subscribers/view-subscriber-show.php:318
2009
- msgid "All Groups"
2010
- msgstr "Visos grupės"
2011
 
2012
- #: subscribers/view-subscriber-show.php:335
2013
- msgid "All Status"
2014
- msgstr "Visos būsenos"
2015
 
2016
- #: subscribers/view-subscriber-show.php:342
2017
- msgid "1 to 500 emails"
2018
- msgstr "Nuo 1 iki 500 laiškų"
2019
 
2020
- #: subscribers/view-subscriber-show.php:343
2021
- msgid "501 to 1000"
2022
- msgstr "Nuo 501 iki 1000"
2023
 
2024
- #: subscribers/view-subscriber-show.php:344
2025
- msgid "1001 to 1500"
2026
- msgstr "Nuo 1001 iki 1500"
 
2027
 
2028
- #: subscribers/view-subscriber-show.php:345
2029
- msgid "1501 to 2000"
2030
- msgstr "Nuo 1501 iki 2000"
 
 
 
 
 
 
 
2031
 
2032
- #: subscribers/view-subscriber-show.php:346
2033
- msgid "2001 to 4000"
2034
- msgstr "Nuo 2001 iki 4000"
2035
 
2036
- #: subscribers/view-subscriber-show.php:347
2037
- msgid "4001 to 6000"
2038
- msgstr "Nuo 4001 iki 6000"
2039
 
2040
- #: subscribers/view-subscriber-show.php:348
2041
- msgid "6001 to 10000"
2042
- msgstr "Nuo 6001 iki 10000"
 
 
 
 
 
 
 
 
2043
 
2044
- #: subscribers/view-subscriber-show.php:349
2045
- msgid "Display All"
2046
- msgstr "Rodyti visus"
2047
 
2048
- #: subscribers/view-subscriber-show.php:360
2049
- #: subscribers/view-subscriber-show.php:373
2050
- msgid "Email Address"
2051
- msgstr "El. pašto adresas"
2052
 
2053
- #: subscribers/view-subscriber-show.php:363
2054
- #: subscribers/view-subscriber-show.php:376
2055
- msgid "Group"
2056
- msgstr "Grupė"
2057
 
2058
- #: subscribers/view-subscriber-show.php:364
2059
- #: subscribers/view-subscriber-show.php:377
2060
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2061
- msgstr "Registracijos data ir laikas<br>(Y-M-D H:I:S)"
2062
 
2063
- #: subscribers/view-subscriber-sync.php:36
2064
- msgid "Please select default group to newly registered user."
2065
- msgstr "Prašome pasirinkti numatytąją grupę naujai registruotiems vartotojams."
2066
 
2067
- #: subscribers/view-subscriber-sync.php:50
2068
- msgid "Emails Successfully Synced."
2069
- msgstr "El. pašto adresai sėkmingai sinchronizuoti."
2070
 
2071
- #: subscribers/view-subscriber-sync.php:88
2072
- msgid "Sync Email"
2073
- msgstr "Sinchronizuoti el. paštą"
2074
 
2075
- #: subscribers/view-subscriber-sync.php:101
2076
- msgid "Sync newly registered users to subscribers list"
2077
- msgstr "Sinchronizuoti naujai registruotus vartotojus prenumeratorių sąraše"
2078
 
2079
- #: subscribers/view-subscriber-sync.php:114
2080
- msgid "Select group to add newly registered users to"
2081
- msgstr "Pasirinkite grupę, į kurią įtraukti naujai registruotus vartotojus"
 
 
 
 
 
 
 
 
 
 
2082
 
2083
  #. Name of the plugin
2084
- msgid "Email Subscribers & Newsletters"
2085
- msgstr "Email Subscribers & Newsletters"
 
 
2086
 
2087
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
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 ""
2096
- "Add subscription forms on website, send HTML newsletters & automatically "
2097
- "notify subscribers about new blog posts once it is published."
2098
- msgstr ""
2099
- "Pridėkite prenumeratos formas interneto svetainėje, siųskite HTML "
2100
- "naujienlaiškius ir automatiškai praneškite prenumeratoriams apie naujus "
2101
- "įrašus, kai jie yra paskelbiami."
2102
 
2103
- #. Author of the plugin
2104
- msgid "Icegram"
2105
- msgstr "Icegram"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:25:24 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Lithuanian\n"
11
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 "
12
  "&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
 
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Loco-Source-Locale: lt_LT\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
26
  "X-Loco-Target-Locale: lt_LT\n"
27
  "X-Loco-Parser: loco_parse_po"
28
 
29
+ #. URI of the plugin
30
+ msgid "https://www.icegram.com"
31
+ msgstr ""
32
 
33
+ #: ../email-subscribers.php:70
34
+ msgctxt "timezone date format"
35
+ msgid "Y-m-d H:i:s"
36
+ msgstr ""
37
 
38
+ #: ../settings/settings-edit.php:92
39
+ msgid "Email Type"
40
+ msgstr ""
41
 
42
+ #: ../settings/settings-edit.php:93
43
  msgid ""
44
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
45
+ "Option 3 & 4 is to send emails with PHP method mail()."
46
+ msgstr ""
47
+
48
+ #: ../settings/settings-edit.php:107
49
+ msgid "Opt-In Type"
50
  msgstr ""
 
 
 
51
 
52
+ #: ../settings/settings-edit.php:108
53
  msgid ""
54
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
55
+ "soon as they subscribe to your list. They have to confirm their subscription "
56
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
57
+ "subscriber is not asked to confirm their email address. They are subscribed "
58
+ "directly in the list."
59
  msgstr ""
 
 
60
 
61
+ #: ../settings/settings-edit.php:139
62
+ msgid "Notify Admin when a new subscriber signs up"
63
+ msgstr ""
64
 
65
+ #: ../settings/settings-edit.php:152
66
+ msgid "Admin Email Subject on new subscriber sign up"
67
  msgstr ""
 
 
68
 
69
+ #: ../settings/settings-edit.php:153
70
+ msgid ""
71
+ "Subject for the admin email whenever a new subscriber signs up and is "
72
+ "confirmed."
73
+ msgstr ""
74
 
75
+ #: ../settings/settings-edit.php:159
76
+ msgid "Admin Email Content on new subscriber signs up"
77
+ msgstr ""
78
 
79
+ #: ../settings/settings-edit.php:160
80
+ msgid ""
81
+ "Content for the admin email whenever a new subscriber signs up and is "
82
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
83
  msgstr ""
 
84
 
85
+ #: ../settings/settings-edit.php:168
86
+ msgid "Subject for the email report which will be sent to admin."
87
+ msgstr ""
88
 
89
+ #: ../settings/settings-edit.php:175
90
+ msgid ""
91
+ "Content for the email report which will be sent to admin.<br />(Available "
92
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
93
+ msgstr ""
94
 
95
+ #: ../settings/settings-edit.php:186
96
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
97
+ msgstr ""
98
 
99
+ #: ../settings/settings-edit.php:187
100
  msgid ""
101
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
102
+ "subscriber signs up."
103
+ msgstr ""
104
+
105
+ #: ../settings/settings-edit.php:193
106
+ msgid "Double Opt-In Email Content (Confirmation Email)"
107
  msgstr ""
 
 
 
108
 
109
+ #: ../settings/settings-edit.php:194
110
  msgid ""
111
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
112
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
 
 
113
  msgstr ""
 
 
 
 
114
 
115
+ #: ../settings/settings-edit.php:200
116
+ msgid "Double Opt-In Confirmation Link"
117
+ msgstr ""
118
 
119
+ #: ../settings/settings-edit.php:207
120
+ msgid ""
121
+ "Text to display after an email address is successfully subscribed from "
122
+ "Double Opt-In (Confirmation) Email"
123
+ msgstr ""
124
 
125
+ #: ../settings/settings-edit.php:215
126
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
127
+ msgstr ""
128
 
129
+ #: ../settings/settings-edit.php:227
130
+ msgid "Subject for Welcome Email"
131
+ msgstr ""
132
 
133
+ #: ../settings/settings-edit.php:228
134
+ msgid ""
135
+ "Subject for the subscriber welcome email. This will be sent whenever a "
136
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
137
+ "Opt-In) successfully."
138
+ msgstr ""
139
 
140
+ #: ../settings/settings-edit.php:234
141
+ msgid "Email Content for Welcome Email"
142
+ msgstr ""
143
 
144
+ #: ../settings/settings-edit.php:235
145
+ msgid ""
146
+ "Content for the subscriber welcome email whenever a user's email is either "
147
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
148
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
149
+ msgstr ""
150
 
151
+ #: ../settings/settings-edit.php:244
152
+ msgid ""
153
+ "This unsubscribe link is automatically added to all the emails that are sent "
154
+ "from this plugin. It is a readonly field and you are advised not to modify "
155
+ "it."
156
+ msgstr ""
157
 
158
+ #: ../settings/settings-edit.php:251
159
+ msgid ""
160
+ "The text for the unsubscribe link. This text is automatically added with "
161
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
162
+ msgstr ""
163
 
164
+ #: ../settings/settings-edit.php:258
165
+ msgid ""
166
+ "This text will be displayed once user clicks on unsubscribe link from the "
167
+ "email."
168
  msgstr ""
 
 
169
 
170
+ #: ../settings/settings-edit.php:265
171
+ msgid "Error in the Subscribe / Confirmation Link"
172
+ msgstr ""
173
 
174
+ #: ../settings/settings-edit.php:266
175
+ msgid ""
176
+ "Default message to display if there is any issue while clicking on subscribe "
177
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
178
+ msgstr ""
179
 
180
+ #: ../settings/settings-edit.php:273
181
+ msgid ""
182
+ "Default message to display if there is any issue while clicking on "
183
+ "unsubscribe link from the emails."
184
+ msgstr ""
185
 
186
+ #: ../settings/settings-edit.php:372
187
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
188
+ msgstr ""
189
 
190
+ #: ../settings/settings-edit.php:377
191
+ msgid "Cron Report"
192
+ msgstr ""
 
 
193
 
194
+ #: ../settings/settings-edit.php:378
195
+ msgid ""
196
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
197
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
198
+ msgstr ""
199
 
200
+ #: ../settings/settings-edit.php:389
201
+ msgid ""
202
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
203
+ "schedule-cron-emails/?"
204
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
205
+ "Cron?</a>"
206
+ msgstr ""
207
 
208
+ #: ../settings/settings-edit.php:390
209
+ msgid ""
210
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
211
+ "schedule-cron-emails-in-cpanel/?"
212
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
213
+ "job in cPanel</a>"
214
+ msgstr ""
215
 
216
+ #: ../settings/settings-edit.php:391
217
+ msgid ""
218
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
219
+ "schedule-cron-emails-in-parallels-plesk/?"
220
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
221
+ "job in Plesk</a>"
222
+ msgstr ""
223
 
224
+ #: ../settings/settings-edit.php:392
225
+ msgid ""
226
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
227
+ "if-hosting-doesnt-support-cron-jobs/?"
228
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
229
+ "does not support cron jobs?</a>"
230
+ msgstr ""
231
 
232
+ #: ../compose/compose-edit.php:61
233
+ msgid "Successfully updated. "
234
+ msgstr ""
 
235
 
236
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
237
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
238
+ msgstr ""
239
 
240
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
241
+ #, php-format
242
+ msgid ""
243
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
244
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
245
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
246
  msgstr ""
 
247
 
248
+ #: ../compose/compose-add.php:43
249
+ msgid "Successfully created. "
250
+ msgstr ""
 
251
 
252
+ #: ../help/help.php:178
253
+ msgid "Get more help and tips..."
254
+ msgstr ""
 
255
 
256
+ #: ../help/help.php:192
257
+ #, php-format
258
+ msgid "Version: %s"
259
+ msgstr ""
260
 
261
+ #: ../help/help.php:195
262
+ msgid "Questions? Need Help?"
263
+ msgstr ""
 
264
 
265
+ #: ../help/help.php:196
266
+ msgid "Contact Us"
267
+ msgstr ""
 
268
 
269
+ #: ../help/help.php:236
270
+ msgid "Description"
271
+ msgstr ""
 
272
 
273
+ #: ../help/help.php:238
 
274
  msgid ""
275
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
276
+ "leads, send automated new blog post notification emails, create & send "
277
+ "newsletters and manage all this in one single place."
278
  msgstr ""
 
 
 
279
 
280
+ #: ../help/help.php:240
281
+ msgid "Feature Overview"
282
+ msgstr ""
 
283
 
284
+ #: ../help/help.php:243
285
+ msgid ""
286
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
287
+ "Code)."
288
+ msgstr ""
289
 
290
+ #: ../help/help.php:246
291
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
292
+ msgstr ""
 
293
 
294
+ #: ../help/help.php:249
295
+ msgid "Send automatic welcome email to subscribers."
296
+ msgstr ""
 
297
 
298
+ #: ../help/help.php:252
 
299
  msgid ""
300
+ "Send new post notification emails to subscribers when new posts are "
301
+ "published on your website."
302
  msgstr ""
 
 
303
 
304
+ #: ../help/help.php:255
305
+ msgid "Schedule email (Cron job) or send them manually."
306
+ msgstr ""
 
307
 
308
+ #: ../help/help.php:258
309
+ msgid "Send email notification to admin when a new user signs up."
310
+ msgstr ""
 
311
 
312
+ #: ../help/help.php:261
313
+ msgid "Automatically add Unsubscribe link in the email."
314
+ msgstr ""
 
315
 
316
+ #: ../help/help.php:264
317
+ msgid "Easily migrate subscribers from another app using Import & Export."
 
 
318
  msgstr ""
 
 
319
 
320
+ #: ../help/help.php:267
321
+ msgid "Use HTML editor to compose newsletters and post notifications."
322
+ msgstr ""
 
323
 
324
+ #: ../help/help.php:270
325
+ msgid "Send newsletters to different groups."
326
+ msgstr ""
 
327
 
328
+ #: ../help/help.php:273
329
+ msgid "Get detailed sent email reports."
330
+ msgstr ""
 
331
 
332
+ #: ../help/help.php:276
333
+ msgid "Control user access (User Roles and Capabilities)."
334
+ msgstr ""
 
335
 
336
+ #: ../help/help.php:279
337
+ msgid "Supports localization and internationalization."
338
+ msgstr ""
339
+
340
+ #: ../help/help.php:286
341
+ msgid "Add Subscribe form"
342
+ msgstr ""
343
+
344
+ #: ../help/help.php:291
345
+ #, php-format
346
  msgid ""
347
+ "Use any of the following 3 methods :<br>\n"
348
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
349
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
350
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
351
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
352
+ " c) Copy and past this php code to your desired template location : "
353
+ "<strong>%s</strong>"
354
  msgstr ""
 
 
355
 
356
+ #: ../help/help.php:296
357
+ msgid "Additional form settings"
358
+ msgstr ""
 
359
 
360
+ #: ../help/help.php:311
361
+ #, php-format
362
+ msgid "Modify %s"
363
+ msgstr ""
364
 
365
+ #: ../help/help.php:311
366
+ msgid "default text, email contents"
 
367
  msgstr ""
 
368
 
369
+ #: ../help/help.php:311
370
+ msgid ""
371
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
372
+ "Roles"
373
+ msgstr ""
374
 
375
+ #: ../help/help.php:320
376
+ msgid "How to change/update/translate any texts from the plugin?"
377
+ msgstr ""
 
378
 
379
+ #: ../help/help.php:333
380
+ msgid "Usage"
381
+ msgstr ""
 
382
 
383
+ #: ../help/help.php:336
384
+ msgid "Compose and Send Newsletter Emails"
385
+ msgstr ""
 
386
 
387
+ #: ../help/help.php:339
388
+ msgid "Compose and Send Post Notification Emails when new posts are published"
389
+ msgstr ""
 
390
 
391
+ #: ../help/help.php:342
392
+ msgid "Keywords in the Post Notifications"
393
+ msgstr ""
 
394
 
395
+ #: ../help/help.php:345
396
+ msgid "Send a test post notification email to myself/testgroup"
 
 
 
 
397
  msgstr ""
 
 
 
 
 
 
 
 
398
 
399
+ #: ../help/help.php:348
400
+ msgid "Check sent emails"
401
+ msgstr ""
 
402
 
403
+ #: ../help/help.php:355
404
+ msgid "Cron Job Setup"
405
+ msgstr ""
 
406
 
407
+ #: ../help/help.php:361
408
+ msgid "Schedule Cron Emails in cPanel"
409
+ msgstr ""
 
410
 
411
+ #: ../help/help.php:364
412
+ msgid "Schedule Cron Emails in Parallels Plesk"
413
+ msgstr ""
 
414
 
415
+ #: ../help/help.php:367
416
+ msgid "Hosting doesn’t support Cron Jobs?"
417
+ msgstr ""
 
418
 
419
+ #: ../help/help.php:374
420
+ msgid "Troubleshooting Steps"
421
+ msgstr ""
 
422
 
423
+ #: ../help/help.php:382
424
+ msgid "FAQ's"
425
+ msgstr ""
 
426
 
427
+ #: ../help/help.php:389
428
+ msgid "Want to do more? Here's how.."
429
+ msgstr ""
 
430
 
431
+ #: ../help/help.php:392
432
+ msgid "Allow Subscribers to get subscribed to any group"
433
+ msgstr ""
 
434
 
435
+ #: ../help/help.php:397
436
+ msgid "Using our free "
 
 
 
 
437
  msgstr ""
 
 
 
438
 
439
+ #: ../help/help.php:398
440
+ msgid "Group Selector"
441
+ msgstr ""
 
442
 
443
+ #: ../help/help.php:399
444
+ msgid ""
445
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
446
+ "grouping option right next to the form."
447
+ msgstr ""
448
 
449
+ #: ../help/help.php:402
450
+ msgid "The user can then subscribe to whichever group most appeals to them."
451
+ msgstr ""
 
452
 
453
+ #: ../help/help.php:405
454
+ msgid "For example: Subscribe either to Updates or to Offers."
455
+ msgstr ""
 
456
 
457
+ #: ../help/help.php:409
458
+ msgid "Show your subscribe form inside attractive popups"
459
+ msgstr ""
 
460
 
461
+ #: ../help/help.php:414
462
+ msgid ""
463
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
464
+ "bars, slide-ins, sidebars, full screen popups etc."
465
+ msgstr ""
466
 
467
+ #: ../help/help.php:417
468
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
469
+ msgstr ""
470
 
471
+ #: ../help/help.php:421
472
+ msgid ""
473
+ "Icegram's beautiful designs instantly capture user attention and help "
474
+ "increase sign-ups to your WordPress website."
475
+ msgstr ""
476
 
477
+ #: ../help/help.php:424 ../help/help.php:444
478
+ #, php-format
479
+ msgid "How to %s"
480
+ msgstr ""
481
 
482
+ #: ../help/help.php:424
483
+ msgid "show subscribe form inside a popup"
484
+ msgstr ""
485
 
486
+ #: ../help/help.php:428
487
+ msgid "Get beautiful and elegant form styles"
488
+ msgstr ""
489
 
490
+ #: ../help/help.php:434
491
+ msgid "Email subscribers easily integrates with another free plugin "
492
+ msgstr ""
493
 
494
+ #: ../help/help.php:435
495
+ msgid "Rainmaker"
496
+ msgstr ""
497
 
498
+ #: ../help/help.php:438
499
+ msgid ""
500
+ "Rainmaker extends the core features of Email Subscribers and provides "
501
+ "elegant form styles."
502
+ msgstr ""
503
 
504
+ #: ../help/help.php:441
505
+ msgid ""
506
+ "These styles are well designed and beautify your subscription form making it "
507
+ "more appealing."
508
+ msgstr ""
509
 
510
+ #: ../help/help.php:444
511
+ msgid "add Rainmaker’s form in Email Subscribers"
512
+ msgstr ""
513
 
514
+ #: ../sendmail/sendmail.php:59
515
+ msgid "Email sent successfully. "
516
+ msgstr ""
517
 
518
+ #: ../classes/es-register.php:164
519
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
520
+ msgstr ""
521
 
522
+ #: ../classes/es-register.php:707
523
+ msgctxt "timezone date format"
524
+ msgid "Y-m-d"
525
+ msgstr ""
526
 
527
+ #: ../classes/es-register.php:737
528
+ msgid "Post Notifications more often than Newsletter"
529
+ msgstr ""
 
530
 
531
+ #: ../classes/es-register.php:739
532
+ msgid "Newsletter more often than Post Notifications"
533
+ msgstr ""
 
534
 
535
+ #: ../classes/es-register.php:741
536
+ msgid "Post Notification &amp; Newsletter equally"
537
+ msgstr ""
 
538
 
539
+ #: ../classes/es-register.php:759
540
+ msgid "Using Double Opt In"
541
+ msgstr ""
542
 
543
+ #: ../classes/es-register.php:761
544
+ msgid "Using Single Opt In"
545
+ msgstr ""
546
 
547
+ #: ../classes/es-register.php:810
548
+ msgid "Nah, I don't like improvements"
549
+ msgstr ""
550
 
551
+ #: ../classes/es-register.php:816
552
+ msgid "Next"
553
+ msgstr ""
554
 
555
+ #: ../notification/notification-add.php:33
556
+ msgid "Please select subscribers group."
557
+ msgstr "Prašome pasirinkti prenumeratorių grupę."
558
 
559
+ #: ../notification/notification-add.php:39
560
+ msgid "Please select notification status."
561
+ msgstr "Prašome pasirinkti pranešimo statusą."
562
 
563
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
564
+ msgid "Please select notification mail subject. Use compose menu to create new."
565
+ msgstr ""
566
+ "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
567
+ "meniu \"Sukurti\"."
568
 
569
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
570
+ msgid "Please select post categories."
571
+ msgstr "Prašome pasirinkti įrašo kategorijas."
572
 
573
+ #: ../notification/notification-add.php:71
574
+ msgid "Notification successfully created. "
575
+ msgstr "Pranešimas sėkmingai sukurtas."
 
576
 
577
+ #: ../notification/notification-add.php:112
578
+ msgid "Add Notification"
579
+ msgstr "Pridėti pranešimą"
 
580
 
581
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
582
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
583
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
584
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
585
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
586
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
587
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
588
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
589
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
590
+ msgid "Help"
591
+ msgstr "Pagalba"
592
 
593
+ #: ../notification/notification-add.php:120
594
+ msgid "Select Subscribers Group"
595
+ msgstr "Pasirinkite prenumeratorių grupę"
596
 
597
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
598
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
599
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
600
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
601
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
602
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
603
+ msgid "Select"
604
+ msgstr "Pasirinkite"
605
 
606
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
607
+ #: 162
608
+ msgid "Select Notification Email Subject"
609
+ msgstr "Pasirinkite pranešimo laiško temą"
610
 
611
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
612
+ #: 163
613
+ msgid "(Use compose menu to create new)"
614
+ msgstr "(Norėdami sukurti naują, naudokite meniu Kurti)"
 
 
 
 
 
 
 
 
 
 
 
615
 
616
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
617
+ #: 190
618
+ msgid "Select Post Categories"
619
+ msgstr "Pasirinkite įrašo kategorijas"
620
 
621
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
622
+ #: 225
623
+ msgid "Check All"
624
+ msgstr "Žymėti viską"
625
 
626
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
627
+ #: 226
628
+ msgid "Uncheck All"
629
+ msgstr "Nežymėti nieko"
630
 
631
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
632
+ #: 233
633
+ msgid "Select your Custom Post Type"
634
+ msgstr "Pasirinkite pasirinktinio įrašo tipą"
635
 
636
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
637
+ #: 234
638
+ msgid "(Optional)"
639
+ msgstr "(Neprivalomas)"
640
 
641
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
642
+ #: 268
643
+ msgid "No Custom Post Types Available"
644
+ msgstr "Nėra laisvų pasirinktinio įrašo tipų"
 
 
 
 
 
 
645
 
646
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
647
+ #: 275
648
+ msgid "Select Notification Status when a new post is published"
649
+ msgstr "Pasirinkite pranešimo statusą, kai naujas įrašas yra paskelbiamas"
650
 
651
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
652
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
653
+ msgid "Send email immediately"
654
+ msgstr "Siųsti laišką nedelsiant"
 
 
 
655
 
656
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
657
+ #: 132 ../notification/notification-edit.php:280
658
+ msgid "Add to cron and send email via cron job"
659
+ msgstr ""
660
+ "Pridėti prie periodinių užduočių (cron) ir siųsti laiškus naudojant "
661
+ "periodines užduotis (cron job)"
662
 
663
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
664
+ #: 281
665
+ msgid "Disable email notification"
666
+ msgstr "Išjungti pranešimą el. paštu"
667
 
668
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
669
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
670
+ #: 117 ../compose/compose-add.php:105
 
671
  msgid "Save"
672
  msgstr "Saugoti"
673
 
674
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
675
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
676
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
677
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
678
  msgid "Oops, selected details does not exists."
679
  msgstr "Oi, pažymėti duomenys neegzistuoja."
680
 
681
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
682
+ #: compose/compose-show.php:47
683
+ msgid "Selected record deleted."
684
+ msgstr "Pasirinktas įrašas ištrintas."
685
 
686
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
687
+ #: classes/es-register.php:152
688
+ msgid "Post Notifications"
689
+ msgstr "Pranešimai apie įrašus"
690
 
691
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
692
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
693
  msgid "Add New"
694
  msgstr "Pridėti naują"
695
 
696
+ #: ../notification/notification-show.php:57
697
+ msgid ""
698
+ "Use this to setup and send notification emails to your subscribers when a "
699
+ "new post is published in your blog."
700
+ msgstr ""
701
+ "Naudokite norėdami nustatyti ir siųsti pranešimo laiškus savo "
702
+ "prenumeratoriams, kai paskelbiamas naujas įrašas jūsų svetainėje."
 
 
 
 
 
 
 
 
 
 
 
 
703
 
704
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
705
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:84
706
  msgid "Email Subject"
707
  msgstr "Laiško tema"
708
 
709
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
710
+ #: 77
711
+ msgid "Subscribers Group"
712
+ msgstr "Prenumeratorių grupė"
713
 
714
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
715
+ #: 78
716
+ msgid "Post Categories / Custom Post Types"
717
+ msgstr "Įrašo kategorijos / Pasirinktiniai įrašo tipai"
718
+
719
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
720
+ #: 79
721
+ msgid "Notification Status"
722
+ msgstr "Pranešimo statusas"
723
+
724
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
725
+ #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
726
+ msgid "Edit"
727
+ msgstr "Redaguoti"
728
 
729
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
730
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
731
+ #: php:102
732
  msgid "Delete"
733
  msgstr "Trinti"
734
 
735
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
736
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
737
+ #: 432 ../compose/compose-show.php:111
 
 
 
 
 
738
  msgid "No records available."
739
  msgstr "Nėra įrašų."
740
 
741
+ #: ../notification/notification-edit.php:49
742
+ msgid "Please select subscribers group"
743
+ msgstr "Prašome pasirinkti prenumeratorių grupę"
744
 
745
+ #: ../notification/notification-edit.php:55
746
+ msgid "Please select notification status"
747
+ msgstr "Prašome pasirinkti pranešimo statusą"
748
 
749
+ #: ../notification/notification-edit.php:89
750
+ msgid "Notification successfully updated. "
751
+ msgstr "Pranešimas sėkmingai atnaujintas."
752
+
753
+ #: ../notification/notification-edit.php:122
754
+ msgid "Edit Notification"
755
+ msgstr "Redaguoti pranešimą"
756
+
757
+ #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
758
+ #: php:289
759
+ msgid "Update Subscribers Group"
760
+ msgstr "Atnaujinti prenumeratorių grupę"
761
 
762
+ #. Name of the plugin
763
+ msgid "Email Subscribers & Newsletters"
764
+ msgstr "Email Subscribers & Newsletters"
765
 
766
+ #. Description of the plugin/theme
 
767
  msgid ""
768
+ "Add subscription forms on website, send HTML newsletters & automatically "
769
+ "notify subscribers about new blog posts once it is published."
770
  msgstr ""
771
+ "Pridėkite prenumeratos formas interneto svetainėje, siųskite HTML "
772
+ "naujienlaiškius ir automatiškai praneškite prenumeratoriams apie naujus "
773
+ "įrašus, kai jie yra paskelbiami."
774
 
775
+ #. Author of the plugin
776
+ msgid "Icegram"
777
+ msgstr "Icegram"
778
 
779
+ #: ../settings/settings-edit.php:23
780
+ msgid "Admin"
781
+ msgstr "Administratorius"
 
 
 
 
 
 
 
 
 
 
782
 
783
+ #: ../settings/settings-edit.php:24
784
+ msgid "Signup Confirmation"
785
+ msgstr "Registracijos patvirtinimas"
786
 
787
+ #: ../settings/settings-edit.php:25
788
+ msgid "Cron"
789
+ msgstr "Periodinės užduotys (cron)"
790
 
791
+ #: ../settings/settings-edit.php:26
792
+ msgid "User Roles"
793
+ msgstr "Vartotojo vaidmenys"
794
 
795
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
796
+ #: register.php:158
797
+ msgid "Settings"
798
+ msgstr "Nustatymai"
799
 
800
+ #: ../settings/settings-edit.php:67
801
+ msgid "Save Settings"
802
+ msgstr "Išsaugoti nustatymus"
803
 
804
+ #: ../settings/settings-edit.php:81
805
+ msgid "Sender of Notifications"
806
+ msgstr "Pranešimų siuntėjas"
807
 
808
+ #: ../settings/settings-edit.php:82
809
+ msgid ""
810
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
811
+ "this plugin."
812
+ msgstr ""
813
+ "Pasirinkite siuntėjo vardą ir elektroninio pašto adresą visiems šio įskiepio "
814
+ "siunčiamiems laiškams."
815
 
816
+ #: ../settings/settings-edit.php:97
817
+ msgid "1. WP HTML MAIL"
818
+ msgstr "1. WP HTML laiškas"
819
 
820
+ #: ../settings/settings-edit.php:98
821
+ msgid "2. WP PLAINTEXT MAIL"
822
+ msgstr "2. WP paprasto teksto laiškas"
823
 
824
+ #: ../settings/settings-edit.php:99
825
+ msgid "3. PHP HTML MAIL"
826
+ msgstr "3. PHP HTML laiškas"
827
 
828
+ #: ../settings/settings-edit.php:100
829
+ msgid "4. PHP PLAINTEXT MAIL"
830
+ msgstr "4. PHP paprasto teksto laiškas"
 
 
831
 
832
+ #: ../settings/settings-edit.php:112
833
+ msgid "Double Opt In"
834
+ msgstr "Dvigubas patvirtinimas"
835
 
836
+ #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:
837
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
838
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
839
+ #: subscriber-edit.php:150
840
+ msgid "Single Opt In"
841
+ msgstr "Viengubas patvirtinimas"
842
+
843
+ #: ../settings/settings-edit.php:119
844
+ msgid "Image Size"
845
+ msgstr "Paveikslėlio dydis"
846
 
847
+ #: ../settings/settings-edit.php:120
 
848
  msgid ""
849
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
850
+ "Emails."
851
  msgstr ""
852
+ "Pasirinkite vaizdo dydį ###POSTIMAGE###, kuris bus rodomas pranešimų apie "
853
+ "įrašus laiškuose."
854
 
855
+ #: ../settings/settings-edit.php:124
856
+ msgid "Full Size"
857
+ msgstr "Visas dydis"
858
 
859
+ #: ../settings/settings-edit.php:125
860
+ msgid "Medium Size"
861
+ msgstr "Vidutinis dydis"
862
 
863
+ #: ../settings/settings-edit.php:126
864
+ msgid "Thumbnail"
865
+ msgstr "Miniatiūra"
866
+
867
+ #: ../settings/settings-edit.php:132
868
+ msgid "Admin Email Addresses"
869
+ msgstr "Administratorių el. pašto adresai"
870
 
871
+ #: ../settings/settings-edit.php:133
872
  msgid ""
873
+ "Enter the admin email addresses that should receive notifications (separated "
874
+ "by comma)."
875
  msgstr ""
876
+ "Įveskite Administratorių elektroninio pašto adresus, kuriais turėtų būti "
877
+ "siunčiami pranešimai (atskiriant kableliu)."
878
 
879
+ #: ../settings/settings-edit.php:140
880
+ msgid ""
881
+ "To send admin email notifications for the new subscriber. This option must "
882
+ "be set to YES."
883
+ msgstr ""
884
+ "Norėdami siųsti pranešimus administratoriams apie naujus prenumeratorius, "
885
+ "turite nustatyti TAIP."
886
 
887
+ #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
888
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
889
+ msgid "YES"
890
+ msgstr "Taip"
891
 
892
+ #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
893
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
894
+ msgid "NO"
895
+ msgstr "Ne"
896
 
897
+ #: ../settings/settings-edit.php:167
898
+ msgid "Sent Report Subject"
899
+ msgstr "Išsiųstų laiškų ataskaitos tema"
900
 
901
+ #: ../settings/settings-edit.php:174
902
+ msgid "Sent Report Content"
903
+ msgstr "Išsiųstų laiškų ataskaitos turinys"
 
 
 
 
 
 
 
904
 
905
+ #: ../settings/settings-edit.php:201
906
+ msgid "It is a readonly field and you are advised not to modify it."
907
+ msgstr "Laukas tik skaitymui ir patartina jo nekeisti."
908
 
909
+ #: ../settings/settings-edit.php:208
910
+ msgid ""
911
+ "This text will be displayed once user clicks on email confirmation link from "
912
+ "the Double Opt In (confirmation) Email."
913
+ msgstr ""
914
+ "Šis tekstas bus rodomas, kai vartotojas paspaus ant dvigubo patvirtinimo "
915
+ "laiške esančios nuorodos."
916
 
917
+ #: ../settings/settings-edit.php:216
918
+ msgid ""
919
+ "To send welcome email to subscriber after successful signup. This option "
920
+ "must be set to YES."
921
+ msgstr ""
922
+ "Norėdami išsiųsti pasveikinimo laišką prenumeratoriui po sėkmingos "
923
+ "registracijos, turite nustatyti TAIP."
924
 
925
+ #: ../settings/settings-edit.php:243
926
+ msgid "Unsubscribe Link"
927
+ msgstr "Prenumeratos atsisakymo nuoroda"
928
 
929
+ #: ../settings/settings-edit.php:250
930
+ msgid "Unsubscribe Text in Email"
931
+ msgstr "Prenumeratos atsisakymo tekstas laiške"
932
 
933
+ #: ../settings/settings-edit.php:257
934
+ msgid "Text to display after an email address is unsubscribed"
935
+ msgstr "Rodomas tekstas po el. pašto adreso prenumeratos atšaukimo."
936
 
937
+ #: ../settings/settings-edit.php:272
938
+ msgid "Error in the Unsubscribe Link"
939
+ msgstr "Prenumeratos atsisakymo nuorodos klaida"
940
 
941
+ #: ../settings/settings-edit.php:285
942
+ msgid "Select user roles who can access following menus. Only Admin can change this."
943
+ msgstr ""
944
+ "Pasirinkite vartotojo vaidmenis, kurie gali pasiekti šiuos meniu. Tik "
945
+ "administratorius gali tai pakeisti."
946
 
947
+ #: ../settings/settings-edit.php:291
948
+ msgid "Subscribers Menu"
949
+ msgstr "Prenumeratorių meniu"
950
 
951
+ #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
952
+ #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
953
+ #: settings/settings-edit.php:343
954
+ msgid "Administrator Only"
955
+ msgstr "Tik administratoriui"
956
 
957
+ #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
958
+ #: settings/settings-edit.php:320 ../settings/settings-edit.php:332 ..
959
+ #: settings/settings-edit.php:344
960
+ msgid "Administrator/Editor"
961
+ msgstr "Administratorius/redaktorius"
 
 
962
 
963
+ #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
964
+ #: settings/settings-edit.php:321 ../settings/settings-edit.php:333 ..
965
+ #: settings/settings-edit.php:345
966
+ msgid "Administrator/Editor/Author/Contributor"
967
+ msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
968
 
969
+ #: ../settings/settings-edit.php:303
970
+ msgid "Compose Menu"
971
+ msgstr "Kurti meniu"
972
 
973
+ #: ../settings/settings-edit.php:315
974
+ msgid "Post Notifications Menu"
975
+ msgstr "Pranešimų apie įrašus meniu"
976
 
977
+ #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
978
+ #: register.php:154 ../classes/es-register.php:155
979
+ msgid "Newsletters"
980
+ msgstr "Naujienlaiškio siuntimas"
981
 
982
+ #: ../settings/settings-edit.php:339
983
+ msgid "Reports Menu"
984
+ msgstr "Ataskaitų meniu"
985
 
986
+ #: ../settings/settings-edit.php:356
987
+ msgid "Cron job URL"
988
+ msgstr "Periodinių užduočių (cron) adresas"
 
989
 
990
+ #: ../settings/settings-edit.php:357
991
  msgid ""
992
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
993
+ "modify it."
994
  msgstr ""
995
+ "Tai jūsų periodinės užduoties (cron) adresas. Laukas tik skaitymui ir "
996
+ "patartina jo nekeisti."
997
 
998
+ #: ../settings/settings-edit.php:366
999
+ msgid "Email Count"
1000
+ msgstr "Laiškų skaičius"
1001
 
1002
+ #: ../settings/settings-edit.php:367
1003
+ msgid "Number of emails that you want to trigger per hour."
1004
+ msgstr "Laiškų, kuriuos norite išsiųsti per valandą, skaičius"
1005
 
1006
+ #: ../settings/settings-edit.php:388
1007
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1008
+ msgstr ""
1009
+ "Kas yra periodinės užduotys (cron)(automatiniai laiškai) ir kaip jas "
1010
+ "nustatyti?"
1011
 
1012
+ #: ../settings/settings-edit.php:507
1013
+ msgid "Please enter sender of notifications from name."
1014
+ msgstr "Prašome įvesti pranešimų siuntėjo vardą."
1015
 
1016
+ #: ../settings/settings-edit.php:512
1017
+ msgid "Please enter sender of notifications from email."
1018
+ msgstr "Prašome įvesti pranešimų siuntėjo el. paštą."
1019
 
1020
+ #: ../settings/settings-edit.php:556
1021
+ msgid "Please enter valid mail count."
1022
+ msgstr "Prašome įvesti teisingą laiškų kiekį."
1023
 
1024
+ #: ../settings/settings-edit.php:569
1025
+ msgid "Settings Saved."
1026
+ msgstr "Nustatymai išsaugoti."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1027
 
1028
+ #: ../settings/settings-edit.php:572
1029
+ msgid "Oops, unable to update."
1030
+ msgstr "Oi, negalima atnaujinti."
1031
 
1032
+ #: ../settings/setting-sync.php:16
1033
+ msgid "Table sync completed successfully."
1034
+ msgstr "Lentelės sinchronizavimas sėkmingai įvykdytas."
1035
 
1036
+ #: ../settings/setting-sync.php:29
1037
+ msgid "Sync plugin tables"
1038
+ msgstr "Sinchronizuoti įskiepio lenteles"
 
1039
 
1040
+ #: ../settings/setting-sync.php:33
1041
+ msgid "Click to sync tables"
1042
+ msgstr "Spauskite jei norite sinchronizuoti lenteles"
 
 
 
 
 
 
 
1043
 
1044
+ #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1045
+ msgid "Preview Mail"
1046
+ msgstr "Peržiūrėti laišką"
1047
 
1048
+ #: ../sentmail/sentmail-preview.php:42
1049
+ msgid "Back"
1050
+ msgstr "Atgal"
1051
 
1052
+ #: ../sentmail/sentmail-show.php:43
1053
+ msgid "Successfully deleted all reports except latest 10."
1054
+ msgstr "Sėkmingai ištrintos visos, išskyrus naujausias 10, ataskaitos."
1055
 
1056
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1057
  msgid " &lt;&lt; "
1058
  msgstr "&lt;&lt;"
1059
 
1060
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1061
  msgid " &gt;&gt; "
1062
  msgstr "&gt;&gt;"
1063
 
1064
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1065
+ #: register.php:161
1066
+ msgid "Reports"
1067
+ msgstr "Ataskaitos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
 
1069
+ #: ../sentmail/sentmail-show.php:97
1070
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
 
1071
  msgstr ""
1072
  "Jis parodys visų el. paštu siųstų naujienlaiškių ir pranešimų apie įrašus "
1073
  "ataskaitas."
1074
 
1075
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1076
  msgid "View Reports"
1077
  msgstr "Peržiūrėti ataskaitas"
1078
 
1079
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1080
+ #: compose/compose-show.php:103
1081
+ msgid "Preview"
1082
+ msgstr "Peržiūra"
1083
+
1084
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1085
  msgid "Type"
1086
  msgstr "Tipas"
1087
 
1088
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1089
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1090
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1091
+ #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1092
+ msgid "Status"
1093
+ msgstr "Statusas"
1094
+
1095
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1096
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
1097
+ msgid "Sent"
1098
+ msgstr "Išsiųsta"
1099
+
1100
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1101
  msgid "Start Date"
1102
  msgstr "Pradžios data"
1103
 
1104
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1105
  msgid "End Date"
1106
  msgstr "Pabaigos Data"
1107
 
1108
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1109
  msgid "Total"
1110
  msgstr "Viso"
1111
 
1112
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1113
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
1114
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1115
+ #: subscriber-export.php:56
 
1116
  msgid "Action"
1117
  msgstr "Veiksmas"
1118
 
1119
+ #: ../sentmail/sentmail-show.php:190
1120
  msgid "Optimize Table & Delete Records"
1121
  msgstr "Optimizuoti lentelę ir trinti įrašus"
1122
 
1123
+ #: ../sentmail/sentmail-show.php:199
1124
  msgid ""
1125
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1126
  "button to delete all reports except latest 10."
1128
  "Pastaba: Norėdami ištrinti visus, išskyrus 10 naujausių, ataskaitų, "
1129
  "paspauskite <strong>Optimizuoti lentelę ir trinti įrašus</strong> mygtuką."
1130
 
1131
+ #: ../sentmail/deliverreport-show.php:14
1132
+ msgid "Oops.. Unexpected error occurred. Please try again."
1133
+ msgstr "Oi.. įvyko netikėta klaida. Bandykite dar kartą."
 
 
 
 
 
 
 
 
1134
 
1135
+ #: ../sentmail/deliverreport-show.php:57
1136
+ msgid "Delivery Report"
1137
+ msgstr "Pristatymo ataskaita"
1138
 
1139
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
1140
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
1141
+ #: export.php:53
1142
+ msgid "Sno"
1143
+ msgstr "Nr."
1144
 
1145
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
1146
+ msgid "Email"
1147
+ msgstr "El. paštas"
1148
 
1149
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
1150
+ msgid "Sent Date"
1151
+ msgstr "Išsiuntimo data"
1152
 
1153
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1154
+ msgid "Viewed Status"
1155
+ msgstr "Peržiūrėjimo būsena"
1156
 
1157
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
1158
+ msgid "Viewed Date"
1159
+ msgstr "Peržiūrėjimo data"
1160
 
1161
+ #: ../subscribers/view-subscriber-import.php:44
1162
  msgid ""
1163
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1164
+ "the Group name."
1165
  msgstr ""
1166
+ "Klaida: Grupės pavadinime negalima naudoti specialių simbolių "
1167
+ "(['^$%&*()}{@#~?><>,|=_+\\\"])."
1168
 
1169
+ #: ../subscribers/view-subscriber-import.php:92
1170
+ msgid "email imported."
1171
+ msgstr "el. paštas importuotas."
1172
 
1173
+ #: ../subscribers/view-subscriber-import.php:93
1174
+ msgid "email already exists."
1175
+ msgstr "el. paštas jau egzistuoja."
 
 
 
 
1176
 
1177
+ #: ../subscribers/view-subscriber-import.php:94
1178
+ msgid "email are invalid."
1179
+ msgstr "netinkamas el. pašto adresas."
1180
 
1181
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1182
+ #: import.php:126
1183
+ msgid "Click here"
1184
+ msgstr "Spauskite čia"
1185
 
1186
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1187
+ #: import.php:126
1188
+ msgid " to view details."
1189
+ msgstr "peržiūrėti detales."
1190
 
1191
+ #: ../subscribers/view-subscriber-import.php:105
1192
+ msgid "File Upload Failed."
1193
+ msgstr "Nepavyko įkelti failo."
1194
 
1195
+ #: ../subscribers/view-subscriber-import.php:142
1196
+ msgid "Import Email Addresses"
1197
+ msgstr "Importuoti el. pašto adresus"
1198
 
1199
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1200
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1201
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
1202
+ #: subscribers/view-subscriber-sync.php:89
1203
+ msgid "Add New Subscriber"
1204
+ msgstr "Pridėti naują prenumeratorių"
 
 
 
 
1205
 
1206
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1207
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
1208
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1209
+ msgid "Export"
1210
+ msgstr "Eksportuoti"
1211
 
1212
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1213
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1214
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1215
+ #: subscribers/view-subscriber-sync.php:143
1216
+ msgid "Sync"
1217
+ msgstr "Sinchronizuoti"
 
1218
 
1219
+ #: ../subscribers/view-subscriber-import.php:155
1220
+ msgid "Select CSV file"
1221
+ msgstr "Pasirinkite CSV failą"
1222
 
1223
+ #: ../subscribers/view-subscriber-import.php:157
1224
+ msgid "Check CSV structure "
1225
+ msgstr "Patikrinkite CSV struktūrą"
 
 
 
 
1226
 
1227
+ #: ../subscribers/view-subscriber-import.php:158
1228
+ msgid "from here"
1229
+ msgstr " čia"
1230
 
1231
+ #: ../subscribers/view-subscriber-import.php:169
1232
+ msgid "Select Subscribers Email Status"
1233
+ msgstr "Pasirinkite prenumeratoriaus el. pašto statusą"
1234
 
1235
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1236
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1237
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1238
+ msgid "Confirmed"
1239
+ msgstr "Patvirtinta"
1240
 
1241
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1242
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1243
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1244
+ msgid "Unconfirmed"
1245
+ msgstr "Nepatvirtintas"
1246
 
1247
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1248
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1249
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1250
+ msgid "Unsubscribed"
1251
+ msgstr "Nutraukė prenumeratą"
 
 
1252
 
1253
+ #: ../subscribers/view-subscriber-import.php:185
1254
+ msgid "Select (or) Create Group for Subscribers"
1255
+ msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriams"
1256
 
1257
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1258
+ #: add.php:174
1259
+ msgid "(or)"
1260
+ msgstr "(arba)"
 
 
 
1261
 
1262
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1263
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1264
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1265
+ #: subscribers/view-subscriber-sync.php:90
1266
+ msgid "Import"
1267
+ msgstr "Importuoti"
1268
 
1269
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1270
+ #: sendmail/sendmail.php:18
1271
+ msgid "Click Here"
1272
+ msgstr "Spauskite čia"
 
 
 
1273
 
1274
+ #: ../subscribers/view-subscriber-show.php:45
1275
+ msgid "Selected details does not exists."
1276
+ msgstr "Pažymėti duomenys neegzistuoja."
1277
 
1278
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1279
+ #: php:95
1280
+ msgid "Record deleted."
1281
+ msgstr "Įrašas ištrintas."
1282
 
1283
+ #: ../subscribers/view-subscriber-show.php:67
1284
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
1285
  msgstr ""
1286
+ "Norėdami siųsti patvirtinimo laišką, prašome pakeisti prenumeratos "
1287
+ "patvirtinimo nustatymą į Dvigubas patvirtinimas."
 
 
 
 
1288
 
1289
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1290
+ #: php:134
1291
+ msgid "Confirmation emails Resent Successfully."
1292
+ msgstr "Patvirtinimo laiškai pakartotinai išsiųsti sėkmingai."
 
 
 
 
1293
 
1294
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1295
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1296
+ #: subscriber-show.php:216
1297
+ msgid "No record was selected."
1298
+ msgstr "Nebuvo pasirinktas įrašas."
1299
 
1300
+ #: ../subscribers/view-subscriber-show.php:115
1301
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
 
 
1302
  msgstr ""
1303
+ "Norėdami išsiųsti patvirtinimo laišką, prašome pakeisti prenumeravimo "
1304
+ "variantą į \"Dvigubas patvirtinimas\"."
1305
 
1306
+ #: ../subscribers/view-subscriber-show.php:163
1307
+ msgid "Subscribers Group updated."
1308
+ msgstr "Atnaujinta prenumeratorių grupė."
1309
 
1310
+ #: ../subscribers/view-subscriber-show.php:168
1311
+ msgid "Please select New group to update."
1312
+ msgstr "Prašome pasirinkti naują grupę atnaujinimui."
 
 
 
 
1313
 
1314
+ #: ../subscribers/view-subscriber-show.php:202
1315
+ msgid "Subscribers Status updated."
1316
+ msgstr "Prenumeratorių būsena atnaujinta."
1317
 
1318
+ #: ../subscribers/view-subscriber-show.php:207
1319
+ msgid "Please select New Status to update."
1320
+ msgstr "Prašome pasirinkti naują būseną atnaujinimui."
1321
 
1322
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1323
+ #: classes/es-register.php:146
1324
+ msgid "Subscribers"
1325
+ msgstr "Prenumeratoriai"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
 
1327
+ #: ../subscribers/view-subscriber-show.php:252
1328
+ #, php-format
1329
+ msgid "Total Subscribers: %s"
1330
+ msgstr "Prenumeratorių viso: %s"
 
 
 
 
 
 
1331
 
1332
+ #: ../subscribers/view-subscriber-show.php:254
1333
+ #, php-format
1334
+ msgid "Active Subscribers: %s"
1335
+ msgstr "Aktyvių prenumeratorių: %s"
1336
 
1337
+ #: ../subscribers/view-subscriber-show.php:286
1338
+ msgid "Bulk Actions"
1339
+ msgstr "Masiniai veiksmai"
 
 
 
 
 
 
1340
 
1341
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1342
+ #: show.php:417
1343
+ msgid "Resend Confirmation"
1344
+ msgstr "Persiųsti patvirtinimą dar kartą"
1345
 
1346
+ #: ../subscribers/view-subscriber-show.php:290
1347
+ msgid "Update Subscribers Status"
1348
+ msgstr "Atnaujinti prenumeratorių būseną"
 
 
 
 
1349
 
1350
+ #: ../subscribers/view-subscriber-show.php:293
1351
+ msgid "Select Group"
1352
+ msgstr "Pasirinkti grupę"
1353
 
1354
+ #: ../subscribers/view-subscriber-show.php:308
1355
+ msgid "Select Status"
1356
+ msgstr "Pasirinkite būseną"
 
 
1357
 
1358
+ #: ../subscribers/view-subscriber-show.php:314
1359
+ msgid "Apply"
1360
+ msgstr "Tinkinti"
1361
 
1362
+ #: ../subscribers/view-subscriber-show.php:318
1363
+ msgid "All Groups"
1364
+ msgstr "Visos grupės"
 
 
 
 
1365
 
1366
+ #: ../subscribers/view-subscriber-show.php:335
1367
+ msgid "All Status"
1368
+ msgstr "Visos būsenos"
1369
 
1370
+ #: ../subscribers/view-subscriber-show.php:342
1371
+ msgid "1 to 500 emails"
1372
+ msgstr "Nuo 1 iki 500 laiškų"
 
 
 
 
1373
 
1374
+ #: ../subscribers/view-subscriber-show.php:343
1375
+ msgid "501 to 1000"
1376
+ msgstr "Nuo 501 iki 1000"
 
 
 
1377
 
1378
+ #: ../subscribers/view-subscriber-show.php:344
1379
+ msgid "1001 to 1500"
1380
+ msgstr "Nuo 1001 iki 1500"
1381
 
1382
+ #: ../subscribers/view-subscriber-show.php:345
1383
+ msgid "1501 to 2000"
1384
+ msgstr "Nuo 1501 iki 2000"
 
 
1385
 
1386
+ #: ../subscribers/view-subscriber-show.php:346
1387
+ msgid "2001 to 4000"
1388
+ msgstr "Nuo 2001 iki 4000"
 
 
1389
 
1390
+ #: ../subscribers/view-subscriber-show.php:347
1391
+ msgid "4001 to 6000"
1392
+ msgstr "Nuo 4001 iki 6000"
 
 
1393
 
1394
+ #: ../subscribers/view-subscriber-show.php:348
1395
+ msgid "6001 to 10000"
1396
+ msgstr "Nuo 6001 iki 10000"
1397
 
1398
+ #: ../subscribers/view-subscriber-show.php:349
1399
+ msgid "Display All"
1400
+ msgstr "Rodyti visus"
1401
 
1402
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1403
+ #: show.php:373
1404
+ msgid "Email Address"
1405
+ msgstr "El. pašto adresas"
1406
 
1407
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1408
+ #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1409
+ msgid "Name"
1410
+ msgstr "Vardas"
1411
 
1412
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1413
+ #: show.php:376
1414
+ msgid "Group"
1415
+ msgstr "Grupė"
 
 
 
1416
 
1417
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1418
+ #: show.php:377
1419
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1420
+ msgstr "Registracijos data ir laikas<br>(Y-M-D H:I:S)"
1421
 
1422
+ #: ../subscribers/view-subscriber-export.php:34
1423
+ msgid "Export Email Addresses"
1424
+ msgstr "Eksportuoti el. pašto adresus"
1425
 
1426
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1427
+ #: export.php:54
1428
+ msgid "Type of List to Export"
1429
+ msgstr "Sąrašo eksportuoti tipas"
 
1430
 
1431
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1432
+ #: export.php:55
1433
+ msgid "Total Emails Count"
1434
+ msgstr "Laiškų skaičius iš viso"
1435
 
1436
+ #: ../subscribers/view-subscriber-export.php:61
1437
+ msgid "1"
1438
+ msgstr "1"
 
 
 
 
 
1439
 
1440
+ #: ../subscribers/view-subscriber-export.php:62
1441
+ msgid "All Subscribers"
1442
+ msgstr "Visi prenumeratoriai"
 
 
1443
 
1444
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1445
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1446
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1447
+ msgid "Click to Export in CSV"
1448
+ msgstr "Norėdami eksportuoti CSV, spauskite čia"
 
 
1449
 
1450
+ #: ../subscribers/view-subscriber-export.php:67
1451
+ msgid "2"
1452
+ msgstr "2"
 
 
 
 
 
1453
 
1454
+ #: ../subscribers/view-subscriber-export.php:68
1455
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1456
+ msgstr "Aktyvūs prenumeratoriai (Statusas: Patvirtinta ir viengubas patvirtinimas)"
 
 
 
 
 
1457
 
1458
+ #: ../subscribers/view-subscriber-export.php:73
1459
+ msgid "3"
1460
+ msgstr "3"
 
 
 
 
 
 
1461
 
1462
+ #: ../subscribers/view-subscriber-export.php:74
1463
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1464
+ msgstr "Neaktyvūs prenumeratoriai (Statusas: Nepatvirtintas ir Nutraukė prenumeratą)"
1465
 
1466
+ #: ../subscribers/view-subscriber-export.php:79
1467
+ msgid "4"
1468
+ msgstr "4"
1469
 
1470
+ #: ../subscribers/view-subscriber-export.php:80
1471
+ msgid "WordPress Registered Users"
1472
+ msgstr "WordPress registruoti vartotojai"
1473
 
1474
+ #: ../subscribers/view-subscriber-export.php:85
1475
+ msgid "5"
1476
+ msgstr "5"
1477
 
1478
+ #: ../subscribers/view-subscriber-export.php:86
1479
+ msgid "Commented Authors"
1480
+ msgstr "Komentuoti autoriai"
1481
 
1482
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1483
+ #: php:54
1484
  msgid "Please enter subscriber email address."
1485
  msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
1486
 
1487
+ #: ../subscribers/view-subscriber-add.php:49
1488
  msgid "Please select or create your group for this email."
1489
  msgstr "Prašome pasirinkti arba sukurti grupę šiam el. paštui."
1490
 
1491
+ #: ../subscribers/view-subscriber-add.php:56
1492
  msgid ""
1493
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1494
  "the group name."
1495
  msgstr ""
1496
+ "Klaida: Grupės pavadinime negalima naudoti specialių simbolių "
1497
+ "(['^$%&*()}{@#~?><>,|=_+\\\"])."
1498
 
1499
+ #: ../subscribers/view-subscriber-add.php:66
1500
  msgid "Subscriber has been saved."
1501
  msgstr "Prenumeratorius išsaugotas."
1502
 
1503
+ #: ../subscribers/view-subscriber-add.php:68
1504
  msgid "Subscriber already exists."
1505
  msgstr "Prenumeratorius jau yra."
1506
 
1507
+ #: ../subscribers/view-subscriber-add.php:71
1508
  msgid "Invalid Email."
1509
  msgstr "Neteisingas el. paštas."
1510
 
1511
+ #: ../subscribers/view-subscriber-add.php:123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1512
  msgid "Enter Subscriber's Full name"
1513
  msgstr "Įveskite prenumeratoriaus vardą ir pavardę"
1514
 
1515
+ #: ../subscribers/view-subscriber-add.php:133
1516
  msgid "Enter Subscriber's Email Address"
1517
  msgstr "Įveskite prenumeratoriaus el. pašto adresą"
1518
 
1519
+ #: ../subscribers/view-subscriber-add.php:143
1520
  msgid "Select Subscriber's Status"
1521
  msgstr "Pasirinkite prenumeratoriaus statusą"
1522
 
1523
+ #: ../subscribers/view-subscriber-add.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1524
  msgid "Select (or) Create Group for Subscriber"
1525
  msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriui"
1526
 
1527
+ #: ../subscribers/view-subscriber-add.php:183
 
 
 
 
 
1528
  msgid "Add Subscriber"
1529
  msgstr "Pridėti prenumeratorių"
1530
 
1531
+ #: ../subscribers/view-subscriber-edit.php:64
1532
  msgid "Error: Special characters are not allowed in the group name."
1533
  msgstr "Klaida: Grupės pavadinime negalima naudoti specialių simbolių."
1534
 
1535
+ #: ../subscribers/view-subscriber-edit.php:74
1536
  msgid "Subscriber details updated."
1537
  msgstr "Prenumeratoriaus duomenys atnaujinti."
1538
 
1539
+ #: ../subscribers/view-subscriber-edit.php:76
1540
  msgid "Subscriber already exists for this group."
1541
  msgstr "Prenumeratorius jau yra šioje grupėje."
1542
 
1543
+ #: ../subscribers/view-subscriber-edit.php:108
1544
  msgid "Edit Subscriber"
1545
  msgstr "Redaguoti prenumeratorių"
1546
 
1547
+ #: ../subscribers/view-subscriber-edit.php:122
1548
  msgid "Subscriber's Full Name"
1549
  msgstr "Prenumeratoriaus pilnas vardas"
1550
 
1551
+ #: ../subscribers/view-subscriber-edit.php:132
1552
  msgid "Subscriber's Email Address"
1553
  msgstr "Prenumeratoriaus el. pašto adresas"
1554
 
1555
+ #: ../subscribers/view-subscriber-edit.php:142
1556
  msgid "Update Subscriber's Status"
1557
  msgstr "Atnaujinti prenumeratoriaus statusą"
1558
 
1559
+ #: ../subscribers/view-subscriber-edit.php:157
1560
  msgid "Update Subscriber's Group"
1561
  msgstr "Atnaujinti prenumeratoriaus grupę"
1562
 
1563
+ #: ../subscribers/view-subscriber-sync.php:36
1564
+ msgid "Please select default group to newly registered user."
1565
+ msgstr "Prašome pasirinkti numatytąją grupę naujai registruotiems vartotojams."
1566
 
1567
+ #: ../subscribers/view-subscriber-sync.php:50
1568
+ msgid "Emails Successfully Synced."
1569
+ msgstr "El. pašto adresai sėkmingai sinchronizuoti."
 
1570
 
1571
+ #: ../subscribers/view-subscriber-sync.php:88
1572
+ msgid "Sync Email"
1573
+ msgstr "Sinchronizuoti el. paštą"
 
1574
 
1575
+ #: ../subscribers/view-subscriber-sync.php:101
1576
+ msgid "Sync newly registered users to subscribers list"
1577
+ msgstr "Sinchronizuoti naujai registruotus vartotojus prenumeratorių sąraše"
1578
 
1579
+ #: ../subscribers/view-subscriber-sync.php:114
1580
+ msgid "Select group to add newly registered users to"
1581
+ msgstr "Pasirinkite grupę, į kurią įtraukti naujai registruotus vartotojus"
1582
 
1583
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1584
+ msgid "Please enter template heading."
1585
+ msgstr "Prašome įvesti šablono antraštę."
 
 
 
 
1586
 
1587
+ #: ../compose/compose-edit.php:84
1588
+ msgid "Edit Email"
1589
+ msgstr "Redaguoti el. paštą"
1590
 
1591
+ #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1592
+ msgid "Select your Email Template"
1593
+ msgstr "Pasirinkite laiško šabloną"
 
1594
 
1595
+ #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
1596
+ msgid "Newsletter"
1597
+ msgstr "Naujienlaiškis"
1598
 
1599
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
1600
+ msgid "Post Notification"
1601
+ msgstr "Pranešimas apie įrašą"
 
1602
 
1603
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1604
+ msgid "Enter your Email Subject"
1605
+ msgstr "Įveskite laiško temą"
1606
 
1607
+ #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1608
+ msgid "Enter Content for your Email"
1609
+ msgstr "Įveskite laiško turinį"
1610
 
1611
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
1612
+ msgid "Available Keywords"
1613
+ msgstr "Galimi raktažodžiai"
1614
 
1615
+ #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1616
+ msgid "Published"
1617
+ msgstr "Paskelbta"
1618
 
1619
+ #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1620
+ msgid "Please select your mail status"
1621
+ msgstr "Prašome pasirinkti laiško statusą."
 
 
 
 
1622
 
1623
+ #: ../compose/compose-add.php:74
1624
+ msgid "Add new Email"
1625
+ msgstr "Pridėti naują el. paštą"
1626
 
1627
+ #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1628
+ #: register.php:149
1629
+ msgid "Compose"
1630
+ msgstr "Kurti naują"
1631
 
1632
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1633
+ msgid "Email Template"
1634
+ msgstr "Laiško šablonas"
1635
 
1636
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1637
+ msgid "Actions"
1638
+ msgstr "Veiksmai"
 
1639
 
1640
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1641
+ msgid "Unexpected url submit has been detected"
1642
+ msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
 
1643
 
1644
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1645
+ #: 58 ../job/es-optin.php:68
1646
+ msgid ""
1647
+ "Oops.. We are getting some technical error. Please try again or contact "
1648
+ "admin."
1649
+ msgstr ""
1650
+ "Oi.. Iškilo techninė klaida. Bandykite dar kartą arba susisiekite su "
1651
+ "administratoriumi."
1652
 
1653
+ #: ../job/es-optin.php:61
1654
+ msgid "This email address has already been confirmed."
1655
+ msgstr "Šis el. pašto adresas jau patvirtintas."
1656
 
1657
+ #: ../help/help.php:173
1658
+ msgid "Welcome to Email Subscribers!"
1659
+ msgstr "Sveiki prisijungę prie El. pašto prenumeratorių!"
1660
 
1661
+ #: ../help/help.php:174
1662
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1663
+ msgstr ""
1664
+ "Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
1665
+ "prenumeratorius."
1666
 
1667
+ #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1668
+ #: php:38
1669
+ msgid "Subscribe"
1670
+ msgstr "Prenumeruoti"
1671
 
1672
+ #: ../help/help.php:201
1673
+ #, php-format
1674
+ msgid ""
1675
+ "Like Email Subscribers? If yes, then consider %s to support further "
1676
+ "developments."
1677
+ msgstr ""
1678
+ "Patinka Email Subscribers? Jei taip, apsvarstykite %s paremti tolimesnį "
1679
+ "vystymą."
1680
 
1681
+ #: ../help/help.php:201
1682
+ msgid "donating to us"
1683
+ msgstr "dovanojant mums"
1684
 
1685
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1686
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1687
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1688
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1689
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1690
+ #: 380 ../help/help.php:382
1691
+ #, php-format
1692
+ msgid "%s"
1693
+ msgstr "%s"
1694
 
1695
+ #: ../help/help.php:288
1696
+ msgid "How to Add Subscription box to website?"
1697
+ msgstr "Kaip pridėti prenumeratos formą svetainėje?"
 
1698
 
1699
+ #: ../help/help.php:299
1700
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1701
+ msgstr "Kaip nukreipti prenumeratorius į naują puslapį po sėkmingos registracijos?"
 
 
 
1702
 
1703
+ #: ../help/help.php:302
1704
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
1705
+ msgstr "Kaip pridėti captcha Email Subscribers prenumeratos formoje?"
 
1706
 
1707
+ #: ../help/help.php:308
1708
+ msgid "General Plugin Settings"
1709
+ msgstr "Bendrieji įskiepio nustatymai"
 
 
 
1710
 
1711
+ #: ../help/help.php:314
1712
+ msgid "How to Import or Export Email Addresses?"
1713
+ msgstr "Kaip importuoti ar eksportuoti el. pašto adresus?"
 
 
 
1714
 
1715
+ #: ../help/help.php:317
1716
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
1717
+ msgstr "Kaip pridėti ar atnaujinti esamų prenumeratorių grupę bei statusą?"
1718
 
1719
+ #: ../help/help.php:323
1720
+ msgid "How to add Unsubscribe link in emails?"
1721
+ msgstr "Kaip pridėti prenumeratos atsisakymo nuorodą laiškuose?"
1722
 
1723
+ #: ../help/help.php:358
1724
+ msgid "How to Schedule Cron Emails?"
1725
+ msgstr "Kaip nustatyti cron laiško siuntimo laiką?"
1726
 
1727
+ #: ../help/help.php:377
1728
+ msgid "Subscribers are not receiving Emails?"
1729
+ msgstr "Prenumeratoriai negauna laiškų?"
1730
 
1731
+ #: ../help/help.php:380
1732
+ msgid "CSS Help"
1733
+ msgstr "CSS pagalba"
 
1734
 
1735
+ #: ../sendmail/sendmail.php:40
1736
+ msgid "Please select your mail subject."
1737
+ msgstr "Prašome pasirinkti laiško temą."
 
1738
 
1739
+ #: ../sendmail/sendmail.php:46
1740
+ msgid "Please select your mail type."
1741
+ msgstr "Prašome pasirinkti laiško tipą."
1742
 
1743
+ #: ../sendmail/sendmail.php:52
1744
+ msgid "Please select your group."
1745
+ msgstr "Prašome pasirinkti savo grupę."
 
1746
 
1747
+ #: ../sendmail/sendmail.php:63
1748
+ msgid "Click here to check Statistics"
1749
+ msgstr "Norėdami peržiūrėti statistiką, spauskite čia"
1750
 
1751
+ #: ../sendmail/sendmail.php:69
1752
+ msgid "Oops.. We are getting some error. mail not sending."
1753
+ msgstr "Oi.. Iškilo šiek tiek klaidų. Laiškas nesiunčiamas."
1754
 
1755
+ #: ../sendmail/sendmail.php:97
1756
+ msgid "Use this to send newsletter emails to your subscribers."
1757
+ msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
1758
 
1759
+ #: ../sendmail/sendmail.php:105
1760
+ msgid "Select Email Subject from available list"
1761
+ msgstr "Pasirinkite laiško temą iš sąrašo"
1762
 
1763
+ #: ../sendmail/sendmail.php:132
1764
+ msgid "Select Email Type"
1765
+ msgstr "Pasirinkite laiško tipą"
1766
 
1767
+ #: ../sendmail/sendmail.php:139
1768
+ msgid "Send email via cron job"
1769
+ msgstr "Siųsti laišką naudojant periodines užduotis (cron job)"
1770
 
1771
+ #: ../sendmail/sendmail.php:146
1772
+ msgid "Select Subscribers group to Send Email"
1773
+ msgstr "Pasirinkite prenumeratorių grupę, kuriai siųsti laišką"
1774
 
1775
+ #: ../sendmail/sendmail.php:178
1776
+ msgid "Recipients : 0 "
1777
+ msgstr "Gavėjai: 0"
1778
 
1779
+ #: ../sendmail/sendmail.php:180
1780
+ #, php-format
1781
+ msgid "Recipients : %s"
1782
+ msgstr "Gavėjai: %s"
1783
 
1784
+ #: ../sendmail/sendmail.php:183
1785
+ msgid ""
1786
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1787
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1788
+ "</strong><br>Click on Help for more information."
1789
+ msgstr ""
1790
+ "<br><br><strong>Jūsų gavėjų skaičius viršija 100.<br>Mes primygtinai siūlome "
1791
+ "jums pakeisti pašto siuntimo tipą į periodinių užduočių (cron) ir siųsti "
1792
+ "laiškus naudojant periodines užduotis (cron).</strong><br>Norėdami gauti "
1793
+ "daugiau informacijos spauskite Pagalba."
1794
 
1795
+ #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1796
+ msgid "Send Email"
1797
+ msgstr "Siųsti laišką"
1798
 
1799
+ #: ../sendmail/sendmail.php:199
1800
+ msgid "Reset"
1801
+ msgstr "Atstatyti"
1802
 
1803
+ #: ../base/es-defined.php:32
1804
+ msgid ""
1805
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1806
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1807
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1808
+ "</a> rating. A huge thank you from Icegram in advance!"
1809
+ msgstr ""
1810
+ "Jei jums patinka <strong>Email Subscribers</strong>, prašome pasidalinti <a "
1811
+ "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1812
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1813
+ "</a> reitingu. Icegram dėkoja iš anksto!"
1814
 
1815
+ #: ../classes/es-common.php:13
1816
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1817
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Patvirtinta</span>"
1818
 
1819
+ #: ../classes/es-common.php:16
1820
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1821
+ msgstr "<span style=\"color:#FF0000\">Nepatvirtintas</span>"
 
1822
 
1823
+ #: ../classes/es-common.php:19
1824
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1825
+ msgstr "<span style=\"color:#999900\">Nutraukė prenumeratą</span>"
 
1826
 
1827
+ #: ../classes/es-common.php:22
1828
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1829
+ msgstr "<span style=\"color:#0000FF\">Viengubas patvirtinimas</span>"
 
1830
 
1831
+ #: ../classes/es-common.php:25
1832
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1833
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Peržiūrėta</span>"
1834
 
1835
+ #: ../classes/es-common.php:28
1836
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1837
+ msgstr "<span style=\"color:#999900;\">Nėra duomenų</span>"
1838
 
1839
+ #: ../classes/es-common.php:31
1840
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1841
+ msgstr "<span style=\"color:#FF0000\">Išjungta</span>"
1842
 
1843
+ #: ../classes/es-common.php:34
1844
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1845
+ msgstr "<span style=\"color:#FF0000\">Eilėje</span>"
1846
 
1847
+ #: ../classes/es-common.php:37
1848
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1849
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Išsiųsta</span>"
1850
+
1851
+ #: ../classes/es-common.php:40
1852
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1853
+ msgstr ""
1854
+ "<span style=\"color:#20b2aa;font-weight:bold;\">naudojant periodines užduotis "
1855
+ "(cron)</span>"
1856
+
1857
+ #: ../classes/es-common.php:43
1858
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1859
+ msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
1860
 
1861
  #. Name of the plugin
1862
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1863
+ #: register.php:724
1864
+ msgid "Email Subscribers"
1865
+ msgstr "Email Subscribers"
1866
 
1867
+ #: ../classes/es-register.php:163
1868
+ msgid "Help & Info"
1869
+ msgstr "Pagalba ir informacija"
 
 
 
1870
 
1871
+ #: ../classes/es-register.php:175
1872
+ msgctxt "view-subscriber-enhanced-select"
1873
+ msgid "Please enter subscriber email address."
1874
+ msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
 
 
 
 
1875
 
1876
+ #: ../classes/es-register.php:176
1877
+ msgctxt "view-subscriber-enhanced-select"
1878
+ msgid "Please select subscriber email status."
1879
+ msgstr "Prašome pasirinkti prenumeratoriaus el. pašto statusą."
1880
+
1881
+ #: ../classes/es-register.php:177
1882
+ msgctxt "view-subscriber-enhanced-select"
1883
+ msgid "Please select or create group for this subscriber."
1884
+ msgstr "Prašome pasirinkti arba sukurti grupę šiam prenumeratoriui."
1885
+
1886
+ #: ../classes/es-register.php:178
1887
+ msgctxt "view-subscriber-enhanced-select"
1888
+ msgid "Do you want to delete this record?"
1889
+ msgstr "Ar norite ištrinti šį įrašą?"
1890
+
1891
+ #: ../classes/es-register.php:179
1892
+ msgctxt "view-subscriber-enhanced-select"
1893
+ msgid "Please select the bulk action."
1894
+ msgstr "Prašome pasirinkti masinį veiksmą."
1895
+
1896
+ #: ../classes/es-register.php:180
1897
+ msgctxt "view-subscriber-enhanced-select"
1898
+ msgid "Are you sure you want to delete selected records?"
1899
+ msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
1900
+
1901
+ #: ../classes/es-register.php:181
1902
+ msgctxt "view-subscriber-enhanced-select"
1903
+ msgid ""
1904
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1905
+ "update subscriber current status to 'Unconfirmed'."
1906
+ msgstr ""
1907
+ "Ar norite pakartotinai išsiųsti patvirtinimo laišką? \\nAtkreipkite dėmesį, "
1908
+ "kad bus prenumeratoriaus dabartinis statusas bus pakeistas į \"Nepatvirtinta\"."
1909
+
1910
+ #: ../classes/es-register.php:182
1911
+ msgctxt "view-subscriber-enhanced-select"
1912
+ msgid "Please select new subscriber group."
1913
+ msgstr "Prašome pasirinkti naują prenumeratorių grupę."
1914
+
1915
+ #: ../classes/es-register.php:183
1916
+ msgctxt "view-subscriber-enhanced-select"
1917
+ msgid "Please select new status for subscribers"
1918
+ msgstr "Prašome pasirinkti naują prenumeratorių statusą"
1919
+
1920
+ #: ../classes/es-register.php:184
1921
+ msgctxt "view-subscriber-enhanced-select"
1922
+ msgid "Do you want to update subscribers group?"
1923
+ msgstr "Ar norite atnaujinti prenumeratorių grupę?"
1924
+
1925
+ #: ../classes/es-register.php:185
1926
+ msgctxt "view-subscriber-enhanced-select"
1927
+ msgid "Do you want to update subscribers status?"
1928
+ msgstr "Ar norite atnaujinti prenumeratorių statusą?"
1929
+
1930
+ #: ../classes/es-register.php:186
1931
+ msgctxt "view-subscriber-enhanced-select"
1932
+ msgid ""
1933
+ "Please select only csv file. Please check official website for csv structure."
1934
+ "."
1935
+ msgstr ""
1936
+ "Prašome pasirinkti tik CSV failą. CSV struktūrą pasitikrinkite oficialioje "
1937
+ "svetainėje."
1938
+
1939
+ #: ../classes/es-register.php:194
1940
+ msgctxt "compose-enhanced-select"
1941
+ msgid "Please enter the Email Subject."
1942
+ msgstr "Prašome įvesti laiško temą"
1943
+
1944
+ #: ../classes/es-register.php:195
1945
+ msgctxt "compose-enhanced-select"
1946
+ msgid "Do you want to delete this record?"
1947
+ msgstr "Ar norite ištrinti šį įrašą?"
1948
+
1949
+ #: ../classes/es-register.php:203
1950
+ msgctxt "notification-enhanced-select"
1951
+ msgid "Please select subscribers group."
1952
+ msgstr "Prašome pasirinkti prenumeratorių grupę."
1953
+
1954
+ #: ../classes/es-register.php:204
1955
+ msgctxt "notification-enhanced-select"
1956
+ msgid "Please select notification mail subject. Use compose menu to create new."
1957
+ msgstr ""
1958
+ "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
1959
+ "meniu \"Sukurti\"."
1960
+
1961
+ #: ../classes/es-register.php:205
1962
+ msgctxt "notification-enhanced-select"
1963
+ msgid "Please select notification status."
1964
+ msgstr "Prašome pasirinkti pranešimo statusą."
1965
+
1966
+ #: ../classes/es-register.php:206
1967
+ msgctxt "notification-enhanced-select"
1968
+ msgid "Do you want to delete this record?"
1969
+ msgstr "Ar norite ištrinti šį įrašą?"
1970
+
1971
+ #: ../classes/es-register.php:214
1972
+ msgctxt "sendmail-enhanced-select"
1973
+ msgid "Please select your mail subject."
1974
+ msgstr "Prašome pasirinkti laiško temą."
1975
+
1976
+ #: ../classes/es-register.php:215
1977
+ msgctxt "sendmail-enhanced-select"
1978
+ msgid "Please select your mail type."
1979
+ msgstr "Prašome pasirinkti laiško tipą."
1980
+
1981
+ #: ../classes/es-register.php:216
1982
+ msgctxt "sendmail-enhanced-select"
1983
+ msgid ""
1984
+ "Have you double checked your selected group? If so, let's go ahead and send "
1985
+ "this."
1986
+ msgstr ""
1987
+ "Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
1988
+ "siųskite tai."
1989
+
1990
+ #: ../classes/es-register.php:224
1991
+ msgctxt "sentmail-enhanced-select"
1992
+ msgid "Do you want to delete this record?"
1993
+ msgstr "Ar norite ištrinti šį įrašą?"
1994
+
1995
+ #: ../classes/es-register.php:225
1996
+ msgctxt "sentmail-enhanced-select"
1997
+ msgid "Do you want to delete all records except latest 10?"
1998
+ msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
1999
+
2000
+ #: ../classes/es-register.php:233
2001
+ msgctxt "cron-enhanced-select"
2002
+ msgid "Please select enter number of mails you want to send per hour/trigger."
2003
+ msgstr "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
2004
+
2005
+ #: ../classes/es-register.php:234
2006
+ msgctxt "cron-enhanced-select"
2007
+ msgid "Please enter the mail count, only number."
2008
+ msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
2009
+
2010
+ #: ../classes/es-register.php:247
2011
+ msgctxt "widget-enhanced-select"
2012
+ msgid "Please enter email address"
2013
+ msgstr "Prašome įvesti el. pašto adresą"
2014
+
2015
+ #: ../classes/es-register.php:248
2016
+ msgctxt "widget-enhanced-select"
2017
+ msgid "Please provide a valid email address"
2018
+ msgstr "Prašome nurodyti teisingą el. pašto adresą"
2019
+
2020
+ #: ../classes/es-register.php:249
2021
+ msgctxt "widget-enhanced-select"
2022
+ msgid "loading..."
2023
+ msgstr "kraunasi..."
2024
+
2025
+ #: ../classes/es-register.php:250
2026
+ msgctxt "widget-enhanced-select"
2027
+ msgid "Cannot create XMLHTTP instance"
2028
+ msgstr "Nepavyko sukurti XMLHTTP instancijos"
2029
+
2030
+ #: ../classes/es-register.php:251
2031
+ msgctxt "widget-enhanced-select"
2032
+ msgid "Successfully Subscribed."
2033
+ msgstr "Užsiprenumeravote sėkmingai."
2034
+
2035
+ #: ../classes/es-register.php:252
2036
+ msgctxt "widget-enhanced-select"
2037
+ msgid ""
2038
+ "Your subscription was successful! Within a few minutes, kindly check the "
2039
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2040
+ "mail in your mailbox, please check your spam folder."
2041
+ msgstr ""
2042
+ "Jūsų prenumerata pavyko! Per keletą minučių patikrinkite patvirtinimo laišką "
2043
+ "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
2044
+ "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
2045
+
2046
+ #: ../classes/es-register.php:253
2047
+ msgctxt "widget-enhanced-select"
2048
+ msgid "Email Address already exists!"
2049
+ msgstr "El. pašto adresas jau egzistuoja!"
2050
+
2051
+ #: ../classes/es-register.php:254
2052
+ msgctxt "widget-enhanced-select"
2053
+ msgid "Oops.. Unexpected error occurred."
2054
+ msgstr "Oi.. įvyko netikėta klaida."
2055
+
2056
+ #: ../classes/es-register.php:255
2057
+ msgctxt "widget-enhanced-select"
2058
+ msgid "Invalid email address"
2059
+ msgstr "Neteisingas el. pašto adresas"
2060
+
2061
+ #: ../classes/es-register.php:256
2062
+ msgctxt "widget-enhanced-select"
2063
+ msgid "Please try after some time"
2064
+ msgstr "Bandykite vėliau"
2065
+
2066
+ #: ../classes/es-register.php:257
2067
+ msgctxt "widget-enhanced-select"
2068
+ msgid "There was a problem with the request"
2069
+ msgstr "Iškilo problema dėl užklausos"
2070
+
2071
+ #: ../classes/es-register.php:264
2072
+ msgctxt "widget-page-enhanced-select"
2073
+ msgid "Please enter email address"
2074
+ msgstr "Prašome įvesti el. pašto adresą"
2075
+
2076
+ #: ../classes/es-register.php:265
2077
+ msgctxt "widget-page-enhanced-select"
2078
+ msgid "Please provide a valid email address"
2079
+ msgstr "Prašome nurodyti teisingą el. pašto adresą"
2080
+
2081
+ #: ../classes/es-register.php:266
2082
+ msgctxt "widget-page-enhanced-select"
2083
+ msgid "loading..."
2084
+ msgstr "kraunasi..."
2085
+
2086
+ #: ../classes/es-register.php:267
2087
+ msgctxt "widget-page-enhanced-select"
2088
+ msgid "Cannot create XMLHTTP instance"
2089
+ msgstr "Nepavyko sukurti XMLHTTP instancijos"
2090
+
2091
+ #: ../classes/es-register.php:268
2092
+ msgctxt "widget-page-enhanced-select"
2093
+ msgid "Successfully Subscribed."
2094
+ msgstr "Užsiprenumeravote sėkmingai."
2095
+
2096
+ #: ../classes/es-register.php:269
2097
+ msgctxt "widget-page-enhanced-select"
2098
+ msgid ""
2099
+ "Your subscription was successful! Within a few minutes, kindly check the "
2100
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2101
+ "mail in your mailbox, please check your spam folder."
2102
+ msgstr ""
2103
+ "Jūsų prenumerata pavyko! Per keletą minučių patikrinkite patvirtinimo laišką "
2104
+ "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
2105
+ "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
2106
+
2107
+ #: ../classes/es-register.php:270
2108
+ msgctxt "widget-page-enhanced-select"
2109
+ msgid "Email Address already exists!"
2110
+ msgstr "El. pašto adresas jau egzistuoja!"
2111
+
2112
+ #: ../classes/es-register.php:271
2113
+ msgctxt "widget-page-enhanced-select"
2114
+ msgid "Oops.. Unexpected error occurred."
2115
+ msgstr "Oi.. įvyko netikėta klaida."
2116
+
2117
+ #: ../classes/es-register.php:272
2118
+ msgctxt "widget-page-enhanced-select"
2119
+ msgid "Invalid email address"
2120
+ msgstr "Neteisingas el. pašto adresas"
2121
+
2122
+ #: ../classes/es-register.php:273
2123
+ msgctxt "widget-page-enhanced-select"
2124
+ msgid "Please try after some time"
2125
+ msgstr "Bandykite vėliau"
2126
+
2127
+ #: ../classes/es-register.php:274
2128
+ msgctxt "widget-page-enhanced-select"
2129
+ msgid "There was a problem with the request"
2130
+ msgstr "Iškilo problema dėl užklausos"
2131
+
2132
+ #: ../classes/es-register.php:724
2133
+ msgid "is getting even better!"
2134
+ msgstr "dar geriau!"
2135
+
2136
+ #: ../classes/es-register.php:725
2137
+ msgid "But I need you to"
2138
+ msgstr "Bet man reikia jums"
2139
+
2140
+ #: ../classes/es-register.php:725
2141
+ msgid "help me prioritize"
2142
+ msgstr "padėti man nustatyti prioritetus"
2143
+
2144
+ #: ../classes/es-register.php:725
2145
+ msgid "Please send your response today."
2146
+ msgstr "Prašome atsiųsti savo atsakymą šiandien."
2147
+
2148
+ #: ../classes/es-register.php:732
2149
+ msgid "Here's how you use ES:"
2150
+ msgstr "Štai kaip jūs naudojate ES:"
2151
+
2152
+ #: ../classes/es-register.php:745
2153
+ msgid "Have "
2154
+ msgstr "Turi"
2155
+
2156
+ #: ../classes/es-register.php:745
2157
+ msgid " Active Subscribers"
2158
+ msgstr "Aktyvūs prenumeratoriai"
2159
+
2160
+ #: ../classes/es-register.php:746
2161
+ msgid "Post "
2162
+ msgstr "Įrašas"
2163
+
2164
+ #: ../classes/es-register.php:746
2165
+ msgid " blog per week"
2166
+ msgstr "įrašų per savaitę"
2167
+
2168
+ #: ../classes/es-register.php:750
2169
+ msgid "Send emails via Cron"
2170
+ msgstr "Siųsti laiškus naudojant periodines užduotis (cron)"
2171
+
2172
+ #: ../classes/es-register.php:752
2173
+ msgid "Send emails Immediately"
2174
+ msgstr "Siųsti laiškus nedelsiant"
2175
+
2176
+ #: ../classes/es-register.php:779
2177
+ msgid "How soon do you want these new features?"
2178
+ msgstr "Kaip greitai jūs norite šių naujų funkcijų?"
2179
+
2180
+ #: ../classes/es-register.php:783
2181
+ msgid "Beautiful Email Designs"
2182
+ msgstr "Gražūs laiškų dizainai"
2183
+
2184
+ #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
2185
+ #: register.php:794 ../classes/es-register.php:799
2186
+ msgid "Right now!"
2187
+ msgstr "Dabar!"
2188
+
2189
+ #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
2190
+ #: register.php:795 ../classes/es-register.php:800
2191
+ msgid "Soon"
2192
+ msgstr "Greitai"
2193
+
2194
+ #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
2195
+ #: register.php:796 ../classes/es-register.php:801
2196
+ msgid "Later"
2197
+ msgstr "Vėliau"
2198
+
2199
+ #: ../classes/es-register.php:788
2200
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
2201
+ msgstr "Šlamšto tikrinimas, nustatymas... (geresnis laiškų pristatymas)"
2202
+
2203
+ #: ../classes/es-register.php:793
2204
+ msgid "Discard Fake / Bouncing Emails"
2205
+ msgstr "Išmesti neteisingus / neveikiančius el. pašto adresus"
2206
+
2207
+ #: ../classes/es-register.php:798
2208
+ msgid "Advanced Reporting"
2209
+ msgstr "Detalesnės ataskaitos"
2210
+
2211
+ #: ../classes/es-register.php:826
2212
+ msgid "Thank you!"
2213
+ msgstr "Ačiū!"
2214
+
2215
+ #: ../classes/es-register.php:827
2216
+ msgid "No issues, have a nice day!"
2217
+ msgstr "Jokių problemų, gražios dienos!"
2218
+
2219
+ #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
2220
+ msgid "Email *"
2221
+ msgstr "El. paštas *"
2222
+
2223
+ #: ../classes/es-register.php:1035
2224
+ msgid "Widget Title"
2225
+ msgstr "Valdiklio pavadinimas"
2226
+
2227
+ #: ../classes/es-register.php:1039
2228
+ msgid "Short description about subscription form"
2229
+ msgstr "Trumpas prenumeratos formos aprašymas"
2230
+
2231
+ #: ../classes/es-register.php:1043
2232
+ msgid "Display Name Field"
2233
+ msgstr "Rodyti vardo lauką"
2234
+
2235
+ #: ../classes/es-register.php:1050
2236
+ msgid "Subscriber Group"
2237
+ msgstr "Prenumeratoriaus grupė"
languages/email-subscribers-nb_NO.mo CHANGED
Binary file
languages/email-subscribers-nb_NO.po CHANGED
@@ -1,1975 +1,2211 @@
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"
8
- "Language-Team: \n"
9
- "Language: nb_NO\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 2.0.2\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Loco-Target-Locale: nb_NO\n"
23
- "X-Poedit-SearchPath-0: ..\n"
24
 
25
- #: base/es-defined.php:32
26
- msgid ""
27
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
28
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
29
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A huge "
30
- "thank you from Icegram in advance!"
31
  msgstr ""
32
- "Hvis du liker <strong>Email Subscribers</strong>, kan du vurdere å gi oss <a target="
33
- "\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/reviews/?"
34
- "filter=5#new-post\">★★★★★</a> en vurdering. En stor takk fra Icegram!"
35
-
36
- #: classes/es-common.php:31
37
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
38
- msgstr "<span style=\"color:#FF0000\">Deaktivert</span>"
39
-
40
- #: classes/es-common.php:40
41
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
42
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
43
-
44
- #: classes/es-common.php:43
45
- msgid "<span style=\"color:#993399;\">Immediately</span>"
46
- msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
47
-
48
- #: classes/es-register.php:155 classes/es-register.php:156
49
- #: settings/settings-edit.php:41
50
- msgid "Settings"
51
- msgstr "Innstillinger"
52
 
53
- #: classes/es-register.php:192
54
- msgctxt "compose-enhanced-select"
55
- msgid "Please enter the Email Subject."
56
- msgstr "Skriv inn E-post emne."
57
 
58
- #: classes/es-register.php:245
59
- msgctxt "widget-enhanced-select"
60
- msgid "Please enter email address"
61
- msgstr "Vennligst skriv e-postadresse"
62
 
63
- #: classes/es-register.php:246
64
- msgctxt "widget-enhanced-select"
65
- msgid "Please provide a valid email address"
66
- msgstr "Vennligst oppgi en gyldig e-post adresse"
 
67
 
68
- #: classes/es-register.php:249
69
- msgctxt "widget-enhanced-select"
70
- msgid "Successfully Subscribed."
71
- msgstr "Du er nå abonnent."
72
 
73
- #: classes/es-register.php:251
74
- msgctxt "widget-enhanced-select"
75
- msgid "Email Address already exists!"
76
- msgstr "E-postadressen finnes allerede!"
 
 
 
 
77
 
78
- #: classes/es-register.php:253
79
- msgctxt "widget-enhanced-select"
80
- msgid "Invalid email address"
81
- msgstr "Ugyldig e-postadresse"
82
 
83
- #: classes/es-register.php:254
84
- msgctxt "widget-enhanced-select"
85
- msgid "Please try after some time"
86
- msgstr "Prøv på nytt senere"
87
 
88
- #: classes/es-register.php:255
89
- msgctxt "widget-enhanced-select"
90
- msgid "There was a problem with the request"
91
- msgstr "Det oppstod et problem med forespørselen"
 
92
 
93
- #: classes/es-register.php:262
94
- msgctxt "widget-page-enhanced-select"
95
- msgid "Please enter email address"
96
- msgstr "Vennligst skriv e-postadresse"
97
 
98
- #: classes/es-register.php:263
99
- msgctxt "widget-page-enhanced-select"
100
- msgid "Please provide a valid email address"
101
- msgstr "Vennligst oppgi en gyldig e-post adresse"
 
102
 
103
- #: classes/es-register.php:266
104
- msgctxt "widget-page-enhanced-select"
105
- msgid "Successfully Subscribed."
106
- msgstr "Du er nå abonnent."
107
 
108
- #: classes/es-register.php:268
109
- msgctxt "widget-page-enhanced-select"
110
- msgid "Email Address already exists!"
111
- msgstr "Epostadressen finnes allerede!"
 
112
 
113
- #: classes/es-register.php:270
114
- msgctxt "widget-page-enhanced-select"
115
- msgid "Invalid email address"
116
- msgstr "Ugyldig e-postadresse"
117
 
118
- #: classes/es-register.php:271
119
- msgctxt "widget-page-enhanced-select"
120
- msgid "Please try after some time"
121
- msgstr "Prøv nytt senere"
 
122
 
123
- #: classes/es-register.php:272
124
- msgctxt "widget-page-enhanced-select"
125
- msgid "There was a problem with the request"
126
- msgstr "Det oppstod et problem med forespørselen"
127
 
128
- #: classes/es-register.php:707
129
- msgid "is getting even better!"
130
- msgstr "blir enda bedre!"
 
 
131
 
132
- #: classes/es-register.php:708
133
- msgid "But I need you to"
134
- msgstr "Jeg trenger deg til.."
135
 
136
- #: classes/es-register.php:708
137
- msgid "help me prioritize"
138
- msgstr "hjelpe meg å prioritere"
 
 
139
 
140
- #: classes/es-register.php:708
141
- msgid "Please send your response today."
142
- msgstr "Send din tilbakemelding i dag."
143
 
144
- #: classes/es-register.php:715
145
- msgid "Here's how you use ES:"
146
- msgstr "Her er hvordan du bruker ES:"
147
 
148
- #: classes/es-register.php:720
149
- msgid "Used Post Notifications more often than Newsletter"
150
- msgstr "Brukte innleggvarsler oftere enn nyhetsbrev"
 
 
 
151
 
152
- #: classes/es-register.php:722
153
- msgid "Used Newsletter more often than Post Notifications"
154
- msgstr "Brukte nyhetsbrev oftere enn Post meldinger"
155
 
156
- #: classes/es-register.php:724
157
- msgid "Used Post Notification &amp; Newsletter equally"
158
- msgstr "Brukte postvarsling og nyhetsbrev likt"
 
 
 
159
 
160
- #: classes/es-register.php:728
161
- msgid "Have "
162
- msgstr "Har "
 
 
 
163
 
164
- #: classes/es-register.php:728
165
- msgid " Active Subscribers"
166
- msgstr " Aktive abonnenter"
 
 
167
 
168
- #: classes/es-register.php:729
169
- msgid "Post "
170
- msgstr "Post "
 
 
171
 
172
- #: classes/es-register.php:729
173
- msgid " blog per week"
174
- msgstr " blogg per uke"
175
 
176
- #: classes/es-register.php:733
177
- msgid "Send emails via Cron"
178
- msgstr "Sende e-post via Cron"
 
 
179
 
180
- #: classes/es-register.php:735
181
- msgid "Send emails Immediately"
182
- msgstr "Sende e-post umiddelbart"
 
 
183
 
184
- #: classes/es-register.php:745
185
- msgid "How soon do you want these new features?"
186
- msgstr "Hvor snart vil du ha disse nye funksjonene?"
187
 
188
- #: classes/es-register.php:749
189
- msgid "Beautiful Email Designs"
190
- msgstr "Vakkert e-post design"
191
 
192
- #: classes/es-register.php:750 classes/es-register.php:755 classes/es-register.php:764
193
- #: classes/es-register.php:769
194
- msgid "Right now!"
195
- msgstr "Akkurat nå!"
 
196
 
197
- #: classes/es-register.php:751 classes/es-register.php:756 classes/es-register.php:765
198
- #: classes/es-register.php:770
199
- msgid "Soon"
200
- msgstr "Snart"
 
 
 
201
 
202
- #: classes/es-register.php:752 classes/es-register.php:757 classes/es-register.php:766
203
- #: classes/es-register.php:771
204
- msgid "Later"
205
- msgstr "Senere"
 
 
 
206
 
207
- #: classes/es-register.php:754
208
- msgid "Spam Check, Scheduling... (Better Email Delivery)"
209
- msgstr "Spam sjekk, planlegging... (Bedre e-post levering)"
 
 
 
 
210
 
211
- #: classes/es-register.php:763
212
- msgid "Discard Fake / Bouncing Emails"
213
- msgstr "Kast bort falske / hoppende e-poster"
 
 
 
 
214
 
215
- #: classes/es-register.php:768
216
- msgid "Advanced Reporting"
217
- msgstr "Avansert rapportering"
218
 
219
- #: classes/es-register.php:791
220
- msgid "Thank you!"
221
- msgstr "Takk!"
222
 
223
- #: classes/es-register.php:792
224
- msgid "No issues, have a nice day!"
225
- msgstr "Ingen problemer, har en fin dag!"
 
 
 
 
226
 
227
- #: classes/es-register.php:1016
228
- msgid "Short description about subscription form"
229
- msgstr "Kort beskrivelse av ditt abonnement skjema"
230
 
231
- #: compose/compose-add.php:78 compose/compose-edit.php:89
232
- msgid "Select your Email Template"
233
- msgstr "Velg e-post mal"
234
 
235
- #: compose/compose-add.php:80 compose/compose-edit.php:91
236
- msgid "Newsletter"
237
- msgstr "Nyhetsbrev"
 
238
 
239
- #: compose/compose-add.php:81 compose/compose-edit.php:92
240
- msgid "Post Notification"
241
- msgstr "Varsel"
242
 
243
- #: compose/compose-add.php:85 compose/compose-edit.php:96
244
- msgid "Enter your Email Subject"
245
- msgstr "Skriv inn E-post emne"
246
 
247
- #: compose/compose-add.php:89 compose/compose-edit.php:100
248
- msgid "Enter Content for your Email"
249
- msgstr "Angi innholdet for e-posten"
250
 
251
- #: compose/compose-show.php:77 compose/compose-show.php:84
252
- #: notification/notification-show.php:68 notification/notification-show.php:76
253
- msgid "Email Subject"
254
- msgstr "E-post emne"
 
 
255
 
256
- #: compose/compose-show.php:78 compose/compose-show.php:85
257
- msgid "Email Template"
258
- msgstr "E-postmal"
259
 
260
- #: help/help.php:67
261
- #, c-format
262
  msgid ""
263
- "Like Email Subscribers? If yes, then consider %s to support further developments."
 
264
  msgstr ""
265
- "Som Email Subscribers? Hvis ja, deretter vurdere %s til å støtte videre utvikling."
266
 
267
- #: help/help.php:67
268
- msgid "donating to us"
269
- msgstr "donere til oss"
270
 
271
- #: help/help.php:127
272
- msgid ""
273
- " (Modify existing emails like Confirmation, Welcome, Admin emails and Cron Settings "
274
- "and Assign User Roles)"
275
  msgstr ""
276
- " (Endre eksisterende e-poster som bekreftelse, velkommen, Admin e-post og Cron "
277
- "innstillinger og tilordne roller)"
278
 
279
- #: help/help.php:142
280
  msgid ""
281
- "How to Configure and Send Post Notification Emails to subscribers when new posts "
282
- "are published?"
283
  msgstr ""
284
- "Hvordan å konfigurere og sende innleggs e-poster til abonnenter når nye innlegg er "
285
- "publisert?"
286
 
287
- #: help/help.php:145
288
- msgid "What are the available keywords in the Post Notifications?"
289
- msgstr "Hva er de tilgjengelige søkeordene i Postvarsel?"
290
 
291
- #: help/help.php:148
292
- msgid "How to send a sample new post notification email to testgroup/myself?"
293
- msgstr "Hvordan sender du en ny eksempel e-postmelding til testgruppen / meg selv?"
294
 
295
- #: help/help.php:151
296
- msgid "How to check sent emails?"
297
- msgstr "Hvordan sjekke sendte e-poster?"
298
 
299
- #: help/help.php:154
300
- msgid "How to Add/Update Existing Subscribers Group & Status?"
301
- msgstr "Slik legger du til/Oppdater eksisterende abonnenter Gruppe & Status?"
302
 
303
- #: help/help.php:166
304
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
305
  msgstr ""
306
- "Slik omdirigerer du abonnenter til en ny side / URL etter vellykket innmelding?"
307
 
308
- #: help/help.php:169
309
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
310
- msgstr "Hvordan legge til captcha i abonner malen for e-abonnenter?"
311
 
312
- #: help/help.php:172
313
- msgid "How to Schedule Cron Emails?"
314
- msgstr "Hvordan planlegger Cron E-poster?"
315
 
316
- #: help/help.php:184
317
- msgid "CSS Help"
318
- msgstr "CSS hjelp"
319
 
320
- #: help/help.php:186
321
- msgid "Common FAQ's"
322
- msgstr "Vanlige spørsmål og svar"
323
 
324
- #: notification/notification-add.php:142 notification/notification-edit.php:162
325
- msgid "Select Notification Email Subject"
326
- msgstr "Vennligst velg e-post subjekt"
327
 
328
- #: notification/notification-add.php:239 notification/notification-edit.php:275
329
- msgid "Select Notification Status when a new post is published"
330
- msgstr "Velg Status for varsling når et nytt innlegg er publisert"
 
 
 
 
 
 
 
 
331
 
332
- #: notification/notification-add.php:243 notification/notification-edit.php:279
333
- #: notification/notification-show.php:130 sendmail/sendmail.php:138
334
- msgid "Send email immediately"
335
- msgstr "Send e-post umiddelbart"
336
 
337
- #: notification/notification-add.php:244 notification/notification-edit.php:280
338
- #: notification/notification-show.php:132
339
- msgid "Add to cron and send email via cron job"
340
- msgstr "Legge til cron og sende epost via cron jobb"
341
 
342
- #: notification/notification-add.php:245 notification/notification-edit.php:281
343
- msgid "Disable email notification"
344
- msgstr "Deaktivere e-postvarsling"
345
 
346
- #: notification/notification-show.php:57
347
  msgid ""
348
- "Use this to setup and send notification emails to your subscribers when a new post "
349
- "is published in your blog."
350
  msgstr ""
351
- "Bruk dette til oppsett og send varslings meldinger til abonnentene når et nytt "
352
- "innlegg publiseres i bloggen din."
353
 
354
- #: notification/notification-show.php:70 notification/notification-show.php:78
355
- msgid "Post Categories / Custom Post Types"
356
- msgstr "Innleggs kategorier / tilpasset Post typer"
357
 
358
- #: sendmail/sendmail.php:105
359
- msgid "Select Email Subject from available list"
360
- msgstr "Velg e-post emne fra tilgjengelige liste"
361
 
362
- #: sendmail/sendmail.php:132
363
- msgid "Select Email Type"
364
- msgstr "Velg e-posttype"
365
 
366
- #: sendmail/sendmail.php:139
367
- msgid "Send email via cron job"
368
- msgstr "Sende e-post via cron jobb"
369
 
370
- #: sendmail/sendmail.php:146
371
- msgid "Select Subscribers group to Send Email"
372
- msgstr "Velg abonnent gruppe som skal motta e-post"
373
 
374
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
375
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
376
- msgid "Sent"
377
- msgstr "Sendt"
378
 
379
- #: settings/settings-edit.php:23
380
- msgid "Admin"
381
- msgstr "Admin"
382
 
383
- #: settings/settings-edit.php:24
384
- msgid "Signup Confirmation"
385
- msgstr "Aktiver registreringsbekreftelse"
386
 
387
- #: settings/settings-edit.php:26
388
- msgid "Cron"
389
- msgstr "Cron"
390
 
391
- #: settings/settings-edit.php:102
392
- msgid "Opt-In Option"
393
- msgstr "Opt-in-alternativ"
394
 
395
- #: settings/settings-edit.php:134
396
- msgid "Notify admin when a new subscriber signs up"
397
- msgstr "Varsle admin når en ny abonnent registreres"
398
 
399
- #: settings/settings-edit.php:147
400
- msgid "Admin Email Subject when a new subscriber signs up"
401
- msgstr "Admin emne linje når en ny abonnent registreres"
402
 
403
- #: settings/settings-edit.php:148
404
- msgid ""
405
- "Enter the subject for the admin email which will be sent whenever a new email is "
406
- "added and confirmed."
407
  msgstr ""
408
- "Angi emnet for admin e-post. Dette vil bli sendt når en ny e-post er lagt til og "
409
- "bekreftet."
410
 
411
- #: settings/settings-edit.php:154
412
- msgid "Admin Email Content when a new subscriber signs up"
413
- msgstr "Admin e-innhold når en ny abonnent registreres"
414
 
415
- #: settings/settings-edit.php:155
416
- msgid ""
417
- "Enter the email content for the admin email which will be sent whenever a new email "
418
- "is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, ###GROUP###)"
419
  msgstr ""
420
- "Angi e-post innhold for admin e-post. Dette vil bli sendt når en ny e-post er lagt "
421
- "til og bekreftet. (Nøkkelord: ## #NAME###, ## #EMAIL###)"
422
 
423
- #: settings/settings-edit.php:163
424
- msgid "Enter the subject for the sent email report. It will be emailed to Admin."
425
- msgstr "Angi emnet for sendte e-poster rapporten. Det vil bli sendt til Admin."
426
-
427
- #: settings/settings-edit.php:170
428
- msgid ""
429
- "Enter the content for the sent email report. It will be emailed to Admin. (Keyword: "
430
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
431
  msgstr ""
432
- "Angi innholdet for sendt e-post rapporten. Det vil bli sendt til Admin. (Nøkkelord: "
433
- "## #COUNT### ## #UNIQUE### ## #STARTTIME###, ## #ENDTIME###)"
434
 
435
- #: settings/settings-edit.php:179
436
- msgid "Double Opt In Email Subject (Confirmation Email)"
437
- msgstr "Double Opt i e-post emne (bekreftelses e-post)"
438
 
439
- #: settings/settings-edit.php:180
440
  msgid ""
441
- "Enter the subject for the confirmation email to be sent for Double Opt In whenever "
442
- "a user signs up."
443
  msgstr ""
444
- "Angi emnet for e-postbekreftelse sendt for Double Opt In når en bruker registrerer "
445
- "seg."
446
 
447
- #: settings/settings-edit.php:186
448
- msgid "Double Opt In Email Content (Confirmation Email)"
449
- msgstr "Double Opt i e-post innhold (bekreftelses e-post)"
450
 
451
- #: settings/settings-edit.php:187
452
- msgid ""
453
- "Enter the content for the confirmation email to be sent for Double Opt In whenever "
454
- "a user signs up. (Keyword: ###NAME###, ###LINK###)"
455
  msgstr ""
456
- "Angi innholdet for e-post bekreftelse sendt for Double Opt In når en bruker "
457
- "registrerer seg. (Nøkkelord: ## #NAME###)"
458
 
459
- #: settings/settings-edit.php:200
460
- msgid ""
461
- "Text to display after an email address is successfully subscribed from Double Opt "
462
- "In (confirmation) Email"
463
  msgstr ""
464
- "Teksten som skal vises når en e-postadresse er vellykket registrert fra Double Opt "
465
- "In (bekreftelse) e-post"
466
 
467
- #: settings/settings-edit.php:221
468
  msgid ""
469
- "Enter the subject for the subscriber welcome email. This will be sent whenever a "
470
- "user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
471
- "successfully."
472
  msgstr ""
473
- "Angi emnet for e-post velkommen som abonnent. Dette sendes når en brukers e-post er "
474
- "enten bekreftet (hvis dobbelt Opt In) / abonnert (Hvis én Opt In) vellykket."
475
 
476
- #: settings/settings-edit.php:228
477
- msgid ""
478
- "Enter the content for the subscriber welcome email whenever a user's email is "
479
- "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
480
- "(Keyword: ###NAME###, ###GROUP###, ###LINK###)"
481
  msgstr ""
482
- "Angi innholdet for abonnent velkomst e-post når en brukers e-post er enten "
483
- "bekreftet (hvis dobbelt Opt In) / abonnerte (Hvis én Opt In) vellykket. (Nøkkelord: "
484
- "## #NAME###, ## #GROUP###, ## #LINK###)"
485
 
486
- #: settings/settings-edit.php:237
487
  msgid ""
488
- "The unsubscribe link gets added automatically to all emails that are sent from this "
489
- "plugin. It is a readonly field and you are advised not to modify it."
490
  msgstr ""
491
- "Avmeldelses linken blir automatisk lagt til alle e-postmeldinger som sendes fra "
492
- "denne plugin. Det er et skrivebeskyttet felt og du anbefales ikke å endre dette."
493
-
494
- #: settings/settings-edit.php:250
495
- msgid "Text to display after an email address is unsubscribed"
496
- msgstr "Teksten som skal vises etter avmeldings e-posten"
497
-
498
- #: settings/settings-edit.php:258
499
- msgid "Error in the Confirmation Link"
500
- msgstr "Feil i bekreftelses linken"
501
-
502
- #: settings/settings-edit.php:265
503
- msgid "Error in the Unsubscribe Link"
504
- msgstr "Feil i avmeldings linken"
505
-
506
- #: settings/settings-edit.php:355
507
- msgid "Email Count"
508
- msgstr "Antall e-poster"
509
-
510
- #: settings/settings-edit.php:356
511
- msgid "Number of emails that you want to trigger per hour."
512
- msgstr "Antall e-postmeldinger som skal utløses per time."
513
 
514
- #: subscribers/view-subscriber-export.php:47 subscribers/view-subscriber-export.php:55
515
- msgid "Total Emails Count"
516
- msgstr "Totalt antall e-poster"
 
517
 
518
- #: subscribers/view-subscriber-export.php:62
519
- msgid "All Subscribers"
520
- msgstr "Alle abonnenter"
521
 
522
- #: subscribers/view-subscriber-export.php:68
523
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
524
- msgstr "Aktive abonnenter (Status: bekreftet & enkel Opt In)"
525
 
526
- #: subscribers/view-subscriber-export.php:74
527
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
528
- msgstr "Inaktive abonnenter (Status: ubekreftet & avmeldt)"
529
 
530
- #: subscribers/view-subscriber-export.php:79
531
- msgid "4"
532
- msgstr "4"
533
 
534
- #: subscribers/view-subscriber-export.php:85
535
- msgid "5"
536
- msgstr "5"
 
 
537
 
538
- #: subscribers/view-subscriber-show.php:252
539
- #, c-format
540
- msgid "Total Subscribers: %s"
541
- msgstr "Totale abonnenter: %s"
 
542
 
543
- #: subscribers/view-subscriber-show.php:254
544
- #, c-format
545
- msgid "Active Subscribers: %s"
546
- msgstr "Aktive abonnenter: %s"
547
 
548
- #: subscribers/view-subscriber-show.php:308
549
- msgid "Select Status"
550
- msgstr "Velg Status"
551
 
552
- #: subscribers/view-subscriber-show.php:342
553
- msgid "1 to 500 emails"
554
- msgstr "1 til 500 e-poster"
555
 
556
- #: subscribers/view-subscriber-show.php:343
557
- msgid "501 to 1000"
558
- msgstr "501 til 1000"
 
559
 
560
- #: subscribers/view-subscriber-show.php:344
561
- msgid "1001 to 1500"
562
- msgstr "1001 til 1500"
563
 
564
- #: subscribers/view-subscriber-show.php:345
565
- msgid "1501 to 2000"
566
- msgstr "1501 til 2000"
567
 
568
- #: subscribers/view-subscriber-show.php:346
569
- msgid "2001 to 4000"
570
- msgstr "2001 til 4000"
571
 
572
- #: subscribers/view-subscriber-show.php:347
573
- msgid "4001 to 6000"
574
- msgstr "4001 til 6000"
575
 
576
- #: subscribers/view-subscriber-show.php:348
577
- msgid "6001 to 10000"
578
- msgstr "6001 til 10000"
579
 
580
- #: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
581
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
582
- msgstr "Registreringsdato & Tid<br>(Y-M-D H:I:S)"
583
 
584
- #. Description of the plugin/theme
585
- msgid ""
586
- "Add subscription forms on website, send HTML newsletters & automatically notify "
587
- "subscribers about new blog posts once it is published."
588
  msgstr ""
589
- "Legge til abonnement skjemaer på nettsider, sende HTML nyhetsbrev & automatisk "
590
- "varsle abonnenter om nye blogginnlegg gang det blir publisert."
591
 
592
- #: classes/es-common.php:13
593
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
594
- msgstr "<span style=«color:#006600;font-weight:bold;»>Bekreftet</span>"
595
 
596
- #: classes/es-common.php:16
597
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
598
- msgstr "<span style=«color:#FF0000»>Ubekreftet</span>"
599
 
600
- #: classes/es-common.php:19
601
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
602
- msgstr "<span style=\"color:#999900\">Utmeldt</span>"
603
 
604
- #: classes/es-common.php:22
605
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
606
- msgstr "<span style=«color:#0000FF»>Enkel Opt In</span>"
607
 
608
- #: classes/es-common.php:25
609
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
610
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Vist</span>"
611
 
612
- #: classes/es-common.php:28
613
- msgid "<span style=\"color:#999900;\">Nodata</span>"
614
- msgstr "<span style=\"color:#999900\">Ingen data</span>"
615
 
616
- #: classes/es-common.php:34
617
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
618
- msgstr "<span style=\"color:#FF0000\">I kø</span>"
 
 
 
 
 
 
 
 
619
 
620
- #: classes/es-common.php:37
621
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
622
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Sendt</span>"
623
 
624
- #: classes/es-loadwidget.php:28 classes/es-register.php:964
625
- #: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
626
- msgid "Name"
627
- msgstr "Navn"
 
 
 
 
628
 
629
- #: classes/es-loadwidget.php:33 classes/es-register.php:969
630
- msgid "Email *"
631
- msgstr "E-post *"
 
632
 
633
- #: classes/es-loadwidget.php:38 classes/es-register.php:974
634
- msgid "Subscribe"
635
- msgstr "Abonner"
 
636
 
637
- #: classes/es-register.php:140 classes/es-register.php:141 classes/es-register.php:707
638
- msgid "Email Subscribers"
639
- msgstr "Email Subscribers"
 
640
 
641
- #: classes/es-register.php:143 classes/es-register.php:144
642
- #: subscribers/view-subscriber-show.php:241
643
- msgid "Subscribers"
644
- msgstr "Abonnenter"
645
 
646
- #: classes/es-register.php:146 classes/es-register.php:147 compose/compose-show.php:64
647
- msgid "Compose"
648
- msgstr "Skriv Melding"
 
649
 
650
- #: classes/es-register.php:149 classes/es-register.php:150
651
- #: notification/notification-show.php:52
652
- msgid "Post Notifications"
653
- msgstr "Varsler"
654
 
655
- #: classes/es-register.php:152 classes/es-register.php:153 sendmail/sendmail.php:93
656
- #: settings/settings-edit.php:318
657
- msgid "Newsletters"
658
- msgstr "Nyhetsbrev"
659
 
660
- #: classes/es-register.php:158 classes/es-register.php:159
661
- #: sentmail/sentmail-show.php:96
662
- msgid "Reports"
663
- msgstr "Rapporter"
664
 
665
- #: classes/es-register.php:161
666
- msgid "Help & Info"
667
- msgstr "Hjelp & Info"
 
668
 
669
- #: classes/es-register.php:162
670
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
671
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hjelp & Info</span>"
 
672
 
673
- #: classes/es-register.php:173
674
- msgctxt "view-subscriber-enhanced-select"
675
- msgid "Please enter subscriber email address."
676
- msgstr "Angi abonnent e-postadresse."
677
 
678
- #: classes/es-register.php:174
679
- msgctxt "view-subscriber-enhanced-select"
680
- msgid "Please select subscriber email status."
681
- msgstr "Velg abonnents e-poststatus."
682
 
683
- #: classes/es-register.php:175
684
- msgctxt "view-subscriber-enhanced-select"
685
- msgid "Please select or create group for this subscriber."
686
- msgstr "Velg eller Opprett gruppe for denne abonnent."
 
687
 
688
- #: classes/es-register.php:176
689
- msgctxt "view-subscriber-enhanced-select"
690
- msgid "Do you want to delete this record?"
691
- msgstr "Er du sikker på at du vil slette denne oppføringen?"
 
 
692
 
693
- #: classes/es-register.php:177
694
- msgctxt "view-subscriber-enhanced-select"
695
- msgid "Please select the bulk action."
696
- msgstr "Velg massehandling."
697
 
698
- #: classes/es-register.php:178
699
- msgctxt "view-subscriber-enhanced-select"
700
- msgid "Are you sure you want to delete selected records?"
701
- msgstr "Er du sikker på at du vil slette valgte oppføringer?"
702
 
703
- #: classes/es-register.php:179
704
- msgctxt "view-subscriber-enhanced-select"
 
 
 
 
705
  msgid ""
706
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
707
- "subscriber current status to 'Unconfirmed'."
708
  msgstr ""
709
- "Vil du sende e-postbekreftelsen? \\nAlso Merk at dette vil oppdatere abonnent "
710
- "gjeldende status til 'Unconfirmed'."
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
+ "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Mon Aug 21 2017 16:25:58 GMT+0530 (IST)\n"
7
+ "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Norwegian (Bokmål)\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: nb_NO\n"
24
+ "X-Poedit-SearchPath-0: .."
25
 
26
+ #. URI of the plugin
27
+ msgid "https://www.icegram.com"
 
 
 
 
28
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
+ #: ../email-subscribers.php:70
31
+ msgctxt "timezone date format"
32
+ msgid "Y-m-d H:i:s"
33
+ msgstr ""
34
 
35
+ #: ../settings/settings-edit.php:92
36
+ msgid "Email Type"
37
+ msgstr ""
 
38
 
39
+ #: ../settings/settings-edit.php:93
40
+ msgid ""
41
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
42
+ "Option 3 & 4 is to send emails with PHP method mail()."
43
+ msgstr ""
44
 
45
+ #: ../settings/settings-edit.php:107
46
+ msgid "Opt-In Type"
47
+ msgstr ""
 
48
 
49
+ #: ../settings/settings-edit.php:108
50
+ msgid ""
51
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
52
+ "soon as they subscribe to your list. They have to confirm their subscription "
53
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
54
+ "subscriber is not asked to confirm their email address. They are subscribed "
55
+ "directly in the list."
56
+ msgstr ""
57
 
58
+ #: ../settings/settings-edit.php:139
59
+ msgid "Notify Admin when a new subscriber signs up"
60
+ msgstr ""
 
61
 
62
+ #: ../settings/settings-edit.php:152
63
+ msgid "Admin Email Subject on new subscriber sign up"
64
+ msgstr ""
 
65
 
66
+ #: ../settings/settings-edit.php:153
67
+ msgid ""
68
+ "Subject for the admin email whenever a new subscriber signs up and is "
69
+ "confirmed."
70
+ msgstr ""
71
 
72
+ #: ../settings/settings-edit.php:159
73
+ msgid "Admin Email Content on new subscriber signs up"
74
+ msgstr ""
 
75
 
76
+ #: ../settings/settings-edit.php:160
77
+ msgid ""
78
+ "Content for the admin email whenever a new subscriber signs up and is "
79
+ "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
80
+ msgstr ""
81
 
82
+ #: ../settings/settings-edit.php:168
83
+ msgid "Subject for the email report which will be sent to admin."
84
+ msgstr ""
 
85
 
86
+ #: ../settings/settings-edit.php:175
87
+ msgid ""
88
+ "Content for the email report which will be sent to admin.<br />(Available "
89
+ "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
90
+ msgstr ""
91
 
92
+ #: ../settings/settings-edit.php:186
93
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
94
+ msgstr ""
 
95
 
96
+ #: ../settings/settings-edit.php:187
97
+ msgid ""
98
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
99
+ "subscriber signs up."
100
+ msgstr ""
101
 
102
+ #: ../settings/settings-edit.php:193
103
+ msgid "Double Opt-In Email Content (Confirmation Email)"
104
+ msgstr ""
 
105
 
106
+ #: ../settings/settings-edit.php:194
107
+ msgid ""
108
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
109
+ "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
110
+ msgstr ""
111
 
112
+ #: ../settings/settings-edit.php:200
113
+ msgid "Double Opt-In Confirmation Link"
114
+ msgstr ""
115
 
116
+ #: ../settings/settings-edit.php:207
117
+ msgid ""
118
+ "Text to display after an email address is successfully subscribed from "
119
+ "Double Opt-In (Confirmation) Email"
120
+ msgstr ""
121
 
122
+ #: ../settings/settings-edit.php:215
123
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
124
+ msgstr ""
125
 
126
+ #: ../settings/settings-edit.php:227
127
+ msgid "Subject for Welcome Email"
128
+ msgstr ""
129
 
130
+ #: ../settings/settings-edit.php:228
131
+ msgid ""
132
+ "Subject for the subscriber welcome email. This will be sent whenever a "
133
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
134
+ "Opt-In) successfully."
135
+ msgstr ""
136
 
137
+ #: ../settings/settings-edit.php:234
138
+ msgid "Email Content for Welcome Email"
139
+ msgstr ""
140
 
141
+ #: ../settings/settings-edit.php:235
142
+ msgid ""
143
+ "Content for the subscriber welcome email whenever a user's email is either "
144
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
145
+ "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
146
+ msgstr ""
147
 
148
+ #: ../settings/settings-edit.php:244
149
+ msgid ""
150
+ "This unsubscribe link is automatically added to all the emails that are sent "
151
+ "from this plugin. It is a readonly field and you are advised not to modify "
152
+ "it."
153
+ msgstr ""
154
 
155
+ #: ../settings/settings-edit.php:251
156
+ msgid ""
157
+ "The text for the unsubscribe link. This text is automatically added with "
158
+ "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
159
+ msgstr ""
160
 
161
+ #: ../settings/settings-edit.php:258
162
+ msgid ""
163
+ "This text will be displayed once user clicks on unsubscribe link from the "
164
+ "email."
165
+ msgstr ""
166
 
167
+ #: ../settings/settings-edit.php:265
168
+ msgid "Error in the Subscribe / Confirmation Link"
169
+ msgstr ""
170
 
171
+ #: ../settings/settings-edit.php:266
172
+ msgid ""
173
+ "Default message to display if there is any issue while clicking on subscribe "
174
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
175
+ msgstr ""
176
 
177
+ #: ../settings/settings-edit.php:273
178
+ msgid ""
179
+ "Default message to display if there is any issue while clicking on "
180
+ "unsubscribe link from the emails."
181
+ msgstr ""
182
 
183
+ #: ../settings/settings-edit.php:372
184
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
185
+ msgstr ""
186
 
187
+ #: ../settings/settings-edit.php:377
188
+ msgid "Cron Report"
189
+ msgstr ""
190
 
191
+ #: ../settings/settings-edit.php:378
192
+ msgid ""
193
+ "Email to admin whenever a cron URL is triggered from your server. (Available "
194
+ "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
195
+ msgstr ""
196
 
197
+ #: ../settings/settings-edit.php:389
198
+ msgid ""
199
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
200
+ "schedule-cron-emails/?"
201
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
202
+ "Cron?</a>"
203
+ msgstr ""
204
 
205
+ #: ../settings/settings-edit.php:390
206
+ msgid ""
207
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
208
+ "schedule-cron-emails-in-cpanel/?"
209
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
210
+ "job in cPanel</a>"
211
+ msgstr ""
212
 
213
+ #: ../settings/settings-edit.php:391
214
+ msgid ""
215
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
216
+ "schedule-cron-emails-in-parallels-plesk/?"
217
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
218
+ "job in Plesk</a>"
219
+ msgstr ""
220
 
221
+ #: ../settings/settings-edit.php:392
222
+ msgid ""
223
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
224
+ "if-hosting-doesnt-support-cron-jobs/?"
225
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
226
+ "does not support cron jobs?</a>"
227
+ msgstr ""
228
 
229
+ #: ../compose/compose-edit.php:61
230
+ msgid "Successfully updated. "
231
+ msgstr ""
232
 
233
+ #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
234
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
235
+ msgstr ""
236
 
237
+ #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
238
+ #, php-format
239
+ msgid ""
240
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
241
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
242
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
243
+ msgstr ""
244
 
245
+ #: ../compose/compose-add.php:43
246
+ msgid "Successfully created. "
247
+ msgstr ""
248
 
249
+ #: ../help/help.php:178
250
+ msgid "Get more help and tips..."
251
+ msgstr ""
252
 
253
+ #: ../help/help.php:192
254
+ #, php-format
255
+ msgid "Version: %s"
256
+ msgstr ""
257
 
258
+ #: ../help/help.php:195
259
+ msgid "Questions? Need Help?"
260
+ msgstr ""
261
 
262
+ #: ../help/help.php:196
263
+ msgid "Contact Us"
264
+ msgstr ""
265
 
266
+ #: ../help/help.php:236
267
+ msgid "Description"
268
+ msgstr ""
269
 
270
+ #: ../help/help.php:238
271
+ msgid ""
272
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
273
+ "leads, send automated new blog post notification emails, create & send "
274
+ "newsletters and manage all this in one single place."
275
+ msgstr ""
276
 
277
+ #: ../help/help.php:240
278
+ msgid "Feature Overview"
279
+ msgstr ""
280
 
281
+ #: ../help/help.php:243
 
282
  msgid ""
283
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
284
+ "Code)."
285
  msgstr ""
 
286
 
287
+ #: ../help/help.php:246
288
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
289
+ msgstr ""
290
 
291
+ #: ../help/help.php:249
292
+ msgid "Send automatic welcome email to subscribers."
 
 
293
  msgstr ""
 
 
294
 
295
+ #: ../help/help.php:252
296
  msgid ""
297
+ "Send new post notification emails to subscribers when new posts are "
298
+ "published on your website."
299
  msgstr ""
 
 
300
 
301
+ #: ../help/help.php:255
302
+ msgid "Schedule email (Cron job) or send them manually."
303
+ msgstr ""
304
 
305
+ #: ../help/help.php:258
306
+ msgid "Send email notification to admin when a new user signs up."
307
+ msgstr ""
308
 
309
+ #: ../help/help.php:261
310
+ msgid "Automatically add Unsubscribe link in the email."
311
+ msgstr ""
312
 
313
+ #: ../help/help.php:264
314
+ msgid "Easily migrate subscribers from another app using Import & Export."
315
+ msgstr ""
316
 
317
+ #: ../help/help.php:267
318
+ msgid "Use HTML editor to compose newsletters and post notifications."
319
  msgstr ""
 
320
 
321
+ #: ../help/help.php:270
322
+ msgid "Send newsletters to different groups."
323
+ msgstr ""
324
 
325
+ #: ../help/help.php:273
326
+ msgid "Get detailed sent email reports."
327
+ msgstr ""
328
 
329
+ #: ../help/help.php:276
330
+ msgid "Control user access (User Roles and Capabilities)."
331
+ msgstr ""
332
 
333
+ #: ../help/help.php:279
334
+ msgid "Supports localization and internationalization."
335
+ msgstr ""
336
 
337
+ #: ../help/help.php:286
338
+ msgid "Add Subscribe form"
339
+ msgstr ""
340
 
341
+ #: ../help/help.php:291
342
+ #, php-format
343
+ msgid ""
344
+ "Use any of the following 3 methods :<br>\n"
345
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
346
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
347
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
348
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
349
+ " c) Copy and past this php code to your desired template location : "
350
+ "<strong>%s</strong>"
351
+ msgstr ""
352
 
353
+ #: ../help/help.php:296
354
+ msgid "Additional form settings"
355
+ msgstr ""
 
356
 
357
+ #: ../help/help.php:311
358
+ #, php-format
359
+ msgid "Modify %s"
360
+ msgstr ""
361
 
362
+ #: ../help/help.php:311
363
+ msgid "default text, email contents"
364
+ msgstr ""
365
 
366
+ #: ../help/help.php:311
367
  msgid ""
368
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
369
+ "Roles"
370
  msgstr ""
 
 
371
 
372
+ #: ../help/help.php:320
373
+ msgid "How to change/update/translate any texts from the plugin?"
374
+ msgstr ""
375
 
376
+ #: ../help/help.php:333
377
+ msgid "Usage"
378
+ msgstr ""
379
 
380
+ #: ../help/help.php:336
381
+ msgid "Compose and Send Newsletter Emails"
382
+ msgstr ""
383
 
384
+ #: ../help/help.php:339
385
+ msgid "Compose and Send Post Notification Emails when new posts are published"
386
+ msgstr ""
387
 
388
+ #: ../help/help.php:342
389
+ msgid "Keywords in the Post Notifications"
390
+ msgstr ""
391
 
392
+ #: ../help/help.php:345
393
+ msgid "Send a test post notification email to myself/testgroup"
394
+ msgstr ""
 
395
 
396
+ #: ../help/help.php:348
397
+ msgid "Check sent emails"
398
+ msgstr ""
399
 
400
+ #: ../help/help.php:355
401
+ msgid "Cron Job Setup"
402
+ msgstr ""
403
 
404
+ #: ../help/help.php:361
405
+ msgid "Schedule Cron Emails in cPanel"
406
+ msgstr ""
407
 
408
+ #: ../help/help.php:364
409
+ msgid "Schedule Cron Emails in Parallels Plesk"
410
+ msgstr ""
411
 
412
+ #: ../help/help.php:367
413
+ msgid "Hosting doesn’t support Cron Jobs?"
414
+ msgstr ""
415
 
416
+ #: ../help/help.php:374
417
+ msgid "Troubleshooting Steps"
418
+ msgstr ""
419
 
420
+ #: ../help/help.php:382
421
+ msgid "FAQ's"
 
 
422
  msgstr ""
 
 
423
 
424
+ #: ../help/help.php:389
425
+ msgid "Want to do more? Here's how.."
426
+ msgstr ""
427
 
428
+ #: ../help/help.php:392
429
+ msgid "Allow Subscribers to get subscribed to any group"
 
 
430
  msgstr ""
 
 
431
 
432
+ #: ../help/help.php:397
433
+ msgid "Using our free "
 
 
 
 
 
 
434
  msgstr ""
 
 
435
 
436
+ #: ../help/help.php:398
437
+ msgid "Group Selector"
438
+ msgstr ""
439
 
440
+ #: ../help/help.php:399
441
  msgid ""
442
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
443
+ "grouping option right next to the form."
444
  msgstr ""
 
 
445
 
446
+ #: ../help/help.php:402
447
+ msgid "The user can then subscribe to whichever group most appeals to them."
448
+ msgstr ""
449
 
450
+ #: ../help/help.php:405
451
+ msgid "For example: Subscribe either to Updates or to Offers."
 
 
452
  msgstr ""
 
 
453
 
454
+ #: ../help/help.php:409
455
+ msgid "Show your subscribe form inside attractive popups"
 
 
456
  msgstr ""
 
 
457
 
458
+ #: ../help/help.php:414
459
  msgid ""
460
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
461
+ "bars, slide-ins, sidebars, full screen popups etc."
 
462
  msgstr ""
 
 
463
 
464
+ #: ../help/help.php:417
465
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
 
 
 
466
  msgstr ""
 
 
 
467
 
468
+ #: ../help/help.php:421
469
  msgid ""
470
+ "Icegram's beautiful designs instantly capture user attention and help "
471
+ "increase sign-ups to your WordPress website."
472
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473
 
474
+ #: ../help/help.php:424 ../help/help.php:444
475
+ #, php-format
476
+ msgid "How to %s"
477
+ msgstr ""
478
 
479
+ #: ../help/help.php:424
480
+ msgid "show subscribe form inside a popup"
481
+ msgstr ""
482
 
483
+ #: ../help/help.php:428
484
+ msgid "Get beautiful and elegant form styles"
485
+ msgstr ""
486
 
487
+ #: ../help/help.php:434
488
+ msgid "Email subscribers easily integrates with another free plugin "
489
+ msgstr ""
490
 
491
+ #: ../help/help.php:435
492
+ msgid "Rainmaker"
493
+ msgstr ""
494
 
495
+ #: ../help/help.php:438
496
+ msgid ""
497
+ "Rainmaker extends the core features of Email Subscribers and provides "
498
+ "elegant form styles."
499
+ msgstr ""
500
 
501
+ #: ../help/help.php:441
502
+ msgid ""
503
+ "These styles are well designed and beautify your subscription form making it "
504
+ "more appealing."
505
+ msgstr ""
506
 
507
+ #: ../help/help.php:444
508
+ msgid "add Rainmaker’s form in Email Subscribers"
509
+ msgstr ""
 
510
 
511
+ #: ../sendmail/sendmail.php:59
512
+ msgid "Email sent successfully. "
513
+ msgstr ""
514
 
515
+ #: ../classes/es-register.php:164
516
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
517
+ msgstr ""
518
 
519
+ #: ../classes/es-register.php:707
520
+ msgctxt "timezone date format"
521
+ msgid "Y-m-d"
522
+ msgstr ""
523
 
524
+ #: ../classes/es-register.php:737
525
+ msgid "Post Notifications more often than Newsletter"
526
+ msgstr ""
527
 
528
+ #: ../classes/es-register.php:739
529
+ msgid "Newsletter more often than Post Notifications"
530
+ msgstr ""
531
 
532
+ #: ../classes/es-register.php:741
533
+ msgid "Post Notification &amp; Newsletter equally"
534
+ msgstr ""
535
 
536
+ #: ../classes/es-register.php:759
537
+ msgid "Using Double Opt In"
538
+ msgstr ""
539
 
540
+ #: ../classes/es-register.php:761
541
+ msgid "Using Single Opt In"
542
+ msgstr ""
543
 
544
+ #: ../classes/es-register.php:810
545
+ msgid "Nah, I don't like improvements"
546
+ msgstr ""
547
 
548
+ #: ../classes/es-register.php:816
549
+ msgid "Next"
 
 
550
  msgstr ""
 
 
551
 
552
+ #: ../notification/notification-add.php:33
553
+ msgid "Please select subscribers group."
554
+ msgstr "Velg abonnent gruppe."
555
 
556
+ #: ../notification/notification-add.php:39
557
+ msgid "Please select notification status."
558
+ msgstr "Velg varselstatusen."
559
 
560
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
561
+ msgid "Please select notification mail subject. Use compose menu to create new."
562
+ msgstr "Velg varsel e-post emne. Bruk komponere menyen for å opprette nye."
563
 
564
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
565
+ msgid "Please select post categories."
566
+ msgstr "Velg innlegg kategorier."
567
 
568
+ #: ../notification/notification-add.php:71
569
+ msgid "Notification successfully created. "
570
+ msgstr "Melding opprettet. "
571
 
572
+ #: ../notification/notification-add.php:112
573
+ msgid "Add Notification"
574
+ msgstr "Legg til varsel"
575
 
576
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
577
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
578
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
579
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
580
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
581
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
582
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
583
+ #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
584
+ #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
585
+ msgid "Help"
586
+ msgstr "Hjelp"
587
 
588
+ #: ../notification/notification-add.php:120
589
+ msgid "Select Subscribers Group"
590
+ msgstr "Velg abonnent gruppe"
591
 
592
+ #: ../notification/notification-add.php:124 ../notification/notification-add.php:
593
+ #: 148 ../notification/notification-edit.php:135 ../notification/notification-
594
+ #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
595
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
596
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
597
+ #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
598
+ msgid "Select"
599
+ msgstr "Velg"
600
 
601
+ #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
602
+ #: 162
603
+ msgid "Select Notification Email Subject"
604
+ msgstr "Vennligst velg e-post subjekt"
605
 
606
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
607
+ #: 163
608
+ msgid "(Use compose menu to create new)"
609
+ msgstr "(Bruk komponer menyen for å lage ny)"
610
 
611
+ #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
612
+ #: 190
613
+ msgid "Select Post Categories"
614
+ msgstr "Velg innlegg kategorier"
615
 
616
+ #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
617
+ #: 225
618
+ msgid "Check All"
619
+ msgstr "Merk alle"
620
 
621
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
622
+ #: 226
623
+ msgid "Uncheck All"
624
+ msgstr "Opphev merking"
625
 
626
+ #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
627
+ #: 233
628
+ msgid "Select your Custom Post Type"
629
+ msgstr "Velg din egendefinerte innleggstype"
630
 
631
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
632
+ #: 234
633
+ msgid "(Optional)"
634
+ msgstr "(valgfritt)"
635
 
636
+ #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
637
+ #: 268
638
+ msgid "No Custom Post Types Available"
639
+ msgstr "Ingen tilpassede innleggs typer tilgjengelig"
640
 
641
+ #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
642
+ #: 275
643
+ msgid "Select Notification Status when a new post is published"
644
+ msgstr "Velg Status for varsling når et nytt innlegg er publisert"
645
 
646
+ #: ../notification/notification-add.php:243 ../notification/notification-show.php:
647
+ #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
648
+ msgid "Send email immediately"
649
+ msgstr "Send e-post umiddelbart"
650
 
651
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
652
+ #: 132 ../notification/notification-edit.php:280
653
+ msgid "Add to cron and send email via cron job"
654
+ msgstr "Legge til cron og sende epost via cron jobb"
655
 
656
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
657
+ #: 281
658
+ msgid "Disable email notification"
659
+ msgstr "Deaktivere e-postvarsling"
660
 
661
+ #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
662
+ #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
663
+ #: 117 ../compose/compose-add.php:105
664
+ msgid "Save"
665
+ msgstr "Lagre"
666
 
667
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
668
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
669
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
670
+ #: compose/compose-show.php:33 ../compose/compose-preview.php:18
671
+ msgid "Oops, selected details does not exists."
672
+ msgstr "Oops, valgte detaljer finnes ikke."
673
 
674
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
675
+ #: compose/compose-show.php:47
676
+ msgid "Selected record deleted."
677
+ msgstr "Valgte posten slettet."
678
 
679
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
680
+ #: classes/es-register.php:152
681
+ msgid "Post Notifications"
682
+ msgstr "Varsler"
683
 
684
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
685
+ #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
686
+ msgid "Add New"
687
+ msgstr "Legg til ny"
688
+
689
+ #: ../notification/notification-show.php:57
690
  msgid ""
691
+ "Use this to setup and send notification emails to your subscribers when a "
692
+ "new post is published in your blog."
693
  msgstr ""
694
+ "Bruk dette til oppsett og send varslings meldinger til abonnentene når et "
695
+ "nytt innlegg publiseres i