Email Subscribers & Newsletters - Version 3.5.3

Version Description

(02.07.2018) =

  • Fix: Notices on Subscribers -> Sync page (Illegal string offset es_registered & es_registered_group)
  • Update: Use of $wpdb->prepare for direct queries to the database
  • Update: Text improvements while creating/editing post notification
  • Update: POT file
  • Localization: Translation for Swedish (sv_SE) language updated (Thanks to Rune Svennelid)
  • Localization: Made all translation files up-to-date with latest POT file
Download this release

Release Info

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

Code changes from version 3.5.2 to 3.5.3

Files changed (42) hide show
  1. changelog.txt +8 -0
  2. classes/es-register.php +57 -93
  3. classes/es-stater.php +0 -1
  4. email-subscribers.php +1 -1
  5. export/export-email-address.php +35 -18
  6. job/es-optin.php +3 -1
  7. job/es-unsubscribe.php +3 -1
  8. languages/email-subscribers-ca.mo +0 -0
  9. languages/email-subscribers-ca.po +137 -151
  10. languages/email-subscribers-de_DE.mo +0 -0
  11. languages/email-subscribers-de_DE.po +136 -152
  12. languages/email-subscribers-es_ES.mo +0 -0
  13. languages/email-subscribers-es_ES.po +136 -152
  14. languages/email-subscribers-fr_FR.mo +0 -0
  15. languages/email-subscribers-fr_FR.po +136 -150
  16. languages/email-subscribers-hu_HU.mo +0 -0
  17. languages/email-subscribers-hu_HU.po +136 -150
  18. languages/email-subscribers-it_IT.mo +0 -0
  19. languages/email-subscribers-it_IT.po +136 -153
  20. languages/email-subscribers-nb_NO.mo +0 -0
  21. languages/email-subscribers-nb_NO.po +136 -150
  22. languages/email-subscribers-pl_PL.mo +0 -0
  23. languages/email-subscribers-pl_PL.po +144 -162
  24. languages/email-subscribers-pt_BR.mo +0 -0
  25. languages/email-subscribers-pt_BR.po +136 -150
  26. languages/email-subscribers-sv_SE.mo +0 -0
  27. languages/email-subscribers-sv_SE.po +1043 -945
  28. languages/email-subscribers-tr_TR.mo +0 -0
  29. languages/email-subscribers-tr_TR.po +136 -152
  30. languages/email-subscribers.pot +133 -147
  31. notification/notification-add.php +2 -2
  32. notification/notification-edit.php +2 -2
  33. query/db_delivery.php +66 -47
  34. query/db_notification.php +66 -53
  35. query/db_optimize.php +10 -6
  36. query/db_sentmail.php +70 -40
  37. query/db_settings.php +14 -7
  38. query/db_subscriber.php +135 -150
  39. readme.txt +19 -1
  40. settings/settings-edit.php +12 -0
  41. subscribers/view-subscriber-export.php +5 -2
  42. subscribers/view-subscriber-sync.php +1 -1
changelog.txt CHANGED
@@ -4,6 +4,14 @@ Author : Icegram
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
 
 
7
 
8
  ***********************************************************Version 3.5.2************************************************************
9
 
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ***********************************************************Version 3.5.3************************************************************
8
+
9
+ * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
10
+ * Update: Use of $wpdb->prepare for direct queries to the database
11
+ * Update: Text improvements while creating/editing post notification
12
+ * Update: POT file
13
+ * Localization: Translation for Swedish (sv_SE) language updated (Thanks to Rune Svennelid)
14
+ * Localization: Made all translation files up-to-date with latest POT file
15
 
16
  ***********************************************************Version 3.5.2************************************************************
17
 
classes/es-register.php CHANGED
@@ -510,8 +510,8 @@ class es_cls_registerhook {
510
  if ( $template_num_rows != '1' ) {
511
  // Template table
512
  $wpdb->query( "ALTER TABLE {$wpdb->prefix}es_templatetable
513
- ADD COLUMN `es_templ_slug` VARCHAR(255) NULL
514
- AFTER `es_email_type` " );
515
  }
516
  }
517
 
@@ -536,10 +536,10 @@ class es_cls_registerhook {
536
 
537
  $sSql = "SELECT es_tt.*,
538
  IFNULL(es_not.es_note_id, '') as es_note_id
539
- FROM ".$wpdb->prefix."es_templatetable AS es_tt
540
- LEFT JOIN ".$wpdb->prefix."es_notification AS es_not
541
  ON(es_not.es_note_templ = es_tt.es_templ_id)";
542
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
543
 
544
  if( !empty( $arrRes ) ){
545
 
@@ -565,7 +565,7 @@ class es_cls_registerhook {
565
 
566
  if ( !empty( $es_note_ids ) ) {
567
  // To update the 'es_note_templ' ids
568
- $sSql = "UPDATE ".$wpdb->prefix."es_notification SET `es_note_templ` = (CASE ". implode(" ", $es_note_ids)." END)";
569
  $wpdb->query( $sSql );
570
  }
571
 
@@ -607,7 +607,7 @@ class es_cls_registerhook {
607
  );
608
 
609
  // Updating keywords in post_title column where `post_type` = 'es_template'
610
- $es_post_title_query = "UPDATE {$wpdb->prefix}posts SET `post_title` = REPLACE(post_title,'###POSTTITLE###','{{POSTTITLE}}') WHERE `post_type` = 'es_template'";
611
  $wpdb->query( $es_post_title_query );
612
 
613
  // Updating keywords in post_content column where `post_type` = 'es_template'
@@ -616,8 +616,7 @@ class es_cls_registerhook {
616
  $compose_keywords[] = "post_content = REPLACE(post_content,'".$key."','".$value."')";
617
  }
618
 
619
- $es_post_content_query = "UPDATE {$wpdb->prefix}posts SET ".implode(", ",$compose_keywords).
620
- " WHERE post_type = 'es_template'";
621
  $wpdb->query( $es_post_content_query );
622
 
623
  // Updating keywords in options
@@ -682,88 +681,51 @@ class es_cls_registerhook {
682
  $screen = get_current_screen();
683
  if ( !in_array( $screen->id, array( 'toplevel_page_es-view-subscribers', 'es_template', 'edit-es_template', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-sendemail', 'email-subscribers_page_es-settings', 'email-subscribers_page_es-sentmail', 'email-subscribers_page_es-general-information' ), true ) ) return;
684
 
685
- $active_plugins = (array) get_option('active_plugins', array());
686
- if (is_multisite()) {
687
- $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
688
- }
689
-
690
- // Show ES Pro notice only if ES Pro plugin is not there
691
- if ( !( in_array('email-subscribers-premium/email-subscribers-premium.php', $active_plugins) || array_key_exists('email-subscribers-premium/email-subscribers-premium.php', $active_plugins) ) ) {
692
-
693
- $total_subscribers = es_cls_dbquery::es_view_subscriber_count(0);
694
- $es_pro_plan_upsell_notice_email_subscribers = get_option( 'es_pro_plan_upsell_notice_email_subscribers' );
695
-
696
- // Show notice if number of subscribers is more than 50 & notice is not dismissed
697
- if( $total_subscribers >= 50 && $es_pro_plan_upsell_notice_email_subscribers != 'no' ) {
698
- ?>
699
- <style type="text/css">
700
- a.es-admin-btn {
701
- margin-left: 10px;
702
- padding: 4px 8px;
703
- position: relative;
704
- text-decoration: none;
705
- border: none;
706
- -webkit-border-radius: 2px;
707
- border-radius: 2px;
708
- background: #e0e0e0;
709
- text-shadow: none;
710
- font-weight: 600;
711
- font-size: 13px;
712
- }
713
- a.es-admin-btn:hover {
714
- color: #FFF;
715
- background-color: #363b3f;
716
- }
717
- a.es-admin-btn-secondary {
718
- margin-left: 1em;
719
- font-weight: 400;
720
- background-color: cornsilk;
721
- }
722
- </style>
723
- <?php
724
 
725
- $url = 'https://www.icegram.com/email-subscribers-pricing/?utm_source=es&utm_medium=in_app_banner&utm_campaign=view_banner';
726
- $admin_notice_text_for_pro_plan_upsell = __( '<b>Want readymade email templates?</b> Also want to <b>clean your subscribers list?</b> Come check our Pro plan.', ES_TDOMAIN );
727
- echo '<div class="notice notice-warning" style="background-color: cornsilk;"><p style="letter-spacing: 0.6px;">'.$admin_notice_text_for_pro_plan_upsell.'<a target="_blank" style="display:inline-block" class="es-admin-btn" href="'.$url.'">'.__( 'Check Pro plan', ES_TDOMAIN ).'</a><a style="display:inline-block" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_pro_plan_upsell_notice">'.__( 'Not interested.', ES_TDOMAIN ).'</a></p></div>';
728
- }
729
- }
730
-
731
- // Notice to inform about GDPR
732
- $es_gdpr_consent_notify = get_option( 'es_gdpr_consent_notify_email_subscribers' );
733
- if( $es_gdpr_consent_notify != 'no' ) {
734
  ?>
735
  <style type="text/css">
736
- a.es-gdpr-admin-btn {
737
- margin-left: 10px;
738
- padding: 4px 8px;
739
- position: relative;
740
- text-decoration: none;
741
- border: none;
742
- -webkit-border-radius: 2px;
743
- border-radius: 2px;
744
- background: #e0e0e0;
745
- text-shadow: none;
746
- font-weight: 600;
747
- font-size: 13px;
748
- background-color: green;
749
- color: white;
750
- }
751
- a.es-gdpr-admin-btn:hover {
752
- color: #FFF;
753
- background-color: #363b3f;
754
- }
755
- a.es-gdpr-admin-btn-secondary {
756
- margin-left: 1em;
757
- font-weight: 400;
758
- background-color: #FFFFFF;
759
- color: #000000;
760
- }
 
 
 
 
 
 
761
  </style>
762
  <?php
763
 
764
- $url = 'https://www.icegram.com/documentation/es-gdpr-how-to-enable-consent-checkbox-in-the-subscription-form/?utm_source=es&utm_medium=in_app_gdpr_banner&utm_campaign=view_banner';
765
- $admin_notice_text_for_gdpr_consent = __( '<b style="letter-spacing:0.4px;">To honour GDPR, kindly enable the \'Consent Checkbox\' in the subscription form.</b>', ES_TDOMAIN );
766
- echo '<div class="notice notice-warning"><p style="letter-spacing: 0.6px;">'.$admin_notice_text_for_gdpr_consent.'<a target="_blank" style="display:inline-block" class="es-gdpr-admin-btn" href="'.$url.'">'.__( 'Steps to enable', ES_TDOMAIN ).'</a><a style="display:inline-block" class="es-gdpr-admin-btn es-gdpr-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_gdpr_consent_notify">'.__( 'Ok, got it', ES_TDOMAIN ).'</a></p></div>';
767
  }
768
 
769
  }
@@ -893,7 +855,9 @@ class es_cls_registerhook {
893
 
894
  global $current_screen;
895
 
896
- if($current_screen->post_type != 'es_template') return;
 
 
897
 
898
  ?>
899
  <style type="text/css">
@@ -1116,14 +1080,14 @@ function es_sync_registereduser( $user_id ) {
1116
  // No action is required
1117
  } else {
1118
  $es_sync_unserialized_data = maybe_unserialize($es_c_emailsubscribers);
1119
- if(($es_sync_unserialized_data['es_registered'] == "YES") && ($user_id != "")) {
1120
  $es_registered = $es_sync_unserialized_data['es_registered'];
1121
  $es_registered_group = $es_sync_unserialized_data['es_registered_group'];
1122
 
1123
  $user_info = get_userdata($user_id);
1124
  $user_firstname = $user_info->user_firstname;
1125
 
1126
- if($user_firstname == "") {
1127
  $user_firstname = $user_info->user_login;
1128
  }
1129
  $user_mail = $user_info->user_email;
@@ -1183,11 +1147,11 @@ class es_widget_register extends WP_Widget {
1183
  'es_name' => '',
1184
  'es_group' => ''
1185
  );
1186
- $instance = wp_parse_args( (array) $instance, $defaults);
1187
- $es_title = $instance['es_title'];
1188
- $es_desc = $instance['es_desc'];
1189
- $es_name = $instance['es_name'];
1190
- $es_group = $instance['es_group'];
1191
  ?>
1192
  <p>
1193
  <label for="<?php echo $this->get_field_id('es_title'); ?>"><?php echo __( 'Widget Title', ES_TDOMAIN ); ?></label>
510
  if ( $template_num_rows != '1' ) {
511
  // Template table
512
  $wpdb->query( "ALTER TABLE {$wpdb->prefix}es_templatetable
513
+ ADD COLUMN es_templ_slug VARCHAR(255) NULL
514
+ AFTER es_email_type" );
515
  }
516
  }
517
 
536
 
537
  $sSql = "SELECT es_tt.*,
538
  IFNULL(es_not.es_note_id, '') as es_note_id
539
+ FROM {$wpdb->prefix}es_templatetable AS es_tt
540
+ LEFT JOIN {$wpdb->prefix}es_notification AS es_not
541
  ON(es_not.es_note_templ = es_tt.es_templ_id)";
542
+ $arrRes = $wpdb->get_results( $sSql, ARRAY_A );
543
 
544
  if( !empty( $arrRes ) ){
545
 
565
 
566
  if ( !empty( $es_note_ids ) ) {
567
  // To update the 'es_note_templ' ids
568
+ $sSql = "UPDATE {$wpdb->prefix}es_notification SET es_note_templ = (CASE ". implode(" ", $es_note_ids)." END)";
569
  $wpdb->query( $sSql );
570
  }
571
 
607
  );
608
 
609
  // Updating keywords in post_title column where `post_type` = 'es_template'
610
+ $es_post_title_query = "UPDATE {$wpdb->prefix}posts SET post_title = REPLACE(post_title,'###POSTTITLE###','{{POSTTITLE}}') WHERE post_type = 'es_template'";
611
  $wpdb->query( $es_post_title_query );
612
 
613
  // Updating keywords in post_content column where `post_type` = 'es_template'
616
  $compose_keywords[] = "post_content = REPLACE(post_content,'".$key."','".$value."')";
617
  }
618
 
619
+ $es_post_content_query = "UPDATE {$wpdb->prefix}posts SET ".implode(", ",$compose_keywords)." WHERE post_type = 'es_template'";
 
620
  $wpdb->query( $es_post_content_query );
621
 
622
  // Updating keywords in options
681
  $screen = get_current_screen();
682
  if ( !in_array( $screen->id, array( 'toplevel_page_es-view-subscribers', 'es_template', 'edit-es_template', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-sendemail', 'email-subscribers_page_es-settings', 'email-subscribers_page_es-sentmail', 'email-subscribers_page_es-general-information' ), true ) ) return;
683
 
684
+ // Show Captcha blog recommendation
685
+ $total_subscribers = es_cls_dbquery::es_view_subscriber_count(0);
686
+ $es_captcha_blog_recommendation = get_option( 'es_captcha_blog_recommendation_email_subscribers' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
687
 
688
+ // Show notice if number of subscribers is more than 10 & notice is not dismissed
689
+ if( $total_subscribers >= 10 && $es_captcha_blog_recommendation != 'no' ) {
 
 
 
 
 
 
 
690
  ?>
691
  <style type="text/css">
692
+ .notice-warning {
693
+ border-left-color: #e0c5b1;
694
+ border: 0.2em solid;
695
+ }
696
+ a.es-admin-btn {
697
+ margin-left: 10px;
698
+ padding: 4px 8px;
699
+ position: relative;
700
+ text-decoration: none;
701
+ border: none;
702
+ -webkit-border-radius: 2px;
703
+ border-radius: 2px;
704
+ background: #e0e0e0;
705
+ text-shadow: none;
706
+ font-weight: 600;
707
+ font-size: 13px;
708
+ color: white;
709
+ background-color: green;
710
+ display: inline-block;
711
+ }
712
+ a.es-admin-btn:hover {
713
+ color: #FFF;
714
+ background-color: #363b3f;
715
+ }
716
+ a.es-admin-btn-secondary {
717
+ margin-left: 1em;
718
+ font-weight: 400;
719
+ background-color: #e0c5b1;
720
+ color: #000000;
721
+ float: right;
722
+ }
723
  </style>
724
  <?php
725
 
726
+ $url = 'https://www.icegram.com/protect-your-email-list-using-email-subscribers-pro-captcha/?utm_source=es&utm_medium=in_app_banner&utm_campaign=view_banner_captcha_blog';
727
+ $admin_notice_text_for_pro_plan_upsell = __( '<b style="text-color: #000000">Want to protect your email list using captcha?</b>', ES_TDOMAIN );
728
+ echo '<div class="notice notice-warning" style="background-color: #e0c5b1;"><p style="letter-spacing: 0.6px;">'.$admin_notice_text_for_pro_plan_upsell.'<a target="_blank" class="es-admin-btn" href="'.$url.'">'.__( 'Here\'s how', ES_TDOMAIN ).'</a><a style="" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_captcha_blog_recommendation">'.__( 'Not interested. Dismiss this.', ES_TDOMAIN ).'</a></p></div>';
729
  }
730
 
731
  }
855
 
856
  global $current_screen;
857
 
858
+ if( $current_screen->post_type != 'es_template' ) {
859
+ return;
860
+ }
861
 
862
  ?>
863
  <style type="text/css">
1080
  // No action is required
1081
  } else {
1082
  $es_sync_unserialized_data = maybe_unserialize($es_c_emailsubscribers);
1083
+ if( ( $es_sync_unserialized_data['es_registered'] == "YES" ) && ( $user_id != "" ) ) {
1084
  $es_registered = $es_sync_unserialized_data['es_registered'];
1085
  $es_registered_group = $es_sync_unserialized_data['es_registered_group'];
1086
 
1087
  $user_info = get_userdata($user_id);
1088
  $user_firstname = $user_info->user_firstname;
1089
 
1090
+ if( $user_firstname == "" ) {
1091
  $user_firstname = $user_info->user_login;
1092
  }
1093
  $user_mail = $user_info->user_email;
1147
  'es_name' => '',
1148
  'es_group' => ''
1149
  );
1150
+ $instance = wp_parse_args( (array) $instance, $defaults);
1151
+ $es_title = $instance['es_title'];
1152
+ $es_desc = $instance['es_desc'];
1153
+ $es_name = $instance['es_name'];
1154
+ $es_group = $instance['es_group'];
1155
  ?>
1156
  <p>
1157
  <label for="<?php echo $this->get_field_id('es_title'); ?>"><?php echo __( 'Widget Title', ES_TDOMAIN ); ?></label>
classes/es-stater.php CHANGED
@@ -6,7 +6,6 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-subscribe.php');
9
-
10
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-register.php');
11
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-intermediate.php');
12
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-common.php');
6
  }
7
 
8
  require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-subscribe.php');
 
9
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-register.php');
10
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-intermediate.php');
11
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-common.php');
email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 3.5.2
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 3.5.3
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
export/export-email-address.php CHANGED
@@ -19,32 +19,49 @@ if ( !empty($_SERVER) && !empty($_GET) && !empty($_GET['es']) && $_GET['es'] ==
19
  $option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
20
  switch ($option) {
21
  case "view_all_subscribers":
22
- $sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
23
- $sSql = $sSql . " es_email_group as EmailGroup from ". $wpdb->prefix . "es_emaillist ORDER BY es_email_created";
24
- $data = $wpdb->get_results($sSql);
25
- es_cls_common::download($data, 's', '');
 
 
 
26
  break;
27
  case "view_active_subscribers":
28
- $sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
29
- $sSql = $sSql . " es_email_group as EmailGroup from ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Confirmed', 'Single Opt In' ) ORDER BY es_email_created";
30
- $data = $wpdb->get_results($sSql);
31
- es_cls_common::download($data, 's', '');
 
 
 
32
  break;
33
  case "view_inactive_subscribers":
34
- $sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
35
- $sSql = $sSql . " es_email_group as EmailGroup from ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Unconfirmed', 'Unsubscribed' ) ORDER BY es_email_created";
36
- $data = $wpdb->get_results($sSql);
37
- es_cls_common::download($data, 's', '');
 
 
 
38
  break;
39
  case "registered_user":
40
- $data = $wpdb->get_results("select user_email as 'Email', user_nicename as 'Name' from ". $wpdb->prefix . "users ORDER BY user_nicename");
41
- es_cls_common::download($data, 'r', '');
 
 
 
 
 
42
  break;
43
  case "commentposed_user":
44
- $sSql = "SELECT DISTINCT(comment_author_email) as Email, comment_author as 'Name'";
45
- $sSql = $sSql . "from ". $wpdb->prefix . "comments WHERE comment_author_email != '' ORDER BY comment_author_email";
46
- $data = $wpdb->get_results($sSql);
47
- es_cls_common::download($data, 'c', '');
 
 
 
48
  break;
49
  default:
50
  echo __( 'Unexpected url submit has been detected!', ES_TDOMAIN );
19
  $option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
20
  switch ($option) {
21
  case "view_all_subscribers":
22
+ $es_get_all_subscribers = $wpdb->prepare( "SELECT es_email_mail AS Email, es_email_name AS Name, es_email_status AS Status, es_email_created AS Created, es_email_group AS EmailGroup
23
+ FROM {$wpdb->prefix}es_emaillist
24
+ WHERE 1 = %d
25
+ ORDER BY es_email_created", 1 );
26
+ $es_all_subscribers = $wpdb->get_results( $es_get_all_subscribers );
27
+
28
+ es_cls_common::download( $es_all_subscribers, 's', '' );
29
  break;
30
  case "view_active_subscribers":
31
+ $es_get_active_subscribers = $wpdb->prepare( "SELECT es_email_mail AS Email, es_email_name AS Name, es_email_status AS Status, es_email_created AS Created, es_email_group AS EmailGroup
32
+ FROM {$wpdb->prefix}es_emaillist
33
+ WHERE 1 = %d AND es_email_status IN ( 'Confirmed', 'Single Opt In' )
34
+ ORDER BY es_email_created", 1 );
35
+ $es_active_subscribers = $wpdb->get_results( $es_get_active_subscribers );
36
+
37
+ es_cls_common::download( $es_active_subscribers, 's', '' );
38
  break;
39
  case "view_inactive_subscribers":
40
+ $es_get_inactive_subscribers = $wpdb->prepare( "SELECT es_email_mail AS Email, es_email_name AS Name, es_email_status AS Status, es_email_created AS Created, es_email_group AS EmailGroup
41
+ FROM {$wpdb->prefix}es_emaillist
42
+ WHERE 1 = %d AND es_email_status IN ( 'Unconfirmed', 'Unsubscribed' )
43
+ ORDER BY es_email_created", 1 );
44
+ $es_inactive_subscribers = $wpdb->get_results( $es_get_inactive_subscribers );
45
+
46
+ es_cls_common::download( $es_inactive_subscribers, 's', '' );
47
  break;
48
  case "registered_user":
49
+ $get_wp_registered_users = $wpdb->prepare( "SELECT user_email AS Email, user_nicename as Name
50
+ FROM {$wpdb->prefix}users
51
+ WHERE 1 = %d
52
+ ORDER BY user_nicename", 1 );
53
+ $wp_registered_users = $wpdb->get_results( $get_wp_registered_users );
54
+
55
+ es_cls_common::download( $wp_registered_users, 'r', '' );
56
  break;
57
  case "commentposed_user":
58
+ $get_wp_comment_posted_users = $wpdb->prepare( "SELECT DISTINCT(comment_author_email) AS Email, comment_author AS Name
59
+ FROM {$wpdb->prefix}comments
60
+ WHERE comment_author_email != %s
61
+ ORDER BY comment_author_email", '' );
62
+ $wp_comment_posted_users = $wpdb->get_results( $get_wp_comment_posted_users );
63
+
64
+ es_cls_common::download( $wp_comment_posted_users, 'c', '' );
65
  break;
66
  default:
67
  echo __( 'Unexpected url submit has been detected!', ES_TDOMAIN );
job/es-optin.php CHANGED
@@ -6,7 +6,8 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "optin") ) {
9
-
 
10
  $blogname = get_option('blogname');
11
  $noerror = true;
12
  $home_url = home_url('/');
@@ -69,6 +70,7 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "optin") ) {
69
  }
70
  echo $message;
71
  }
 
72
  ?>
73
  </div>
74
  </body>
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "optin") ) {
9
+ $es_page_request = $_GET['es'];
10
+
11
  $blogname = get_option('blogname');
12
  $noerror = true;
13
  $home_url = home_url('/');
70
  }
71
  echo $message;
72
  }
73
+ do_action('es_redirect_to_optin_page', $es_page_request);
74
  ?>
75
  </div>
76
  </body>
job/es-unsubscribe.php CHANGED
@@ -6,7 +6,8 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "unsubscribe") ) {
9
-
 
10
  $blogname = get_option('blogname');
11
  $noerror = true;
12
  $home_url = home_url('/');
@@ -62,6 +63,7 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "unsubscribe") ) {
62
  }
63
  echo $message;
64
  }
 
65
  ?>
66
  </div>
67
  </body>
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "unsubscribe") ) {
9
+ $es_page_request = $_GET['es'];
10
+
11
  $blogname = get_option('blogname');
12
  $noerror = true;
13
  $home_url = home_url('/');
63
  }
64
  echo $message;
65
  }
66
+ do_action('es_redirect_to_optin_page', $es_page_request);
67
  ?>
68
  </div>
69
  </body>
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:32 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Catalan\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -42,44 +42,30 @@ msgid ""
42
  "spam/junk folder."
43
  msgstr ""
44
 
45
- #: ../classes/es-register.php:726
46
- msgid ""
47
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
48
- "subscribers list?</b> Come check our Pro plan."
49
- msgstr ""
50
-
51
- #: ../classes/es-register.php:727
52
- msgid "Check Pro plan"
53
- msgstr ""
54
-
55
  #: ../classes/es-register.php:727
56
- msgid "Not interested."
57
- msgstr ""
58
-
59
- #: ../classes/es-register.php:765
60
  msgid ""
61
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
62
- "Checkbox' in the subscription form.</b>"
63
  msgstr ""
64
 
65
- #: ../classes/es-register.php:766
66
- msgid "Steps to enable"
67
  msgstr ""
68
 
69
- #: ../classes/es-register.php:766
70
- msgid "Ok, got it"
71
  msgstr ""
72
 
73
- #: ../classes/es-register.php:936
74
  #, php-format
75
  msgid "%s for Post Notification: {{POSTTITLE}}"
76
  msgstr ""
77
 
78
- #: ../classes/es-register.php:936
79
  msgid "Available Keyword"
80
  msgstr ""
81
 
82
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
83
  #, php-format
84
  msgid ""
85
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -87,17 +73,17 @@ msgid ""
87
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
88
  msgstr ""
89
 
90
- #: ../classes/es-register.php:1015
91
  #, php-format
92
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:1038
96
  #, php-format
97
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
98
  msgstr ""
99
 
100
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
101
  msgid "Unexpected url submit has been detected!"
102
  msgstr ""
103
 
@@ -185,6 +171,11 @@ msgstr ""
185
  msgid "Please select notification mail subject. Use templates menu to create new."
186
  msgstr ""
187
 
 
 
 
 
 
188
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
189
  #: 164
190
  msgid "(Use templates menu to create new)"
@@ -197,7 +188,7 @@ msgid ""
197
  "deleted too and email will not be sent."
198
  msgstr ""
199
 
200
- #: ../settings/settings-edit.php:554
201
  msgid "Please enter valid email count."
202
  msgstr ""
203
 
@@ -265,7 +256,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
265
  msgstr "Immediatament"
266
 
267
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
268
- #: register.php:826
269
  msgid "Email Subscribers"
270
  msgstr "Email Subscribers"
271
 
@@ -275,7 +266,7 @@ msgid "Subscribers"
275
  msgstr "Subscriptors"
276
 
277
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
278
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
279
  msgid "Templates"
280
  msgstr "Plantilles"
281
 
@@ -285,7 +276,7 @@ msgid "Post Notifications"
285
  msgstr "Notificacions de les entrades"
286
 
287
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
288
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
289
  msgid "Newsletters"
290
  msgstr "Butlletins"
291
 
@@ -452,7 +443,7 @@ msgctxt "widget-page-enhanced-select"
452
  msgid "Please try after some time"
453
  msgstr "Torna-ho a provar d'aquí a una estona"
454
 
455
- #: ../classes/es-register.php:791
456
  msgid ""
457
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
458
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -464,116 +455,116 @@ msgstr ""
464
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
465
  "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
466
 
467
- #: ../classes/es-register.php:805
468
  #, php-format
469
  msgid "Email Subscribers version: <strong>%s</strong>"
470
  msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
471
 
472
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
473
  msgid "Add new Template"
474
  msgstr "Afegir plantilla nova"
475
 
476
- #: ../classes/es-register.php:818
477
  msgid "Edit Templates"
478
  msgstr "Editar plantilles"
479
 
480
- #: ../classes/es-register.php:819
481
  msgid "New Templates"
482
  msgstr "Plantilla nova"
483
 
484
- #: ../classes/es-register.php:821
485
  msgid "View Templates"
486
  msgstr "Veure les plantilles"
487
 
488
- #: ../classes/es-register.php:822
489
  msgid "Search Templates"
490
  msgstr "Cercar plantilles"
491
 
492
- #: ../classes/es-register.php:823
493
  msgid "No Templates found"
494
  msgstr "No s'han trobat plantilles"
495
 
496
- #: ../classes/es-register.php:824
497
  msgid "No Templates found in Trash"
498
  msgstr "No s'ha trobat cap plantilla a la paperera"
499
 
500
- #: ../classes/es-register.php:827
501
  msgid "Thumbnail (For Visual Representation only)"
502
  msgstr "Miniatura (només per a la representació visual)"
503
 
504
- #: ../classes/es-register.php:828
505
  msgid "Set thumbnail"
506
  msgstr "Estableix miniatura"
507
 
508
- #: ../classes/es-register.php:865
509
  msgid "Template Type"
510
  msgstr "Tipus de plantilla"
511
 
512
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
513
  msgid "Thumbnail"
514
  msgstr "Miniatura"
515
 
516
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
517
  #: sentmail/sentmail-show.php:121
518
  msgid "Preview"
519
  msgstr "Vista previa"
520
 
521
- #: ../classes/es-register.php:943
522
  msgid "Select your Email Template Type"
523
  msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
524
 
525
- #: ../classes/es-register.php:945
526
  msgid "Newsletter"
527
  msgstr "Butlletí de notícies"
528
 
529
- #: ../classes/es-register.php:946
530
  msgid "Post Notification"
531
  msgstr "Notificació de l'entrada"
532
 
533
- #: ../classes/es-register.php:995
534
  msgid "Preview Template"
535
  msgstr "Vista prèvia de la plantilla"
536
 
537
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
538
- #: register.php:1030 ../classes/es-register.php:1038
539
  msgid "Available Keywords"
540
  msgstr "Paraules clau disponibles"
541
 
542
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
543
  msgid "Name"
544
  msgstr "Nom"
545
 
546
- #: ../classes/es-register.php:1080
547
  msgid "Email *"
548
  msgstr "Email*"
549
 
550
- #: ../classes/es-register.php:1089 ../help/help.php:202
551
  msgid "Subscribe"
552
  msgstr "Subscriure"
553
 
554
- #: ../classes/es-register.php:1193
555
  msgid "Widget Title"
556
  msgstr "Títol del widget"
557
 
558
- #: ../classes/es-register.php:1197
559
  msgid "Short description about subscription form"
560
  msgstr "Breu descripció sobre el formulari de subscripció"
561
 
562
- #: ../classes/es-register.php:1201
563
  msgid "Display Name Field"
564
  msgstr "Mostra nom del camp"
565
 
566
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
567
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
568
  msgid "YES"
569
  msgstr "Si"
570
 
571
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
572
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
573
  msgid "NO"
574
  msgstr "No"
575
 
576
- #: ../classes/es-register.php:1208
577
  msgid "Subscriber Group"
578
  msgstr "Grup de subscriptor"
579
 
@@ -925,8 +916,8 @@ msgstr ""
925
  msgid "add Rainmaker’s form in Email Subscribers"
926
  msgstr "afegiu el formulari Rainmaker al Email Subscribers"
927
 
928
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
929
- #: job/es-unsubscribe.php:61
930
  msgid ""
931
  "Oops.. We are getting some technical error. Please try again or contact "
932
  "admin."
@@ -934,7 +925,7 @@ msgstr ""
934
  "Vaja... Estem rebent algun error tècnic. Intenteu-ho de nou o poseu-vos en "
935
  "contacte amb l'administrador."
936
 
937
- #: ../job/es-optin.php:61
938
  msgid "This email address has already been confirmed."
939
  msgstr "Aquesta adreça de correu electrònic ja ha estat confirmada."
940
 
@@ -963,16 +954,12 @@ msgstr "Afegir notificació"
963
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
964
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
965
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
966
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
967
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
968
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
969
  msgid "Help"
970
  msgstr "Ajuda"
971
 
972
- #: ../notification/notification-add.php:121
973
- msgid "Select Subscribers Group"
974
- msgstr "Seleccioneu Grup Subscriptors"
975
-
976
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
977
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
978
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1069,11 +1056,6 @@ msgstr "Editar la notificació"
1069
  msgid "Add New"
1070
  msgstr "Afegir nou"
1071
 
1072
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1073
- #: php:303
1074
- msgid "Update Subscribers Group"
1075
- msgstr "Actualitzar grups de subscriptors"
1076
-
1077
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1078
  msgid "Selected record deleted."
1079
  msgstr "Eliminat el registre seleccionat ."
@@ -1216,8 +1198,8 @@ msgid "Delivery Report"
1216
  msgstr "Informe de lliurament"
1217
 
1218
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1219
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1220
- #: export.php:66
1221
  msgid "Sno"
1222
  msgstr "Sno"
1223
 
@@ -1296,8 +1278,8 @@ msgid "Total"
1296
  msgstr "Total"
1297
 
1298
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1299
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1300
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1301
  msgid "Action"
1302
  msgstr "Acció"
1303
 
@@ -1543,7 +1525,7 @@ msgstr "Link de confirmació pel sistema Double Opt-in"
1543
  msgid "It is a readonly field and you are advised not to modify it."
1544
  msgstr "És un camp de només lectura i se li recomana no modificar-lo."
1545
 
1546
- #: ../settings/settings-edit.php:205
1547
  msgid ""
1548
  "Text to display after an email address is successfully subscribed from "
1549
  "Double Opt-In (Confirmation) Email"
@@ -1551,7 +1533,7 @@ msgstr ""
1551
  "Text que es mostrarà després que una adreça de correu electrònic s'ha "
1552
  "subscrit correctament per Double Opt-In (email de confirmació)"
1553
 
1554
- #: ../settings/settings-edit.php:206
1555
  msgid ""
1556
  "This text will be displayed once user clicks on email confirmation link from "
1557
  "the Double Opt In (confirmation) Email."
@@ -1559,13 +1541,13 @@ msgstr ""
1559
  "Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
1560
  "confirmació del correu electrònic pel Doble Opt In (confirmació)"
1561
 
1562
- #: ../settings/settings-edit.php:213
1563
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1564
  msgstr ""
1565
  "Enviar uncorreu electrònic de benvinguda als subscriptors nous després de "
1566
  "registrar-se?"
1567
 
1568
- #: ../settings/settings-edit.php:214
1569
  msgid ""
1570
  "To send welcome email to subscriber after successful signup. This option "
1571
  "must be set to YES."
@@ -1573,11 +1555,11 @@ msgstr ""
1573
  "Per enviar correu electrònic de benvinguda al subscriptor després del "
1574
  "registre amb èxit. Aquesta opció ha d'estar a YES."
1575
 
1576
- #: ../settings/settings-edit.php:225
1577
  msgid "Subject for Welcome Email"
1578
  msgstr "Assumpte del correu electrònic de benvinguda"
1579
 
1580
- #: ../settings/settings-edit.php:226
1581
  msgid ""
1582
  "Subject for the subscriber welcome email. This will be sent whenever a "
1583
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1587,11 +1569,11 @@ msgstr ""
1587
  "s'enviarà sempre que s'hagi confirmat un email de l'usuari (si és Double Opt-"
1588
  "In) / o subscrit (si és Opt-In individual) amb èxit."
1589
 
1590
- #: ../settings/settings-edit.php:232
1591
  msgid "Email Content for Welcome Email"
1592
  msgstr "Contingut del correu electrònic de benvinguda"
1593
 
1594
- #: ../settings/settings-edit.php:233
1595
  msgid ""
1596
  "Content for the subscriber welcome email whenever a user's email is either "
1597
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1602,11 +1584,11 @@ msgstr ""
1602
  "o es subscrigui (per Opt in sencill) amb èxit.<br />Paraules clau "
1603
  "disponibles: {{NAME}}, {{GROUP}}, {{LINK}}"
1604
 
1605
- #: ../settings/settings-edit.php:241
1606
  msgid "Unsubscribe Link"
1607
  msgstr "Enllaç per a donar-se de baixa"
1608
 
1609
- #: ../settings/settings-edit.php:242
1610
  msgid ""
1611
  "This unsubscribe link is automatically added to all the emails that are sent "
1612
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1616,11 +1598,11 @@ msgstr ""
1616
  "els correus electrònics que s'envien des d'aquest complement. Es tracta d'un "
1617
  "camp de lectura i se us aconsella no modificar-lo."
1618
 
1619
- #: ../settings/settings-edit.php:248
1620
  msgid "Unsubscribe Text in Email"
1621
  msgstr "Text de donar-se de baixa en el correu electrònic"
1622
 
1623
- #: ../settings/settings-edit.php:249
1624
  msgid ""
1625
  "The text for the unsubscribe link. This text is automatically added with "
1626
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1629,11 +1611,11 @@ msgstr ""
1629
  "automàticament amb l'enllaç de baixa al correu electrònic.<br />Paraules "
1630
  "clau disponibles: {{LINK}}"
1631
 
1632
- #: ../settings/settings-edit.php:255
1633
  msgid "Text to display after an email address is unsubscribed"
1634
  msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
1635
 
1636
- #: ../settings/settings-edit.php:256
1637
  msgid ""
1638
  "This text will be displayed once user clicks on unsubscribe link from the "
1639
  "email."
@@ -1641,11 +1623,11 @@ msgstr ""
1641
  "Aquest text es mostrarà una vegada que l'usuari faci clic a l'enllaç de "
1642
  "baixa de l'adreça electrònica."
1643
 
1644
- #: ../settings/settings-edit.php:263
1645
  msgid "Error in the Subscribe / Confirmation Link"
1646
  msgstr "Error en l'enllaç de subscripció / confirmació"
1647
 
1648
- #: ../settings/settings-edit.php:264
1649
  msgid ""
1650
  "Default message to display if there is any issue while clicking on subscribe "
1651
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1654,11 +1636,11 @@ msgstr ""
1654
  "l'enllaç de subscripció / confirmació des dels correus electrònics de Double "
1655
  "Opt-In (confirmació)."
1656
 
1657
- #: ../settings/settings-edit.php:270
1658
  msgid "Error in the Unsubscribe Link"
1659
  msgstr "Error amb l'enllaç de baixa"
1660
 
1661
- #: ../settings/settings-edit.php:271
1662
  msgid ""
1663
  "Default message to display if there is any issue while clicking on "
1664
  "unsubscribe link from the emails."
@@ -1666,51 +1648,51 @@ msgstr ""
1666
  "Missatge predeterminat per mostrar si hi ha cap problema mentre feu clic a "
1667
  "l'enllaç de baixa dels correus electrònics."
1668
 
1669
- #: ../settings/settings-edit.php:283
1670
  msgid "Select user roles who can access following menus. Only Admin can change this."
1671
  msgstr ""
1672
  "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
1673
  "administrador pot canviar això."
1674
 
1675
- #: ../settings/settings-edit.php:289
1676
  msgid "Subscribers Menu"
1677
  msgstr "Menú dels subscriptors"
1678
 
1679
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1680
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1681
- #: settings/settings-edit.php:341
1682
  msgid "Administrator Only"
1683
  msgstr "Només l'administrador"
1684
 
1685
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1686
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1687
- #: settings/settings-edit.php:342
1688
  msgid "Administrator/Editor"
1689
  msgstr "Administrador/editor"
1690
 
1691
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1692
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1693
- #: settings/settings-edit.php:343
1694
  msgid "Administrator/Editor/Author/Contributor"
1695
  msgstr "Administrador/editor/autor/contribuidor"
1696
 
1697
- #: ../settings/settings-edit.php:301
1698
  msgid "Templates Menu"
1699
  msgstr "Menú de plantilles"
1700
 
1701
- #: ../settings/settings-edit.php:313
1702
  msgid "Post Notifications Menu"
1703
  msgstr "Menú de notificacionns"
1704
 
1705
- #: ../settings/settings-edit.php:337
1706
  msgid "Reports Menu"
1707
  msgstr "menú d'informes"
1708
 
1709
- #: ../settings/settings-edit.php:354
1710
  msgid "Cron job URL"
1711
  msgstr "URL de treball del Cron"
1712
 
1713
- #: ../settings/settings-edit.php:355
1714
  msgid ""
1715
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1716
  "modify it."
@@ -1718,25 +1700,25 @@ msgstr ""
1718
  "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
1719
  "recomana no modificar-lo."
1720
 
1721
- #: ../settings/settings-edit.php:364
1722
  msgid "Email Count"
1723
  msgstr "Comte de correu electrònic"
1724
 
1725
- #: ../settings/settings-edit.php:365
1726
  msgid "Number of emails that you want to trigger per hour."
1727
  msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
1728
 
1729
- #: ../settings/settings-edit.php:370
1730
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1731
  msgstr ""
1732
  "(El vostre proveïdor d'allotjament web té límits. Us suggerim 50 correus "
1733
  "electrònics per hora per anar segurs.)"
1734
 
1735
- #: ../settings/settings-edit.php:375
1736
  msgid "Cron Report"
1737
  msgstr "Informe Cron"
1738
 
1739
- #: ../settings/settings-edit.php:376
1740
  msgid ""
1741
  "Email to admin whenever a cron URL is triggered from your server.<br "
1742
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1745,11 +1727,11 @@ msgstr ""
1745
  "s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
1746
  "{{DATE}}, {{SUBJECT}}, {{COUNT}}"
1747
 
1748
- #: ../settings/settings-edit.php:386
1749
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1750
  msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
1751
 
1752
- #: ../settings/settings-edit.php:387
1753
  msgid ""
1754
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1755
  "schedule-cron-emails/?"
@@ -1761,7 +1743,7 @@ msgstr ""
1761
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
1762
  "Cron?</a>"
1763
 
1764
- #: ../settings/settings-edit.php:388
1765
  msgid ""
1766
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1767
  "schedule-cron-emails-in-cpanel/?"
@@ -1773,7 +1755,7 @@ msgstr ""
1773
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
1774
  "el treball cron a cPanel</a>"
1775
 
1776
- #: ../settings/settings-edit.php:389
1777
  msgid ""
1778
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1779
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1785,7 +1767,7 @@ msgstr ""
1785
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1786
  "el treball cron a Plesk</a>"
1787
 
1788
- #: ../settings/settings-edit.php:390
1789
  msgid ""
1790
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1791
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1797,19 +1779,19 @@ msgstr ""
1797
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
1798
  "nt no és compatible amb els treballs de cron?</a>"
1799
 
1800
- #: ../settings/settings-edit.php:505
1801
  msgid "Please enter sender of notifications from name."
1802
  msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
1803
 
1804
- #: ../settings/settings-edit.php:510
1805
  msgid "Please enter sender of notifications from email."
1806
  msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
1807
 
1808
- #: ../settings/settings-edit.php:568
1809
  msgid "Settings Saved."
1810
  msgstr "Configuració guardada"
1811
 
1812
- #: ../settings/settings-edit.php:571
1813
  msgid "Oops, unable to update."
1814
  msgstr "Vaja, no es pot actualitzar."
1815
 
@@ -1843,14 +1825,14 @@ msgid "Invalid Email."
1843
  msgstr "Email no vàlid"
1844
 
1845
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1846
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1847
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1848
  #: subscribers/view-subscriber-sync.php:89
1849
  msgid "Add New Subscriber"
1850
  msgstr "Afegir nou subscriptor"
1851
 
1852
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1853
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1854
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1855
  #: subscribers/view-subscriber-sync.php:90
1856
  msgid "Import"
@@ -1863,7 +1845,7 @@ msgid "Export"
1863
  msgstr "Exportar"
1864
 
1865
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1866
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1867
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1868
  #: subscribers/view-subscriber-sync.php:143
1869
  msgid "Sync"
@@ -1944,63 +1926,63 @@ msgstr "Actualitza l'estat del subscriptor"
1944
  msgid "Update Subscriber's Group"
1945
  msgstr "Actualitza el grup del subscriptor "
1946
 
1947
- #: ../subscribers/view-subscriber-export.php:47
1948
  msgid "Export Email Addresses"
1949
  msgstr "Exportar adreces d'email"
1950
 
1951
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1952
- #: export.php:67
1953
  msgid "Type of List to Export"
1954
  msgstr "Tipus de llista per exportar"
1955
 
1956
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1957
- #: export.php:68
1958
  msgid "Total Emails Count"
1959
  msgstr "Comptador de correus electrònics."
1960
 
1961
- #: ../subscribers/view-subscriber-export.php:74
1962
  msgid "1"
1963
  msgstr "1"
1964
 
1965
- #: ../subscribers/view-subscriber-export.php:75
1966
  msgid "All Subscribers"
1967
  msgstr "Tots els subscriptors"
1968
 
1969
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1970
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1971
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1972
  msgid "Click to Export in CSV"
1973
  msgstr "Feu clic a Exportar a CSV"
1974
 
1975
- #: ../subscribers/view-subscriber-export.php:80
1976
  msgid "2"
1977
  msgstr "2"
1978
 
1979
- #: ../subscribers/view-subscriber-export.php:81
1980
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1981
  msgstr "Subscriptors actius (Estat: confirmat i alta única)"
1982
 
1983
- #: ../subscribers/view-subscriber-export.php:86
1984
  msgid "3"
1985
  msgstr "3"
1986
 
1987
- #: ../subscribers/view-subscriber-export.php:87
1988
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1989
  msgstr "Subscriptors inactius (Estat: no confirmat i no subscrit)"
1990
 
1991
- #: ../subscribers/view-subscriber-export.php:92
1992
  msgid "4"
1993
  msgstr "4"
1994
 
1995
- #: ../subscribers/view-subscriber-export.php:93
1996
  msgid "WordPress Registered Users"
1997
  msgstr "Usuaris registrats de WordPress"
1998
 
1999
- #: ../subscribers/view-subscriber-export.php:98
2000
  msgid "5"
2001
  msgstr "5"
2002
 
2003
- #: ../subscribers/view-subscriber-export.php:99
2004
  msgid "Commented Authors"
2005
  msgstr "Autors dels comentaris"
2006
 
@@ -2131,6 +2113,10 @@ msgstr "Accions en bloc"
2131
  msgid "Resend Confirmation"
2132
  msgstr "Reenvia confirmació"
2133
 
 
 
 
 
2134
  #: ../subscribers/view-subscriber-show.php:304
2135
  msgid "Update Subscribers Status"
2136
  msgstr "Actualitzar l'estat dels subscriptors"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:22 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Catalan\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
42
  "spam/junk folder."
43
  msgstr ""
44
 
 
 
 
 
 
 
 
 
 
 
45
  #: ../classes/es-register.php:727
 
 
 
 
46
  msgid ""
47
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
48
+ "</b>"
49
  msgstr ""
50
 
51
+ #: ../classes/es-register.php:728
52
+ msgid "Here's how"
53
  msgstr ""
54
 
55
+ #: ../classes/es-register.php:728
56
+ msgid "Not interested. Dismiss this."
57
  msgstr ""
58
 
59
+ #: ../classes/es-register.php:900
60
  #, php-format
61
  msgid "%s for Post Notification: {{POSTTITLE}}"
62
  msgstr ""
63
 
64
+ #: ../classes/es-register.php:900
65
  msgid "Available Keyword"
66
  msgstr ""
67
 
68
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
69
  #, php-format
70
  msgid ""
71
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
73
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
74
  msgstr ""
75
 
76
+ #: ../classes/es-register.php:979
77
  #, php-format
78
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:1002
82
  #, php-format
83
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
84
  msgstr ""
85
 
86
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
87
  msgid "Unexpected url submit has been detected!"
88
  msgstr ""
89
 
171
  msgid "Please select notification mail subject. Use templates menu to create new."
172
  msgstr ""
173
 
174
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
175
+ #: 132
176
+ msgid "Subscribers Group to send post notification to"
177
+ msgstr ""
178
+
179
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
180
  #: 164
181
  msgid "(Use templates menu to create new)"
188
  "deleted too and email will not be sent."
189
  msgstr ""
190
 
191
+ #: ../settings/settings-edit.php:566
192
  msgid "Please enter valid email count."
193
  msgstr ""
194
 
256
  msgstr "Immediatament"
257
 
258
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
259
+ #: register.php:788
260
  msgid "Email Subscribers"
261
  msgstr "Email Subscribers"
262
 
266
  msgstr "Subscriptors"
267
 
268
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
269
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
270
  msgid "Templates"
271
  msgstr "Plantilles"
272
 
276
  msgstr "Notificacions de les entrades"
277
 
278
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
279
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
280
  msgid "Newsletters"
281
  msgstr "Butlletins"
282
 
443
  msgid "Please try after some time"
444
  msgstr "Torna-ho a provar d'aquí a una estona"
445
 
446
+ #: ../classes/es-register.php:753
447
  msgid ""
448
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
449
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
455
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
456
  "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
457
 
458
+ #: ../classes/es-register.php:767
459
  #, php-format
460
  msgid "Email Subscribers version: <strong>%s</strong>"
461
  msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
462
 
463
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
464
  msgid "Add new Template"
465
  msgstr "Afegir plantilla nova"
466
 
467
+ #: ../classes/es-register.php:780
468
  msgid "Edit Templates"
469
  msgstr "Editar plantilles"
470
 
471
+ #: ../classes/es-register.php:781
472
  msgid "New Templates"
473
  msgstr "Plantilla nova"
474
 
475
+ #: ../classes/es-register.php:783
476
  msgid "View Templates"
477
  msgstr "Veure les plantilles"
478
 
479
+ #: ../classes/es-register.php:784
480
  msgid "Search Templates"
481
  msgstr "Cercar plantilles"
482
 
483
+ #: ../classes/es-register.php:785
484
  msgid "No Templates found"
485
  msgstr "No s'han trobat plantilles"
486
 
487
+ #: ../classes/es-register.php:786
488
  msgid "No Templates found in Trash"
489
  msgstr "No s'ha trobat cap plantilla a la paperera"
490
 
491
+ #: ../classes/es-register.php:789
492
  msgid "Thumbnail (For Visual Representation only)"
493
  msgstr "Miniatura (només per a la representació visual)"
494
 
495
+ #: ../classes/es-register.php:790
496
  msgid "Set thumbnail"
497
  msgstr "Estableix miniatura"
498
 
499
+ #: ../classes/es-register.php:827
500
  msgid "Template Type"
501
  msgstr "Tipus de plantilla"
502
 
503
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
504
  msgid "Thumbnail"
505
  msgstr "Miniatura"
506
 
507
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
508
  #: sentmail/sentmail-show.php:121
509
  msgid "Preview"
510
  msgstr "Vista previa"
511
 
512
+ #: ../classes/es-register.php:907
513
  msgid "Select your Email Template Type"
514
  msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
515
 
516
+ #: ../classes/es-register.php:909
517
  msgid "Newsletter"
518
  msgstr "Butlletí de notícies"
519
 
520
+ #: ../classes/es-register.php:910
521
  msgid "Post Notification"
522
  msgstr "Notificació de l'entrada"
523
 
524
+ #: ../classes/es-register.php:959
525
  msgid "Preview Template"
526
  msgstr "Vista prèvia de la plantilla"
527
 
528
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
529
+ #: register.php:994 ../classes/es-register.php:1002
530
  msgid "Available Keywords"
531
  msgstr "Paraules clau disponibles"
532
 
533
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
534
  msgid "Name"
535
  msgstr "Nom"
536
 
537
+ #: ../classes/es-register.php:1044
538
  msgid "Email *"
539
  msgstr "Email*"
540
 
541
+ #: ../classes/es-register.php:1053 ../help/help.php:202
542
  msgid "Subscribe"
543
  msgstr "Subscriure"
544
 
545
+ #: ../classes/es-register.php:1157
546
  msgid "Widget Title"
547
  msgstr "Títol del widget"
548
 
549
+ #: ../classes/es-register.php:1161
550
  msgid "Short description about subscription form"
551
  msgstr "Breu descripció sobre el formulari de subscripció"
552
 
553
+ #: ../classes/es-register.php:1165
554
  msgid "Display Name Field"
555
  msgstr "Mostra nom del camp"
556
 
557
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
558
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
559
  msgid "YES"
560
  msgstr "Si"
561
 
562
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
563
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
564
  msgid "NO"
565
  msgstr "No"
566
 
567
+ #: ../classes/es-register.php:1172
568
  msgid "Subscriber Group"
569
  msgstr "Grup de subscriptor"
570
 
916
  msgid "add Rainmaker’s form in Email Subscribers"
917
  msgstr "afegiu el formulari Rainmaker al Email Subscribers"
918
 
919
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
920
+ #: job/es-unsubscribe.php:62
921
  msgid ""
922
  "Oops.. We are getting some technical error. Please try again or contact "
923
  "admin."
925
  "Vaja... Estem rebent algun error tècnic. Intenteu-ho de nou o poseu-vos en "
926
  "contacte amb l'administrador."
927
 
928
+ #: ../job/es-optin.php:62
929
  msgid "This email address has already been confirmed."
930
  msgstr "Aquesta adreça de correu electrònic ja ha estat confirmada."
931
 
954
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
955
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
956
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
957
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
958
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
959
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
960
  msgid "Help"
961
  msgstr "Ajuda"
962
 
 
 
 
 
963
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
964
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
965
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1056
  msgid "Add New"
1057
  msgstr "Afegir nou"
1058
 
 
 
 
 
 
1059
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1060
  msgid "Selected record deleted."
1061
  msgstr "Eliminat el registre seleccionat ."
1198
  msgstr "Informe de lliurament"
1199
 
1200
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1201
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1202
+ #: export.php:69
1203
  msgid "Sno"
1204
  msgstr "Sno"
1205
 
1278
  msgstr "Total"
1279
 
1280
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1281
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1282
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1283
  msgid "Action"
1284
  msgstr "Acció"
1285
 
1525
  msgid "It is a readonly field and you are advised not to modify it."
1526
  msgstr "És un camp de només lectura i se li recomana no modificar-lo."
1527
 
1528
+ #: ../settings/settings-edit.php:206
1529
  msgid ""
1530
  "Text to display after an email address is successfully subscribed from "
1531
  "Double Opt-In (Confirmation) Email"
1533
  "Text que es mostrarà després que una adreça de correu electrònic s'ha "
1534
  "subscrit correctament per Double Opt-In (email de confirmació)"
1535
 
1536
+ #: ../settings/settings-edit.php:207
1537
  msgid ""
1538
  "This text will be displayed once user clicks on email confirmation link from "
1539
  "the Double Opt In (confirmation) Email."
1541
  "Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
1542
  "confirmació del correu electrònic pel Doble Opt In (confirmació)"
1543
 
1544
+ #: ../settings/settings-edit.php:219
1545
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1546
  msgstr ""
1547
  "Enviar uncorreu electrònic de benvinguda als subscriptors nous després de "
1548
  "registrar-se?"
1549
 
1550
+ #: ../settings/settings-edit.php:220
1551
  msgid ""
1552
  "To send welcome email to subscriber after successful signup. This option "
1553
  "must be set to YES."
1555
  "Per enviar correu electrònic de benvinguda al subscriptor després del "
1556
  "registre amb èxit. Aquesta opció ha d'estar a YES."
1557
 
1558
+ #: ../settings/settings-edit.php:231
1559
  msgid "Subject for Welcome Email"
1560
  msgstr "Assumpte del correu electrònic de benvinguda"
1561
 
1562
+ #: ../settings/settings-edit.php:232
1563
  msgid ""
1564
  "Subject for the subscriber welcome email. This will be sent whenever a "
1565
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1569
  "s'enviarà sempre que s'hagi confirmat un email de l'usuari (si és Double Opt-"
1570
  "In) / o subscrit (si és Opt-In individual) amb èxit."
1571
 
1572
+ #: ../settings/settings-edit.php:238
1573
  msgid "Email Content for Welcome Email"
1574
  msgstr "Contingut del correu electrònic de benvinguda"
1575
 
1576
+ #: ../settings/settings-edit.php:239
1577
  msgid ""
1578
  "Content for the subscriber welcome email whenever a user's email is either "
1579
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1584
  "o es subscrigui (per Opt in sencill) amb èxit.<br />Paraules clau "
1585
  "disponibles: {{NAME}}, {{GROUP}}, {{LINK}}"
1586
 
1587
+ #: ../settings/settings-edit.php:247
1588
  msgid "Unsubscribe Link"
1589
  msgstr "Enllaç per a donar-se de baixa"
1590
 
1591
+ #: ../settings/settings-edit.php:248
1592
  msgid ""
1593
  "This unsubscribe link is automatically added to all the emails that are sent "
1594
  "from this plugin. It is a readonly field and you are advised not to modify "
1598
  "els correus electrònics que s'envien des d'aquest complement. Es tracta d'un "
1599
  "camp de lectura i se us aconsella no modificar-lo."
1600
 
1601
+ #: ../settings/settings-edit.php:254
1602
  msgid "Unsubscribe Text in Email"
1603
  msgstr "Text de donar-se de baixa en el correu electrònic"
1604
 
1605
+ #: ../settings/settings-edit.php:255
1606
  msgid ""
1607
  "The text for the unsubscribe link. This text is automatically added with "
1608
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1611
  "automàticament amb l'enllaç de baixa al correu electrònic.<br />Paraules "
1612
  "clau disponibles: {{LINK}}"
1613
 
1614
+ #: ../settings/settings-edit.php:262
1615
  msgid "Text to display after an email address is unsubscribed"
1616
  msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
1617
 
1618
+ #: ../settings/settings-edit.php:263
1619
  msgid ""
1620
  "This text will be displayed once user clicks on unsubscribe link from the "
1621
  "email."
1623
  "Aquest text es mostrarà una vegada que l'usuari faci clic a l'enllaç de "
1624
  "baixa de l'adreça electrònica."
1625
 
1626
+ #: ../settings/settings-edit.php:275
1627
  msgid "Error in the Subscribe / Confirmation Link"
1628
  msgstr "Error en l'enllaç de subscripció / confirmació"
1629
 
1630
+ #: ../settings/settings-edit.php:276
1631
  msgid ""
1632
  "Default message to display if there is any issue while clicking on subscribe "
1633
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1636
  "l'enllaç de subscripció / confirmació des dels correus electrònics de Double "
1637
  "Opt-In (confirmació)."
1638
 
1639
+ #: ../settings/settings-edit.php:282
1640
  msgid "Error in the Unsubscribe Link"
1641
  msgstr "Error amb l'enllaç de baixa"
1642
 
1643
+ #: ../settings/settings-edit.php:283
1644
  msgid ""
1645
  "Default message to display if there is any issue while clicking on "
1646
  "unsubscribe link from the emails."
1648
  "Missatge predeterminat per mostrar si hi ha cap problema mentre feu clic a "
1649
  "l'enllaç de baixa dels correus electrònics."
1650
 
1651
+ #: ../settings/settings-edit.php:295
1652
  msgid "Select user roles who can access following menus. Only Admin can change this."
1653
  msgstr ""
1654
  "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
1655
  "administrador pot canviar això."
1656
 
1657
+ #: ../settings/settings-edit.php:301
1658
  msgid "Subscribers Menu"
1659
  msgstr "Menú dels subscriptors"
1660
 
1661
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1662
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1663
+ #: settings/settings-edit.php:353
1664
  msgid "Administrator Only"
1665
  msgstr "Només l'administrador"
1666
 
1667
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1668
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1669
+ #: settings/settings-edit.php:354
1670
  msgid "Administrator/Editor"
1671
  msgstr "Administrador/editor"
1672
 
1673
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1674
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1675
+ #: settings/settings-edit.php:355
1676
  msgid "Administrator/Editor/Author/Contributor"
1677
  msgstr "Administrador/editor/autor/contribuidor"
1678
 
1679
+ #: ../settings/settings-edit.php:313
1680
  msgid "Templates Menu"
1681
  msgstr "Menú de plantilles"
1682
 
1683
+ #: ../settings/settings-edit.php:325
1684
  msgid "Post Notifications Menu"
1685
  msgstr "Menú de notificacionns"
1686
 
1687
+ #: ../settings/settings-edit.php:349
1688
  msgid "Reports Menu"
1689
  msgstr "menú d'informes"
1690
 
1691
+ #: ../settings/settings-edit.php:366
1692
  msgid "Cron job URL"
1693
  msgstr "URL de treball del Cron"
1694
 
1695
+ #: ../settings/settings-edit.php:367
1696
  msgid ""
1697
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1698
  "modify it."
1700
  "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
1701
  "recomana no modificar-lo."
1702
 
1703
+ #: ../settings/settings-edit.php:376
1704
  msgid "Email Count"
1705
  msgstr "Comte de correu electrònic"
1706
 
1707
+ #: ../settings/settings-edit.php:377
1708
  msgid "Number of emails that you want to trigger per hour."
1709
  msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
1710
 
1711
+ #: ../settings/settings-edit.php:382
1712
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1713
  msgstr ""
1714
  "(El vostre proveïdor d'allotjament web té límits. Us suggerim 50 correus "
1715
  "electrònics per hora per anar segurs.)"
1716
 
1717
+ #: ../settings/settings-edit.php:387
1718
  msgid "Cron Report"
1719
  msgstr "Informe Cron"
1720
 
1721
+ #: ../settings/settings-edit.php:388
1722
  msgid ""
1723
  "Email to admin whenever a cron URL is triggered from your server.<br "
1724
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1727
  "s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
1728
  "{{DATE}}, {{SUBJECT}}, {{COUNT}}"
1729
 
1730
+ #: ../settings/settings-edit.php:398
1731
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1732
  msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
1733
 
1734
+ #: ../settings/settings-edit.php:399
1735
  msgid ""
1736
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1737
  "schedule-cron-emails/?"
1743
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
1744
  "Cron?</a>"
1745
 
1746
+ #: ../settings/settings-edit.php:400
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1749
  "schedule-cron-emails-in-cpanel/?"
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
1756
  "el treball cron a cPanel</a>"
1757
 
1758
+ #: ../settings/settings-edit.php:401
1759
  msgid ""
1760
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1761
  "schedule-cron-emails-in-parallels-plesk/?"
1767
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1768
  "el treball cron a Plesk</a>"
1769
 
1770
+ #: ../settings/settings-edit.php:402
1771
  msgid ""
1772
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1773
  "if-hosting-doesnt-support-cron-jobs/?"
1779
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
1780
  "nt no és compatible amb els treballs de cron?</a>"
1781
 
1782
+ #: ../settings/settings-edit.php:517
1783
  msgid "Please enter sender of notifications from name."
1784
  msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
1785
 
1786
+ #: ../settings/settings-edit.php:522
1787
  msgid "Please enter sender of notifications from email."
1788
  msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
1789
 
1790
+ #: ../settings/settings-edit.php:580
1791
  msgid "Settings Saved."
1792
  msgstr "Configuració guardada"
1793
 
1794
+ #: ../settings/settings-edit.php:583
1795
  msgid "Oops, unable to update."
1796
  msgstr "Vaja, no es pot actualitzar."
1797
 
1825
  msgstr "Email no vàlid"
1826
 
1827
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1828
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1829
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1830
  #: subscribers/view-subscriber-sync.php:89
1831
  msgid "Add New Subscriber"
1832
  msgstr "Afegir nou subscriptor"
1833
 
1834
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1835
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1836
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1837
  #: subscribers/view-subscriber-sync.php:90
1838
  msgid "Import"
1845
  msgstr "Exportar"
1846
 
1847
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1848
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1849
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1850
  #: subscribers/view-subscriber-sync.php:143
1851
  msgid "Sync"
1926
  msgid "Update Subscriber's Group"
1927
  msgstr "Actualitza el grup del subscriptor "
1928
 
1929
+ #: ../subscribers/view-subscriber-export.php:50
1930
  msgid "Export Email Addresses"
1931
  msgstr "Exportar adreces d'email"
1932
 
1933
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1934
+ #: export.php:70
1935
  msgid "Type of List to Export"
1936
  msgstr "Tipus de llista per exportar"
1937
 
1938
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1939
+ #: export.php:71
1940
  msgid "Total Emails Count"
1941
  msgstr "Comptador de correus electrònics."
1942
 
1943
+ #: ../subscribers/view-subscriber-export.php:77
1944
  msgid "1"
1945
  msgstr "1"
1946
 
1947
+ #: ../subscribers/view-subscriber-export.php:78
1948
  msgid "All Subscribers"
1949
  msgstr "Tots els subscriptors"
1950
 
1951
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1952
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1953
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1954
  msgid "Click to Export in CSV"
1955
  msgstr "Feu clic a Exportar a CSV"
1956
 
1957
+ #: ../subscribers/view-subscriber-export.php:83
1958
  msgid "2"
1959
  msgstr "2"
1960
 
1961
+ #: ../subscribers/view-subscriber-export.php:84
1962
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1963
  msgstr "Subscriptors actius (Estat: confirmat i alta única)"
1964
 
1965
+ #: ../subscribers/view-subscriber-export.php:89
1966
  msgid "3"
1967
  msgstr "3"
1968
 
1969
+ #: ../subscribers/view-subscriber-export.php:90
1970
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1971
  msgstr "Subscriptors inactius (Estat: no confirmat i no subscrit)"
1972
 
1973
+ #: ../subscribers/view-subscriber-export.php:95
1974
  msgid "4"
1975
  msgstr "4"
1976
 
1977
+ #: ../subscribers/view-subscriber-export.php:96
1978
  msgid "WordPress Registered Users"
1979
  msgstr "Usuaris registrats de WordPress"
1980
 
1981
+ #: ../subscribers/view-subscriber-export.php:101
1982
  msgid "5"
1983
  msgstr "5"
1984
 
1985
+ #: ../subscribers/view-subscriber-export.php:102
1986
  msgid "Commented Authors"
1987
  msgstr "Autors dels comentaris"
1988
 
2113
  msgid "Resend Confirmation"
2114
  msgstr "Reenvia confirmació"
2115
 
2116
+ #: ../subscribers/view-subscriber-show.php:303
2117
+ msgid "Update Subscribers Group"
2118
+ msgstr "Actualitzar grups de subscriptors"
2119
+
2120
  #: ../subscribers/view-subscriber-show.php:304
2121
  msgid "Update Subscribers Status"
2122
  msgstr "Actualitzar l'estat dels subscriptors"
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:35 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: German\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -23,38 +23,34 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
26
- #: register.php:826
27
  msgid "Email Subscribers"
28
  msgstr ""
29
 
30
  #: ../classes/es-register.php:727
31
- msgid "Check Pro plan"
32
- msgstr ""
33
-
34
- #: ../classes/es-register.php:765
35
  msgid ""
36
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
37
- "Checkbox' in the subscription form.</b>"
38
  msgstr ""
39
 
40
- #: ../classes/es-register.php:766
41
- msgid "Steps to enable"
42
  msgstr ""
43
 
44
- #: ../classes/es-register.php:766
45
- msgid "Ok, got it"
46
  msgstr ""
47
 
48
- #: ../classes/es-register.php:936
49
  #, php-format
50
  msgid "%s for Post Notification: {{POSTTITLE}}"
51
  msgstr ""
52
 
53
- #: ../classes/es-register.php:936
54
  msgid "Available Keyword"
55
  msgstr ""
56
 
57
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
58
  #, php-format
59
  msgid ""
60
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -62,7 +58,7 @@ msgid ""
62
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
63
  msgstr ""
64
 
65
- #: ../classes/es-register.php:1038
66
  #, php-format
67
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
68
  msgstr ""
@@ -98,6 +94,11 @@ msgstr ""
98
  msgid "What data Email Subscribers - Group Selector stores on your end?"
99
  msgstr ""
100
 
 
 
 
 
 
101
  #: ../sentmail/sentmail-show.php:212
102
  msgid ""
103
  "<strong>Note:</strong> If you delete record for the emails with Status = "
@@ -105,7 +106,7 @@ msgid ""
105
  "deleted too and email will not be sent."
106
  msgstr ""
107
 
108
- #: ../settings/settings-edit.php:554
109
  msgid "Please enter valid email count."
110
  msgstr ""
111
 
@@ -159,7 +160,7 @@ msgid "Subscribers"
159
  msgstr "Abonnenten"
160
 
161
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
162
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
163
  msgid "Templates"
164
  msgstr "Vorlagen"
165
 
@@ -169,7 +170,7 @@ msgid "Post Notifications"
169
  msgstr "Benachrichtigungen"
170
 
171
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
172
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
173
  msgid "Newsletters"
174
  msgstr "Newsletter"
175
 
@@ -359,19 +360,7 @@ msgctxt "widget-page-enhanced-select"
359
  msgid "Please try after some time"
360
  msgstr "Versuche es in Kürze nochmal"
361
 
362
- #: ../classes/es-register.php:726
363
- msgid ""
364
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
365
- "subscribers list?</b> Come check our Pro plan."
366
- msgstr ""
367
- "<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
368
- "Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
369
-
370
- #: ../classes/es-register.php:727
371
- msgid "Not interested."
372
- msgstr "Nicht interessiert."
373
-
374
- #: ../classes/es-register.php:791
375
  msgid ""
376
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
377
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -384,125 +373,125 @@ msgstr ""
384
  "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
385
  "riesiges Dankeschön von Icegram im Voraus!"
386
 
387
- #: ../classes/es-register.php:805
388
  #, php-format
389
  msgid "Email Subscribers version: <strong>%s</strong>"
390
  msgstr "Email Subscribers Version: <strong>%s</strong>"
391
 
392
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
393
  msgid "Add new Template"
394
  msgstr "Neue Vorlage hinzufügen"
395
 
396
- #: ../classes/es-register.php:818
397
  msgid "Edit Templates"
398
  msgstr "Vorlagen bearbeiten"
399
 
400
- #: ../classes/es-register.php:819
401
  msgid "New Templates"
402
  msgstr "Neue Vorlagen"
403
 
404
- #: ../classes/es-register.php:821
405
  msgid "View Templates"
406
  msgstr "Vorlagen ansehen"
407
 
408
- #: ../classes/es-register.php:822
409
  msgid "Search Templates"
410
  msgstr "Vorlagen suchen"
411
 
412
- #: ../classes/es-register.php:823
413
  msgid "No Templates found"
414
  msgstr "Keine Vorlagen gefunden"
415
 
416
- #: ../classes/es-register.php:824
417
  msgid "No Templates found in Trash"
418
  msgstr "Keine Vorlagen im Papierkorb gefunden"
419
 
420
- #: ../classes/es-register.php:827
421
  msgid "Thumbnail (For Visual Representation only)"
422
  msgstr "Vorschaubild (nur zur visuellen Darstellung)"
423
 
424
- #: ../classes/es-register.php:828
425
  msgid "Set thumbnail"
426
  msgstr "Vorschaubild auswählen"
427
 
428
- #: ../classes/es-register.php:865
429
  msgid "Template Type"
430
  msgstr "Vorlagentyp"
431
 
432
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
433
  msgid "Thumbnail"
434
  msgstr "Vorschau"
435
 
436
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
437
  #: sentmail/sentmail-show.php:121
438
  msgid "Preview"
439
  msgstr "Vorschau"
440
 
441
- #: ../classes/es-register.php:943
442
  msgid "Select your Email Template Type"
443
  msgstr "Wähle den Typ der Emailvorlage"
444
 
445
- #: ../classes/es-register.php:945
446
  msgid "Newsletter"
447
  msgstr "Newsletter"
448
 
449
- #: ../classes/es-register.php:946
450
  msgid "Post Notification"
451
  msgstr "Benachrichtigung über Beitrag"
452
 
453
- #: ../classes/es-register.php:995
454
  msgid "Preview Template"
455
  msgstr "Voransicht Vorlage"
456
 
457
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
458
- #: register.php:1030 ../classes/es-register.php:1038
459
  msgid "Available Keywords"
460
  msgstr "Verfügbare Schlüsselworte"
461
 
462
- #: ../classes/es-register.php:1015
463
  #, php-format
464
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
465
  msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
466
 
467
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
468
  msgid "Name"
469
  msgstr "Name"
470
 
471
- #: ../classes/es-register.php:1080
472
  msgid "Email *"
473
  msgstr "E-Mail *"
474
 
475
- #: ../classes/es-register.php:1089 ../help/help.php:202
476
  msgid "Subscribe"
477
  msgstr "Anmelden"
478
 
479
- #: ../classes/es-register.php:1193
480
  msgid "Widget Title"
481
  msgstr "Widget Titel"
482
 
483
- #: ../classes/es-register.php:1197
484
  msgid "Short description about subscription form"
485
  msgstr "Kurze Beschreibung des Anmeldeformulars"
486
 
487
- #: ../classes/es-register.php:1201
488
  msgid "Display Name Field"
489
  msgstr "Namensfeld anzeigen"
490
 
491
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
492
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
493
  msgid "YES"
494
  msgstr "Ja"
495
 
496
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
497
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
498
  msgid "NO"
499
  msgstr "Nein"
500
 
501
- #: ../classes/es-register.php:1208
502
  msgid "Subscriber Group"
503
  msgstr "Abonnentengruppe"
504
 
505
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
506
  msgid "Unexpected url submit has been detected!"
507
  msgstr "Die Übertragung einer unerwarteten URL wurde erkannt!"
508
 
@@ -913,8 +902,8 @@ msgstr ""
913
  msgid "add Rainmaker’s form in Email Subscribers"
914
  msgstr "Rainmakers Formulare in Email Subscribers einfügen"
915
 
916
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
917
- #: job/es-unsubscribe.php:61
918
  msgid ""
919
  "Oops.. We are getting some technical error. Please try again or contact "
920
  "admin."
@@ -922,7 +911,7 @@ msgstr ""
922
  "Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere "
923
  "den Admin."
924
 
925
- #: ../job/es-optin.php:61
926
  msgid "This email address has already been confirmed."
927
  msgstr "Diese E-Mail-Adresse wurde schon bestätigt."
928
 
@@ -957,16 +946,12 @@ msgstr "Benachrichtigung hinzufügen"
957
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
958
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
959
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
960
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
961
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
962
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
963
  msgid "Help"
964
  msgstr "Hilfe"
965
 
966
- #: ../notification/notification-add.php:121
967
- msgid "Select Subscribers Group"
968
- msgstr "Wähle Abonnentengruppe"
969
-
970
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
971
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
972
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1068,11 +1053,6 @@ msgstr "Benachrichtigung bearbeiten"
1068
  msgid "Add New"
1069
  msgstr "Neu hinzufügen"
1070
 
1071
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1072
- #: php:303
1073
- msgid "Update Subscribers Group"
1074
- msgstr "Aktualisiere die Abonnentengruppe"
1075
-
1076
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1077
  msgid "Selected record deleted."
1078
  msgstr "Ausgewählte Einträge gelöscht."
@@ -1213,8 +1193,8 @@ msgid "Delivery Report"
1213
  msgstr "Sendebericht"
1214
 
1215
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1216
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1217
- #: export.php:66
1218
  msgid "Sno"
1219
  msgstr "Alle"
1220
 
@@ -1293,8 +1273,8 @@ msgid "Total"
1293
  msgstr "Gesamt"
1294
 
1295
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1296
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1297
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1298
  msgid "Action"
1299
  msgstr "Aktion"
1300
 
@@ -1531,7 +1511,7 @@ msgstr "Bestätigungslink bei doppeltem Opt-In"
1531
  msgid "It is a readonly field and you are advised not to modify it."
1532
  msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
1533
 
1534
- #: ../settings/settings-edit.php:205
1535
  msgid ""
1536
  "Text to display after an email address is successfully subscribed from "
1537
  "Double Opt-In (Confirmation) Email"
@@ -1539,7 +1519,7 @@ msgstr ""
1539
  "Angezeigter Text nachdem eine E-Mail-Adresse erfolgreich durch Doppeltes Opt-"
1540
  "In eingetragen wurde"
1541
 
1542
- #: ../settings/settings-edit.php:206
1543
  msgid ""
1544
  "This text will be displayed once user clicks on email confirmation link from "
1545
  "the Double Opt In (confirmation) Email."
@@ -1547,11 +1527,11 @@ msgstr ""
1547
  "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in "
1548
  "der Double Opt In Bestätigungsmail klickt."
1549
 
1550
- #: ../settings/settings-edit.php:213
1551
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1552
  msgstr "Nach der Anmeldung Willkommens-E-Mail an neue Abonnenten schicken?"
1553
 
1554
- #: ../settings/settings-edit.php:214
1555
  msgid ""
1556
  "To send welcome email to subscriber after successful signup. This option "
1557
  "must be set to YES."
@@ -1559,11 +1539,11 @@ msgstr ""
1559
  "Sende eine Willkommens-E-Mail an den Abonnenten nachdem er efolgreich "
1560
  "registriert ist. Diese Option muss auf JA stehen."
1561
 
1562
- #: ../settings/settings-edit.php:225
1563
  msgid "Subject for Welcome Email"
1564
  msgstr "Betreff der Willkommens-E-Mail"
1565
 
1566
- #: ../settings/settings-edit.php:226
1567
  msgid ""
1568
  "Subject for the subscriber welcome email. This will be sent whenever a "
1569
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1573,11 +1553,11 @@ msgstr ""
1573
  "gesendet sobald eine E-Mail-Adresse entweder erfolgreich bestätigt (bei "
1574
  "doppeltem Opt-In) oder erfolgreich eingetragen (bei einfachem Opt-In) wurde."
1575
 
1576
- #: ../settings/settings-edit.php:232
1577
  msgid "Email Content for Welcome Email"
1578
  msgstr "Inhalt der Willkommens-E-Mail"
1579
 
1580
- #: ../settings/settings-edit.php:233
1581
  msgid ""
1582
  "Content for the subscriber welcome email whenever a user's email is either "
1583
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1587,11 +1567,11 @@ msgstr ""
1587
  "bestätigt (bei doppeltem Opt-In) oder eingetragen (bei einfachem Opt-In) "
1588
  "wurde.<br />Verfügbare Schlüsselworte: {{NAME}}, {{GROUP}}, {{LINK}}"
1589
 
1590
- #: ../settings/settings-edit.php:241
1591
  msgid "Unsubscribe Link"
1592
  msgstr "Link zum Abmelden"
1593
 
1594
- #: ../settings/settings-edit.php:242
1595
  msgid ""
1596
  "This unsubscribe link is automatically added to all the emails that are sent "
1597
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1601,11 +1581,11 @@ msgstr ""
1601
  "Plugin verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empfohlen "
1602
  "es nicht zu ändern."
1603
 
1604
- #: ../settings/settings-edit.php:248
1605
  msgid "Unsubscribe Text in Email"
1606
  msgstr "Inhalt der Abmelde-E-Mail"
1607
 
1608
- #: ../settings/settings-edit.php:249
1609
  msgid ""
1610
  "The text for the unsubscribe link. This text is automatically added with "
1611
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1614,11 +1594,11 @@ msgstr ""
1614
  "Abmeldelink zu den E-Mails hinzugefügt.<br />Verfügbare Schlüsselworte: "
1615
  "{{LINK}}"
1616
 
1617
- #: ../settings/settings-edit.php:255
1618
  msgid "Text to display after an email address is unsubscribed"
1619
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
1620
 
1621
- #: ../settings/settings-edit.php:256
1622
  msgid ""
1623
  "This text will be displayed once user clicks on unsubscribe link from the "
1624
  "email."
@@ -1626,11 +1606,11 @@ msgstr ""
1626
  "Dieser Text wird angezeigt nachdem ein Benutzer auf den Abmeldelink geklickt "
1627
  "hat."
1628
 
1629
- #: ../settings/settings-edit.php:263
1630
  msgid "Error in the Subscribe / Confirmation Link"
1631
  msgstr "Fehler im Anmelde- / Abmeldelink"
1632
 
1633
- #: ../settings/settings-edit.php:264
1634
  msgid ""
1635
  "Default message to display if there is any issue while clicking on subscribe "
1636
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1638,11 +1618,11 @@ msgstr ""
1638
  "Standardnachricht bei Fehlern bei der Verwendung des Anmelde- / "
1639
  "Bestätigungslinks der Bestätigungs-E-Mail bei doppeltem Opt-In."
1640
 
1641
- #: ../settings/settings-edit.php:270
1642
  msgid "Error in the Unsubscribe Link"
1643
  msgstr "Fehler im Abmeldelink"
1644
 
1645
- #: ../settings/settings-edit.php:271
1646
  msgid ""
1647
  "Default message to display if there is any issue while clicking on "
1648
  "unsubscribe link from the emails."
@@ -1650,75 +1630,75 @@ msgstr ""
1650
  "Standardnachricht bei Fehlern bei der Verwendung des Abmeldelinks aus den "
1651
  "Emails."
1652
 
1653
- #: ../settings/settings-edit.php:283
1654
  msgid "Select user roles who can access following menus. Only Admin can change this."
1655
  msgstr ""
1656
  "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur "
1657
  "ein Admin kann das ändern."
1658
 
1659
- #: ../settings/settings-edit.php:289
1660
  msgid "Subscribers Menu"
1661
  msgstr "Menü Abonnenten"
1662
 
1663
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1664
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1665
- #: settings/settings-edit.php:341
1666
  msgid "Administrator Only"
1667
  msgstr "Nur für Administratoren"
1668
 
1669
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1670
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1671
- #: settings/settings-edit.php:342
1672
  msgid "Administrator/Editor"
1673
  msgstr "Für Administratoren / Editoren"
1674
 
1675
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1676
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1677
- #: settings/settings-edit.php:343
1678
  msgid "Administrator/Editor/Author/Contributor"
1679
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
1680
 
1681
- #: ../settings/settings-edit.php:301
1682
  msgid "Templates Menu"
1683
  msgstr "Vorlagen Menü"
1684
 
1685
- #: ../settings/settings-edit.php:313
1686
  msgid "Post Notifications Menu"
1687
  msgstr "Menü Benachrichtigungen"
1688
 
1689
- #: ../settings/settings-edit.php:337
1690
  msgid "Reports Menu"
1691
  msgstr "Menü Berichte"
1692
 
1693
- #: ../settings/settings-edit.php:354
1694
  msgid "Cron job URL"
1695
  msgstr "Cron Job URL"
1696
 
1697
- #: ../settings/settings-edit.php:355
1698
  msgid ""
1699
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1700
  "modify it."
1701
  msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1702
 
1703
- #: ../settings/settings-edit.php:364
1704
  msgid "Email Count"
1705
  msgstr "Anzahl E-Mails"
1706
 
1707
- #: ../settings/settings-edit.php:365
1708
  msgid "Number of emails that you want to trigger per hour."
1709
  msgstr "Anzahl der E-Mails die pro Stunde verschickt werden sollen."
1710
 
1711
- #: ../settings/settings-edit.php:370
1712
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1713
  msgstr ""
1714
  "(Dein Hoster hat Limitierungen. Wir empfehlen 50 E-Mails pro Stunde um auf "
1715
  "der sicheren Seite zu sein.)"
1716
 
1717
- #: ../settings/settings-edit.php:375
1718
  msgid "Cron Report"
1719
  msgstr "Cron Bericht"
1720
 
1721
- #: ../settings/settings-edit.php:376
1722
  msgid ""
1723
  "Email to admin whenever a cron URL is triggered from your server.<br "
1724
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1726,11 +1706,11 @@ msgstr ""
1726
  "E-Mails an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
1727
  "/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1728
 
1729
- #: ../settings/settings-edit.php:386
1730
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1731
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1732
 
1733
- #: ../settings/settings-edit.php:387
1734
  msgid ""
1735
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1736
  "schedule-cron-emails/?"
@@ -1742,7 +1722,7 @@ msgstr ""
1742
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
1743
  "Cron?</a>"
1744
 
1745
- #: ../settings/settings-edit.php:388
1746
  msgid ""
1747
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1748
  "schedule-cron-emails-in-cpanel/?"
@@ -1754,7 +1734,7 @@ msgstr ""
1754
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1755
  "in cPanel konfigurieren</a>"
1756
 
1757
- #: ../settings/settings-edit.php:389
1758
  msgid ""
1759
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1760
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1766,7 +1746,7 @@ msgstr ""
1766
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1767
  "in Plesk konfigurieren</a>"
1768
 
1769
- #: ../settings/settings-edit.php:390
1770
  msgid ""
1771
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1772
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1778,19 +1758,19 @@ msgstr ""
1778
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
1779
  "Hoster unterstützt keine Cron Jobs?</a>"
1780
 
1781
- #: ../settings/settings-edit.php:505
1782
  msgid "Please enter sender of notifications from name."
1783
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
1784
 
1785
- #: ../settings/settings-edit.php:510
1786
  msgid "Please enter sender of notifications from email."
1787
  msgstr "Bitte wähle den Absender der Benachrichtigung über die E-Mail-Adresse."
1788
 
1789
- #: ../settings/settings-edit.php:568
1790
  msgid "Settings Saved."
1791
  msgstr "Einstellungen gesichert."
1792
 
1793
- #: ../settings/settings-edit.php:571
1794
  msgid "Oops, unable to update."
1795
  msgstr "Oops.. Update nicht möglich."
1796
 
@@ -1824,14 +1804,14 @@ msgid "Invalid Email."
1824
  msgstr "Ungültige E-Mail-Adresse."
1825
 
1826
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1827
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1828
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1829
  #: subscribers/view-subscriber-sync.php:89
1830
  msgid "Add New Subscriber"
1831
  msgstr "Neu hinzufügen"
1832
 
1833
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1834
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1835
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1836
  #: subscribers/view-subscriber-sync.php:90
1837
  msgid "Import"
@@ -1844,7 +1824,7 @@ msgid "Export"
1844
  msgstr "Export"
1845
 
1846
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1847
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1848
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1849
  #: subscribers/view-subscriber-sync.php:143
1850
  msgid "Sync"
@@ -1937,63 +1917,63 @@ msgstr ""
1937
  msgid "Go back to Subscribers dashboard"
1938
  msgstr "Zurück zum Dashboard der Abonnenten"
1939
 
1940
- #: ../subscribers/view-subscriber-export.php:47
1941
  msgid "Export Email Addresses"
1942
  msgstr "E-Mail-Adressen exportieren"
1943
 
1944
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1945
- #: export.php:67
1946
  msgid "Type of List to Export"
1947
  msgstr "Listentyp für den Export"
1948
 
1949
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1950
- #: export.php:68
1951
  msgid "Total Emails Count"
1952
  msgstr "Gesamte Anzahl Emails"
1953
 
1954
- #: ../subscribers/view-subscriber-export.php:74
1955
  msgid "1"
1956
  msgstr "1"
1957
 
1958
- #: ../subscribers/view-subscriber-export.php:75
1959
  msgid "All Subscribers"
1960
  msgstr "Alle Abonnenten"
1961
 
1962
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1963
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1964
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1965
  msgid "Click to Export in CSV"
1966
  msgstr "Klicken um nach CSV zu exportieren"
1967
 
1968
- #: ../subscribers/view-subscriber-export.php:80
1969
  msgid "2"
1970
  msgstr "2"
1971
 
1972
- #: ../subscribers/view-subscriber-export.php:81
1973
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1974
  msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
1975
 
1976
- #: ../subscribers/view-subscriber-export.php:86
1977
  msgid "3"
1978
  msgstr "3"
1979
 
1980
- #: ../subscribers/view-subscriber-export.php:87
1981
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1982
  msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
1983
 
1984
- #: ../subscribers/view-subscriber-export.php:92
1985
  msgid "4"
1986
  msgstr "4"
1987
 
1988
- #: ../subscribers/view-subscriber-export.php:93
1989
  msgid "WordPress Registered Users"
1990
  msgstr "Registrierte WordPress Benutzer"
1991
 
1992
- #: ../subscribers/view-subscriber-export.php:98
1993
  msgid "5"
1994
  msgstr "5"
1995
 
1996
- #: ../subscribers/view-subscriber-export.php:99
1997
  msgid "Commented Authors"
1998
  msgstr "Kommentierte Autoren"
1999
 
@@ -2133,6 +2113,10 @@ msgstr "Mehrfachaktionen"
2133
  msgid "Resend Confirmation"
2134
  msgstr "Benachrichtigung erneut versenden"
2135
 
 
 
 
 
2136
  #: ../subscribers/view-subscriber-show.php:304
2137
  msgid "Update Subscribers Status"
2138
  msgstr "Abonnentenstatus aktualisieren"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:25 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: German\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
26
+ #: register.php:788
27
  msgid "Email Subscribers"
28
  msgstr ""
29
 
30
  #: ../classes/es-register.php:727
 
 
 
 
31
  msgid ""
32
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
33
+ "</b>"
34
  msgstr ""
35
 
36
+ #: ../classes/es-register.php:728
37
+ msgid "Here's how"
38
  msgstr ""
39
 
40
+ #: ../classes/es-register.php:728
41
+ msgid "Not interested. Dismiss this."
42
  msgstr ""
43
 
44
+ #: ../classes/es-register.php:900
45
  #, php-format
46
  msgid "%s for Post Notification: {{POSTTITLE}}"
47
  msgstr ""
48
 
49
+ #: ../classes/es-register.php:900
50
  msgid "Available Keyword"
51
  msgstr ""
52
 
53
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
54
  #, php-format
55
  msgid ""
56
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
58
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
59
  msgstr ""
60
 
61
+ #: ../classes/es-register.php:1002
62
  #, php-format
63
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
64
  msgstr ""
94
  msgid "What data Email Subscribers - Group Selector stores on your end?"
95
  msgstr ""
96
 
97
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
98
+ #: 132
99
+ msgid "Subscribers Group to send post notification to"
100
+ msgstr ""
101
+
102
  #: ../sentmail/sentmail-show.php:212
103
  msgid ""
104
  "<strong>Note:</strong> If you delete record for the emails with Status = "
106
  "deleted too and email will not be sent."
107
  msgstr ""
108
 
109
+ #: ../settings/settings-edit.php:566
110
  msgid "Please enter valid email count."
111
  msgstr ""
112
 
160
  msgstr "Abonnenten"
161
 
162
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
163
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
164
  msgid "Templates"
165
  msgstr "Vorlagen"
166
 
170
  msgstr "Benachrichtigungen"
171
 
172
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
173
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
174
  msgid "Newsletters"
175
  msgstr "Newsletter"
176
 
360
  msgid "Please try after some time"
361
  msgstr "Versuche es in Kürze nochmal"
362
 
363
+ #: ../classes/es-register.php:753
 
 
 
 
 
 
 
 
 
 
 
 
364
  msgid ""
365
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
366
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
373
  "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
374
  "riesiges Dankeschön von Icegram im Voraus!"
375
 
376
+ #: ../classes/es-register.php:767
377
  #, php-format
378
  msgid "Email Subscribers version: <strong>%s</strong>"
379
  msgstr "Email Subscribers Version: <strong>%s</strong>"
380
 
381
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
382
  msgid "Add new Template"
383
  msgstr "Neue Vorlage hinzufügen"
384
 
385
+ #: ../classes/es-register.php:780
386
  msgid "Edit Templates"
387
  msgstr "Vorlagen bearbeiten"
388
 
389
+ #: ../classes/es-register.php:781
390
  msgid "New Templates"
391
  msgstr "Neue Vorlagen"
392
 
393
+ #: ../classes/es-register.php:783
394
  msgid "View Templates"
395
  msgstr "Vorlagen ansehen"
396
 
397
+ #: ../classes/es-register.php:784
398
  msgid "Search Templates"
399
  msgstr "Vorlagen suchen"
400
 
401
+ #: ../classes/es-register.php:785
402
  msgid "No Templates found"
403
  msgstr "Keine Vorlagen gefunden"
404
 
405
+ #: ../classes/es-register.php:786
406
  msgid "No Templates found in Trash"
407
  msgstr "Keine Vorlagen im Papierkorb gefunden"
408
 
409
+ #: ../classes/es-register.php:789
410
  msgid "Thumbnail (For Visual Representation only)"
411
  msgstr "Vorschaubild (nur zur visuellen Darstellung)"
412
 
413
+ #: ../classes/es-register.php:790
414
  msgid "Set thumbnail"
415
  msgstr "Vorschaubild auswählen"
416
 
417
+ #: ../classes/es-register.php:827
418
  msgid "Template Type"
419
  msgstr "Vorlagentyp"
420
 
421
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
422
  msgid "Thumbnail"
423
  msgstr "Vorschau"
424
 
425
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
426
  #: sentmail/sentmail-show.php:121
427
  msgid "Preview"
428
  msgstr "Vorschau"
429
 
430
+ #: ../classes/es-register.php:907
431
  msgid "Select your Email Template Type"
432
  msgstr "Wähle den Typ der Emailvorlage"
433
 
434
+ #: ../classes/es-register.php:909
435
  msgid "Newsletter"
436
  msgstr "Newsletter"
437
 
438
+ #: ../classes/es-register.php:910
439
  msgid "Post Notification"
440
  msgstr "Benachrichtigung über Beitrag"
441
 
442
+ #: ../classes/es-register.php:959
443
  msgid "Preview Template"
444
  msgstr "Voransicht Vorlage"
445
 
446
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
447
+ #: register.php:994 ../classes/es-register.php:1002
448
  msgid "Available Keywords"
449
  msgstr "Verfügbare Schlüsselworte"
450
 
451
+ #: ../classes/es-register.php:979
452
  #, php-format
453
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
454
  msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
455
 
456
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
457
  msgid "Name"
458
  msgstr "Name"
459
 
460
+ #: ../classes/es-register.php:1044
461
  msgid "Email *"
462
  msgstr "E-Mail *"
463
 
464
+ #: ../classes/es-register.php:1053 ../help/help.php:202
465
  msgid "Subscribe"
466
  msgstr "Anmelden"
467
 
468
+ #: ../classes/es-register.php:1157
469
  msgid "Widget Title"
470
  msgstr "Widget Titel"
471
 
472
+ #: ../classes/es-register.php:1161
473
  msgid "Short description about subscription form"
474
  msgstr "Kurze Beschreibung des Anmeldeformulars"
475
 
476
+ #: ../classes/es-register.php:1165
477
  msgid "Display Name Field"
478
  msgstr "Namensfeld anzeigen"
479
 
480
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
481
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
482
  msgid "YES"
483
  msgstr "Ja"
484
 
485
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
486
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
487
  msgid "NO"
488
  msgstr "Nein"
489
 
490
+ #: ../classes/es-register.php:1172
491
  msgid "Subscriber Group"
492
  msgstr "Abonnentengruppe"
493
 
494
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
495
  msgid "Unexpected url submit has been detected!"
496
  msgstr "Die Übertragung einer unerwarteten URL wurde erkannt!"
497
 
902
  msgid "add Rainmaker’s form in Email Subscribers"
903
  msgstr "Rainmakers Formulare in Email Subscribers einfügen"
904
 
905
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
906
+ #: job/es-unsubscribe.php:62
907
  msgid ""
908
  "Oops.. We are getting some technical error. Please try again or contact "
909
  "admin."
911
  "Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere "
912
  "den Admin."
913
 
914
+ #: ../job/es-optin.php:62
915
  msgid "This email address has already been confirmed."
916
  msgstr "Diese E-Mail-Adresse wurde schon bestätigt."
917
 
946
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
947
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
948
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
949
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
950
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
951
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
952
  msgid "Help"
953
  msgstr "Hilfe"
954
 
 
 
 
 
955
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
956
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
957
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1053
  msgid "Add New"
1054
  msgstr "Neu hinzufügen"
1055
 
 
 
 
 
 
1056
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1057
  msgid "Selected record deleted."
1058
  msgstr "Ausgewählte Einträge gelöscht."
1193
  msgstr "Sendebericht"
1194
 
1195
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1196
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1197
+ #: export.php:69
1198
  msgid "Sno"
1199
  msgstr "Alle"
1200
 
1273
  msgstr "Gesamt"
1274
 
1275
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1276
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1277
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1278
  msgid "Action"
1279
  msgstr "Aktion"
1280
 
1511
  msgid "It is a readonly field and you are advised not to modify it."
1512
  msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
1513
 
1514
+ #: ../settings/settings-edit.php:206
1515
  msgid ""
1516
  "Text to display after an email address is successfully subscribed from "
1517
  "Double Opt-In (Confirmation) Email"
1519
  "Angezeigter Text nachdem eine E-Mail-Adresse erfolgreich durch Doppeltes Opt-"
1520
  "In eingetragen wurde"
1521
 
1522
+ #: ../settings/settings-edit.php:207
1523
  msgid ""
1524
  "This text will be displayed once user clicks on email confirmation link from "
1525
  "the Double Opt In (confirmation) Email."
1527
  "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in "
1528
  "der Double Opt In Bestätigungsmail klickt."
1529
 
1530
+ #: ../settings/settings-edit.php:219
1531
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1532
  msgstr "Nach der Anmeldung Willkommens-E-Mail an neue Abonnenten schicken?"
1533
 
1534
+ #: ../settings/settings-edit.php:220
1535
  msgid ""
1536
  "To send welcome email to subscriber after successful signup. This option "
1537
  "must be set to YES."
1539
  "Sende eine Willkommens-E-Mail an den Abonnenten nachdem er efolgreich "
1540
  "registriert ist. Diese Option muss auf JA stehen."
1541
 
1542
+ #: ../settings/settings-edit.php:231
1543
  msgid "Subject for Welcome Email"
1544
  msgstr "Betreff der Willkommens-E-Mail"
1545
 
1546
+ #: ../settings/settings-edit.php:232
1547
  msgid ""
1548
  "Subject for the subscriber welcome email. This will be sent whenever a "
1549
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1553
  "gesendet sobald eine E-Mail-Adresse entweder erfolgreich bestätigt (bei "
1554
  "doppeltem Opt-In) oder erfolgreich eingetragen (bei einfachem Opt-In) wurde."
1555
 
1556
+ #: ../settings/settings-edit.php:238
1557
  msgid "Email Content for Welcome Email"
1558
  msgstr "Inhalt der Willkommens-E-Mail"
1559
 
1560
+ #: ../settings/settings-edit.php:239
1561
  msgid ""
1562
  "Content for the subscriber welcome email whenever a user's email is either "
1563
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1567
  "bestätigt (bei doppeltem Opt-In) oder eingetragen (bei einfachem Opt-In) "
1568
  "wurde.<br />Verfügbare Schlüsselworte: {{NAME}}, {{GROUP}}, {{LINK}}"
1569
 
1570
+ #: ../settings/settings-edit.php:247
1571
  msgid "Unsubscribe Link"
1572
  msgstr "Link zum Abmelden"
1573
 
1574
+ #: ../settings/settings-edit.php:248
1575
  msgid ""
1576
  "This unsubscribe link is automatically added to all the emails that are sent "
1577
  "from this plugin. It is a readonly field and you are advised not to modify "
1581
  "Plugin verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empfohlen "
1582
  "es nicht zu ändern."
1583
 
1584
+ #: ../settings/settings-edit.php:254
1585
  msgid "Unsubscribe Text in Email"
1586
  msgstr "Inhalt der Abmelde-E-Mail"
1587
 
1588
+ #: ../settings/settings-edit.php:255
1589
  msgid ""
1590
  "The text for the unsubscribe link. This text is automatically added with "
1591
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1594
  "Abmeldelink zu den E-Mails hinzugefügt.<br />Verfügbare Schlüsselworte: "
1595
  "{{LINK}}"
1596
 
1597
+ #: ../settings/settings-edit.php:262
1598
  msgid "Text to display after an email address is unsubscribed"
1599
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
1600
 
1601
+ #: ../settings/settings-edit.php:263
1602
  msgid ""
1603
  "This text will be displayed once user clicks on unsubscribe link from the "
1604
  "email."
1606
  "Dieser Text wird angezeigt nachdem ein Benutzer auf den Abmeldelink geklickt "
1607
  "hat."
1608
 
1609
+ #: ../settings/settings-edit.php:275
1610
  msgid "Error in the Subscribe / Confirmation Link"
1611
  msgstr "Fehler im Anmelde- / Abmeldelink"
1612
 
1613
+ #: ../settings/settings-edit.php:276
1614
  msgid ""
1615
  "Default message to display if there is any issue while clicking on subscribe "
1616
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1618
  "Standardnachricht bei Fehlern bei der Verwendung des Anmelde- / "
1619
  "Bestätigungslinks der Bestätigungs-E-Mail bei doppeltem Opt-In."
1620
 
1621
+ #: ../settings/settings-edit.php:282
1622
  msgid "Error in the Unsubscribe Link"
1623
  msgstr "Fehler im Abmeldelink"
1624
 
1625
+ #: ../settings/settings-edit.php:283
1626
  msgid ""
1627
  "Default message to display if there is any issue while clicking on "
1628
  "unsubscribe link from the emails."
1630
  "Standardnachricht bei Fehlern bei der Verwendung des Abmeldelinks aus den "
1631
  "Emails."
1632
 
1633
+ #: ../settings/settings-edit.php:295
1634
  msgid "Select user roles who can access following menus. Only Admin can change this."
1635
  msgstr ""
1636
  "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur "
1637
  "ein Admin kann das ändern."
1638
 
1639
+ #: ../settings/settings-edit.php:301
1640
  msgid "Subscribers Menu"
1641
  msgstr "Menü Abonnenten"
1642
 
1643
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1644
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1645
+ #: settings/settings-edit.php:353
1646
  msgid "Administrator Only"
1647
  msgstr "Nur für Administratoren"
1648
 
1649
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1650
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1651
+ #: settings/settings-edit.php:354
1652
  msgid "Administrator/Editor"
1653
  msgstr "Für Administratoren / Editoren"
1654
 
1655
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1656
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1657
+ #: settings/settings-edit.php:355
1658
  msgid "Administrator/Editor/Author/Contributor"
1659
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
1660
 
1661
+ #: ../settings/settings-edit.php:313
1662
  msgid "Templates Menu"
1663
  msgstr "Vorlagen Menü"
1664
 
1665
+ #: ../settings/settings-edit.php:325
1666
  msgid "Post Notifications Menu"
1667
  msgstr "Menü Benachrichtigungen"
1668
 
1669
+ #: ../settings/settings-edit.php:349
1670
  msgid "Reports Menu"
1671
  msgstr "Menü Berichte"
1672
 
1673
+ #: ../settings/settings-edit.php:366
1674
  msgid "Cron job URL"
1675
  msgstr "Cron Job URL"
1676
 
1677
+ #: ../settings/settings-edit.php:367
1678
  msgid ""
1679
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1680
  "modify it."
1681
  msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1682
 
1683
+ #: ../settings/settings-edit.php:376
1684
  msgid "Email Count"
1685
  msgstr "Anzahl E-Mails"
1686
 
1687
+ #: ../settings/settings-edit.php:377
1688
  msgid "Number of emails that you want to trigger per hour."
1689
  msgstr "Anzahl der E-Mails die pro Stunde verschickt werden sollen."
1690
 
1691
+ #: ../settings/settings-edit.php:382
1692
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1693
  msgstr ""
1694
  "(Dein Hoster hat Limitierungen. Wir empfehlen 50 E-Mails pro Stunde um auf "
1695
  "der sicheren Seite zu sein.)"
1696
 
1697
+ #: ../settings/settings-edit.php:387
1698
  msgid "Cron Report"
1699
  msgstr "Cron Bericht"
1700
 
1701
+ #: ../settings/settings-edit.php:388
1702
  msgid ""
1703
  "Email to admin whenever a cron URL is triggered from your server.<br "
1704
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1706
  "E-Mails an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
1707
  "/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1708
 
1709
+ #: ../settings/settings-edit.php:398
1710
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1711
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1712
 
1713
+ #: ../settings/settings-edit.php:399
1714
  msgid ""
1715
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1716
  "schedule-cron-emails/?"
1722
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
1723
  "Cron?</a>"
1724
 
1725
+ #: ../settings/settings-edit.php:400
1726
  msgid ""
1727
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1728
  "schedule-cron-emails-in-cpanel/?"
1734
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1735
  "in cPanel konfigurieren</a>"
1736
 
1737
+ #: ../settings/settings-edit.php:401
1738
  msgid ""
1739
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1740
  "schedule-cron-emails-in-parallels-plesk/?"
1746
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1747
  "in Plesk konfigurieren</a>"
1748
 
1749
+ #: ../settings/settings-edit.php:402
1750
  msgid ""
1751
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1752
  "if-hosting-doesnt-support-cron-jobs/?"
1758
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
1759
  "Hoster unterstützt keine Cron Jobs?</a>"
1760
 
1761
+ #: ../settings/settings-edit.php:517
1762
  msgid "Please enter sender of notifications from name."
1763
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
1764
 
1765
+ #: ../settings/settings-edit.php:522
1766
  msgid "Please enter sender of notifications from email."
1767
  msgstr "Bitte wähle den Absender der Benachrichtigung über die E-Mail-Adresse."
1768
 
1769
+ #: ../settings/settings-edit.php:580
1770
  msgid "Settings Saved."
1771
  msgstr "Einstellungen gesichert."
1772
 
1773
+ #: ../settings/settings-edit.php:583
1774
  msgid "Oops, unable to update."
1775
  msgstr "Oops.. Update nicht möglich."
1776
 
1804
  msgstr "Ungültige E-Mail-Adresse."
1805
 
1806
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1807
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1808
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1809
  #: subscribers/view-subscriber-sync.php:89
1810
  msgid "Add New Subscriber"
1811
  msgstr "Neu hinzufügen"
1812
 
1813
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1814
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1815
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1816
  #: subscribers/view-subscriber-sync.php:90
1817
  msgid "Import"
1824
  msgstr "Export"
1825
 
1826
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1827
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1828
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1829
  #: subscribers/view-subscriber-sync.php:143
1830
  msgid "Sync"
1917
  msgid "Go back to Subscribers dashboard"
1918
  msgstr "Zurück zum Dashboard der Abonnenten"
1919
 
1920
+ #: ../subscribers/view-subscriber-export.php:50
1921
  msgid "Export Email Addresses"
1922
  msgstr "E-Mail-Adressen exportieren"
1923
 
1924
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1925
+ #: export.php:70
1926
  msgid "Type of List to Export"
1927
  msgstr "Listentyp für den Export"
1928
 
1929
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1930
+ #: export.php:71
1931
  msgid "Total Emails Count"
1932
  msgstr "Gesamte Anzahl Emails"
1933
 
1934
+ #: ../subscribers/view-subscriber-export.php:77
1935
  msgid "1"
1936
  msgstr "1"
1937
 
1938
+ #: ../subscribers/view-subscriber-export.php:78
1939
  msgid "All Subscribers"
1940
  msgstr "Alle Abonnenten"
1941
 
1942
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1943
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1944
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1945
  msgid "Click to Export in CSV"
1946
  msgstr "Klicken um nach CSV zu exportieren"
1947
 
1948
+ #: ../subscribers/view-subscriber-export.php:83
1949
  msgid "2"
1950
  msgstr "2"
1951
 
1952
+ #: ../subscribers/view-subscriber-export.php:84
1953
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1954
  msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
1955
 
1956
+ #: ../subscribers/view-subscriber-export.php:89
1957
  msgid "3"
1958
  msgstr "3"
1959
 
1960
+ #: ../subscribers/view-subscriber-export.php:90
1961
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1962
  msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
1963
 
1964
+ #: ../subscribers/view-subscriber-export.php:95
1965
  msgid "4"
1966
  msgstr "4"
1967
 
1968
+ #: ../subscribers/view-subscriber-export.php:96
1969
  msgid "WordPress Registered Users"
1970
  msgstr "Registrierte WordPress Benutzer"
1971
 
1972
+ #: ../subscribers/view-subscriber-export.php:101
1973
  msgid "5"
1974
  msgstr "5"
1975
 
1976
+ #: ../subscribers/view-subscriber-export.php:102
1977
  msgid "Commented Authors"
1978
  msgstr "Kommentierte Autoren"
1979
 
2113
  msgid "Resend Confirmation"
2114
  msgstr "Benachrichtigung erneut versenden"
2115
 
2116
+ #: ../subscribers/view-subscriber-show.php:303
2117
+ msgid "Update Subscribers Group"
2118
+ msgstr "Aktualisiere die Abonnentengruppe"
2119
+
2120
  #: ../subscribers/view-subscriber-show.php:304
2121
  msgid "Update Subscribers Status"
2122
  msgstr "Abonnentenstatus aktualisieren"
languages/email-subscribers-es_ES.mo CHANGED
Binary file
languages/email-subscribers-es_ES.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:38 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Spanish (Spain)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -24,33 +24,29 @@ msgstr ""
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
  #: ../classes/es-register.php:727
27
- msgid "Check Pro plan"
28
- msgstr ""
29
-
30
- #: ../classes/es-register.php:765
31
  msgid ""
32
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
33
- "Checkbox' in the subscription form.</b>"
34
  msgstr ""
35
 
36
- #: ../classes/es-register.php:766
37
- msgid "Steps to enable"
38
  msgstr ""
39
 
40
- #: ../classes/es-register.php:766
41
- msgid "Ok, got it"
42
  msgstr ""
43
 
44
- #: ../classes/es-register.php:936
45
  #, php-format
46
  msgid "%s for Post Notification: {{POSTTITLE}}"
47
  msgstr ""
48
 
49
- #: ../classes/es-register.php:936
50
  msgid "Available Keyword"
51
  msgstr ""
52
 
53
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
54
  #, php-format
55
  msgid ""
56
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -58,7 +54,7 @@ msgid ""
58
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
59
  msgstr ""
60
 
61
- #: ../classes/es-register.php:1038
62
  #, php-format
63
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
64
  msgstr ""
@@ -98,6 +94,11 @@ msgstr ""
98
  msgid "What data Email Subscribers - Group Selector stores on your end?"
99
  msgstr ""
100
 
 
 
 
 
 
101
  #: ../sentmail/sentmail-show.php:212
102
  msgid ""
103
  "<strong>Note:</strong> If you delete record for the emails with Status = "
@@ -105,7 +106,7 @@ msgid ""
105
  "deleted too and email will not be sent."
106
  msgstr ""
107
 
108
- #: ../settings/settings-edit.php:554
109
  msgid "Please enter valid email count."
110
  msgstr ""
111
 
@@ -154,7 +155,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
154
  msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
155
 
156
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
157
- #: register.php:826
158
  msgid "Email Subscribers"
159
  msgstr "Email Subscribers"
160
 
@@ -164,7 +165,7 @@ msgid "Subscribers"
164
  msgstr "Suscriptores"
165
 
166
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
167
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
168
  msgid "Templates"
169
  msgstr "Plantillas"
170
 
@@ -174,7 +175,7 @@ msgid "Post Notifications"
174
  msgstr "Notificar Entrada"
175
 
176
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
177
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
178
  msgid "Newsletters"
179
  msgstr "Boletín Informativo"
180
 
@@ -370,19 +371,7 @@ msgctxt "widget-page-enhanced-select"
370
  msgid "Please try after some time"
371
  msgstr "Por favor, inténtalo transcurridos unos minutos"
372
 
373
- #: ../classes/es-register.php:726
374
- msgid ""
375
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
376
- "subscribers list?</b> Come check our Pro plan."
377
- msgstr ""
378
- "<b>¿Quieres plantillas de correo listas para usar?</b> ¿También quieres "
379
- "<b>limpiar tu lista de suscriptores?</b> Comprueba nuestro plan Pro."
380
-
381
- #: ../classes/es-register.php:727
382
- msgid "Not interested."
383
- msgstr "No me interesa."
384
-
385
- #: ../classes/es-register.php:791
386
  msgid ""
387
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
388
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -395,125 +384,125 @@ msgstr ""
395
  "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
396
  "Icegram!"
397
 
398
- #: ../classes/es-register.php:805
399
  #, php-format
400
  msgid "Email Subscribers version: <strong>%s</strong>"
401
  msgstr "Email Subscribers versión: <strong>%s</strong>"
402
 
403
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
404
  msgid "Add new Template"
405
  msgstr "Añadir nueva Plantilla"
406
 
407
- #: ../classes/es-register.php:818
408
  msgid "Edit Templates"
409
  msgstr "Editar Plantillas"
410
 
411
- #: ../classes/es-register.php:819
412
  msgid "New Templates"
413
  msgstr "Nuevas Plantillas"
414
 
415
- #: ../classes/es-register.php:821
416
  msgid "View Templates"
417
  msgstr "Ver Plantillas"
418
 
419
- #: ../classes/es-register.php:822
420
  msgid "Search Templates"
421
  msgstr "Buscar Plantillas"
422
 
423
- #: ../classes/es-register.php:823
424
  msgid "No Templates found"
425
  msgstr "No se han encontrado Plantillas"
426
 
427
- #: ../classes/es-register.php:824
428
  msgid "No Templates found in Trash"
429
  msgstr "No se han encontrado Plantillas en la papelera"
430
 
431
- #: ../classes/es-register.php:827
432
  msgid "Thumbnail (For Visual Representation only)"
433
  msgstr "Miniatura (Para representación visual solo)"
434
 
435
- #: ../classes/es-register.php:828
436
  msgid "Set thumbnail"
437
  msgstr "Establecer miniatura"
438
 
439
- #: ../classes/es-register.php:865
440
  msgid "Template Type"
441
  msgstr "Tipo Plantilla"
442
 
443
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
444
  msgid "Thumbnail"
445
  msgstr "Pequeña"
446
 
447
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
448
  #: sentmail/sentmail-show.php:121
449
  msgid "Preview"
450
  msgstr "Vista previa"
451
 
452
- #: ../classes/es-register.php:943
453
  msgid "Select your Email Template Type"
454
  msgstr "Selecciona tu tipo de Plantilla de Correo"
455
 
456
- #: ../classes/es-register.php:945
457
  msgid "Newsletter"
458
  msgstr "Boletín informativo"
459
 
460
- #: ../classes/es-register.php:946
461
  msgid "Post Notification"
462
  msgstr "Notificación de nueva Entrada"
463
 
464
- #: ../classes/es-register.php:995
465
  msgid "Preview Template"
466
  msgstr "Previsualizar Plantilla"
467
 
468
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
469
- #: register.php:1030 ../classes/es-register.php:1038
470
  msgid "Available Keywords"
471
  msgstr "Campos disponibles"
472
 
473
- #: ../classes/es-register.php:1015
474
  #, php-format
475
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
476
  msgstr "<br/><br/>%s para Lista de Correo: {{NAME}}, {{EMAIL}}"
477
 
478
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
479
  msgid "Name"
480
  msgstr "Nombre"
481
 
482
- #: ../classes/es-register.php:1080
483
  msgid "Email *"
484
  msgstr "Email *"
485
 
486
- #: ../classes/es-register.php:1089 ../help/help.php:202
487
  msgid "Subscribe"
488
  msgstr "Suscribirse"
489
 
490
- #: ../classes/es-register.php:1193
491
  msgid "Widget Title"
492
  msgstr "Título Widget"
493
 
494
- #: ../classes/es-register.php:1197
495
  msgid "Short description about subscription form"
496
  msgstr "Descripción corta sobre el formulario de suscripción"
497
 
498
- #: ../classes/es-register.php:1201
499
  msgid "Display Name Field"
500
  msgstr "Mostrar el campo Nombre"
501
 
502
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
503
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
504
  msgid "YES"
505
  msgstr "SÍ"
506
 
507
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
508
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
509
  msgid "NO"
510
  msgstr "NO"
511
 
512
- #: ../classes/es-register.php:1208
513
  msgid "Subscriber Group"
514
  msgstr "Grupos de suscriptores"
515
 
516
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
517
  msgid "Unexpected url submit has been detected!"
518
  msgstr "¡Se ha detectado una URL enviada no esperada!"
519
 
@@ -929,8 +918,8 @@ msgstr ""
929
  msgid "add Rainmaker’s form in Email Subscribers"
930
  msgstr "añadir los formularios de Rainmaker a tu Email Subscriber"
931
 
932
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
933
- #: job/es-unsubscribe.php:61
934
  msgid ""
935
  "Oops.. We are getting some technical error. Please try again or contact "
936
  "admin."
@@ -938,7 +927,7 @@ msgstr ""
938
  "Vaya, estamos teniendo algún problema técnico. Por favor inténtalo otra vez "
939
  "o contacta con el administrador."
940
 
941
- #: ../job/es-optin.php:61
942
  msgid "This email address has already been confirmed."
943
  msgstr "Esta dirección de correo ya fue confirmada."
944
 
@@ -973,16 +962,12 @@ msgstr "Añadir Notificación"
973
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
974
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
975
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
976
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
977
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
978
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
979
  msgid "Help"
980
  msgstr "Ayuda"
981
 
982
- #: ../notification/notification-add.php:121
983
- msgid "Select Subscribers Group"
984
- msgstr "Selecciona grupo de suscriptores"
985
-
986
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
987
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
988
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1084,11 +1069,6 @@ msgstr "Editar Notificación"
1084
  msgid "Add New"
1085
  msgstr "Añadir"
1086
 
1087
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1088
- #: php:303
1089
- msgid "Update Subscribers Group"
1090
- msgstr "Modificar su GRUPO"
1091
-
1092
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1093
  msgid "Selected record deleted."
1094
  msgstr "Registro seleccionado borrado."
@@ -1232,8 +1212,8 @@ msgid "Delivery Report"
1232
  msgstr "Informe de envíos"
1233
 
1234
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1235
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1236
- #: export.php:66
1237
  msgid "Sno"
1238
  msgstr "Tipo"
1239
 
@@ -1315,8 +1295,8 @@ msgid "Total"
1315
  msgstr "Total"
1316
 
1317
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1318
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1319
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1320
  msgid "Action"
1321
  msgstr "Acción"
1322
 
@@ -1557,13 +1537,13 @@ msgstr "Enlace para confirmar correo [Verificación doble]"
1557
  msgid "It is a readonly field and you are advised not to modify it."
1558
  msgstr "Este es un campo de sólo lectura. Te aconsejo no lo modifiques."
1559
 
1560
- #: ../settings/settings-edit.php:205
1561
  msgid ""
1562
  "Text to display after an email address is successfully subscribed from "
1563
  "Double Opt-In (Confirmation) Email"
1564
  msgstr "MENSAJE: Cuenta correo confirmada"
1565
 
1566
- #: ../settings/settings-edit.php:206
1567
  msgid ""
1568
  "This text will be displayed once user clicks on email confirmation link from "
1569
  "the Double Opt In (confirmation) Email."
@@ -1572,11 +1552,11 @@ msgstr ""
1572
  "cuenta de correo y esta sea correcta.<br>Opción [Verificación doble] "
1573
  "activada."
1574
 
1575
- #: ../settings/settings-edit.php:213
1576
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1577
  msgstr "¿Enviar Correo de Bienvenida a los Nuevos Suscriptores tras Registro?"
1578
 
1579
- #: ../settings/settings-edit.php:214
1580
  msgid ""
1581
  "To send welcome email to subscriber after successful signup. This option "
1582
  "must be set to YES."
@@ -1587,11 +1567,11 @@ msgstr ""
1587
  "despues de completar satisfactoriamente la comprobación de válidez de la "
1588
  "cuenta de correo que ha proporcionado."
1589
 
1590
- #: ../settings/settings-edit.php:225
1591
  msgid "Subject for Welcome Email"
1592
  msgstr "ASUNTO: correo de Bienvenida"
1593
 
1594
- #: ../settings/settings-edit.php:226
1595
  msgid ""
1596
  "Subject for the subscriber welcome email. This will be sent whenever a "
1597
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1600,11 +1580,11 @@ msgstr ""
1600
  "Asunto del correo que se enviará a cada nuevo suscriptor una vez haya sido "
1601
  "dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
1602
 
1603
- #: ../settings/settings-edit.php:232
1604
  msgid "Email Content for Welcome Email"
1605
  msgstr "Contenido del correo para Correo de Bienvenida"
1606
 
1607
- #: ../settings/settings-edit.php:233
1608
  msgid ""
1609
  "Content for the subscriber welcome email whenever a user's email is either "
1610
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1615,11 +1595,11 @@ msgstr ""
1615
  "confirmación simple).<br />Palabras clave disponibles: {{NAME}}, {{GROUP}}, "
1616
  "{{LINK}}"
1617
 
1618
- #: ../settings/settings-edit.php:241
1619
  msgid "Unsubscribe Link"
1620
  msgstr "Enlace para cancelar la suscripción"
1621
 
1622
- #: ../settings/settings-edit.php:242
1623
  msgid ""
1624
  "This unsubscribe link is automatically added to all the emails that are sent "
1625
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1629,11 +1609,11 @@ msgstr ""
1629
  "electrónicos que se envían desde este plugin. Es un campo de sólo lectura y "
1630
  "se recomienda no modificarlo."
1631
 
1632
- #: ../settings/settings-edit.php:248
1633
  msgid "Unsubscribe Text in Email"
1634
  msgstr "TEXTO: enlace cancelación"
1635
 
1636
- #: ../settings/settings-edit.php:249
1637
  msgid ""
1638
  "The text for the unsubscribe link. This text is automatically added with "
1639
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1642,11 +1622,11 @@ msgstr ""
1642
  "automáticamente con un enlace de cancelación en los correos.<br />Palabras "
1643
  "clave disponibles: {{LINK}}"
1644
 
1645
- #: ../settings/settings-edit.php:255
1646
  msgid "Text to display after an email address is unsubscribed"
1647
  msgstr "MENSAJE: suscripción cancelada"
1648
 
1649
- #: ../settings/settings-edit.php:256
1650
  msgid ""
1651
  "This text will be displayed once user clicks on unsubscribe link from the "
1652
  "email."
@@ -1655,11 +1635,11 @@ msgstr ""
1655
  "pulsado en el enlace para darse de baja que figura en todos los correos que "
1656
  "le enviamos."
1657
 
1658
- #: ../settings/settings-edit.php:263
1659
  msgid "Error in the Subscribe / Confirmation Link"
1660
  msgstr "Error en la suscripción o en lace de confirmación"
1661
 
1662
- #: ../settings/settings-edit.php:264
1663
  msgid ""
1664
  "Default message to display if there is any issue while clicking on subscribe "
1665
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1668,11 +1648,11 @@ msgstr ""
1668
  "el enlace de suscripción / confirmación de los correos electrónicos de doble "
1669
  "verificación."
1670
 
1671
- #: ../settings/settings-edit.php:270
1672
  msgid "Error in the Unsubscribe Link"
1673
  msgstr "Error en el enlace de Cancelación de suscripción"
1674
 
1675
- #: ../settings/settings-edit.php:271
1676
  msgid ""
1677
  "Default message to display if there is any issue while clicking on "
1678
  "unsubscribe link from the emails."
@@ -1681,75 +1661,75 @@ msgstr ""
1681
  "el enlace de cancelación de suscripción que aparece en nuestros correos "
1682
  "electrónicos."
1683
 
1684
- #: ../settings/settings-edit.php:283
1685
  msgid "Select user roles who can access following menus. Only Admin can change this."
1686
  msgstr ""
1687
  "Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
1688
  "menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
1689
 
1690
- #: ../settings/settings-edit.php:289
1691
  msgid "Subscribers Menu"
1692
  msgstr "Menú Suscriptores"
1693
 
1694
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1695
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1696
- #: settings/settings-edit.php:341
1697
  msgid "Administrator Only"
1698
  msgstr "Sólo Administradores"
1699
 
1700
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1701
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1702
- #: settings/settings-edit.php:342
1703
  msgid "Administrator/Editor"
1704
  msgstr "Administrador/Editor"
1705
 
1706
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1707
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1708
- #: settings/settings-edit.php:343
1709
  msgid "Administrator/Editor/Author/Contributor"
1710
  msgstr "Administrador/Editor/Autor/Colaborador"
1711
 
1712
- #: ../settings/settings-edit.php:301
1713
  msgid "Templates Menu"
1714
  msgstr "Menú Plantillas"
1715
 
1716
- #: ../settings/settings-edit.php:313
1717
  msgid "Post Notifications Menu"
1718
  msgstr "Menú Notificar Entrada"
1719
 
1720
- #: ../settings/settings-edit.php:337
1721
  msgid "Reports Menu"
1722
  msgstr "Menú Informes"
1723
 
1724
- #: ../settings/settings-edit.php:354
1725
  msgid "Cron job URL"
1726
  msgstr "URL de las tareas CRON programadas"
1727
 
1728
- #: ../settings/settings-edit.php:355
1729
  msgid ""
1730
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1731
  "modify it."
1732
  msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
1733
 
1734
- #: ../settings/settings-edit.php:364
1735
  msgid "Email Count"
1736
  msgstr "Número Correos"
1737
 
1738
- #: ../settings/settings-edit.php:365
1739
  msgid "Number of emails that you want to trigger per hour."
1740
  msgstr "Número de correos que quieres que se envíen por hora."
1741
 
1742
- #: ../settings/settings-edit.php:370
1743
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1744
  msgstr ""
1745
  "(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
1746
  "hora para mayor seguridad)"
1747
 
1748
- #: ../settings/settings-edit.php:375
1749
  msgid "Cron Report"
1750
  msgstr "Informes de CRON"
1751
 
1752
- #: ../settings/settings-edit.php:376
1753
  msgid ""
1754
  "Email to admin whenever a cron URL is triggered from your server.<br "
1755
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1757,13 +1737,13 @@ msgstr ""
1757
  "Correo al administrador cuando una URL cron sea activada desde tu servidor."
1758
  "<br />Palabras clave disponibles: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1759
 
1760
- #: ../settings/settings-edit.php:386
1761
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1762
  msgstr ""
1763
  "¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
1764
  "automáticamente? ¿Y cómo se configura una tarea Cron?"
1765
 
1766
- #: ../settings/settings-edit.php:387
1767
  msgid ""
1768
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1769
  "schedule-cron-emails/?"
@@ -1775,7 +1755,7 @@ msgstr ""
1775
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
1776
  "CRON?</a>"
1777
 
1778
- #: ../settings/settings-edit.php:388
1779
  msgid ""
1780
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1781
  "schedule-cron-emails-in-cpanel/?"
@@ -1787,7 +1767,7 @@ msgstr ""
1787
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1788
  "tareas CRON desde cPanel</a>"
1789
 
1790
- #: ../settings/settings-edit.php:389
1791
  msgid ""
1792
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1793
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1799,7 +1779,7 @@ msgstr ""
1799
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1800
  "tareas CRON desde Plesk</a>"
1801
 
1802
- #: ../settings/settings-edit.php:390
1803
  msgid ""
1804
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1805
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1811,19 +1791,19 @@ msgstr ""
1811
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
1812
  "Hosting no soporta tareas de CRON?</a>"
1813
 
1814
- #: ../settings/settings-edit.php:505
1815
  msgid "Please enter sender of notifications from name."
1816
  msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
1817
 
1818
- #: ../settings/settings-edit.php:510
1819
  msgid "Please enter sender of notifications from email."
1820
  msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
1821
 
1822
- #: ../settings/settings-edit.php:568
1823
  msgid "Settings Saved."
1824
  msgstr "Configuración guardada."
1825
 
1826
- #: ../settings/settings-edit.php:571
1827
  msgid "Oops, unable to update."
1828
  msgstr "Vaya, no se ha podido actualizar."
1829
 
@@ -1857,14 +1837,14 @@ msgid "Invalid Email."
1857
  msgstr "Dirección de correo no válida."
1858
 
1859
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1860
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1861
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1862
  #: subscribers/view-subscriber-sync.php:89
1863
  msgid "Add New Subscriber"
1864
  msgstr "Añadir"
1865
 
1866
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1867
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1868
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1869
  #: subscribers/view-subscriber-sync.php:90
1870
  msgid "Import"
@@ -1877,7 +1857,7 @@ msgid "Export"
1877
  msgstr "Exportar"
1878
 
1879
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1880
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1881
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1882
  #: subscribers/view-subscriber-sync.php:143
1883
  msgid "Sync"
@@ -1970,63 +1950,63 @@ msgstr ""
1970
  msgid "Go back to Subscribers dashboard"
1971
  msgstr "Volver al escritorio de Subscribers"
1972
 
1973
- #: ../subscribers/view-subscriber-export.php:47
1974
  msgid "Export Email Addresses"
1975
  msgstr "Exportar Direcciones de Correo"
1976
 
1977
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1978
- #: export.php:67
1979
  msgid "Type of List to Export"
1980
  msgstr "Tipo de Lista a Exportar"
1981
 
1982
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1983
- #: export.php:68
1984
  msgid "Total Emails Count"
1985
  msgstr "Número Total de Suscriptores"
1986
 
1987
- #: ../subscribers/view-subscriber-export.php:74
1988
  msgid "1"
1989
  msgstr "1"
1990
 
1991
- #: ../subscribers/view-subscriber-export.php:75
1992
  msgid "All Subscribers"
1993
  msgstr "Todos los suscriptores"
1994
 
1995
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1996
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1997
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1998
  msgid "Click to Export in CSV"
1999
  msgstr "Clic para exportar fichero .CSV"
2000
 
2001
- #: ../subscribers/view-subscriber-export.php:80
2002
  msgid "2"
2003
  msgstr "2"
2004
 
2005
- #: ../subscribers/view-subscriber-export.php:81
2006
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
2007
  msgstr "Solo en activo (de verificación doble o sin verificación)"
2008
 
2009
- #: ../subscribers/view-subscriber-export.php:86
2010
  msgid "3"
2011
  msgstr "3"
2012
 
2013
- #: ../subscribers/view-subscriber-export.php:87
2014
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
2015
  msgstr "Solo inactivos (sin confirmar o dados de baja)"
2016
 
2017
- #: ../subscribers/view-subscriber-export.php:92
2018
  msgid "4"
2019
  msgstr "4"
2020
 
2021
- #: ../subscribers/view-subscriber-export.php:93
2022
  msgid "WordPress Registered Users"
2023
  msgstr "Usuarios registrados en WordPress"
2024
 
2025
- #: ../subscribers/view-subscriber-export.php:98
2026
  msgid "5"
2027
  msgstr "5"
2028
 
2029
- #: ../subscribers/view-subscriber-export.php:99
2030
  msgid "Commented Authors"
2031
  msgstr "Que han dejado comentarios"
2032
 
@@ -2166,6 +2146,10 @@ msgstr "Acciones en bloque"
2166
  msgid "Resend Confirmation"
2167
  msgstr "Reenviar Confirmación"
2168
 
 
 
 
 
2169
  #: ../subscribers/view-subscriber-show.php:304
2170
  msgid "Update Subscribers Status"
2171
  msgstr "Actualizar ESTADO Suscriptores"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:29 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Spanish (Spain)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
  #: ../classes/es-register.php:727
 
 
 
 
27
  msgid ""
28
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
29
+ "</b>"
30
  msgstr ""
31
 
32
+ #: ../classes/es-register.php:728
33
+ msgid "Here's how"
34
  msgstr ""
35
 
36
+ #: ../classes/es-register.php:728
37
+ msgid "Not interested. Dismiss this."
38
  msgstr ""
39
 
40
+ #: ../classes/es-register.php:900
41
  #, php-format
42
  msgid "%s for Post Notification: {{POSTTITLE}}"
43
  msgstr ""
44
 
45
+ #: ../classes/es-register.php:900
46
  msgid "Available Keyword"
47
  msgstr ""
48
 
49
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
50
  #, php-format
51
  msgid ""
52
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
54
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
55
  msgstr ""
56
 
57
+ #: ../classes/es-register.php:1002
58
  #, php-format
59
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
60
  msgstr ""
94
  msgid "What data Email Subscribers - Group Selector stores on your end?"
95
  msgstr ""
96
 
97
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
98
+ #: 132
99
+ msgid "Subscribers Group to send post notification to"
100
+ msgstr ""
101
+
102
  #: ../sentmail/sentmail-show.php:212
103
  msgid ""
104
  "<strong>Note:</strong> If you delete record for the emails with Status = "
106
  "deleted too and email will not be sent."
107
  msgstr ""
108
 
109
+ #: ../settings/settings-edit.php:566
110
  msgid "Please enter valid email count."
111
  msgstr ""
112
 
155
  msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
156
 
157
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
158
+ #: register.php:788
159
  msgid "Email Subscribers"
160
  msgstr "Email Subscribers"
161
 
165
  msgstr "Suscriptores"
166
 
167
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
168
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
169
  msgid "Templates"
170
  msgstr "Plantillas"
171
 
175
  msgstr "Notificar Entrada"
176
 
177
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
178
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
179
  msgid "Newsletters"
180
  msgstr "Boletín Informativo"
181
 
371
  msgid "Please try after some time"
372
  msgstr "Por favor, inténtalo transcurridos unos minutos"
373
 
374
+ #: ../classes/es-register.php:753
 
 
 
 
 
 
 
 
 
 
 
 
375
  msgid ""
376
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
377
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
384
  "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
385
  "Icegram!"
386
 
387
+ #: ../classes/es-register.php:767
388
  #, php-format
389
  msgid "Email Subscribers version: <strong>%s</strong>"
390
  msgstr "Email Subscribers versión: <strong>%s</strong>"
391
 
392
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
393
  msgid "Add new Template"
394
  msgstr "Añadir nueva Plantilla"
395
 
396
+ #: ../classes/es-register.php:780
397
  msgid "Edit Templates"
398
  msgstr "Editar Plantillas"
399
 
400
+ #: ../classes/es-register.php:781
401
  msgid "New Templates"
402
  msgstr "Nuevas Plantillas"
403
 
404
+ #: ../classes/es-register.php:783
405
  msgid "View Templates"
406
  msgstr "Ver Plantillas"
407
 
408
+ #: ../classes/es-register.php:784
409
  msgid "Search Templates"
410
  msgstr "Buscar Plantillas"
411
 
412
+ #: ../classes/es-register.php:785
413
  msgid "No Templates found"
414
  msgstr "No se han encontrado Plantillas"
415
 
416
+ #: ../classes/es-register.php:786
417
  msgid "No Templates found in Trash"
418
  msgstr "No se han encontrado Plantillas en la papelera"
419
 
420
+ #: ../classes/es-register.php:789
421
  msgid "Thumbnail (For Visual Representation only)"
422
  msgstr "Miniatura (Para representación visual solo)"
423
 
424
+ #: ../classes/es-register.php:790
425
  msgid "Set thumbnail"
426
  msgstr "Establecer miniatura"
427
 
428
+ #: ../classes/es-register.php:827
429
  msgid "Template Type"
430
  msgstr "Tipo Plantilla"
431
 
432
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
433
  msgid "Thumbnail"
434
  msgstr "Pequeña"
435
 
436
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
437
  #: sentmail/sentmail-show.php:121
438
  msgid "Preview"
439
  msgstr "Vista previa"
440
 
441
+ #: ../classes/es-register.php:907
442
  msgid "Select your Email Template Type"
443
  msgstr "Selecciona tu tipo de Plantilla de Correo"
444
 
445
+ #: ../classes/es-register.php:909
446
  msgid "Newsletter"
447
  msgstr "Boletín informativo"
448
 
449
+ #: ../classes/es-register.php:910
450
  msgid "Post Notification"
451
  msgstr "Notificación de nueva Entrada"
452
 
453
+ #: ../classes/es-register.php:959
454
  msgid "Preview Template"
455
  msgstr "Previsualizar Plantilla"
456
 
457
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
458
+ #: register.php:994 ../classes/es-register.php:1002
459
  msgid "Available Keywords"
460
  msgstr "Campos disponibles"
461
 
462
+ #: ../classes/es-register.php:979
463
  #, php-format
464
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
465
  msgstr "<br/><br/>%s para Lista de Correo: {{NAME}}, {{EMAIL}}"
466
 
467
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
468
  msgid "Name"
469
  msgstr "Nombre"
470
 
471
+ #: ../classes/es-register.php:1044
472
  msgid "Email *"
473
  msgstr "Email *"
474
 
475
+ #: ../classes/es-register.php:1053 ../help/help.php:202
476
  msgid "Subscribe"
477
  msgstr "Suscribirse"
478
 
479
+ #: ../classes/es-register.php:1157
480
  msgid "Widget Title"
481
  msgstr "Título Widget"
482
 
483
+ #: ../classes/es-register.php:1161
484
  msgid "Short description about subscription form"
485
  msgstr "Descripción corta sobre el formulario de suscripción"
486
 
487
+ #: ../classes/es-register.php:1165
488
  msgid "Display Name Field"
489
  msgstr "Mostrar el campo Nombre"
490
 
491
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
492
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
493
  msgid "YES"
494
  msgstr "SÍ"
495
 
496
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
497
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
498
  msgid "NO"
499
  msgstr "NO"
500
 
501
+ #: ../classes/es-register.php:1172
502
  msgid "Subscriber Group"
503
  msgstr "Grupos de suscriptores"
504
 
505
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
506
  msgid "Unexpected url submit has been detected!"
507
  msgstr "¡Se ha detectado una URL enviada no esperada!"
508
 
918
  msgid "add Rainmaker’s form in Email Subscribers"
919
  msgstr "añadir los formularios de Rainmaker a tu Email Subscriber"
920
 
921
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
922
+ #: job/es-unsubscribe.php:62
923
  msgid ""
924
  "Oops.. We are getting some technical error. Please try again or contact "
925
  "admin."
927
  "Vaya, estamos teniendo algún problema técnico. Por favor inténtalo otra vez "
928
  "o contacta con el administrador."
929
 
930
+ #: ../job/es-optin.php:62
931
  msgid "This email address has already been confirmed."
932
  msgstr "Esta dirección de correo ya fue confirmada."
933
 
962
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
963
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
964
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
965
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
966
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
967
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
968
  msgid "Help"
969
  msgstr "Ayuda"
970
 
 
 
 
 
971
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
972
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
973
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1069
  msgid "Add New"
1070
  msgstr "Añadir"
1071
 
 
 
 
 
 
1072
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1073
  msgid "Selected record deleted."
1074
  msgstr "Registro seleccionado borrado."
1212
  msgstr "Informe de envíos"
1213
 
1214
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1215
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1216
+ #: export.php:69
1217
  msgid "Sno"
1218
  msgstr "Tipo"
1219
 
1295
  msgstr "Total"
1296
 
1297
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1298
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1299
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1300
  msgid "Action"
1301
  msgstr "Acción"
1302
 
1537
  msgid "It is a readonly field and you are advised not to modify it."
1538
  msgstr "Este es un campo de sólo lectura. Te aconsejo no lo modifiques."
1539
 
1540
+ #: ../settings/settings-edit.php:206
1541
  msgid ""
1542
  "Text to display after an email address is successfully subscribed from "
1543
  "Double Opt-In (Confirmation) Email"
1544
  msgstr "MENSAJE: Cuenta correo confirmada"
1545
 
1546
+ #: ../settings/settings-edit.php:207
1547
  msgid ""
1548
  "This text will be displayed once user clicks on email confirmation link from "
1549
  "the Double Opt In (confirmation) Email."
1552
  "cuenta de correo y esta sea correcta.<br>Opción [Verificación doble] "
1553
  "activada."
1554
 
1555
+ #: ../settings/settings-edit.php:219
1556
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1557
  msgstr "¿Enviar Correo de Bienvenida a los Nuevos Suscriptores tras Registro?"
1558
 
1559
+ #: ../settings/settings-edit.php:220
1560
  msgid ""
1561
  "To send welcome email to subscriber after successful signup. This option "
1562
  "must be set to YES."
1567
  "despues de completar satisfactoriamente la comprobación de válidez de la "
1568
  "cuenta de correo que ha proporcionado."
1569
 
1570
+ #: ../settings/settings-edit.php:231
1571
  msgid "Subject for Welcome Email"
1572
  msgstr "ASUNTO: correo de Bienvenida"
1573
 
1574
+ #: ../settings/settings-edit.php:232
1575
  msgid ""
1576
  "Subject for the subscriber welcome email. This will be sent whenever a "
1577
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1580
  "Asunto del correo que se enviará a cada nuevo suscriptor una vez haya sido "
1581
  "dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
1582
 
1583
+ #: ../settings/settings-edit.php:238
1584
  msgid "Email Content for Welcome Email"
1585
  msgstr "Contenido del correo para Correo de Bienvenida"
1586
 
1587
+ #: ../settings/settings-edit.php:239
1588
  msgid ""
1589
  "Content for the subscriber welcome email whenever a user's email is either "
1590
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1595
  "confirmación simple).<br />Palabras clave disponibles: {{NAME}}, {{GROUP}}, "
1596
  "{{LINK}}"
1597
 
1598
+ #: ../settings/settings-edit.php:247
1599
  msgid "Unsubscribe Link"
1600
  msgstr "Enlace para cancelar la suscripción"
1601
 
1602
+ #: ../settings/settings-edit.php:248
1603
  msgid ""
1604
  "This unsubscribe link is automatically added to all the emails that are sent "
1605
  "from this plugin. It is a readonly field and you are advised not to modify "
1609
  "electrónicos que se envían desde este plugin. Es un campo de sólo lectura y "
1610
  "se recomienda no modificarlo."
1611
 
1612
+ #: ../settings/settings-edit.php:254
1613
  msgid "Unsubscribe Text in Email"
1614
  msgstr "TEXTO: enlace cancelación"
1615
 
1616
+ #: ../settings/settings-edit.php:255
1617
  msgid ""
1618
  "The text for the unsubscribe link. This text is automatically added with "
1619
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1622
  "automáticamente con un enlace de cancelación en los correos.<br />Palabras "
1623
  "clave disponibles: {{LINK}}"
1624
 
1625
+ #: ../settings/settings-edit.php:262
1626
  msgid "Text to display after an email address is unsubscribed"
1627
  msgstr "MENSAJE: suscripción cancelada"
1628
 
1629
+ #: ../settings/settings-edit.php:263
1630
  msgid ""
1631
  "This text will be displayed once user clicks on unsubscribe link from the "
1632
  "email."
1635
  "pulsado en el enlace para darse de baja que figura en todos los correos que "
1636
  "le enviamos."
1637
 
1638
+ #: ../settings/settings-edit.php:275
1639
  msgid "Error in the Subscribe / Confirmation Link"
1640
  msgstr "Error en la suscripción o en lace de confirmación"
1641
 
1642
+ #: ../settings/settings-edit.php:276
1643
  msgid ""
1644
  "Default message to display if there is any issue while clicking on subscribe "
1645
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1648
  "el enlace de suscripción / confirmación de los correos electrónicos de doble "
1649
  "verificación."
1650
 
1651
+ #: ../settings/settings-edit.php:282
1652
  msgid "Error in the Unsubscribe Link"
1653
  msgstr "Error en el enlace de Cancelación de suscripción"
1654
 
1655
+ #: ../settings/settings-edit.php:283
1656
  msgid ""
1657
  "Default message to display if there is any issue while clicking on "
1658
  "unsubscribe link from the emails."
1661
  "el enlace de cancelación de suscripción que aparece en nuestros correos "
1662
  "electrónicos."
1663
 
1664
+ #: ../settings/settings-edit.php:295
1665
  msgid "Select user roles who can access following menus. Only Admin can change this."
1666
  msgstr ""
1667
  "Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
1668
  "menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
1669
 
1670
+ #: ../settings/settings-edit.php:301
1671
  msgid "Subscribers Menu"
1672
  msgstr "Menú Suscriptores"
1673
 
1674
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1675
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1676
+ #: settings/settings-edit.php:353
1677
  msgid "Administrator Only"
1678
  msgstr "Sólo Administradores"
1679
 
1680
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1681
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1682
+ #: settings/settings-edit.php:354
1683
  msgid "Administrator/Editor"
1684
  msgstr "Administrador/Editor"
1685
 
1686
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1687
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1688
+ #: settings/settings-edit.php:355
1689
  msgid "Administrator/Editor/Author/Contributor"
1690
  msgstr "Administrador/Editor/Autor/Colaborador"
1691
 
1692
+ #: ../settings/settings-edit.php:313
1693
  msgid "Templates Menu"
1694
  msgstr "Menú Plantillas"
1695
 
1696
+ #: ../settings/settings-edit.php:325
1697
  msgid "Post Notifications Menu"
1698
  msgstr "Menú Notificar Entrada"
1699
 
1700
+ #: ../settings/settings-edit.php:349
1701
  msgid "Reports Menu"
1702
  msgstr "Menú Informes"
1703
 
1704
+ #: ../settings/settings-edit.php:366
1705
  msgid "Cron job URL"
1706
  msgstr "URL de las tareas CRON programadas"
1707
 
1708
+ #: ../settings/settings-edit.php:367
1709
  msgid ""
1710
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1711
  "modify it."
1712
  msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
1713
 
1714
+ #: ../settings/settings-edit.php:376
1715
  msgid "Email Count"
1716
  msgstr "Número Correos"
1717
 
1718
+ #: ../settings/settings-edit.php:377
1719
  msgid "Number of emails that you want to trigger per hour."
1720
  msgstr "Número de correos que quieres que se envíen por hora."
1721
 
1722
+ #: ../settings/settings-edit.php:382
1723
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1724
  msgstr ""
1725
  "(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
1726
  "hora para mayor seguridad)"
1727
 
1728
+ #: ../settings/settings-edit.php:387
1729
  msgid "Cron Report"
1730
  msgstr "Informes de CRON"
1731
 
1732
+ #: ../settings/settings-edit.php:388
1733
  msgid ""
1734
  "Email to admin whenever a cron URL is triggered from your server.<br "
1735
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1737
  "Correo al administrador cuando una URL cron sea activada desde tu servidor."
1738
  "<br />Palabras clave disponibles: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1739
 
1740
+ #: ../settings/settings-edit.php:398
1741
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1742
  msgstr ""
1743
  "¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
1744
  "automáticamente? ¿Y cómo se configura una tarea Cron?"
1745
 
1746
+ #: ../settings/settings-edit.php:399
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1749
  "schedule-cron-emails/?"
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
1756
  "CRON?</a>"
1757
 
1758
+ #: ../settings/settings-edit.php:400
1759
  msgid ""
1760
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1761
  "schedule-cron-emails-in-cpanel/?"
1767
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1768
  "tareas CRON desde cPanel</a>"
1769
 
1770
+ #: ../settings/settings-edit.php:401
1771
  msgid ""
1772
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1773
  "schedule-cron-emails-in-parallels-plesk/?"
1779
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1780
  "tareas CRON desde Plesk</a>"
1781
 
1782
+ #: ../settings/settings-edit.php:402
1783
  msgid ""
1784
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1785
  "if-hosting-doesnt-support-cron-jobs/?"
1791
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
1792
  "Hosting no soporta tareas de CRON?</a>"
1793
 
1794
+ #: ../settings/settings-edit.php:517
1795
  msgid "Please enter sender of notifications from name."
1796
  msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
1797
 
1798
+ #: ../settings/settings-edit.php:522
1799
  msgid "Please enter sender of notifications from email."
1800
  msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
1801
 
1802
+ #: ../settings/settings-edit.php:580
1803
  msgid "Settings Saved."
1804
  msgstr "Configuración guardada."
1805
 
1806
+ #: ../settings/settings-edit.php:583
1807
  msgid "Oops, unable to update."
1808
  msgstr "Vaya, no se ha podido actualizar."
1809
 
1837
  msgstr "Dirección de correo no válida."
1838
 
1839
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1840
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1841
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1842
  #: subscribers/view-subscriber-sync.php:89
1843
  msgid "Add New Subscriber"
1844
  msgstr "Añadir"
1845
 
1846
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1847
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1848
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1849
  #: subscribers/view-subscriber-sync.php:90
1850
  msgid "Import"
1857
  msgstr "Exportar"
1858
 
1859
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1860
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1861
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1862
  #: subscribers/view-subscriber-sync.php:143
1863
  msgid "Sync"
1950
  msgid "Go back to Subscribers dashboard"
1951
  msgstr "Volver al escritorio de Subscribers"
1952
 
1953
+ #: ../subscribers/view-subscriber-export.php:50
1954
  msgid "Export Email Addresses"
1955
  msgstr "Exportar Direcciones de Correo"
1956
 
1957
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1958
+ #: export.php:70
1959
  msgid "Type of List to Export"
1960
  msgstr "Tipo de Lista a Exportar"
1961
 
1962
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1963
+ #: export.php:71
1964
  msgid "Total Emails Count"
1965
  msgstr "Número Total de Suscriptores"
1966
 
1967
+ #: ../subscribers/view-subscriber-export.php:77
1968
  msgid "1"
1969
  msgstr "1"
1970
 
1971
+ #: ../subscribers/view-subscriber-export.php:78
1972
  msgid "All Subscribers"
1973
  msgstr "Todos los suscriptores"
1974
 
1975
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1976
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1977
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1978
  msgid "Click to Export in CSV"
1979
  msgstr "Clic para exportar fichero .CSV"
1980
 
1981
+ #: ../subscribers/view-subscriber-export.php:83
1982
  msgid "2"
1983
  msgstr "2"
1984
 
1985
+ #: ../subscribers/view-subscriber-export.php:84
1986
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1987
  msgstr "Solo en activo (de verificación doble o sin verificación)"
1988
 
1989
+ #: ../subscribers/view-subscriber-export.php:89
1990
  msgid "3"
1991
  msgstr "3"
1992
 
1993
+ #: ../subscribers/view-subscriber-export.php:90
1994
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1995
  msgstr "Solo inactivos (sin confirmar o dados de baja)"
1996
 
1997
+ #: ../subscribers/view-subscriber-export.php:95
1998
  msgid "4"
1999
  msgstr "4"
2000
 
2001
+ #: ../subscribers/view-subscriber-export.php:96
2002
  msgid "WordPress Registered Users"
2003
  msgstr "Usuarios registrados en WordPress"
2004
 
2005
+ #: ../subscribers/view-subscriber-export.php:101
2006
  msgid "5"
2007
  msgstr "5"
2008
 
2009
+ #: ../subscribers/view-subscriber-export.php:102
2010
  msgid "Commented Authors"
2011
  msgstr "Que han dejado comentarios"
2012
 
2146
  msgid "Resend Confirmation"
2147
  msgstr "Reenviar Confirmación"
2148
 
2149
+ #: ../subscribers/view-subscriber-show.php:303
2150
+ msgid "Update Subscribers Group"
2151
+ msgstr "Modificar su GRUPO"
2152
+
2153
  #: ../subscribers/view-subscriber-show.php:304
2154
  msgid "Update Subscribers Status"
2155
  msgstr "Actualizar ESTADO Suscriptores"
languages/email-subscribers-fr_FR.mo CHANGED
Binary file
languages/email-subscribers-fr_FR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:42 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: French (France)\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
@@ -23,7 +23,7 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
27
  msgid "Templates"
28
  msgstr ""
29
 
@@ -47,97 +47,83 @@ msgid ""
47
  "spam/junk folder."
48
  msgstr ""
49
 
50
- #: ../classes/es-register.php:726
51
- msgid ""
52
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
53
- "subscribers list?</b> Come check our Pro plan."
54
- msgstr ""
55
-
56
- #: ../classes/es-register.php:727
57
- msgid "Check Pro plan"
58
- msgstr ""
59
-
60
  #: ../classes/es-register.php:727
61
- msgid "Not interested."
62
- msgstr ""
63
-
64
- #: ../classes/es-register.php:765
65
  msgid ""
66
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
67
- "Checkbox' in the subscription form.</b>"
68
  msgstr ""
69
 
70
- #: ../classes/es-register.php:766
71
- msgid "Steps to enable"
72
  msgstr ""
73
 
74
- #: ../classes/es-register.php:766
75
- msgid "Ok, got it"
76
  msgstr ""
77
 
78
- #: ../classes/es-register.php:805
79
  #, php-format
80
  msgid "Email Subscribers version: <strong>%s</strong>"
81
  msgstr ""
82
 
83
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
84
  msgid "Add new Template"
85
  msgstr ""
86
 
87
- #: ../classes/es-register.php:818
88
  msgid "Edit Templates"
89
  msgstr ""
90
 
91
- #: ../classes/es-register.php:819
92
  msgid "New Templates"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:821
96
  msgid "View Templates"
97
  msgstr ""
98
 
99
- #: ../classes/es-register.php:822
100
  msgid "Search Templates"
101
  msgstr ""
102
 
103
- #: ../classes/es-register.php:823
104
  msgid "No Templates found"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:824
108
  msgid "No Templates found in Trash"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:827
112
  msgid "Thumbnail (For Visual Representation only)"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:828
116
  msgid "Set thumbnail"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:865
120
  msgid "Template Type"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:936
124
  #, php-format
125
  msgid "%s for Post Notification: {{POSTTITLE}}"
126
  msgstr ""
127
 
128
- #: ../classes/es-register.php:936
129
  msgid "Available Keyword"
130
  msgstr ""
131
 
132
- #: ../classes/es-register.php:943
133
  msgid "Select your Email Template Type"
134
  msgstr ""
135
 
136
- #: ../classes/es-register.php:995
137
  msgid "Preview Template"
138
  msgstr ""
139
 
140
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
141
  #, php-format
142
  msgid ""
143
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -145,17 +131,17 @@ msgid ""
145
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
146
  msgstr ""
147
 
148
- #: ../classes/es-register.php:1015
149
  #, php-format
150
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
151
  msgstr ""
152
 
153
- #: ../classes/es-register.php:1038
154
  #, php-format
155
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
156
  msgstr ""
157
 
158
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
159
  msgid "Unexpected url submit has been detected!"
160
  msgstr ""
161
 
@@ -267,6 +253,11 @@ msgstr ""
267
  msgid "Please select notification mail subject. Use templates menu to create new."
268
  msgstr ""
269
 
 
 
 
 
 
270
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
271
  #: 164
272
  msgid "(Use templates menu to create new)"
@@ -314,30 +305,30 @@ msgid ""
314
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
315
  msgstr ""
316
 
317
- #: ../settings/settings-edit.php:233
318
  msgid ""
319
  "Content for the subscriber welcome email whenever a user's email is either "
320
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
321
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
322
  msgstr ""
323
 
324
- #: ../settings/settings-edit.php:249
325
  msgid ""
326
  "The text for the unsubscribe link. This text is automatically added with "
327
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
328
  msgstr ""
329
 
330
- #: ../settings/settings-edit.php:301
331
  msgid "Templates Menu"
332
  msgstr ""
333
 
334
- #: ../settings/settings-edit.php:376
335
  msgid ""
336
  "Email to admin whenever a cron URL is triggered from your server.<br "
337
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
338
  msgstr ""
339
 
340
- #: ../settings/settings-edit.php:554
341
  msgid "Please enter valid email count."
342
  msgstr ""
343
 
@@ -426,7 +417,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
426
  msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
427
 
428
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
429
- #: register.php:826
430
  msgid "Email Subscribers"
431
  msgstr "Email Subscribers & Newsletters"
432
 
@@ -441,7 +432,7 @@ msgid "Post Notifications"
441
  msgstr "Notifications d'article"
442
 
443
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
444
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
445
  msgid "Newsletters"
446
  msgstr "Newsletters"
447
 
@@ -608,7 +599,7 @@ msgctxt "widget-page-enhanced-select"
608
  msgid "Please try after some time"
609
  msgstr "Veuillez réessayer plus tard"
610
 
611
- #: ../classes/es-register.php:791
612
  msgid ""
613
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
614
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -620,63 +611,63 @@ msgstr ""
620
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
621
  "</a>. Un grand merci d'Icegram d'avance!"
622
 
623
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
624
  msgid "Thumbnail"
625
  msgstr "Miniature"
626
 
627
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
628
  #: sentmail/sentmail-show.php:121
629
  msgid "Preview"
630
  msgstr "Aperçu"
631
 
632
- #: ../classes/es-register.php:945
633
  msgid "Newsletter"
634
  msgstr "Newsletters"
635
 
636
- #: ../classes/es-register.php:946
637
  msgid "Post Notification"
638
  msgstr "Notification d'article"
639
 
640
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
641
- #: register.php:1030 ../classes/es-register.php:1038
642
  msgid "Available Keywords"
643
  msgstr "Mots clés autorisés"
644
 
645
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
646
  msgid "Name"
647
  msgstr "Nom"
648
 
649
- #: ../classes/es-register.php:1080
650
  msgid "Email *"
651
  msgstr "E-mail *"
652
 
653
- #: ../classes/es-register.php:1089 ../help/help.php:202
654
  msgid "Subscribe"
655
  msgstr "S'abonner"
656
 
657
- #: ../classes/es-register.php:1193
658
  msgid "Widget Title"
659
  msgstr "Titre du widget"
660
 
661
- #: ../classes/es-register.php:1197
662
  msgid "Short description about subscription form"
663
  msgstr "Courte description de votre formulaire d'abonnement"
664
 
665
- #: ../classes/es-register.php:1201
666
  msgid "Display Name Field"
667
  msgstr "Afficher le champ Nom"
668
 
669
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
670
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
671
  msgid "YES"
672
  msgstr "OUI"
673
 
674
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
675
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
676
  msgid "NO"
677
  msgstr "NON"
678
 
679
- #: ../classes/es-register.php:1208
680
  msgid "Subscriber Group"
681
  msgstr "Groupe d'abonnés"
682
 
@@ -996,8 +987,8 @@ msgstr ""
996
  msgid "add Rainmaker’s form in Email Subscribers"
997
  msgstr "ajouter un formulaire Rainmaker dans Email Subscribers"
998
 
999
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
1000
- #: job/es-unsubscribe.php:61
1001
  msgid ""
1002
  "Oops.. We are getting some technical error. Please try again or contact "
1003
  "admin."
@@ -1005,7 +996,7 @@ msgstr ""
1005
  "Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
1006
  "l'administrateur du site."
1007
 
1008
- #: ../job/es-optin.php:61
1009
  msgid "This email address has already been confirmed."
1010
  msgstr "Cette adresse a déjà été confirmée."
1011
 
@@ -1034,16 +1025,12 @@ msgstr "Nouvelle notification"
1034
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1035
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1036
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1037
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1038
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1039
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
1040
  msgid "Help"
1041
  msgstr "Aide"
1042
 
1043
- #: ../notification/notification-add.php:121
1044
- msgid "Select Subscribers Group"
1045
- msgstr "Groupe d'abonnés"
1046
-
1047
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1048
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1049
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1140,11 +1127,6 @@ msgstr "Modifier la notification"
1140
  msgid "Add New"
1141
  msgstr "Ajouter"
1142
 
1143
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1144
- #: php:303
1145
- msgid "Update Subscribers Group"
1146
- msgstr "Mettre à jour le groupe"
1147
-
1148
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1149
  msgid "Selected record deleted."
1150
  msgstr "La sélection a été supprimée."
@@ -1285,8 +1267,8 @@ msgid "Delivery Report"
1285
  msgstr "Rapport d'envoi"
1286
 
1287
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1288
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1289
- #: export.php:66
1290
  msgid "Sno"
1291
  msgstr "n°"
1292
 
@@ -1352,8 +1334,8 @@ msgid "Total"
1352
  msgstr "Total"
1353
 
1354
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1355
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1356
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1357
  msgid "Action"
1358
  msgstr "Action"
1359
 
@@ -1558,13 +1540,13 @@ msgstr "Lien de confirmation"
1558
  msgid "It is a readonly field and you are advised not to modify it."
1559
  msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
1560
 
1561
- #: ../settings/settings-edit.php:205
1562
  msgid ""
1563
  "Text to display after an email address is successfully subscribed from "
1564
  "Double Opt-In (Confirmation) Email"
1565
  msgstr "Texte affiché après confirmation"
1566
 
1567
- #: ../settings/settings-edit.php:206
1568
  msgid ""
1569
  "This text will be displayed once user clicks on email confirmation link from "
1570
  "the Double Opt In (confirmation) Email."
@@ -1572,11 +1554,11 @@ msgstr ""
1572
  "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
1573
  "confirmation dans le courriel de confirmation."
1574
 
1575
- #: ../settings/settings-edit.php:213
1576
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1577
  msgstr "Envoyer un e-mail de bienvenue aux nouveaux abonnés après leur inscription?"
1578
 
1579
- #: ../settings/settings-edit.php:214
1580
  msgid ""
1581
  "To send welcome email to subscriber after successful signup. This option "
1582
  "must be set to YES."
@@ -1584,11 +1566,11 @@ msgstr ""
1584
  "Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
1585
  "option doit être sur OUI."
1586
 
1587
- #: ../settings/settings-edit.php:225
1588
  msgid "Subject for Welcome Email"
1589
  msgstr "Sujet de l'e-mail de bienvenue"
1590
 
1591
- #: ../settings/settings-edit.php:226
1592
  msgid ""
1593
  "Subject for the subscriber welcome email. This will be sent whenever a "
1594
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1598,15 +1580,15 @@ msgstr ""
1598
  "l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
1599
  "lorsqu'il s'inscrit (simple validation)."
1600
 
1601
- #: ../settings/settings-edit.php:232
1602
  msgid "Email Content for Welcome Email"
1603
  msgstr "Contenu de l'e-mail de bienvenue"
1604
 
1605
- #: ../settings/settings-edit.php:241
1606
  msgid "Unsubscribe Link"
1607
  msgstr "Lien de désabonnement"
1608
 
1609
- #: ../settings/settings-edit.php:242
1610
  msgid ""
1611
  "This unsubscribe link is automatically added to all the emails that are sent "
1612
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1615,15 +1597,15 @@ msgstr ""
1615
  "Ce lien de désabonnement est automatiquement ajouté dans les e-mails envoyés "
1616
  "par cette extension. C'est un champ non modifiable."
1617
 
1618
- #: ../settings/settings-edit.php:248
1619
  msgid "Unsubscribe Text in Email"
1620
  msgstr "Texte de désabonnement dans les courriels"
1621
 
1622
- #: ../settings/settings-edit.php:255
1623
  msgid "Text to display after an email address is unsubscribed"
1624
  msgstr "Texte à afficher lors d'un désabonnement"
1625
 
1626
- #: ../settings/settings-edit.php:256
1627
  msgid ""
1628
  "This text will be displayed once user clicks on unsubscribe link from the "
1629
  "email."
@@ -1631,11 +1613,11 @@ msgstr ""
1631
  "Ce teste est affiché lorsqu'un abonné clique sur le lien de désabonnement "
1632
  "dans un e-mail qu'il a reçu."
1633
 
1634
- #: ../settings/settings-edit.php:263
1635
  msgid "Error in the Subscribe / Confirmation Link"
1636
  msgstr "Erreur sur lien de confirmation"
1637
 
1638
- #: ../settings/settings-edit.php:264
1639
  msgid ""
1640
  "Default message to display if there is any issue while clicking on subscribe "
1641
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1643,83 +1625,83 @@ msgstr ""
1643
  "Message à afficher si une erreur se produit lors de la confirmation "
1644
  "d'abonnement."
1645
 
1646
- #: ../settings/settings-edit.php:270
1647
  msgid "Error in the Unsubscribe Link"
1648
  msgstr "Erreur sur le lien de désabonnement"
1649
 
1650
- #: ../settings/settings-edit.php:271
1651
  msgid ""
1652
  "Default message to display if there is any issue while clicking on "
1653
  "unsubscribe link from the emails."
1654
  msgstr "Message à afficher si une erreur se produit lors d'un désabonnement."
1655
 
1656
- #: ../settings/settings-edit.php:283
1657
  msgid "Select user roles who can access following menus. Only Admin can change this."
1658
  msgstr ""
1659
  "Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
1660
  "administrateurs peuvent changer cette option."
1661
 
1662
- #: ../settings/settings-edit.php:289
1663
  msgid "Subscribers Menu"
1664
  msgstr "Menu Abonnés"
1665
 
1666
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1667
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1668
- #: settings/settings-edit.php:341
1669
  msgid "Administrator Only"
1670
  msgstr "Que les administrateurs"
1671
 
1672
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1673
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1674
- #: settings/settings-edit.php:342
1675
  msgid "Administrator/Editor"
1676
  msgstr "Administrateur/Editeur"
1677
 
1678
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1679
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1680
- #: settings/settings-edit.php:343
1681
  msgid "Administrator/Editor/Author/Contributor"
1682
  msgstr "Administrateur/Editeur/Auteur/Contributeur"
1683
 
1684
- #: ../settings/settings-edit.php:313
1685
  msgid "Post Notifications Menu"
1686
  msgstr "Menu Notifications d'article"
1687
 
1688
- #: ../settings/settings-edit.php:337
1689
  msgid "Reports Menu"
1690
  msgstr "Menu Rapports"
1691
 
1692
- #: ../settings/settings-edit.php:354
1693
  msgid "Cron job URL"
1694
  msgstr "URL de la tâche CRON"
1695
 
1696
- #: ../settings/settings-edit.php:355
1697
  msgid ""
1698
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1699
  "modify it."
1700
  msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
1701
 
1702
- #: ../settings/settings-edit.php:364
1703
  msgid "Email Count"
1704
  msgstr "Nombre de courriels"
1705
 
1706
- #: ../settings/settings-edit.php:365
1707
  msgid "Number of emails that you want to trigger per hour."
1708
  msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
1709
 
1710
- #: ../settings/settings-edit.php:370
1711
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1712
  msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
1713
 
1714
- #: ../settings/settings-edit.php:375
1715
  msgid "Cron Report"
1716
  msgstr "Rapport de têche CRON"
1717
 
1718
- #: ../settings/settings-edit.php:386
1719
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1720
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1721
 
1722
- #: ../settings/settings-edit.php:387
1723
  msgid ""
1724
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1725
  "schedule-cron-emails/?"
@@ -1731,7 +1713,7 @@ msgstr ""
1731
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
1732
  "qu'une tâche Cron?</a>"
1733
 
1734
- #: ../settings/settings-edit.php:388
1735
  msgid ""
1736
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1737
  "schedule-cron-emails-in-cpanel/?"
@@ -1743,7 +1725,7 @@ msgstr ""
1743
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1744
  "une tâche Cron dans cPanel</a>"
1745
 
1746
- #: ../settings/settings-edit.php:389
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1749
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1755,7 +1737,7 @@ msgstr ""
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1756
  "une tâche Cron dans Plesk</a>"
1757
 
1758
- #: ../settings/settings-edit.php:390
1759
  msgid ""
1760
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1761
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1767,19 +1749,19 @@ msgstr ""
1767
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
1768
  "hébergeur ne gère pas les tâches Cron?</a>"
1769
 
1770
- #: ../settings/settings-edit.php:505
1771
  msgid "Please enter sender of notifications from name."
1772
  msgstr "Veuillez saisir le nom de l'expéditeur"
1773
 
1774
- #: ../settings/settings-edit.php:510
1775
  msgid "Please enter sender of notifications from email."
1776
  msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1777
 
1778
- #: ../settings/settings-edit.php:568
1779
  msgid "Settings Saved."
1780
  msgstr "Options enregistrées."
1781
 
1782
- #: ../settings/settings-edit.php:571
1783
  msgid "Oops, unable to update."
1784
  msgstr "Oups, impossible de mettre à jour."
1785
 
@@ -1813,14 +1795,14 @@ msgid "Invalid Email."
1813
  msgstr "E-mail non valide."
1814
 
1815
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1816
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1817
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1818
  #: subscribers/view-subscriber-sync.php:89
1819
  msgid "Add New Subscriber"
1820
  msgstr "Ajouter un abonné"
1821
 
1822
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1823
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1824
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1825
  #: subscribers/view-subscriber-sync.php:90
1826
  msgid "Import"
@@ -1833,7 +1815,7 @@ msgid "Export"
1833
  msgstr "Exporter"
1834
 
1835
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1836
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1837
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1838
  #: subscribers/view-subscriber-sync.php:143
1839
  msgid "Sync"
@@ -1914,63 +1896,63 @@ msgstr "Statut"
1914
  msgid "Update Subscriber's Group"
1915
  msgstr "Groupe"
1916
 
1917
- #: ../subscribers/view-subscriber-export.php:47
1918
  msgid "Export Email Addresses"
1919
  msgstr "Export des adresses e-mail"
1920
 
1921
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1922
- #: export.php:67
1923
  msgid "Type of List to Export"
1924
  msgstr "Type de liste à exporter"
1925
 
1926
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1927
- #: export.php:68
1928
  msgid "Total Emails Count"
1929
  msgstr "Nombre d'e-mails"
1930
 
1931
- #: ../subscribers/view-subscriber-export.php:74
1932
  msgid "1"
1933
  msgstr "1"
1934
 
1935
- #: ../subscribers/view-subscriber-export.php:75
1936
  msgid "All Subscribers"
1937
  msgstr "Tous les abonnés"
1938
 
1939
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1940
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1941
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1942
  msgid "Click to Export in CSV"
1943
  msgstr "Exporter en CSV"
1944
 
1945
- #: ../subscribers/view-subscriber-export.php:80
1946
  msgid "2"
1947
  msgstr "2"
1948
 
1949
- #: ../subscribers/view-subscriber-export.php:81
1950
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1951
  msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
1952
 
1953
- #: ../subscribers/view-subscriber-export.php:86
1954
  msgid "3"
1955
  msgstr "3"
1956
 
1957
- #: ../subscribers/view-subscriber-export.php:87
1958
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1959
  msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
1960
 
1961
- #: ../subscribers/view-subscriber-export.php:92
1962
  msgid "4"
1963
  msgstr "4"
1964
 
1965
- #: ../subscribers/view-subscriber-export.php:93
1966
  msgid "WordPress Registered Users"
1967
  msgstr "Utilisateurs du site"
1968
 
1969
- #: ../subscribers/view-subscriber-export.php:98
1970
  msgid "5"
1971
  msgstr "5"
1972
 
1973
- #: ../subscribers/view-subscriber-export.php:99
1974
  msgid "Commented Authors"
1975
  msgstr "Auteurs de commentaires"
1976
 
@@ -2097,6 +2079,10 @@ msgstr "Actions groupées"
2097
  msgid "Resend Confirmation"
2098
  msgstr "Renvoyer la confirmation"
2099
 
 
 
 
 
2100
  #: ../subscribers/view-subscriber-show.php:304
2101
  msgid "Update Subscribers Status"
2102
  msgstr "Mettre à jour le statut"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:32 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: French (France)\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
27
  msgid "Templates"
28
  msgstr ""
29
 
47
  "spam/junk folder."
48
  msgstr ""
49
 
 
 
 
 
 
 
 
 
 
 
50
  #: ../classes/es-register.php:727
 
 
 
 
51
  msgid ""
52
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
53
+ "</b>"
54
  msgstr ""
55
 
56
+ #: ../classes/es-register.php:728
57
+ msgid "Here's how"
58
  msgstr ""
59
 
60
+ #: ../classes/es-register.php:728
61
+ msgid "Not interested. Dismiss this."
62
  msgstr ""
63
 
64
+ #: ../classes/es-register.php:767
65
  #, php-format
66
  msgid "Email Subscribers version: <strong>%s</strong>"
67
  msgstr ""
68
 
69
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
70
  msgid "Add new Template"
71
  msgstr ""
72
 
73
+ #: ../classes/es-register.php:780
74
  msgid "Edit Templates"
75
  msgstr ""
76
 
77
+ #: ../classes/es-register.php:781
78
  msgid "New Templates"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:783
82
  msgid "View Templates"
83
  msgstr ""
84
 
85
+ #: ../classes/es-register.php:784
86
  msgid "Search Templates"
87
  msgstr ""
88
 
89
+ #: ../classes/es-register.php:785
90
  msgid "No Templates found"
91
  msgstr ""
92
 
93
+ #: ../classes/es-register.php:786
94
  msgid "No Templates found in Trash"
95
  msgstr ""
96
 
97
+ #: ../classes/es-register.php:789
98
  msgid "Thumbnail (For Visual Representation only)"
99
  msgstr ""
100
 
101
+ #: ../classes/es-register.php:790
102
  msgid "Set thumbnail"
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:827
106
  msgid "Template Type"
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:900
110
  #, php-format
111
  msgid "%s for Post Notification: {{POSTTITLE}}"
112
  msgstr ""
113
 
114
+ #: ../classes/es-register.php:900
115
  msgid "Available Keyword"
116
  msgstr ""
117
 
118
+ #: ../classes/es-register.php:907
119
  msgid "Select your Email Template Type"
120
  msgstr ""
121
 
122
+ #: ../classes/es-register.php:959
123
  msgid "Preview Template"
124
  msgstr ""
125
 
126
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
127
  #, php-format
128
  msgid ""
129
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
131
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
132
  msgstr ""
133
 
134
+ #: ../classes/es-register.php:979
135
  #, php-format
136
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
137
  msgstr ""
138
 
139
+ #: ../classes/es-register.php:1002
140
  #, php-format
141
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
142
  msgstr ""
143
 
144
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
145
  msgid "Unexpected url submit has been detected!"
146
  msgstr ""
147
 
253
  msgid "Please select notification mail subject. Use templates menu to create new."
254
  msgstr ""
255
 
256
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
257
+ #: 132
258
+ msgid "Subscribers Group to send post notification to"
259
+ msgstr ""
260
+
261
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
262
  #: 164
263
  msgid "(Use templates menu to create new)"
305
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
306
  msgstr ""
307
 
308
+ #: ../settings/settings-edit.php:239
309
  msgid ""
310
  "Content for the subscriber welcome email whenever a user's email is either "
311
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
312
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
313
  msgstr ""
314
 
315
+ #: ../settings/settings-edit.php:255
316
  msgid ""
317
  "The text for the unsubscribe link. This text is automatically added with "
318
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
319
  msgstr ""
320
 
321
+ #: ../settings/settings-edit.php:313
322
  msgid "Templates Menu"
323
  msgstr ""
324
 
325
+ #: ../settings/settings-edit.php:388
326
  msgid ""
327
  "Email to admin whenever a cron URL is triggered from your server.<br "
328
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
329
  msgstr ""
330
 
331
+ #: ../settings/settings-edit.php:566
332
  msgid "Please enter valid email count."
333
  msgstr ""
334
 
417
  msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
418
 
419
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
420
+ #: register.php:788
421
  msgid "Email Subscribers"
422
  msgstr "Email Subscribers & Newsletters"
423
 
432
  msgstr "Notifications d'article"
433
 
434
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
435
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
436
  msgid "Newsletters"
437
  msgstr "Newsletters"
438
 
599
  msgid "Please try after some time"
600
  msgstr "Veuillez réessayer plus tard"
601
 
602
+ #: ../classes/es-register.php:753
603
  msgid ""
604
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
605
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
611
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
612
  "</a>. Un grand merci d'Icegram d'avance!"
613
 
614
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
615
  msgid "Thumbnail"
616
  msgstr "Miniature"
617
 
618
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
619
  #: sentmail/sentmail-show.php:121
620
  msgid "Preview"
621
  msgstr "Aperçu"
622
 
623
+ #: ../classes/es-register.php:909
624
  msgid "Newsletter"
625
  msgstr "Newsletters"
626
 
627
+ #: ../classes/es-register.php:910
628
  msgid "Post Notification"
629
  msgstr "Notification d'article"
630
 
631
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
632
+ #: register.php:994 ../classes/es-register.php:1002
633
  msgid "Available Keywords"
634
  msgstr "Mots clés autorisés"
635
 
636
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
637
  msgid "Name"
638
  msgstr "Nom"
639
 
640
+ #: ../classes/es-register.php:1044
641
  msgid "Email *"
642
  msgstr "E-mail *"
643
 
644
+ #: ../classes/es-register.php:1053 ../help/help.php:202
645
  msgid "Subscribe"
646
  msgstr "S'abonner"
647
 
648
+ #: ../classes/es-register.php:1157
649
  msgid "Widget Title"
650
  msgstr "Titre du widget"
651
 
652
+ #: ../classes/es-register.php:1161
653
  msgid "Short description about subscription form"
654
  msgstr "Courte description de votre formulaire d'abonnement"
655
 
656
+ #: ../classes/es-register.php:1165
657
  msgid "Display Name Field"
658
  msgstr "Afficher le champ Nom"
659
 
660
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
661
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
662
  msgid "YES"
663
  msgstr "OUI"
664
 
665
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
666
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
667
  msgid "NO"
668
  msgstr "NON"
669
 
670
+ #: ../classes/es-register.php:1172
671
  msgid "Subscriber Group"
672
  msgstr "Groupe d'abonnés"
673
 
987
  msgid "add Rainmaker’s form in Email Subscribers"
988
  msgstr "ajouter un formulaire Rainmaker dans Email Subscribers"
989
 
990
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
991
+ #: job/es-unsubscribe.php:62
992
  msgid ""
993
  "Oops.. We are getting some technical error. Please try again or contact "
994
  "admin."
996
  "Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
997
  "l'administrateur du site."
998
 
999
+ #: ../job/es-optin.php:62
1000
  msgid "This email address has already been confirmed."
1001
  msgstr "Cette adresse a déjà été confirmée."
1002
 
1025
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1026
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1027
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1028
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
1029
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1030
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
1031
  msgid "Help"
1032
  msgstr "Aide"
1033
 
 
 
 
 
1034
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1035
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1036
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1127
  msgid "Add New"
1128
  msgstr "Ajouter"
1129
 
 
 
 
 
 
1130
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1131
  msgid "Selected record deleted."
1132
  msgstr "La sélection a été supprimée."
1267
  msgstr "Rapport d'envoi"
1268
 
1269
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1270
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1271
+ #: export.php:69
1272
  msgid "Sno"
1273
  msgstr "n°"
1274
 
1334
  msgstr "Total"
1335
 
1336
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1337
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1338
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1339
  msgid "Action"
1340
  msgstr "Action"
1341
 
1540
  msgid "It is a readonly field and you are advised not to modify it."
1541
  msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
1542
 
1543
+ #: ../settings/settings-edit.php:206
1544
  msgid ""
1545
  "Text to display after an email address is successfully subscribed from "
1546
  "Double Opt-In (Confirmation) Email"
1547
  msgstr "Texte affiché après confirmation"
1548
 
1549
+ #: ../settings/settings-edit.php:207
1550
  msgid ""
1551
  "This text will be displayed once user clicks on email confirmation link from "
1552
  "the Double Opt In (confirmation) Email."
1554
  "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
1555
  "confirmation dans le courriel de confirmation."
1556
 
1557
+ #: ../settings/settings-edit.php:219
1558
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1559
  msgstr "Envoyer un e-mail de bienvenue aux nouveaux abonnés après leur inscription?"
1560
 
1561
+ #: ../settings/settings-edit.php:220
1562
  msgid ""
1563
  "To send welcome email to subscriber after successful signup. This option "
1564
  "must be set to YES."
1566
  "Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
1567
  "option doit être sur OUI."
1568
 
1569
+ #: ../settings/settings-edit.php:231
1570
  msgid "Subject for Welcome Email"
1571
  msgstr "Sujet de l'e-mail de bienvenue"
1572
 
1573
+ #: ../settings/settings-edit.php:232
1574
  msgid ""
1575
  "Subject for the subscriber welcome email. This will be sent whenever a "
1576
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1580
  "l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
1581
  "lorsqu'il s'inscrit (simple validation)."
1582
 
1583
+ #: ../settings/settings-edit.php:238
1584
  msgid "Email Content for Welcome Email"
1585
  msgstr "Contenu de l'e-mail de bienvenue"
1586
 
1587
+ #: ../settings/settings-edit.php:247
1588
  msgid "Unsubscribe Link"
1589
  msgstr "Lien de désabonnement"
1590
 
1591
+ #: ../settings/settings-edit.php:248
1592
  msgid ""
1593
  "This unsubscribe link is automatically added to all the emails that are sent "
1594
  "from this plugin. It is a readonly field and you are advised not to modify "
1597
  "Ce lien de désabonnement est automatiquement ajouté dans les e-mails envoyés "
1598
  "par cette extension. C'est un champ non modifiable."
1599
 
1600
+ #: ../settings/settings-edit.php:254
1601
  msgid "Unsubscribe Text in Email"
1602
  msgstr "Texte de désabonnement dans les courriels"
1603
 
1604
+ #: ../settings/settings-edit.php:262
1605
  msgid "Text to display after an email address is unsubscribed"
1606
  msgstr "Texte à afficher lors d'un désabonnement"
1607
 
1608
+ #: ../settings/settings-edit.php:263
1609
  msgid ""
1610
  "This text will be displayed once user clicks on unsubscribe link from the "
1611
  "email."
1613
  "Ce teste est affiché lorsqu'un abonné clique sur le lien de désabonnement "
1614
  "dans un e-mail qu'il a reçu."
1615
 
1616
+ #: ../settings/settings-edit.php:275
1617
  msgid "Error in the Subscribe / Confirmation Link"
1618
  msgstr "Erreur sur lien de confirmation"
1619
 
1620
+ #: ../settings/settings-edit.php:276
1621
  msgid ""
1622
  "Default message to display if there is any issue while clicking on subscribe "
1623
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1625
  "Message à afficher si une erreur se produit lors de la confirmation "
1626
  "d'abonnement."
1627
 
1628
+ #: ../settings/settings-edit.php:282
1629
  msgid "Error in the Unsubscribe Link"
1630
  msgstr "Erreur sur le lien de désabonnement"
1631
 
1632
+ #: ../settings/settings-edit.php:283
1633
  msgid ""
1634
  "Default message to display if there is any issue while clicking on "
1635
  "unsubscribe link from the emails."
1636
  msgstr "Message à afficher si une erreur se produit lors d'un désabonnement."
1637
 
1638
+ #: ../settings/settings-edit.php:295
1639
  msgid "Select user roles who can access following menus. Only Admin can change this."
1640
  msgstr ""
1641
  "Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
1642
  "administrateurs peuvent changer cette option."
1643
 
1644
+ #: ../settings/settings-edit.php:301
1645
  msgid "Subscribers Menu"
1646
  msgstr "Menu Abonnés"
1647
 
1648
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1649
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1650
+ #: settings/settings-edit.php:353
1651
  msgid "Administrator Only"
1652
  msgstr "Que les administrateurs"
1653
 
1654
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1655
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1656
+ #: settings/settings-edit.php:354
1657
  msgid "Administrator/Editor"
1658
  msgstr "Administrateur/Editeur"
1659
 
1660
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1661
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1662
+ #: settings/settings-edit.php:355
1663
  msgid "Administrator/Editor/Author/Contributor"
1664
  msgstr "Administrateur/Editeur/Auteur/Contributeur"
1665
 
1666
+ #: ../settings/settings-edit.php:325
1667
  msgid "Post Notifications Menu"
1668
  msgstr "Menu Notifications d'article"
1669
 
1670
+ #: ../settings/settings-edit.php:349
1671
  msgid "Reports Menu"
1672
  msgstr "Menu Rapports"
1673
 
1674
+ #: ../settings/settings-edit.php:366
1675
  msgid "Cron job URL"
1676
  msgstr "URL de la tâche CRON"
1677
 
1678
+ #: ../settings/settings-edit.php:367
1679
  msgid ""
1680
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1681
  "modify it."
1682
  msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
1683
 
1684
+ #: ../settings/settings-edit.php:376
1685
  msgid "Email Count"
1686
  msgstr "Nombre de courriels"
1687
 
1688
+ #: ../settings/settings-edit.php:377
1689
  msgid "Number of emails that you want to trigger per hour."
1690
  msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
1691
 
1692
+ #: ../settings/settings-edit.php:382
1693
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1694
  msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
1695
 
1696
+ #: ../settings/settings-edit.php:387
1697
  msgid "Cron Report"
1698
  msgstr "Rapport de têche CRON"
1699
 
1700
+ #: ../settings/settings-edit.php:398
1701
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1702
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1703
 
1704
+ #: ../settings/settings-edit.php:399
1705
  msgid ""
1706
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1707
  "schedule-cron-emails/?"
1713
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
1714
  "qu'une tâche Cron?</a>"
1715
 
1716
+ #: ../settings/settings-edit.php:400
1717
  msgid ""
1718
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1719
  "schedule-cron-emails-in-cpanel/?"
1725
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1726
  "une tâche Cron dans cPanel</a>"
1727
 
1728
+ #: ../settings/settings-edit.php:401
1729
  msgid ""
1730
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1731
  "schedule-cron-emails-in-parallels-plesk/?"
1737
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1738
  "une tâche Cron dans Plesk</a>"
1739
 
1740
+ #: ../settings/settings-edit.php:402
1741
  msgid ""
1742
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1743
  "if-hosting-doesnt-support-cron-jobs/?"
1749
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
1750
  "hébergeur ne gère pas les tâches Cron?</a>"
1751
 
1752
+ #: ../settings/settings-edit.php:517
1753
  msgid "Please enter sender of notifications from name."
1754
  msgstr "Veuillez saisir le nom de l'expéditeur"
1755
 
1756
+ #: ../settings/settings-edit.php:522
1757
  msgid "Please enter sender of notifications from email."
1758
  msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1759
 
1760
+ #: ../settings/settings-edit.php:580
1761
  msgid "Settings Saved."
1762
  msgstr "Options enregistrées."
1763
 
1764
+ #: ../settings/settings-edit.php:583
1765
  msgid "Oops, unable to update."
1766
  msgstr "Oups, impossible de mettre à jour."
1767
 
1795
  msgstr "E-mail non valide."
1796
 
1797
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1798
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1799
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1800
  #: subscribers/view-subscriber-sync.php:89
1801
  msgid "Add New Subscriber"
1802
  msgstr "Ajouter un abonné"
1803
 
1804
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1805
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1806
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1807
  #: subscribers/view-subscriber-sync.php:90
1808
  msgid "Import"
1815
  msgstr "Exporter"
1816
 
1817
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1818
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1819
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1820
  #: subscribers/view-subscriber-sync.php:143
1821
  msgid "Sync"
1896
  msgid "Update Subscriber's Group"
1897
  msgstr "Groupe"
1898
 
1899
+ #: ../subscribers/view-subscriber-export.php:50
1900
  msgid "Export Email Addresses"
1901
  msgstr "Export des adresses e-mail"
1902
 
1903
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1904
+ #: export.php:70
1905
  msgid "Type of List to Export"
1906
  msgstr "Type de liste à exporter"
1907
 
1908
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1909
+ #: export.php:71
1910
  msgid "Total Emails Count"
1911
  msgstr "Nombre d'e-mails"
1912
 
1913
+ #: ../subscribers/view-subscriber-export.php:77
1914
  msgid "1"
1915
  msgstr "1"
1916
 
1917
+ #: ../subscribers/view-subscriber-export.php:78
1918
  msgid "All Subscribers"
1919
  msgstr "Tous les abonnés"
1920
 
1921
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1922
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1923
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1924
  msgid "Click to Export in CSV"
1925
  msgstr "Exporter en CSV"
1926
 
1927
+ #: ../subscribers/view-subscriber-export.php:83
1928
  msgid "2"
1929
  msgstr "2"
1930
 
1931
+ #: ../subscribers/view-subscriber-export.php:84
1932
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1933
  msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
1934
 
1935
+ #: ../subscribers/view-subscriber-export.php:89
1936
  msgid "3"
1937
  msgstr "3"
1938
 
1939
+ #: ../subscribers/view-subscriber-export.php:90
1940
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1941
  msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
1942
 
1943
+ #: ../subscribers/view-subscriber-export.php:95
1944
  msgid "4"
1945
  msgstr "4"
1946
 
1947
+ #: ../subscribers/view-subscriber-export.php:96
1948
  msgid "WordPress Registered Users"
1949
  msgstr "Utilisateurs du site"
1950
 
1951
+ #: ../subscribers/view-subscriber-export.php:101
1952
  msgid "5"
1953
  msgstr "5"
1954
 
1955
+ #: ../subscribers/view-subscriber-export.php:102
1956
  msgid "Commented Authors"
1957
  msgstr "Auteurs de commentaires"
1958
 
2079
  msgid "Resend Confirmation"
2080
  msgstr "Renvoyer la confirmation"
2081
 
2082
+ #: ../subscribers/view-subscriber-show.php:303
2083
+ msgid "Update Subscribers Group"
2084
+ msgstr "Mettre à jour le groupe"
2085
+
2086
  #: ../subscribers/view-subscriber-show.php:304
2087
  msgid "Update Subscribers Status"
2088
  msgstr "Mettre à jour le statut"
languages/email-subscribers-hu_HU.mo CHANGED
Binary file
languages/email-subscribers-hu_HU.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:45 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Hungarian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -23,7 +23,7 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
27
  msgid "Templates"
28
  msgstr ""
29
 
@@ -51,97 +51,83 @@ msgid ""
51
  "spam/junk folder."
52
  msgstr ""
53
 
54
- #: ../classes/es-register.php:726
55
- msgid ""
56
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
57
- "subscribers list?</b> Come check our Pro plan."
58
- msgstr ""
59
-
60
- #: ../classes/es-register.php:727
61
- msgid "Check Pro plan"
62
- msgstr ""
63
-
64
  #: ../classes/es-register.php:727
65
- msgid "Not interested."
66
- msgstr ""
67
-
68
- #: ../classes/es-register.php:765
69
  msgid ""
70
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
71
- "Checkbox' in the subscription form.</b>"
72
  msgstr ""
73
 
74
- #: ../classes/es-register.php:766
75
- msgid "Steps to enable"
76
  msgstr ""
77
 
78
- #: ../classes/es-register.php:766
79
- msgid "Ok, got it"
80
  msgstr ""
81
 
82
- #: ../classes/es-register.php:805
83
  #, php-format
84
  msgid "Email Subscribers version: <strong>%s</strong>"
85
  msgstr ""
86
 
87
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
88
  msgid "Add new Template"
89
  msgstr ""
90
 
91
- #: ../classes/es-register.php:818
92
  msgid "Edit Templates"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:819
96
  msgid "New Templates"
97
  msgstr ""
98
 
99
- #: ../classes/es-register.php:821
100
  msgid "View Templates"
101
  msgstr ""
102
 
103
- #: ../classes/es-register.php:822
104
  msgid "Search Templates"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:823
108
  msgid "No Templates found"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:824
112
  msgid "No Templates found in Trash"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:827
116
  msgid "Thumbnail (For Visual Representation only)"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:828
120
  msgid "Set thumbnail"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:865
124
  msgid "Template Type"
125
  msgstr ""
126
 
127
- #: ../classes/es-register.php:936
128
  #, php-format
129
  msgid "%s for Post Notification: {{POSTTITLE}}"
130
  msgstr ""
131
 
132
- #: ../classes/es-register.php:936
133
  msgid "Available Keyword"
134
  msgstr ""
135
 
136
- #: ../classes/es-register.php:943
137
  msgid "Select your Email Template Type"
138
  msgstr ""
139
 
140
- #: ../classes/es-register.php:995
141
  msgid "Preview Template"
142
  msgstr ""
143
 
144
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
145
  #, php-format
146
  msgid ""
147
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -149,17 +135,17 @@ msgid ""
149
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
150
  msgstr ""
151
 
152
- #: ../classes/es-register.php:1015
153
  #, php-format
154
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
155
  msgstr ""
156
 
157
- #: ../classes/es-register.php:1038
158
  #, php-format
159
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
160
  msgstr ""
161
 
162
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
163
  msgid "Unexpected url submit has been detected!"
164
  msgstr ""
165
 
@@ -509,6 +495,11 @@ msgstr ""
509
  msgid "Please select notification mail subject. Use templates menu to create new."
510
  msgstr ""
511
 
 
 
 
 
 
512
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
513
  #: 164
514
  msgid "(Use templates menu to create new)"
@@ -623,92 +614,92 @@ msgstr ""
623
  msgid "Double Opt-In Confirmation Link"
624
  msgstr ""
625
 
626
- #: ../settings/settings-edit.php:205
627
  msgid ""
628
  "Text to display after an email address is successfully subscribed from "
629
  "Double Opt-In (Confirmation) Email"
630
  msgstr ""
631
 
632
- #: ../settings/settings-edit.php:213
633
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
634
  msgstr ""
635
 
636
- #: ../settings/settings-edit.php:225
637
  msgid "Subject for Welcome Email"
638
  msgstr ""
639
 
640
- #: ../settings/settings-edit.php:226
641
  msgid ""
642
  "Subject for the subscriber welcome email. This will be sent whenever a "
643
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
644
  "Opt-In) successfully."
645
  msgstr ""
646
 
647
- #: ../settings/settings-edit.php:232
648
  msgid "Email Content for Welcome Email"
649
  msgstr ""
650
 
651
- #: ../settings/settings-edit.php:233
652
  msgid ""
653
  "Content for the subscriber welcome email whenever a user's email is either "
654
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
655
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
656
  msgstr ""
657
 
658
- #: ../settings/settings-edit.php:242
659
  msgid ""
660
  "This unsubscribe link is automatically added to all the emails that are sent "
661
  "from this plugin. It is a readonly field and you are advised not to modify "
662
  "it."
663
  msgstr ""
664
 
665
- #: ../settings/settings-edit.php:249
666
  msgid ""
667
  "The text for the unsubscribe link. This text is automatically added with "
668
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
669
  msgstr ""
670
 
671
- #: ../settings/settings-edit.php:256
672
  msgid ""
673
  "This text will be displayed once user clicks on unsubscribe link from the "
674
  "email."
675
  msgstr ""
676
 
677
- #: ../settings/settings-edit.php:263
678
  msgid "Error in the Subscribe / Confirmation Link"
679
  msgstr ""
680
 
681
- #: ../settings/settings-edit.php:264
682
  msgid ""
683
  "Default message to display if there is any issue while clicking on subscribe "
684
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
685
  msgstr ""
686
 
687
- #: ../settings/settings-edit.php:271
688
  msgid ""
689
  "Default message to display if there is any issue while clicking on "
690
  "unsubscribe link from the emails."
691
  msgstr ""
692
 
693
- #: ../settings/settings-edit.php:301
694
  msgid "Templates Menu"
695
  msgstr ""
696
 
697
- #: ../settings/settings-edit.php:370
698
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
699
  msgstr ""
700
 
701
- #: ../settings/settings-edit.php:375
702
  msgid "Cron Report"
703
  msgstr ""
704
 
705
- #: ../settings/settings-edit.php:376
706
  msgid ""
707
  "Email to admin whenever a cron URL is triggered from your server.<br "
708
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
709
  msgstr ""
710
 
711
- #: ../settings/settings-edit.php:387
712
  msgid ""
713
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
714
  "schedule-cron-emails/?"
@@ -716,7 +707,7 @@ msgid ""
716
  "Cron?</a>"
717
  msgstr ""
718
 
719
- #: ../settings/settings-edit.php:388
720
  msgid ""
721
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
722
  "schedule-cron-emails-in-cpanel/?"
@@ -724,7 +715,7 @@ msgid ""
724
  "job in cPanel</a>"
725
  msgstr ""
726
 
727
- #: ../settings/settings-edit.php:389
728
  msgid ""
729
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
730
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -732,7 +723,7 @@ msgid ""
732
  "job in Plesk</a>"
733
  msgstr ""
734
 
735
- #: ../settings/settings-edit.php:390
736
  msgid ""
737
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
738
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -740,7 +731,7 @@ msgid ""
740
  "does not support cron jobs?</a>"
741
  msgstr ""
742
 
743
- #: ../settings/settings-edit.php:554
744
  msgid "Please enter valid email count."
745
  msgstr ""
746
 
@@ -838,7 +829,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
838
  msgstr "<span style=\"color:#993399;\">Azonnal</span>"
839
 
840
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
841
- #: register.php:826
842
  msgid "Email Subscribers"
843
  msgstr "Email Subscribers"
844
 
@@ -853,7 +844,7 @@ msgid "Post Notifications"
853
  msgstr "Új bejegyzés értesítés"
854
 
855
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
856
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
857
  msgid "Newsletters"
858
  msgstr "Hírlevél"
859
 
@@ -1014,7 +1005,7 @@ msgctxt "widget-page-enhanced-select"
1014
  msgid "Please try after some time"
1015
  msgstr "Kérem próbálja meg később. "
1016
 
1017
- #: ../classes/es-register.php:791
1018
  msgid ""
1019
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1020
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -1026,63 +1017,63 @@ msgstr ""
1026
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1027
  "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
1028
 
1029
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
1030
  msgid "Thumbnail"
1031
  msgstr "Bélyegkép"
1032
 
1033
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
1034
  #: sentmail/sentmail-show.php:121
1035
  msgid "Preview"
1036
  msgstr "Előnézet"
1037
 
1038
- #: ../classes/es-register.php:945
1039
  msgid "Newsletter"
1040
  msgstr "Hírlevél"
1041
 
1042
- #: ../classes/es-register.php:946
1043
  msgid "Post Notification"
1044
  msgstr "Értesítés az új bejegyzésről"
1045
 
1046
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
1047
- #: register.php:1030 ../classes/es-register.php:1038
1048
  msgid "Available Keywords"
1049
  msgstr "Választható kulcsszavak"
1050
 
1051
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
1052
  msgid "Name"
1053
  msgstr "Név"
1054
 
1055
- #: ../classes/es-register.php:1080
1056
  msgid "Email *"
1057
  msgstr "E-mail*"
1058
 
1059
- #: ../classes/es-register.php:1089 ../help/help.php:202
1060
  msgid "Subscribe"
1061
  msgstr "Feliratkozás"
1062
 
1063
- #: ../classes/es-register.php:1193
1064
  msgid "Widget Title"
1065
  msgstr "Widget Cím"
1066
 
1067
- #: ../classes/es-register.php:1197
1068
  msgid "Short description about subscription form"
1069
  msgstr "A feliratkozó űrlap rövid leírása"
1070
 
1071
- #: ../classes/es-register.php:1201
1072
  msgid "Display Name Field"
1073
  msgstr "Feliratkozásnál kérjük a nevet is? "
1074
 
1075
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
1076
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
1077
  msgid "YES"
1078
  msgstr "Igen"
1079
 
1080
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
1081
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
1082
  msgid "NO"
1083
  msgstr "Nem"
1084
 
1085
- #: ../classes/es-register.php:1208
1086
  msgid "Subscriber Group"
1087
  msgstr "Előfizetői csoport"
1088
 
@@ -1131,8 +1122,8 @@ msgstr "CSS segítség"
1131
  msgid "Icegram"
1132
  msgstr "Icegram"
1133
 
1134
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
1135
- #: job/es-unsubscribe.php:61
1136
  msgid ""
1137
  "Oops.. We are getting some technical error. Please try again or contact "
1138
  "admin."
@@ -1140,7 +1131,7 @@ msgstr ""
1140
  "Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
1141
  "szakembert."
1142
 
1143
- #: ../job/es-optin.php:61
1144
  msgid "This email address has already been confirmed."
1145
  msgstr "Ilyen e-mail cím már szerepel."
1146
 
@@ -1169,16 +1160,12 @@ msgstr "Új bejegyzés-értesítő hozzáadása"
1169
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1170
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1171
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1172
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1173
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1174
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
1175
  msgid "Help"
1176
  msgstr "Segítség"
1177
 
1178
- #: ../notification/notification-add.php:121
1179
- msgid "Select Subscribers Group"
1180
- msgstr "Válaszd ki az előfizetői csoportot"
1181
-
1182
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1183
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1184
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1275,11 +1262,6 @@ msgstr "Új bejegyzés értesítés szerkesztése"
1275
  msgid "Add New"
1276
  msgstr "Új hozzáadása"
1277
 
1278
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1279
- #: php:303
1280
- msgid "Update Subscribers Group"
1281
- msgstr "Előfizetői csoport frissítése"
1282
-
1283
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1284
  msgid "Selected record deleted."
1285
  msgstr "Sikeresen törölve"
@@ -1416,8 +1398,8 @@ msgid "Delivery Report"
1416
  msgstr "Kézbesítési jelentés"
1417
 
1418
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1419
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1420
- #: export.php:66
1421
  msgid "Sno"
1422
  msgstr "Sno"
1423
 
@@ -1483,8 +1465,8 @@ msgid "Total"
1483
  msgstr "Teljes"
1484
 
1485
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1486
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1487
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1488
  msgid "Action"
1489
  msgstr "Action"
1490
 
@@ -1613,7 +1595,7 @@ msgstr "Az elküldött levelek értesítőlevelének tartalma"
1613
  msgid "It is a readonly field and you are advised not to modify it."
1614
  msgstr "Csak olvasható mező"
1615
 
1616
- #: ../settings/settings-edit.php:206
1617
  msgid ""
1618
  "This text will be displayed once user clicks on email confirmation link from "
1619
  "the Double Opt In (confirmation) Email."
@@ -1621,99 +1603,99 @@ msgstr ""
1621
  "Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
1622
  "linkre kattint"
1623
 
1624
- #: ../settings/settings-edit.php:214
1625
  msgid ""
1626
  "To send welcome email to subscriber after successful signup. This option "
1627
  "must be set to YES."
1628
  msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
1629
 
1630
- #: ../settings/settings-edit.php:241
1631
  msgid "Unsubscribe Link"
1632
  msgstr "Leiratkozó link"
1633
 
1634
- #: ../settings/settings-edit.php:248
1635
  msgid "Unsubscribe Text in Email"
1636
  msgstr "A leiratkozó link szövete"
1637
 
1638
- #: ../settings/settings-edit.php:255
1639
  msgid "Text to display after an email address is unsubscribed"
1640
  msgstr "A leiratkozás után megjelenő szöveg."
1641
 
1642
- #: ../settings/settings-edit.php:270
1643
  msgid "Error in the Unsubscribe Link"
1644
  msgstr "A leriratkozó link hibás."
1645
 
1646
- #: ../settings/settings-edit.php:283
1647
  msgid "Select user roles who can access following menus. Only Admin can change this."
1648
  msgstr ""
1649
  "Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
1650
  "menük kezelésére."
1651
 
1652
- #: ../settings/settings-edit.php:289
1653
  msgid "Subscribers Menu"
1654
  msgstr "Előfizetők"
1655
 
1656
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1657
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1658
- #: settings/settings-edit.php:341
1659
  msgid "Administrator Only"
1660
  msgstr "Csak adminisztrátor"
1661
 
1662
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1663
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1664
- #: settings/settings-edit.php:342
1665
  msgid "Administrator/Editor"
1666
  msgstr "Adminisztrátor/Szerkesztő"
1667
 
1668
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1669
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1670
- #: settings/settings-edit.php:343
1671
  msgid "Administrator/Editor/Author/Contributor"
1672
  msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1673
 
1674
- #: ../settings/settings-edit.php:313
1675
  msgid "Post Notifications Menu"
1676
  msgstr "Új bejegyzésről értesítés"
1677
 
1678
- #: ../settings/settings-edit.php:337
1679
  msgid "Reports Menu"
1680
  msgstr "Jelentések"
1681
 
1682
- #: ../settings/settings-edit.php:354
1683
  msgid "Cron job URL"
1684
  msgstr "Időzítés URL-je"
1685
 
1686
- #: ../settings/settings-edit.php:355
1687
  msgid ""
1688
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1689
  "modify it."
1690
  msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1691
 
1692
- #: ../settings/settings-edit.php:364
1693
  msgid "Email Count"
1694
  msgstr "E-mail számláló."
1695
 
1696
- #: ../settings/settings-edit.php:365
1697
  msgid "Number of emails that you want to trigger per hour."
1698
  msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
1699
 
1700
- #: ../settings/settings-edit.php:386
1701
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1702
  msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1703
 
1704
- #: ../settings/settings-edit.php:505
1705
  msgid "Please enter sender of notifications from name."
1706
  msgstr "Az értesítőlevél feladójának neve"
1707
 
1708
- #: ../settings/settings-edit.php:510
1709
  msgid "Please enter sender of notifications from email."
1710
  msgstr "Az értesítőlevél levél feladójának e-mail címe"
1711
 
1712
- #: ../settings/settings-edit.php:568
1713
  msgid "Settings Saved."
1714
  msgstr "Sikeres mentés"
1715
 
1716
- #: ../settings/settings-edit.php:571
1717
  msgid "Oops, unable to update."
1718
  msgstr "Nem sikerült menteni. "
1719
 
@@ -1747,14 +1729,14 @@ msgid "Invalid Email."
1747
  msgstr "Hibás e-mail cím"
1748
 
1749
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1750
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1751
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1752
  #: subscribers/view-subscriber-sync.php:89
1753
  msgid "Add New Subscriber"
1754
  msgstr "Új előfizető hozzáadása"
1755
 
1756
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1757
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1758
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1759
  #: subscribers/view-subscriber-sync.php:90
1760
  msgid "Import"
@@ -1767,7 +1749,7 @@ msgid "Export"
1767
  msgstr "Exportálás"
1768
 
1769
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1770
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1771
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1772
  #: subscribers/view-subscriber-sync.php:143
1773
  msgid "Sync"
@@ -1848,65 +1830,65 @@ msgstr "Előfizető státuszának mentése"
1848
  msgid "Update Subscriber's Group"
1849
  msgstr "Az előfizetői csoport mentése"
1850
 
1851
- #: ../subscribers/view-subscriber-export.php:47
1852
  msgid "Export Email Addresses"
1853
  msgstr "E-mail címek exportálása"
1854
 
1855
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1856
- #: export.php:67
1857
  msgid "Type of List to Export"
1858
  msgstr "Milyen típusú fájlba exportáljunk? "
1859
 
1860
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1861
- #: export.php:68
1862
  msgid "Total Emails Count"
1863
  msgstr "Összes e-mail"
1864
 
1865
- #: ../subscribers/view-subscriber-export.php:74
1866
  msgid "1"
1867
  msgstr "1"
1868
 
1869
- #: ../subscribers/view-subscriber-export.php:75
1870
  msgid "All Subscribers"
1871
  msgstr "Minden előfizető"
1872
 
1873
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1874
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1875
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1876
  msgid "Click to Export in CSV"
1877
  msgstr "CSV fájl exportálása"
1878
 
1879
- #: ../subscribers/view-subscriber-export.php:80
1880
  msgid "2"
1881
  msgstr "2"
1882
 
1883
- #: ../subscribers/view-subscriber-export.php:81
1884
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1885
  msgstr "Aktív előfizető, ahol a stáusz: visszagazolt vagy nincs double opt-in"
1886
 
1887
- #: ../subscribers/view-subscriber-export.php:86
1888
  msgid "3"
1889
  msgstr "3"
1890
 
1891
- #: ../subscribers/view-subscriber-export.php:87
1892
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1893
  msgstr ""
1894
  "Nem aktív előfizetők, ahol a státusz nem visszaigazolt, vagy pedig "
1895
  "leiratkozott. "
1896
 
1897
- #: ../subscribers/view-subscriber-export.php:92
1898
  msgid "4"
1899
  msgstr "4"
1900
 
1901
- #: ../subscribers/view-subscriber-export.php:93
1902
  msgid "WordPress Registered Users"
1903
  msgstr "Regisztrált felhasználó"
1904
 
1905
- #: ../subscribers/view-subscriber-export.php:98
1906
  msgid "5"
1907
  msgstr "5"
1908
 
1909
- #: ../subscribers/view-subscriber-export.php:99
1910
  msgid "Commented Authors"
1911
  msgstr "Hozzászóló felhasználó"
1912
 
@@ -2033,6 +2015,10 @@ msgstr "Tömeges műveletek"
2033
  msgid "Resend Confirmation"
2034
  msgstr "A visszaigazoló levél újbóli kiküldése"
2035
 
 
 
 
 
2036
  #: ../subscribers/view-subscriber-show.php:304
2037
  msgid "Update Subscribers Status"
2038
  msgstr "Frissítettük a feliratkozók státuszát"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:35 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Hungarian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
27
  msgid "Templates"
28
  msgstr ""
29
 
51
  "spam/junk folder."
52
  msgstr ""
53
 
 
 
 
 
 
 
 
 
 
 
54
  #: ../classes/es-register.php:727
 
 
 
 
55
  msgid ""
56
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
57
+ "</b>"
58
  msgstr ""
59
 
60
+ #: ../classes/es-register.php:728
61
+ msgid "Here's how"
62
  msgstr ""
63
 
64
+ #: ../classes/es-register.php:728
65
+ msgid "Not interested. Dismiss this."
66
  msgstr ""
67
 
68
+ #: ../classes/es-register.php:767
69
  #, php-format
70
  msgid "Email Subscribers version: <strong>%s</strong>"
71
  msgstr ""
72
 
73
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
74
  msgid "Add new Template"
75
  msgstr ""
76
 
77
+ #: ../classes/es-register.php:780
78
  msgid "Edit Templates"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:781
82
  msgid "New Templates"
83
  msgstr ""
84
 
85
+ #: ../classes/es-register.php:783
86
  msgid "View Templates"
87
  msgstr ""
88
 
89
+ #: ../classes/es-register.php:784
90
  msgid "Search Templates"
91
  msgstr ""
92
 
93
+ #: ../classes/es-register.php:785
94
  msgid "No Templates found"
95
  msgstr ""
96
 
97
+ #: ../classes/es-register.php:786
98
  msgid "No Templates found in Trash"
99
  msgstr ""
100
 
101
+ #: ../classes/es-register.php:789
102
  msgid "Thumbnail (For Visual Representation only)"
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:790
106
  msgid "Set thumbnail"
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:827
110
  msgid "Template Type"
111
  msgstr ""
112
 
113
+ #: ../classes/es-register.php:900
114
  #, php-format
115
  msgid "%s for Post Notification: {{POSTTITLE}}"
116
  msgstr ""
117
 
118
+ #: ../classes/es-register.php:900
119
  msgid "Available Keyword"
120
  msgstr ""
121
 
122
+ #: ../classes/es-register.php:907
123
  msgid "Select your Email Template Type"
124
  msgstr ""
125
 
126
+ #: ../classes/es-register.php:959
127
  msgid "Preview Template"
128
  msgstr ""
129
 
130
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
131
  #, php-format
132
  msgid ""
133
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
135
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
136
  msgstr ""
137
 
138
+ #: ../classes/es-register.php:979
139
  #, php-format
140
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
141
  msgstr ""
142
 
143
+ #: ../classes/es-register.php:1002
144
  #, php-format
145
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
146
  msgstr ""
147
 
148
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
149
  msgid "Unexpected url submit has been detected!"
150
  msgstr ""
151
 
495
  msgid "Please select notification mail subject. Use templates menu to create new."
496
  msgstr ""
497
 
498
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
499
+ #: 132
500
+ msgid "Subscribers Group to send post notification to"
501
+ msgstr ""
502
+
503
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
504
  #: 164
505
  msgid "(Use templates menu to create new)"
614
  msgid "Double Opt-In Confirmation Link"
615
  msgstr ""
616
 
617
+ #: ../settings/settings-edit.php:206
618
  msgid ""
619
  "Text to display after an email address is successfully subscribed from "
620
  "Double Opt-In (Confirmation) Email"
621
  msgstr ""
622
 
623
+ #: ../settings/settings-edit.php:219
624
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
625
  msgstr ""
626
 
627
+ #: ../settings/settings-edit.php:231
628
  msgid "Subject for Welcome Email"
629
  msgstr ""
630
 
631
+ #: ../settings/settings-edit.php:232
632
  msgid ""
633
  "Subject for the subscriber welcome email. This will be sent whenever a "
634
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
635
  "Opt-In) successfully."
636
  msgstr ""
637
 
638
+ #: ../settings/settings-edit.php:238
639
  msgid "Email Content for Welcome Email"
640
  msgstr ""
641
 
642
+ #: ../settings/settings-edit.php:239
643
  msgid ""
644
  "Content for the subscriber welcome email whenever a user's email is either "
645
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
646
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
647
  msgstr ""
648
 
649
+ #: ../settings/settings-edit.php:248
650
  msgid ""
651
  "This unsubscribe link is automatically added to all the emails that are sent "
652
  "from this plugin. It is a readonly field and you are advised not to modify "
653
  "it."
654
  msgstr ""
655
 
656
+ #: ../settings/settings-edit.php:255
657
  msgid ""
658
  "The text for the unsubscribe link. This text is automatically added with "
659
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
660
  msgstr ""
661
 
662
+ #: ../settings/settings-edit.php:263
663
  msgid ""
664
  "This text will be displayed once user clicks on unsubscribe link from the "
665
  "email."
666
  msgstr ""
667
 
668
+ #: ../settings/settings-edit.php:275
669
  msgid "Error in the Subscribe / Confirmation Link"
670
  msgstr ""
671
 
672
+ #: ../settings/settings-edit.php:276
673
  msgid ""
674
  "Default message to display if there is any issue while clicking on subscribe "
675
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
676
  msgstr ""
677
 
678
+ #: ../settings/settings-edit.php:283
679
  msgid ""
680
  "Default message to display if there is any issue while clicking on "
681
  "unsubscribe link from the emails."
682
  msgstr ""
683
 
684
+ #: ../settings/settings-edit.php:313
685
  msgid "Templates Menu"
686
  msgstr ""
687
 
688
+ #: ../settings/settings-edit.php:382
689
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
690
  msgstr ""
691
 
692
+ #: ../settings/settings-edit.php:387
693
  msgid "Cron Report"
694
  msgstr ""
695
 
696
+ #: ../settings/settings-edit.php:388
697
  msgid ""
698
  "Email to admin whenever a cron URL is triggered from your server.<br "
699
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
700
  msgstr ""
701
 
702
+ #: ../settings/settings-edit.php:399
703
  msgid ""
704
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
705
  "schedule-cron-emails/?"
707
  "Cron?</a>"
708
  msgstr ""
709
 
710
+ #: ../settings/settings-edit.php:400
711
  msgid ""
712
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
713
  "schedule-cron-emails-in-cpanel/?"
715
  "job in cPanel</a>"
716
  msgstr ""
717
 
718
+ #: ../settings/settings-edit.php:401
719
  msgid ""
720
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
721
  "schedule-cron-emails-in-parallels-plesk/?"
723
  "job in Plesk</a>"
724
  msgstr ""
725
 
726
+ #: ../settings/settings-edit.php:402
727
  msgid ""
728
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
729
  "if-hosting-doesnt-support-cron-jobs/?"
731
  "does not support cron jobs?</a>"
732
  msgstr ""
733
 
734
+ #: ../settings/settings-edit.php:566
735
  msgid "Please enter valid email count."
736
  msgstr ""
737
 
829
  msgstr "<span style=\"color:#993399;\">Azonnal</span>"
830
 
831
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
832
+ #: register.php:788
833
  msgid "Email Subscribers"
834
  msgstr "Email Subscribers"
835
 
844
  msgstr "Új bejegyzés értesítés"
845
 
846
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
847
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
848
  msgid "Newsletters"
849
  msgstr "Hírlevél"
850
 
1005
  msgid "Please try after some time"
1006
  msgstr "Kérem próbálja meg később. "
1007
 
1008
+ #: ../classes/es-register.php:753
1009
  msgid ""
1010
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1011
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1017
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1018
  "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
1019
 
1020
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
1021
  msgid "Thumbnail"
1022
  msgstr "Bélyegkép"
1023
 
1024
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
1025
  #: sentmail/sentmail-show.php:121
1026
  msgid "Preview"
1027
  msgstr "Előnézet"
1028
 
1029
+ #: ../classes/es-register.php:909
1030
  msgid "Newsletter"
1031
  msgstr "Hírlevél"
1032
 
1033
+ #: ../classes/es-register.php:910
1034
  msgid "Post Notification"
1035
  msgstr "Értesítés az új bejegyzésről"
1036
 
1037
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
1038
+ #: register.php:994 ../classes/es-register.php:1002
1039
  msgid "Available Keywords"
1040
  msgstr "Választható kulcsszavak"
1041
 
1042
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
1043
  msgid "Name"
1044
  msgstr "Név"
1045
 
1046
+ #: ../classes/es-register.php:1044
1047
  msgid "Email *"
1048
  msgstr "E-mail*"
1049
 
1050
+ #: ../classes/es-register.php:1053 ../help/help.php:202
1051
  msgid "Subscribe"
1052
  msgstr "Feliratkozás"
1053
 
1054
+ #: ../classes/es-register.php:1157
1055
  msgid "Widget Title"
1056
  msgstr "Widget Cím"
1057
 
1058
+ #: ../classes/es-register.php:1161
1059
  msgid "Short description about subscription form"
1060
  msgstr "A feliratkozó űrlap rövid leírása"
1061
 
1062
+ #: ../classes/es-register.php:1165
1063
  msgid "Display Name Field"
1064
  msgstr "Feliratkozásnál kérjük a nevet is? "
1065
 
1066
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
1067
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
1068
  msgid "YES"
1069
  msgstr "Igen"
1070
 
1071
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
1072
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
1073
  msgid "NO"
1074
  msgstr "Nem"
1075
 
1076
+ #: ../classes/es-register.php:1172
1077
  msgid "Subscriber Group"
1078
  msgstr "Előfizetői csoport"
1079
 
1122
  msgid "Icegram"
1123
  msgstr "Icegram"
1124
 
1125
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
1126
+ #: job/es-unsubscribe.php:62
1127
  msgid ""
1128
  "Oops.. We are getting some technical error. Please try again or contact "
1129
  "admin."
1131
  "Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
1132
  "szakembert."
1133
 
1134
+ #: ../job/es-optin.php:62
1135
  msgid "This email address has already been confirmed."
1136
  msgstr "Ilyen e-mail cím már szerepel."
1137
 
1160
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1161
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1162
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1163
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
1164
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1165
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
1166
  msgid "Help"
1167
  msgstr "Segítség"
1168
 
 
 
 
 
1169
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1170
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1171
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1262
  msgid "Add New"
1263
  msgstr "Új hozzáadása"
1264
 
 
 
 
 
 
1265
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1266
  msgid "Selected record deleted."
1267
  msgstr "Sikeresen törölve"
1398
  msgstr "Kézbesítési jelentés"
1399
 
1400
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1401
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1402
+ #: export.php:69
1403
  msgid "Sno"
1404
  msgstr "Sno"
1405
 
1465
  msgstr "Teljes"
1466
 
1467
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1468
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1469
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1470
  msgid "Action"
1471
  msgstr "Action"
1472
 
1595
  msgid "It is a readonly field and you are advised not to modify it."
1596
  msgstr "Csak olvasható mező"
1597
 
1598
+ #: ../settings/settings-edit.php:207
1599
  msgid ""
1600
  "This text will be displayed once user clicks on email confirmation link from "
1601
  "the Double Opt In (confirmation) Email."
1603
  "Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
1604
  "linkre kattint"
1605
 
1606
+ #: ../settings/settings-edit.php:220
1607
  msgid ""
1608
  "To send welcome email to subscriber after successful signup. This option "
1609
  "must be set to YES."
1610
  msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
1611
 
1612
+ #: ../settings/settings-edit.php:247
1613
  msgid "Unsubscribe Link"
1614
  msgstr "Leiratkozó link"
1615
 
1616
+ #: ../settings/settings-edit.php:254
1617
  msgid "Unsubscribe Text in Email"
1618
  msgstr "A leiratkozó link szövete"
1619
 
1620
+ #: ../settings/settings-edit.php:262
1621
  msgid "Text to display after an email address is unsubscribed"
1622
  msgstr "A leiratkozás után megjelenő szöveg."
1623
 
1624
+ #: ../settings/settings-edit.php:282
1625
  msgid "Error in the Unsubscribe Link"
1626
  msgstr "A leriratkozó link hibás."
1627
 
1628
+ #: ../settings/settings-edit.php:295
1629
  msgid "Select user roles who can access following menus. Only Admin can change this."
1630
  msgstr ""
1631
  "Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
1632
  "menük kezelésére."
1633
 
1634
+ #: ../settings/settings-edit.php:301
1635
  msgid "Subscribers Menu"
1636
  msgstr "Előfizetők"
1637
 
1638
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1639
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1640
+ #: settings/settings-edit.php:353
1641
  msgid "Administrator Only"
1642
  msgstr "Csak adminisztrátor"
1643
 
1644
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1645
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1646
+ #: settings/settings-edit.php:354
1647
  msgid "Administrator/Editor"
1648
  msgstr "Adminisztrátor/Szerkesztő"
1649
 
1650
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1651
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1652
+ #: settings/settings-edit.php:355
1653
  msgid "Administrator/Editor/Author/Contributor"
1654
  msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1655
 
1656
+ #: ../settings/settings-edit.php:325
1657
  msgid "Post Notifications Menu"
1658
  msgstr "Új bejegyzésről értesítés"
1659
 
1660
+ #: ../settings/settings-edit.php:349
1661
  msgid "Reports Menu"
1662
  msgstr "Jelentések"
1663
 
1664
+ #: ../settings/settings-edit.php:366
1665
  msgid "Cron job URL"
1666
  msgstr "Időzítés URL-je"
1667
 
1668
+ #: ../settings/settings-edit.php:367
1669
  msgid ""
1670
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1671
  "modify it."
1672
  msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1673
 
1674
+ #: ../settings/settings-edit.php:376
1675
  msgid "Email Count"
1676
  msgstr "E-mail számláló."
1677
 
1678
+ #: ../settings/settings-edit.php:377
1679
  msgid "Number of emails that you want to trigger per hour."
1680
  msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
1681
 
1682
+ #: ../settings/settings-edit.php:398
1683
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1684
  msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1685
 
1686
+ #: ../settings/settings-edit.php:517
1687
  msgid "Please enter sender of notifications from name."
1688
  msgstr "Az értesítőlevél feladójának neve"
1689
 
1690
+ #: ../settings/settings-edit.php:522
1691
  msgid "Please enter sender of notifications from email."
1692
  msgstr "Az értesítőlevél levél feladójának e-mail címe"
1693
 
1694
+ #: ../settings/settings-edit.php:580
1695
  msgid "Settings Saved."
1696
  msgstr "Sikeres mentés"
1697
 
1698
+ #: ../settings/settings-edit.php:583
1699
  msgid "Oops, unable to update."
1700
  msgstr "Nem sikerült menteni. "
1701
 
1729
  msgstr "Hibás e-mail cím"
1730
 
1731
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1732
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1733
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1734
  #: subscribers/view-subscriber-sync.php:89
1735
  msgid "Add New Subscriber"
1736
  msgstr "Új előfizető hozzáadása"
1737
 
1738
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1739
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1740
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1741
  #: subscribers/view-subscriber-sync.php:90
1742
  msgid "Import"
1749
  msgstr "Exportálás"
1750
 
1751
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1752
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1753
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1754
  #: subscribers/view-subscriber-sync.php:143
1755
  msgid "Sync"
1830
  msgid "Update Subscriber's Group"
1831
  msgstr "Az előfizetői csoport mentése"
1832
 
1833
+ #: ../subscribers/view-subscriber-export.php:50
1834
  msgid "Export Email Addresses"
1835
  msgstr "E-mail címek exportálása"
1836
 
1837
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1838
+ #: export.php:70
1839
  msgid "Type of List to Export"
1840
  msgstr "Milyen típusú fájlba exportáljunk? "
1841
 
1842
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1843
+ #: export.php:71
1844
  msgid "Total Emails Count"
1845
  msgstr "Összes e-mail"
1846
 
1847
+ #: ../subscribers/view-subscriber-export.php:77
1848
  msgid "1"
1849
  msgstr "1"
1850
 
1851
+ #: ../subscribers/view-subscriber-export.php:78
1852
  msgid "All Subscribers"
1853
  msgstr "Minden előfizető"
1854
 
1855
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1856
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1857
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1858
  msgid "Click to Export in CSV"
1859
  msgstr "CSV fájl exportálása"
1860
 
1861
+ #: ../subscribers/view-subscriber-export.php:83
1862
  msgid "2"
1863
  msgstr "2"
1864
 
1865
+ #: ../subscribers/view-subscriber-export.php:84
1866
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1867
  msgstr "Aktív előfizető, ahol a stáusz: visszagazolt vagy nincs double opt-in"
1868
 
1869
+ #: ../subscribers/view-subscriber-export.php:89
1870
  msgid "3"
1871
  msgstr "3"
1872
 
1873
+ #: ../subscribers/view-subscriber-export.php:90
1874
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1875
  msgstr ""
1876
  "Nem aktív előfizetők, ahol a státusz nem visszaigazolt, vagy pedig "
1877
  "leiratkozott. "
1878
 
1879
+ #: ../subscribers/view-subscriber-export.php:95
1880
  msgid "4"
1881
  msgstr "4"
1882
 
1883
+ #: ../subscribers/view-subscriber-export.php:96
1884
  msgid "WordPress Registered Users"
1885
  msgstr "Regisztrált felhasználó"
1886
 
1887
+ #: ../subscribers/view-subscriber-export.php:101
1888
  msgid "5"
1889
  msgstr "5"
1890
 
1891
+ #: ../subscribers/view-subscriber-export.php:102
1892
  msgid "Commented Authors"
1893
  msgstr "Hozzászóló felhasználó"
1894
 
2015
  msgid "Resend Confirmation"
2016
  msgstr "A visszaigazoló levél újbóli kiküldése"
2017
 
2018
+ #: ../subscribers/view-subscriber-show.php:303
2019
+ msgid "Update Subscribers Group"
2020
+ msgstr "Előfizetői csoport frissítése"
2021
+
2022
  #: ../subscribers/view-subscriber-show.php:304
2023
  msgid "Update Subscribers Status"
2024
  msgstr "Frissítettük a feliratkozók státuszát"
languages/email-subscribers-it_IT.mo CHANGED
Binary file
languages/email-subscribers-it_IT.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:48 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Italian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -23,33 +23,29 @@ msgstr ""
23
  "X-Loco-Target-Locale: it_IT"
24
 
25
  #: ../classes/es-register.php:727
26
- msgid "Check Pro plan"
27
- msgstr ""
28
-
29
- #: ../classes/es-register.php:765
30
  msgid ""
31
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
32
- "Checkbox' in the subscription form.</b>"
33
  msgstr ""
34
 
35
- #: ../classes/es-register.php:766
36
- msgid "Steps to enable"
37
  msgstr ""
38
 
39
- #: ../classes/es-register.php:766
40
- msgid "Ok, got it"
41
  msgstr ""
42
 
43
- #: ../classes/es-register.php:936
44
  #, php-format
45
  msgid "%s for Post Notification: {{POSTTITLE}}"
46
  msgstr ""
47
 
48
- #: ../classes/es-register.php:936
49
  msgid "Available Keyword"
50
  msgstr ""
51
 
52
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
53
  #, php-format
54
  msgid ""
55
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -57,7 +53,7 @@ msgid ""
57
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
58
  msgstr ""
59
 
60
- #: ../classes/es-register.php:1038
61
  #, php-format
62
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
63
  msgstr ""
@@ -103,6 +99,11 @@ msgstr ""
103
  msgid "What data Email Subscribers - Group Selector stores on your end?"
104
  msgstr ""
105
 
 
 
 
 
 
106
  #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
107
  msgid " &lt;&lt; "
108
  msgstr ""
@@ -118,7 +119,7 @@ msgid ""
118
  "deleted too and email will not be sent."
119
  msgstr ""
120
 
121
- #: ../settings/settings-edit.php:554
122
  msgid "Please enter valid email count."
123
  msgstr ""
124
 
@@ -172,7 +173,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
172
  msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
173
 
174
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
175
- #: register.php:826
176
  msgid "Email Subscribers"
177
  msgstr "Email Iscritti"
178
 
@@ -182,7 +183,7 @@ msgid "Subscribers"
182
  msgstr "Iscritti"
183
 
184
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
185
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
186
  msgid "Templates"
187
  msgstr "Modelli"
188
 
@@ -192,7 +193,7 @@ msgid "Post Notifications"
192
  msgstr "Notifiche Post"
193
 
194
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
195
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
196
  msgid "Newsletters"
197
  msgstr "Newsletter"
198
 
@@ -382,20 +383,7 @@ msgctxt "widget-page-enhanced-select"
382
  msgid "Please try after some time"
383
  msgstr "Per favore riprova tra qualche minuto"
384
 
385
- #: ../classes/es-register.php:726
386
- msgid ""
387
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
388
- "subscribers list?</b> Come check our Pro plan."
389
- msgstr ""
390
- "<b>Desideri dei modelli email pronti all'uso?</b> E vuoi inoltre "
391
- "<b>mantenere pulita la tua lista degli iscritti ?</b> Guarda i nostri piani "
392
- "Pro."
393
-
394
- #: ../classes/es-register.php:727
395
- msgid "Not interested."
396
- msgstr "Non sono interessato."
397
-
398
- #: ../classes/es-register.php:791
399
  msgid ""
400
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
401
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -407,125 +395,125 @@ msgstr ""
407
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
408
  "&#9733;&#9733;&#9733;&#9733;</a>. Molte grazie in anticipo da Icegram !"
409
 
410
- #: ../classes/es-register.php:805
411
  #, php-format
412
  msgid "Email Subscribers version: <strong>%s</strong>"
413
  msgstr "Email Subscribers versione: <strong>%s</strong>"
414
 
415
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
416
  msgid "Add new Template"
417
  msgstr "Aggiungi nuovo Modello"
418
 
419
- #: ../classes/es-register.php:818
420
  msgid "Edit Templates"
421
  msgstr "Modifica Modello"
422
 
423
- #: ../classes/es-register.php:819
424
  msgid "New Templates"
425
  msgstr "Nuovo Modello"
426
 
427
- #: ../classes/es-register.php:821
428
  msgid "View Templates"
429
  msgstr "Visualizza Modelli"
430
 
431
- #: ../classes/es-register.php:822
432
  msgid "Search Templates"
433
  msgstr "Ricerca Modelli"
434
 
435
- #: ../classes/es-register.php:823
436
  msgid "No Templates found"
437
  msgstr "Nessun Modello trovato"
438
 
439
- #: ../classes/es-register.php:824
440
  msgid "No Templates found in Trash"
441
  msgstr "Nessun Modello trovato nel Cestino"
442
 
443
- #: ../classes/es-register.php:827
444
  msgid "Thumbnail (For Visual Representation only)"
445
  msgstr "Miniature (solo per rappresentazione visuale)"
446
 
447
- #: ../classes/es-register.php:828
448
  msgid "Set thumbnail"
449
  msgstr "Configura minuature"
450
 
451
- #: ../classes/es-register.php:865
452
  msgid "Template Type"
453
  msgstr "Tipo Modello"
454
 
455
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
456
  msgid "Thumbnail"
457
  msgstr "Miniatura"
458
 
459
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
460
  #: sentmail/sentmail-show.php:121
461
  msgid "Preview"
462
  msgstr "Anteprima"
463
 
464
- #: ../classes/es-register.php:943
465
  msgid "Select your Email Template Type"
466
  msgstr "Seleziona il tipo di Modello Email"
467
 
468
- #: ../classes/es-register.php:945
469
  msgid "Newsletter"
470
  msgstr "Newsletter"
471
 
472
- #: ../classes/es-register.php:946
473
  msgid "Post Notification"
474
  msgstr "Notifica Post"
475
 
476
- #: ../classes/es-register.php:995
477
  msgid "Preview Template"
478
  msgstr "Anteprima Modello"
479
 
480
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
481
- #: register.php:1030 ../classes/es-register.php:1038
482
  msgid "Available Keywords"
483
  msgstr "Parole Chiave disponibili"
484
 
485
- #: ../classes/es-register.php:1015
486
  #, php-format
487
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
488
  msgstr "<br/><br/>%s per la Newsletter: {{NAME}}, {{EMAIL}}"
489
 
490
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
491
  msgid "Name"
492
  msgstr "Nome"
493
 
494
- #: ../classes/es-register.php:1080
495
  msgid "Email *"
496
  msgstr "Email *"
497
 
498
- #: ../classes/es-register.php:1089 ../help/help.php:202
499
  msgid "Subscribe"
500
  msgstr "Iscriviti"
501
 
502
- #: ../classes/es-register.php:1193
503
  msgid "Widget Title"
504
  msgstr "Titolo del Widget"
505
 
506
- #: ../classes/es-register.php:1197
507
  msgid "Short description about subscription form"
508
  msgstr "Breve descrizione per il modulo di iscrizione"
509
 
510
- #: ../classes/es-register.php:1201
511
  msgid "Display Name Field"
512
  msgstr "Campo Visualizza Nome"
513
 
514
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
515
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
516
  msgid "YES"
517
  msgstr "SI"
518
 
519
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
520
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
521
  msgid "NO"
522
  msgstr "NO"
523
 
524
- #: ../classes/es-register.php:1208
525
  msgid "Subscriber Group"
526
  msgstr "Gruppo Iscritti"
527
 
528
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
529
  msgid "Unexpected url submit has been detected!"
530
  msgstr "E' stato rilevato l'invio di un url non consentito !"
531
 
@@ -922,8 +910,8 @@ msgstr ""
922
  msgid "add Rainmaker’s form in Email Subscribers"
923
  msgstr "aggiungi modulo Rainmaker a Email Subscribers"
924
 
925
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
926
- #: job/es-unsubscribe.php:61
927
  msgid ""
928
  "Oops.. We are getting some technical error. Please try again or contact "
929
  "admin."
@@ -931,7 +919,7 @@ msgstr ""
931
  "Oops.. Si è verificato un problema tecnico. Riprova di nuovo o contatta "
932
  "l'Amministratore."
933
 
934
- #: ../job/es-optin.php:61
935
  msgid "This email address has already been confirmed."
936
  msgstr "Questo indirizzo email è già stato confermato."
937
 
@@ -966,16 +954,12 @@ msgstr "Aggiungi notifica"
966
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
967
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
968
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
969
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
970
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
971
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
972
  msgid "Help"
973
  msgstr "Aiuto"
974
 
975
- #: ../notification/notification-add.php:121
976
- msgid "Select Subscribers Group"
977
- msgstr "Seleziona Gruppo Iscritti"
978
-
979
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
980
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
981
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1077,11 +1061,6 @@ msgstr "Modifica notifica"
1077
  msgid "Add New"
1078
  msgstr "Aggiungi nuovo"
1079
 
1080
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1081
- #: php:303
1082
- msgid "Update Subscribers Group"
1083
- msgstr "Aggiorna gruppo iscritti"
1084
-
1085
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1086
  msgid "Selected record deleted."
1087
  msgstr "Record selezionati cancellati."
@@ -1214,8 +1193,8 @@ msgid "Delivery Report"
1214
  msgstr "Rapporto di spedizione"
1215
 
1216
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1217
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1218
- #: export.php:66
1219
  msgid "Sno"
1220
  msgstr "Sno"
1221
 
@@ -1294,8 +1273,8 @@ msgid "Total"
1294
  msgstr "Totale"
1295
 
1296
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1297
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1298
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1299
  msgid "Action"
1300
  msgstr "Azione"
1301
 
@@ -1533,7 +1512,7 @@ msgstr "Link di conferma per Doppio Opt-In"
1533
  msgid "It is a readonly field and you are advised not to modify it."
1534
  msgstr "E' un campo a sola lettura e non lo puoi modificare."
1535
 
1536
- #: ../settings/settings-edit.php:205
1537
  msgid ""
1538
  "Text to display after an email address is successfully subscribed from "
1539
  "Double Opt-In (Confirmation) Email"
@@ -1541,7 +1520,7 @@ msgstr ""
1541
  "Testo da visualizzare dopo che un indirizzo email iscritto con Doppio Opt-In "
1542
  "(Conferma) è stato confermato"
1543
 
1544
- #: ../settings/settings-edit.php:206
1545
  msgid ""
1546
  "This text will be displayed once user clicks on email confirmation link from "
1547
  "the Double Opt In (confirmation) Email."
@@ -1549,11 +1528,11 @@ msgstr ""
1549
  "Questo testo viene visualizzato dopo che l'utente ha clicca sul link della "
1550
  "email ricevuta per il Doppio Opt-In."
1551
 
1552
- #: ../settings/settings-edit.php:213
1553
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1554
  msgstr "Invia messaggio di benvenuto dopo che l'utente si è iscritto ?"
1555
 
1556
- #: ../settings/settings-edit.php:214
1557
  msgid ""
1558
  "To send welcome email to subscriber after successful signup. This option "
1559
  "must be set to YES."
@@ -1561,11 +1540,11 @@ msgstr ""
1561
  "Per inviare una mail di benventuo dopo che l'utente si è iscritto. Questa "
1562
  "opzione deve essere su SI."
1563
 
1564
- #: ../settings/settings-edit.php:225
1565
  msgid "Subject for Welcome Email"
1566
  msgstr "Oggetto per l'email di benvenuto"
1567
 
1568
- #: ../settings/settings-edit.php:226
1569
  msgid ""
1570
  "Subject for the subscriber welcome email. This will be sent whenever a "
1571
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1575,11 +1554,11 @@ msgstr ""
1575
  "l'utente ha confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto "
1576
  "(Singolo Opt-In)."
1577
 
1578
- #: ../settings/settings-edit.php:232
1579
  msgid "Email Content for Welcome Email"
1580
  msgstr "Contenuto dell'email di benvenuto"
1581
 
1582
- #: ../settings/settings-edit.php:233
1583
  msgid ""
1584
  "Content for the subscriber welcome email whenever a user's email is either "
1585
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1589,11 +1568,11 @@ msgstr ""
1589
  "confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto (se Singolo "
1590
  "Opt-In)."
1591
 
1592
- #: ../settings/settings-edit.php:241
1593
  msgid "Unsubscribe Link"
1594
  msgstr "Link di cancellazione"
1595
 
1596
- #: ../settings/settings-edit.php:242
1597
  msgid ""
1598
  "This unsubscribe link is automatically added to all the emails that are sent "
1599
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1603,11 +1582,11 @@ msgstr ""
1603
  "inviate con questo plugin. E' un campo a sola lettura e non può essere "
1604
  "modificato."
1605
 
1606
- #: ../settings/settings-edit.php:248
1607
  msgid "Unsubscribe Text in Email"
1608
  msgstr "Testo Cancellazione nella mail"
1609
 
1610
- #: ../settings/settings-edit.php:249
1611
  msgid ""
1612
  "The text for the unsubscribe link. This text is automatically added with "
1613
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1615,11 +1594,11 @@ msgstr ""
1615
  "Il testo per il link di cancellazione. Questo testo viene aggiunto "
1616
  "automaticamente alle email.<br />Parole Chiave disponibili: {{LINK}}"
1617
 
1618
- #: ../settings/settings-edit.php:255
1619
  msgid "Text to display after an email address is unsubscribed"
1620
  msgstr "Testo da visualizzare dopo che l'indirizzo email è stato disiscritto"
1621
 
1622
- #: ../settings/settings-edit.php:256
1623
  msgid ""
1624
  "This text will be displayed once user clicks on unsubscribe link from the "
1625
  "email."
@@ -1627,11 +1606,11 @@ msgstr ""
1627
  "Questo testo viene visualizzato quando l'utente clicca sul link di "
1628
  "cancellazione."
1629
 
1630
- #: ../settings/settings-edit.php:263
1631
  msgid "Error in the Subscribe / Confirmation Link"
1632
  msgstr "Errore nel link di Cancellazione/Conferma"
1633
 
1634
- #: ../settings/settings-edit.php:264
1635
  msgid ""
1636
  "Default message to display if there is any issue while clicking on subscribe "
1637
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1639,11 +1618,11 @@ msgstr ""
1639
  "Messaggio standard da visualizzare se si verifica un problema nel link di "
1640
  "Conferma / Cancellazione presente nella email in caso di Doppio Opt-In."
1641
 
1642
- #: ../settings/settings-edit.php:270
1643
  msgid "Error in the Unsubscribe Link"
1644
  msgstr "Errore nel link di Cancellazione"
1645
 
1646
- #: ../settings/settings-edit.php:271
1647
  msgid ""
1648
  "Default message to display if there is any issue while clicking on "
1649
  "unsubscribe link from the emails."
@@ -1651,51 +1630,51 @@ msgstr ""
1651
  "Messaggio standard da visualizzare se si verifica un problema nel link di "
1652
  "cancellazione presente nelle email. "
1653
 
1654
- #: ../settings/settings-edit.php:283
1655
  msgid "Select user roles who can access following menus. Only Admin can change this."
1656
  msgstr ""
1657
  "Seleziona il ruolo degli utenti che hanno accesso ai menu. Solo "
1658
  "l'Amministratore può modificare questo."
1659
 
1660
- #: ../settings/settings-edit.php:289
1661
  msgid "Subscribers Menu"
1662
  msgstr "Menu Iscritti"
1663
 
1664
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1665
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1666
- #: settings/settings-edit.php:341
1667
  msgid "Administrator Only"
1668
  msgstr "Solo Amministratore"
1669
 
1670
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1671
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1672
- #: settings/settings-edit.php:342
1673
  msgid "Administrator/Editor"
1674
  msgstr "Amministratore/Editor"
1675
 
1676
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1677
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1678
- #: settings/settings-edit.php:343
1679
  msgid "Administrator/Editor/Author/Contributor"
1680
  msgstr "Amministratore/Editor/Autore/Contributore"
1681
 
1682
- #: ../settings/settings-edit.php:301
1683
  msgid "Templates Menu"
1684
  msgstr "Menu Modelli"
1685
 
1686
- #: ../settings/settings-edit.php:313
1687
  msgid "Post Notifications Menu"
1688
  msgstr "Menu Notifiche Post"
1689
 
1690
- #: ../settings/settings-edit.php:337
1691
  msgid "Reports Menu"
1692
  msgstr "Menu Rapporti"
1693
 
1694
- #: ../settings/settings-edit.php:354
1695
  msgid "Cron job URL"
1696
  msgstr "URL del Cron Job"
1697
 
1698
- #: ../settings/settings-edit.php:355
1699
  msgid ""
1700
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1701
  "modify it."
@@ -1703,23 +1682,23 @@ msgstr ""
1703
  "Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
1704
  "essere modificato."
1705
 
1706
- #: ../settings/settings-edit.php:364
1707
  msgid "Email Count"
1708
  msgstr "Numero di Email"
1709
 
1710
- #: ../settings/settings-edit.php:365
1711
  msgid "Number of emails that you want to trigger per hour."
1712
  msgstr "Nuomero di email che vuoi spedire all'ora."
1713
 
1714
- #: ../settings/settings-edit.php:370
1715
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1716
  msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
1717
 
1718
- #: ../settings/settings-edit.php:375
1719
  msgid "Cron Report"
1720
  msgstr "Rapporto del Cron"
1721
 
1722
- #: ../settings/settings-edit.php:376
1723
  msgid ""
1724
  "Email to admin whenever a cron URL is triggered from your server.<br "
1725
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1727,11 +1706,11 @@ msgstr ""
1727
  "Invia email all'Amministratore quando un cron viene gestito dal server<br />."
1728
  " Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1729
 
1730
- #: ../settings/settings-edit.php:386
1731
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1732
  msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
1733
 
1734
- #: ../settings/settings-edit.php:387
1735
  msgid ""
1736
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1737
  "schedule-cron-emails/?"
@@ -1743,7 +1722,7 @@ msgstr ""
1743
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
1744
  "Cron?</a>"
1745
 
1746
- #: ../settings/settings-edit.php:388
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1749
  "schedule-cron-emails-in-cpanel/?"
@@ -1755,7 +1734,7 @@ msgstr ""
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1756
  "un cron job in cPanel</a>"
1757
 
1758
- #: ../settings/settings-edit.php:389
1759
  msgid ""
1760
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1761
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1767,7 +1746,7 @@ msgstr ""
1767
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1768
  "un cron job in Plesk</a>"
1769
 
1770
- #: ../settings/settings-edit.php:390
1771
  msgid ""
1772
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1773
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1779,19 +1758,19 @@ msgstr ""
1779
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
1780
  "Hosting non supporta i cron job ?</a>"
1781
 
1782
- #: ../settings/settings-edit.php:505
1783
  msgid "Please enter sender of notifications from name."
1784
  msgstr "Inserisci il nome del mittente delle notifiche."
1785
 
1786
- #: ../settings/settings-edit.php:510
1787
  msgid "Please enter sender of notifications from email."
1788
  msgstr "Inserisci l'email del mittente delle notifiche."
1789
 
1790
- #: ../settings/settings-edit.php:568
1791
  msgid "Settings Saved."
1792
  msgstr "Configurazione salvata."
1793
 
1794
- #: ../settings/settings-edit.php:571
1795
  msgid "Oops, unable to update."
1796
  msgstr "Oops, impossibile aggiornare."
1797
 
@@ -1825,14 +1804,14 @@ msgid "Invalid Email."
1825
  msgstr "Email non valida."
1826
 
1827
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1828
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1829
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1830
  #: subscribers/view-subscriber-sync.php:89
1831
  msgid "Add New Subscriber"
1832
  msgstr "Aggiungi nuovo iscritto"
1833
 
1834
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1835
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1836
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1837
  #: subscribers/view-subscriber-sync.php:90
1838
  msgid "Import"
@@ -1845,7 +1824,7 @@ msgid "Export"
1845
  msgstr "Esporta"
1846
 
1847
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1848
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1849
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1850
  #: subscribers/view-subscriber-sync.php:143
1851
  msgid "Sync"
@@ -1938,63 +1917,63 @@ msgstr ""
1938
  msgid "Go back to Subscribers dashboard"
1939
  msgstr "Torna alla Bacheca degli Iscritti"
1940
 
1941
- #: ../subscribers/view-subscriber-export.php:47
1942
  msgid "Export Email Addresses"
1943
  msgstr "Esporta indirizzi email"
1944
 
1945
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1946
- #: export.php:67
1947
  msgid "Type of List to Export"
1948
  msgstr "Tipo di lista per esportazione"
1949
 
1950
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1951
- #: export.php:68
1952
  msgid "Total Emails Count"
1953
  msgstr "Totale email"
1954
 
1955
- #: ../subscribers/view-subscriber-export.php:74
1956
  msgid "1"
1957
  msgstr "1"
1958
 
1959
- #: ../subscribers/view-subscriber-export.php:75
1960
  msgid "All Subscribers"
1961
  msgstr "Tutti gli iscritti"
1962
 
1963
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1964
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1965
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1966
  msgid "Click to Export in CSV"
1967
  msgstr "Clicca per esportare in CSV"
1968
 
1969
- #: ../subscribers/view-subscriber-export.php:80
1970
  msgid "2"
1971
  msgstr "2"
1972
 
1973
- #: ../subscribers/view-subscriber-export.php:81
1974
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1975
  msgstr "Iscritti attivi (Stato: Confermato e singolo Opt In)"
1976
 
1977
- #: ../subscribers/view-subscriber-export.php:86
1978
  msgid "3"
1979
  msgstr "3"
1980
 
1981
- #: ../subscribers/view-subscriber-export.php:87
1982
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1983
  msgstr "Utenti inattivi (Stato: Non confermato e Disiscritto)"
1984
 
1985
- #: ../subscribers/view-subscriber-export.php:92
1986
  msgid "4"
1987
  msgstr "4"
1988
 
1989
- #: ../subscribers/view-subscriber-export.php:93
1990
  msgid "WordPress Registered Users"
1991
  msgstr "Utenti registrati WordPress"
1992
 
1993
- #: ../subscribers/view-subscriber-export.php:98
1994
  msgid "5"
1995
  msgstr "5"
1996
 
1997
- #: ../subscribers/view-subscriber-export.php:99
1998
  msgid "Commented Authors"
1999
  msgstr "Autori commentati"
2000
 
@@ -2125,6 +2104,10 @@ msgstr "Azioni massive"
2125
  msgid "Resend Confirmation"
2126
  msgstr "Reinvia conferma"
2127
 
 
 
 
 
2128
  #: ../subscribers/view-subscriber-show.php:304
2129
  msgid "Update Subscribers Status"
2130
  msgstr "Aggiorna status iscritti"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:42 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Italian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
23
  "X-Loco-Target-Locale: it_IT"
24
 
25
  #: ../classes/es-register.php:727
 
 
 
 
26
  msgid ""
27
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
28
+ "</b>"
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:728
32
+ msgid "Here's how"
33
  msgstr ""
34
 
35
+ #: ../classes/es-register.php:728
36
+ msgid "Not interested. Dismiss this."
37
  msgstr ""
38
 
39
+ #: ../classes/es-register.php:900
40
  #, php-format
41
  msgid "%s for Post Notification: {{POSTTITLE}}"
42
  msgstr ""
43
 
44
+ #: ../classes/es-register.php:900
45
  msgid "Available Keyword"
46
  msgstr ""
47
 
48
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
49
  #, php-format
50
  msgid ""
51
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
53
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
54
  msgstr ""
55
 
56
+ #: ../classes/es-register.php:1002
57
  #, php-format
58
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
59
  msgstr ""
99
  msgid "What data Email Subscribers - Group Selector stores on your end?"
100
  msgstr ""
101
 
102
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
103
+ #: 132
104
+ msgid "Subscribers Group to send post notification to"
105
+ msgstr ""
106
+
107
  #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
108
  msgid " &lt;&lt; "
109
  msgstr ""
119
  "deleted too and email will not be sent."
120
  msgstr ""
121
 
122
+ #: ../settings/settings-edit.php:566
123
  msgid "Please enter valid email count."
124
  msgstr ""
125
 
173
  msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
174
 
175
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
176
+ #: register.php:788
177
  msgid "Email Subscribers"
178
  msgstr "Email Iscritti"
179
 
183
  msgstr "Iscritti"
184
 
185
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
186
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
187
  msgid "Templates"
188
  msgstr "Modelli"
189
 
193
  msgstr "Notifiche Post"
194
 
195
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
196
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
197
  msgid "Newsletters"
198
  msgstr "Newsletter"
199
 
383
  msgid "Please try after some time"
384
  msgstr "Per favore riprova tra qualche minuto"
385
 
386
+ #: ../classes/es-register.php:753
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgid ""
388
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
389
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
395
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
396
  "&#9733;&#9733;&#9733;&#9733;</a>. Molte grazie in anticipo da Icegram !"
397
 
398
+ #: ../classes/es-register.php:767
399
  #, php-format
400
  msgid "Email Subscribers version: <strong>%s</strong>"
401
  msgstr "Email Subscribers versione: <strong>%s</strong>"
402
 
403
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
404
  msgid "Add new Template"
405
  msgstr "Aggiungi nuovo Modello"
406
 
407
+ #: ../classes/es-register.php:780
408
  msgid "Edit Templates"
409
  msgstr "Modifica Modello"
410
 
411
+ #: ../classes/es-register.php:781
412
  msgid "New Templates"
413
  msgstr "Nuovo Modello"
414
 
415
+ #: ../classes/es-register.php:783
416
  msgid "View Templates"
417
  msgstr "Visualizza Modelli"
418
 
419
+ #: ../classes/es-register.php:784
420
  msgid "Search Templates"
421
  msgstr "Ricerca Modelli"
422
 
423
+ #: ../classes/es-register.php:785
424
  msgid "No Templates found"
425
  msgstr "Nessun Modello trovato"
426
 
427
+ #: ../classes/es-register.php:786
428
  msgid "No Templates found in Trash"
429
  msgstr "Nessun Modello trovato nel Cestino"
430
 
431
+ #: ../classes/es-register.php:789
432
  msgid "Thumbnail (For Visual Representation only)"
433
  msgstr "Miniature (solo per rappresentazione visuale)"
434
 
435
+ #: ../classes/es-register.php:790
436
  msgid "Set thumbnail"
437
  msgstr "Configura minuature"
438
 
439
+ #: ../classes/es-register.php:827
440
  msgid "Template Type"
441
  msgstr "Tipo Modello"
442
 
443
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
444
  msgid "Thumbnail"
445
  msgstr "Miniatura"
446
 
447
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
448
  #: sentmail/sentmail-show.php:121
449
  msgid "Preview"
450
  msgstr "Anteprima"
451
 
452
+ #: ../classes/es-register.php:907
453
  msgid "Select your Email Template Type"
454
  msgstr "Seleziona il tipo di Modello Email"
455
 
456
+ #: ../classes/es-register.php:909
457
  msgid "Newsletter"
458
  msgstr "Newsletter"
459
 
460
+ #: ../classes/es-register.php:910
461
  msgid "Post Notification"
462
  msgstr "Notifica Post"
463
 
464
+ #: ../classes/es-register.php:959
465
  msgid "Preview Template"
466
  msgstr "Anteprima Modello"
467
 
468
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
469
+ #: register.php:994 ../classes/es-register.php:1002
470
  msgid "Available Keywords"
471
  msgstr "Parole Chiave disponibili"
472
 
473
+ #: ../classes/es-register.php:979
474
  #, php-format
475
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
476
  msgstr "<br/><br/>%s per la Newsletter: {{NAME}}, {{EMAIL}}"
477
 
478
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
479
  msgid "Name"
480
  msgstr "Nome"
481
 
482
+ #: ../classes/es-register.php:1044
483
  msgid "Email *"
484
  msgstr "Email *"
485
 
486
+ #: ../classes/es-register.php:1053 ../help/help.php:202
487
  msgid "Subscribe"
488
  msgstr "Iscriviti"
489
 
490
+ #: ../classes/es-register.php:1157
491
  msgid "Widget Title"
492
  msgstr "Titolo del Widget"
493
 
494
+ #: ../classes/es-register.php:1161
495
  msgid "Short description about subscription form"
496
  msgstr "Breve descrizione per il modulo di iscrizione"
497
 
498
+ #: ../classes/es-register.php:1165
499
  msgid "Display Name Field"
500
  msgstr "Campo Visualizza Nome"
501
 
502
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
503
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
504
  msgid "YES"
505
  msgstr "SI"
506
 
507
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
508
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
509
  msgid "NO"
510
  msgstr "NO"
511
 
512
+ #: ../classes/es-register.php:1172
513
  msgid "Subscriber Group"
514
  msgstr "Gruppo Iscritti"
515
 
516
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
517
  msgid "Unexpected url submit has been detected!"
518
  msgstr "E' stato rilevato l'invio di un url non consentito !"
519
 
910
  msgid "add Rainmaker’s form in Email Subscribers"
911
  msgstr "aggiungi modulo Rainmaker a Email Subscribers"
912
 
913
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
914
+ #: job/es-unsubscribe.php:62
915
  msgid ""
916
  "Oops.. We are getting some technical error. Please try again or contact "
917
  "admin."
919
  "Oops.. Si è verificato un problema tecnico. Riprova di nuovo o contatta "
920
  "l'Amministratore."
921
 
922
+ #: ../job/es-optin.php:62
923
  msgid "This email address has already been confirmed."
924
  msgstr "Questo indirizzo email è già stato confermato."
925
 
954
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
955
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
956
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
957
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
958
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
959
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
960
  msgid "Help"
961
  msgstr "Aiuto"
962
 
 
 
 
 
963
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
964
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
965
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1061
  msgid "Add New"
1062
  msgstr "Aggiungi nuovo"
1063
 
 
 
 
 
 
1064
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1065
  msgid "Selected record deleted."
1066
  msgstr "Record selezionati cancellati."
1193
  msgstr "Rapporto di spedizione"
1194
 
1195
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1196
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1197
+ #: export.php:69
1198
  msgid "Sno"
1199
  msgstr "Sno"
1200
 
1273
  msgstr "Totale"
1274
 
1275
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1276
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1277
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1278
  msgid "Action"
1279
  msgstr "Azione"
1280
 
1512
  msgid "It is a readonly field and you are advised not to modify it."
1513
  msgstr "E' un campo a sola lettura e non lo puoi modificare."
1514
 
1515
+ #: ../settings/settings-edit.php:206
1516
  msgid ""
1517
  "Text to display after an email address is successfully subscribed from "
1518
  "Double Opt-In (Confirmation) Email"
1520
  "Testo da visualizzare dopo che un indirizzo email iscritto con Doppio Opt-In "
1521
  "(Conferma) è stato confermato"
1522
 
1523
+ #: ../settings/settings-edit.php:207
1524
  msgid ""
1525
  "This text will be displayed once user clicks on email confirmation link from "
1526
  "the Double Opt In (confirmation) Email."
1528
  "Questo testo viene visualizzato dopo che l'utente ha clicca sul link della "
1529
  "email ricevuta per il Doppio Opt-In."
1530
 
1531
+ #: ../settings/settings-edit.php:219
1532
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1533
  msgstr "Invia messaggio di benvenuto dopo che l'utente si è iscritto ?"
1534
 
1535
+ #: ../settings/settings-edit.php:220
1536
  msgid ""
1537
  "To send welcome email to subscriber after successful signup. This option "
1538
  "must be set to YES."
1540
  "Per inviare una mail di benventuo dopo che l'utente si è iscritto. Questa "
1541
  "opzione deve essere su SI."
1542
 
1543
+ #: ../settings/settings-edit.php:231
1544
  msgid "Subject for Welcome Email"
1545
  msgstr "Oggetto per l'email di benvenuto"
1546
 
1547
+ #: ../settings/settings-edit.php:232
1548
  msgid ""
1549
  "Subject for the subscriber welcome email. This will be sent whenever a "
1550
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1554
  "l'utente ha confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto "
1555
  "(Singolo Opt-In)."
1556
 
1557
+ #: ../settings/settings-edit.php:238
1558
  msgid "Email Content for Welcome Email"
1559
  msgstr "Contenuto dell'email di benvenuto"
1560
 
1561
+ #: ../settings/settings-edit.php:239
1562
  msgid ""
1563
  "Content for the subscriber welcome email whenever a user's email is either "
1564
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1568
  "confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto (se Singolo "
1569
  "Opt-In)."
1570
 
1571
+ #: ../settings/settings-edit.php:247
1572
  msgid "Unsubscribe Link"
1573
  msgstr "Link di cancellazione"
1574
 
1575
+ #: ../settings/settings-edit.php:248
1576
  msgid ""
1577
  "This unsubscribe link is automatically added to all the emails that are sent "
1578
  "from this plugin. It is a readonly field and you are advised not to modify "
1582
  "inviate con questo plugin. E' un campo a sola lettura e non può essere "
1583
  "modificato."
1584
 
1585
+ #: ../settings/settings-edit.php:254
1586
  msgid "Unsubscribe Text in Email"
1587
  msgstr "Testo Cancellazione nella mail"
1588
 
1589
+ #: ../settings/settings-edit.php:255
1590
  msgid ""
1591
  "The text for the unsubscribe link. This text is automatically added with "
1592
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1594
  "Il testo per il link di cancellazione. Questo testo viene aggiunto "
1595
  "automaticamente alle email.<br />Parole Chiave disponibili: {{LINK}}"
1596
 
1597
+ #: ../settings/settings-edit.php:262
1598
  msgid "Text to display after an email address is unsubscribed"
1599
  msgstr "Testo da visualizzare dopo che l'indirizzo email è stato disiscritto"
1600
 
1601
+ #: ../settings/settings-edit.php:263
1602
  msgid ""
1603
  "This text will be displayed once user clicks on unsubscribe link from the "
1604
  "email."
1606
  "Questo testo viene visualizzato quando l'utente clicca sul link di "
1607
  "cancellazione."
1608
 
1609
+ #: ../settings/settings-edit.php:275
1610
  msgid "Error in the Subscribe / Confirmation Link"
1611
  msgstr "Errore nel link di Cancellazione/Conferma"
1612
 
1613
+ #: ../settings/settings-edit.php:276
1614
  msgid ""
1615
  "Default message to display if there is any issue while clicking on subscribe "
1616
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1618
  "Messaggio standard da visualizzare se si verifica un problema nel link di "
1619
  "Conferma / Cancellazione presente nella email in caso di Doppio Opt-In."
1620
 
1621
+ #: ../settings/settings-edit.php:282
1622
  msgid "Error in the Unsubscribe Link"
1623
  msgstr "Errore nel link di Cancellazione"
1624
 
1625
+ #: ../settings/settings-edit.php:283
1626
  msgid ""
1627
  "Default message to display if there is any issue while clicking on "
1628
  "unsubscribe link from the emails."
1630
  "Messaggio standard da visualizzare se si verifica un problema nel link di "
1631
  "cancellazione presente nelle email. "
1632
 
1633
+ #: ../settings/settings-edit.php:295
1634
  msgid "Select user roles who can access following menus. Only Admin can change this."
1635
  msgstr ""
1636
  "Seleziona il ruolo degli utenti che hanno accesso ai menu. Solo "
1637
  "l'Amministratore può modificare questo."
1638
 
1639
+ #: ../settings/settings-edit.php:301
1640
  msgid "Subscribers Menu"
1641
  msgstr "Menu Iscritti"
1642
 
1643
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1644
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1645
+ #: settings/settings-edit.php:353
1646
  msgid "Administrator Only"
1647
  msgstr "Solo Amministratore"
1648
 
1649
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1650
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1651
+ #: settings/settings-edit.php:354
1652
  msgid "Administrator/Editor"
1653
  msgstr "Amministratore/Editor"
1654
 
1655
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1656
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1657
+ #: settings/settings-edit.php:355
1658
  msgid "Administrator/Editor/Author/Contributor"
1659
  msgstr "Amministratore/Editor/Autore/Contributore"
1660
 
1661
+ #: ../settings/settings-edit.php:313
1662
  msgid "Templates Menu"
1663
  msgstr "Menu Modelli"
1664
 
1665
+ #: ../settings/settings-edit.php:325
1666
  msgid "Post Notifications Menu"
1667
  msgstr "Menu Notifiche Post"
1668
 
1669
+ #: ../settings/settings-edit.php:349
1670
  msgid "Reports Menu"
1671
  msgstr "Menu Rapporti"
1672
 
1673
+ #: ../settings/settings-edit.php:366
1674
  msgid "Cron job URL"
1675
  msgstr "URL del Cron Job"
1676
 
1677
+ #: ../settings/settings-edit.php:367
1678
  msgid ""
1679
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1680
  "modify it."
1682
  "Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
1683
  "essere modificato."
1684
 
1685
+ #: ../settings/settings-edit.php:376
1686
  msgid "Email Count"
1687
  msgstr "Numero di Email"
1688
 
1689
+ #: ../settings/settings-edit.php:377
1690
  msgid "Number of emails that you want to trigger per hour."
1691
  msgstr "Nuomero di email che vuoi spedire all'ora."
1692
 
1693
+ #: ../settings/settings-edit.php:382
1694
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1695
  msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
1696
 
1697
+ #: ../settings/settings-edit.php:387
1698
  msgid "Cron Report"
1699
  msgstr "Rapporto del Cron"
1700
 
1701
+ #: ../settings/settings-edit.php:388
1702
  msgid ""
1703
  "Email to admin whenever a cron URL is triggered from your server.<br "
1704
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1706
  "Invia email all'Amministratore quando un cron viene gestito dal server<br />."
1707
  " Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1708
 
1709
+ #: ../settings/settings-edit.php:398
1710
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1711
  msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
1712
 
1713
+ #: ../settings/settings-edit.php:399
1714
  msgid ""
1715
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1716
  "schedule-cron-emails/?"
1722
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
1723
  "Cron?</a>"
1724
 
1725
+ #: ../settings/settings-edit.php:400
1726
  msgid ""
1727
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1728
  "schedule-cron-emails-in-cpanel/?"
1734
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1735
  "un cron job in cPanel</a>"
1736
 
1737
+ #: ../settings/settings-edit.php:401
1738
  msgid ""
1739
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1740
  "schedule-cron-emails-in-parallels-plesk/?"
1746
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1747
  "un cron job in Plesk</a>"
1748
 
1749
+ #: ../settings/settings-edit.php:402
1750
  msgid ""
1751
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1752
  "if-hosting-doesnt-support-cron-jobs/?"
1758
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
1759
  "Hosting non supporta i cron job ?</a>"
1760
 
1761
+ #: ../settings/settings-edit.php:517
1762
  msgid "Please enter sender of notifications from name."
1763
  msgstr "Inserisci il nome del mittente delle notifiche."
1764
 
1765
+ #: ../settings/settings-edit.php:522
1766
  msgid "Please enter sender of notifications from email."
1767
  msgstr "Inserisci l'email del mittente delle notifiche."
1768
 
1769
+ #: ../settings/settings-edit.php:580
1770
  msgid "Settings Saved."
1771
  msgstr "Configurazione salvata."
1772
 
1773
+ #: ../settings/settings-edit.php:583
1774
  msgid "Oops, unable to update."
1775
  msgstr "Oops, impossibile aggiornare."
1776
 
1804
  msgstr "Email non valida."
1805
 
1806
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1807
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1808
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1809
  #: subscribers/view-subscriber-sync.php:89
1810
  msgid "Add New Subscriber"
1811
  msgstr "Aggiungi nuovo iscritto"
1812
 
1813
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1814
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1815
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1816
  #: subscribers/view-subscriber-sync.php:90
1817
  msgid "Import"
1824
  msgstr "Esporta"
1825
 
1826
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1827
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1828
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1829
  #: subscribers/view-subscriber-sync.php:143
1830
  msgid "Sync"
1917
  msgid "Go back to Subscribers dashboard"
1918
  msgstr "Torna alla Bacheca degli Iscritti"
1919
 
1920
+ #: ../subscribers/view-subscriber-export.php:50
1921
  msgid "Export Email Addresses"
1922
  msgstr "Esporta indirizzi email"
1923
 
1924
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1925
+ #: export.php:70
1926
  msgid "Type of List to Export"
1927
  msgstr "Tipo di lista per esportazione"
1928
 
1929
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1930
+ #: export.php:71
1931
  msgid "Total Emails Count"
1932
  msgstr "Totale email"
1933
 
1934
+ #: ../subscribers/view-subscriber-export.php:77
1935
  msgid "1"
1936
  msgstr "1"
1937
 
1938
+ #: ../subscribers/view-subscriber-export.php:78
1939
  msgid "All Subscribers"
1940
  msgstr "Tutti gli iscritti"
1941
 
1942
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1943
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1944
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1945
  msgid "Click to Export in CSV"
1946
  msgstr "Clicca per esportare in CSV"
1947
 
1948
+ #: ../subscribers/view-subscriber-export.php:83
1949
  msgid "2"
1950
  msgstr "2"
1951
 
1952
+ #: ../subscribers/view-subscriber-export.php:84
1953
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1954
  msgstr "Iscritti attivi (Stato: Confermato e singolo Opt In)"
1955
 
1956
+ #: ../subscribers/view-subscriber-export.php:89
1957
  msgid "3"
1958
  msgstr "3"
1959
 
1960
+ #: ../subscribers/view-subscriber-export.php:90
1961
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1962
  msgstr "Utenti inattivi (Stato: Non confermato e Disiscritto)"
1963
 
1964
+ #: ../subscribers/view-subscriber-export.php:95
1965
  msgid "4"
1966
  msgstr "4"
1967
 
1968
+ #: ../subscribers/view-subscriber-export.php:96
1969
  msgid "WordPress Registered Users"
1970
  msgstr "Utenti registrati WordPress"
1971
 
1972
+ #: ../subscribers/view-subscriber-export.php:101
1973
  msgid "5"
1974
  msgstr "5"
1975
 
1976
+ #: ../subscribers/view-subscriber-export.php:102
1977
  msgid "Commented Authors"
1978
  msgstr "Autori commentati"
1979
 
2104
  msgid "Resend Confirmation"
2105
  msgstr "Reinvia conferma"
2106
 
2107
+ #: ../subscribers/view-subscriber-show.php:303
2108
+ msgid "Update Subscribers Group"
2109
+ msgstr "Aggiorna gruppo iscritti"
2110
+
2111
  #: ../subscribers/view-subscriber-show.php:304
2112
  msgid "Update Subscribers Status"
2113
  msgstr "Aggiorna status iscritti"
languages/email-subscribers-nb_NO.mo CHANGED
Binary file
languages/email-subscribers-nb_NO.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:51 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Norwegian (Bokmål)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -23,7 +23,7 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
27
  msgid "Templates"
28
  msgstr ""
29
 
@@ -47,97 +47,83 @@ msgid ""
47
  "spam/junk folder."
48
  msgstr ""
49
 
50
- #: ../classes/es-register.php:726
51
- msgid ""
52
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
53
- "subscribers list?</b> Come check our Pro plan."
54
- msgstr ""
55
-
56
- #: ../classes/es-register.php:727
57
- msgid "Check Pro plan"
58
- msgstr ""
59
-
60
  #: ../classes/es-register.php:727
61
- msgid "Not interested."
62
- msgstr ""
63
-
64
- #: ../classes/es-register.php:765
65
  msgid ""
66
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
67
- "Checkbox' in the subscription form.</b>"
68
  msgstr ""
69
 
70
- #: ../classes/es-register.php:766
71
- msgid "Steps to enable"
72
  msgstr ""
73
 
74
- #: ../classes/es-register.php:766
75
- msgid "Ok, got it"
76
  msgstr ""
77
 
78
- #: ../classes/es-register.php:805
79
  #, php-format
80
  msgid "Email Subscribers version: <strong>%s</strong>"
81
  msgstr ""
82
 
83
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
84
  msgid "Add new Template"
85
  msgstr ""
86
 
87
- #: ../classes/es-register.php:818
88
  msgid "Edit Templates"
89
  msgstr ""
90
 
91
- #: ../classes/es-register.php:819
92
  msgid "New Templates"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:821
96
  msgid "View Templates"
97
  msgstr ""
98
 
99
- #: ../classes/es-register.php:822
100
  msgid "Search Templates"
101
  msgstr ""
102
 
103
- #: ../classes/es-register.php:823
104
  msgid "No Templates found"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:824
108
  msgid "No Templates found in Trash"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:827
112
  msgid "Thumbnail (For Visual Representation only)"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:828
116
  msgid "Set thumbnail"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:865
120
  msgid "Template Type"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:936
124
  #, php-format
125
  msgid "%s for Post Notification: {{POSTTITLE}}"
126
  msgstr ""
127
 
128
- #: ../classes/es-register.php:936
129
  msgid "Available Keyword"
130
  msgstr ""
131
 
132
- #: ../classes/es-register.php:943
133
  msgid "Select your Email Template Type"
134
  msgstr ""
135
 
136
- #: ../classes/es-register.php:995
137
  msgid "Preview Template"
138
  msgstr ""
139
 
140
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
141
  #, php-format
142
  msgid ""
143
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -145,17 +131,17 @@ msgid ""
145
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
146
  msgstr ""
147
 
148
- #: ../classes/es-register.php:1015
149
  #, php-format
150
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
151
  msgstr ""
152
 
153
- #: ../classes/es-register.php:1038
154
  #, php-format
155
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
156
  msgstr ""
157
 
158
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
159
  msgid "Unexpected url submit has been detected!"
160
  msgstr ""
161
 
@@ -267,6 +253,11 @@ msgstr ""
267
  msgid "Please select notification mail subject. Use templates menu to create new."
268
  msgstr ""
269
 
 
 
 
 
 
270
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
271
  #: 164
272
  msgid "(Use templates menu to create new)"
@@ -314,30 +305,30 @@ msgid ""
314
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
315
  msgstr ""
316
 
317
- #: ../settings/settings-edit.php:233
318
  msgid ""
319
  "Content for the subscriber welcome email whenever a user's email is either "
320
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
321
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
322
  msgstr ""
323
 
324
- #: ../settings/settings-edit.php:249
325
  msgid ""
326
  "The text for the unsubscribe link. This text is automatically added with "
327
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
328
  msgstr ""
329
 
330
- #: ../settings/settings-edit.php:301
331
  msgid "Templates Menu"
332
  msgstr ""
333
 
334
- #: ../settings/settings-edit.php:376
335
  msgid ""
336
  "Email to admin whenever a cron URL is triggered from your server.<br "
337
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
338
  msgstr ""
339
 
340
- #: ../settings/settings-edit.php:554
341
  msgid "Please enter valid email count."
342
  msgstr ""
343
 
@@ -426,7 +417,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
426
  msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
427
 
428
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
429
- #: register.php:826
430
  msgid "Email Subscribers"
431
  msgstr "Email Subscribers"
432
 
@@ -441,7 +432,7 @@ msgid "Post Notifications"
441
  msgstr "Varsler"
442
 
443
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
444
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
445
  msgid "Newsletters"
446
  msgstr "Nyhetsbrev"
447
 
@@ -604,7 +595,7 @@ msgctxt "widget-page-enhanced-select"
604
  msgid "Please try after some time"
605
  msgstr "Prøv på nytt senere"
606
 
607
- #: ../classes/es-register.php:791
608
  msgid ""
609
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
610
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -616,63 +607,63 @@ msgstr ""
616
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
617
  "fra Icegram!"
618
 
619
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
620
  msgid "Thumbnail"
621
  msgstr "Miniatyrbilde"
622
 
623
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
624
  #: sentmail/sentmail-show.php:121
625
  msgid "Preview"
626
  msgstr "Forhåndsvis"
627
 
628
- #: ../classes/es-register.php:945
629
  msgid "Newsletter"
630
  msgstr "Nyhetsbrev"
631
 
632
- #: ../classes/es-register.php:946
633
  msgid "Post Notification"
634
  msgstr "Varsel"
635
 
636
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
637
- #: register.php:1030 ../classes/es-register.php:1038
638
  msgid "Available Keywords"
639
  msgstr "Tilgjengelige søkeord"
640
 
641
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
642
  msgid "Name"
643
  msgstr "Navn"
644
 
645
- #: ../classes/es-register.php:1080
646
  msgid "Email *"
647
  msgstr "E-post *"
648
 
649
- #: ../classes/es-register.php:1089 ../help/help.php:202
650
  msgid "Subscribe"
651
  msgstr "Abonner"
652
 
653
- #: ../classes/es-register.php:1193
654
  msgid "Widget Title"
655
  msgstr "Widget tittel"
656
 
657
- #: ../classes/es-register.php:1197
658
  msgid "Short description about subscription form"
659
  msgstr "Kort beskrivelse av ditt abonnement skjema"
660
 
661
- #: ../classes/es-register.php:1201
662
  msgid "Display Name Field"
663
  msgstr "Vis Navnefelt"
664
 
665
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
666
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
667
  msgid "YES"
668
  msgstr "JA"
669
 
670
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
671
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
672
  msgid "NO"
673
  msgstr "NEI"
674
 
675
- #: ../classes/es-register.php:1208
676
  msgid "Subscriber Group"
677
  msgstr "Abonnent gruppe"
678
 
@@ -987,8 +978,8 @@ msgstr ""
987
  msgid "add Rainmaker’s form in Email Subscribers"
988
  msgstr "legg til Rainmakers skjema i e-post abonnenter"
989
 
990
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
991
- #: job/es-unsubscribe.php:61
992
  msgid ""
993
  "Oops.. We are getting some technical error. Please try again or contact "
994
  "admin."
@@ -996,7 +987,7 @@ msgstr ""
996
  "Det har oppstått en intern feil. Vennligst prøv igjen eller kontakt "
997
  "kundestøtte."
998
 
999
- #: ../job/es-optin.php:61
1000
  msgid "This email address has already been confirmed."
1001
  msgstr "Denne e-postadressen er allerede blitt bekreftet."
1002
 
@@ -1025,16 +1016,12 @@ msgstr "Legg til varsel"
1025
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1026
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1027
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1028
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1029
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1030
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
1031
  msgid "Help"
1032
  msgstr "Hjelp"
1033
 
1034
- #: ../notification/notification-add.php:121
1035
- msgid "Select Subscribers Group"
1036
- msgstr "Velg abonnent gruppe"
1037
-
1038
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1039
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1040
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1131,11 +1118,6 @@ msgstr "Rediger varsel"
1131
  msgid "Add New"
1132
  msgstr "Legg til ny"
1133
 
1134
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1135
- #: php:303
1136
- msgid "Update Subscribers Group"
1137
- msgstr "Oppdater abonnent gruppe"
1138
-
1139
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1140
  msgid "Selected record deleted."
1141
  msgstr "Valgte posten slettet."
@@ -1276,8 +1258,8 @@ msgid "Delivery Report"
1276
  msgstr "Leveringsrapport"
1277
 
1278
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1279
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1280
- #: export.php:66
1281
  msgid "Sno"
1282
  msgstr "Sno"
1283
 
@@ -1341,8 +1323,8 @@ msgid "Total"
1341
  msgstr "Total"
1342
 
1343
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1344
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1345
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1346
  msgid "Action"
1347
  msgstr "Handling"
1348
 
@@ -1542,7 +1524,7 @@ msgstr "Double Opt i bekreftelses link"
1542
  msgid "It is a readonly field and you are advised not to modify it."
1543
  msgstr "Det er et skrivebeskyttet felt du anbefales ikke å endre den."
1544
 
1545
- #: ../settings/settings-edit.php:205
1546
  msgid ""
1547
  "Text to display after an email address is successfully subscribed from "
1548
  "Double Opt-In (Confirmation) Email"
@@ -1550,7 +1532,7 @@ msgstr ""
1550
  "Teksten som skal vises når en e-postadresse er vellykket registrert fra "
1551
  "Double Opt In (bekreftelse) e-post"
1552
 
1553
- #: ../settings/settings-edit.php:206
1554
  msgid ""
1555
  "This text will be displayed once user clicks on email confirmation link from "
1556
  "the Double Opt In (confirmation) Email."
@@ -1558,13 +1540,13 @@ msgstr ""
1558
  "Denne teksten vises når brukeren klikker på e-post bekreftelseslink fra "
1559
  "Double Opt i (bekreftelse) e-post."
1560
 
1561
- #: ../settings/settings-edit.php:213
1562
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1563
  msgstr ""
1564
  "Sende velkomst e -post til abonnenten etter vellykket registrering. Dette "
1565
  "alternativet må være satt til Ja."
1566
 
1567
- #: ../settings/settings-edit.php:214
1568
  msgid ""
1569
  "To send welcome email to subscriber after successful signup. This option "
1570
  "must be set to YES."
@@ -1572,11 +1554,11 @@ msgstr ""
1572
  "Sende velkomst e -post til abonnenten etter vellykket registrering. Dette "
1573
  "alternativet må være satt til Ja."
1574
 
1575
- #: ../settings/settings-edit.php:225
1576
  msgid "Subject for Welcome Email"
1577
  msgstr "Abonnent vellkomst E-post"
1578
 
1579
- #: ../settings/settings-edit.php:226
1580
  msgid ""
1581
  "Subject for the subscriber welcome email. This will be sent whenever a "
1582
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1586,15 +1568,15 @@ msgstr ""
1586
  "post er enten bekreftet (hvis dobbelt Opt In) / abonnert (Hvis én Opt In) "
1587
  "vellykket."
1588
 
1589
- #: ../settings/settings-edit.php:232
1590
  msgid "Email Content for Welcome Email"
1591
  msgstr "Innhold i e-posten (Velkommen e-post)"
1592
 
1593
- #: ../settings/settings-edit.php:241
1594
  msgid "Unsubscribe Link"
1595
  msgstr "Link for avmelding"
1596
 
1597
- #: ../settings/settings-edit.php:242
1598
  msgid ""
1599
  "This unsubscribe link is automatically added to all the emails that are sent "
1600
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1604,25 +1586,25 @@ msgstr ""
1604
  "fra denne plugin. Det er et skrivebeskyttet felt og du anbefales ikke å "
1605
  "endre dette."
1606
 
1607
- #: ../settings/settings-edit.php:248
1608
  msgid "Unsubscribe Text in Email"
1609
  msgstr "Avmeldings tekst i e-post"
1610
 
1611
- #: ../settings/settings-edit.php:255
1612
  msgid "Text to display after an email address is unsubscribed"
1613
  msgstr "Teksten som skal vises etter avmeldings e-posten"
1614
 
1615
- #: ../settings/settings-edit.php:256
1616
  msgid ""
1617
  "This text will be displayed once user clicks on unsubscribe link from the "
1618
  "email."
1619
  msgstr "Denne teksten vises når brukeren klikker på avmeldings linken."
1620
 
1621
- #: ../settings/settings-edit.php:263
1622
  msgid "Error in the Subscribe / Confirmation Link"
1623
  msgstr "Feil i Abonner / bekreftelse Link"
1624
 
1625
- #: ../settings/settings-edit.php:264
1626
  msgid ""
1627
  "Default message to display if there is any issue while clicking on subscribe "
1628
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1630,11 +1612,11 @@ msgstr ""
1630
  "Standardmelding som vises hvis det er alle problem mens du klikker på "
1631
  "bekreftelses link fra Double Opt In (bekreftelse) e-post."
1632
 
1633
- #: ../settings/settings-edit.php:270
1634
  msgid "Error in the Unsubscribe Link"
1635
  msgstr "Feil i avmeldings linken"
1636
 
1637
- #: ../settings/settings-edit.php:271
1638
  msgid ""
1639
  "Default message to display if there is any issue while clicking on "
1640
  "unsubscribe link from the emails."
@@ -1642,47 +1624,47 @@ msgstr ""
1642
  "Standardmelding som vises hvis det er noe problem mens du klikker på "
1643
  "avmeldings linken fra e-post."
1644
 
1645
- #: ../settings/settings-edit.php:283
1646
  msgid "Select user roles who can access following menus. Only Admin can change this."
1647
  msgstr ""
1648
  "Velg roller som kan få tilgang til følgende menyer. Bare Admin kan endre "
1649
  "dette."
1650
 
1651
- #: ../settings/settings-edit.php:289
1652
  msgid "Subscribers Menu"
1653
  msgstr "Abonnent Meny"
1654
 
1655
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1656
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1657
- #: settings/settings-edit.php:341
1658
  msgid "Administrator Only"
1659
  msgstr "Bare for administrator"
1660
 
1661
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1662
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1663
- #: settings/settings-edit.php:342
1664
  msgid "Administrator/Editor"
1665
  msgstr "Administrator/redaktør"
1666
 
1667
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1668
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1669
- #: settings/settings-edit.php:343
1670
  msgid "Administrator/Editor/Author/Contributor"
1671
  msgstr "Administrator/redaktør/forfatter/bidragsyter"
1672
 
1673
- #: ../settings/settings-edit.php:313
1674
  msgid "Post Notifications Menu"
1675
  msgstr "Postvarsler Meny"
1676
 
1677
- #: ../settings/settings-edit.php:337
1678
  msgid "Reports Menu"
1679
  msgstr "Rapport Meny"
1680
 
1681
- #: ../settings/settings-edit.php:354
1682
  msgid "Cron job URL"
1683
  msgstr "Cron jobb URL"
1684
 
1685
- #: ../settings/settings-edit.php:355
1686
  msgid ""
1687
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1688
  "modify it."
@@ -1690,27 +1672,27 @@ msgstr ""
1690
  "Dette er din Cron jobb URL. Det er et skrivebeskyttet felt du anbefales ikke "
1691
  "å endre den."
1692
 
1693
- #: ../settings/settings-edit.php:364
1694
  msgid "Email Count"
1695
  msgstr "Antall e-poster"
1696
 
1697
- #: ../settings/settings-edit.php:365
1698
  msgid "Number of emails that you want to trigger per hour."
1699
  msgstr "Antall e-postmeldinger som skal utløses per time."
1700
 
1701
- #: ../settings/settings-edit.php:370
1702
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1703
  msgstr "(Web verten har begrensninger. Vi foreslår 50 e-poster per time sikre)"
1704
 
1705
- #: ../settings/settings-edit.php:375
1706
  msgid "Cron Report"
1707
  msgstr "Cronlogg"
1708
 
1709
- #: ../settings/settings-edit.php:386
1710
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1711
  msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
1712
 
1713
- #: ../settings/settings-edit.php:387
1714
  msgid ""
1715
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1716
  "schedule-cron-emails/?"
@@ -1720,7 +1702,7 @@ msgstr ""
1720
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1721
  "schedule-cron-emails/\">Hva er Cron?</a>"
1722
 
1723
- #: ../settings/settings-edit.php:388
1724
  msgid ""
1725
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1726
  "schedule-cron-emails-in-cpanel/?"
@@ -1732,7 +1714,7 @@ msgstr ""
1732
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Oppsett "
1733
  "cron jobb i cPanel</a>"
1734
 
1735
- #: ../settings/settings-edit.php:389
1736
  msgid ""
1737
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1738
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1742,7 +1724,7 @@ msgstr ""
1742
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1743
  "schedule-cron-emails-in-parallels-plesk/\">ISetup cron jobb i Plesk</a>"
1744
 
1745
- #: ../settings/settings-edit.php:390
1746
  msgid ""
1747
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1748
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1752,19 +1734,19 @@ msgstr ""
1752
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
1753
  "if-hosting-doesnt-support-cron-jobs/\">Host støtter ikke cron jobber?</a>"
1754
 
1755
- #: ../settings/settings-edit.php:505
1756
  msgid "Please enter sender of notifications from name."
1757
  msgstr "Angi avsenderen av meldinger fra navn."
1758
 
1759
- #: ../settings/settings-edit.php:510
1760
  msgid "Please enter sender of notifications from email."
1761
  msgstr "Angi avsenderen av meldinger fra e-post."
1762
 
1763
- #: ../settings/settings-edit.php:568
1764
  msgid "Settings Saved."
1765
  msgstr "Innstillinger Lagret."
1766
 
1767
- #: ../settings/settings-edit.php:571
1768
  msgid "Oops, unable to update."
1769
  msgstr "Oops, kan ikke oppdatere."
1770
 
@@ -1798,14 +1780,14 @@ msgid "Invalid Email."
1798
  msgstr "Ugyldig e-postadresse."
1799
 
1800
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1801
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1802
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1803
  #: subscribers/view-subscriber-sync.php:89
1804
  msgid "Add New Subscriber"
1805
  msgstr "Legg til en ny abonnement"
1806
 
1807
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1808
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1809
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1810
  #: subscribers/view-subscriber-sync.php:90
1811
  msgid "Import"
@@ -1818,7 +1800,7 @@ msgid "Export"
1818
  msgstr "Eksporter"
1819
 
1820
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1821
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1822
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1823
  #: subscribers/view-subscriber-sync.php:143
1824
  msgid "Sync"
@@ -1899,63 +1881,63 @@ msgstr "Oppdater abonnentstatus"
1899
  msgid "Update Subscriber's Group"
1900
  msgstr "Oppdater abonnent gruppe"
1901
 
1902
- #: ../subscribers/view-subscriber-export.php:47
1903
  msgid "Export Email Addresses"
1904
  msgstr "Eksportere e-post adresser"
1905
 
1906
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1907
- #: export.php:67
1908
  msgid "Type of List to Export"
1909
  msgstr "Liste type for Eksporter"
1910
 
1911
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1912
- #: export.php:68
1913
  msgid "Total Emails Count"
1914
  msgstr "Totalt antall e-poster"
1915
 
1916
- #: ../subscribers/view-subscriber-export.php:74
1917
  msgid "1"
1918
  msgstr "1"
1919
 
1920
- #: ../subscribers/view-subscriber-export.php:75
1921
  msgid "All Subscribers"
1922
  msgstr "Alle abonnenter"
1923
 
1924
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1925
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1926
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1927
  msgid "Click to Export in CSV"
1928
  msgstr "Klikk Eksporter til CSV"
1929
 
1930
- #: ../subscribers/view-subscriber-export.php:80
1931
  msgid "2"
1932
  msgstr "2"
1933
 
1934
- #: ../subscribers/view-subscriber-export.php:81
1935
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1936
  msgstr "Aktive abonnenter (Status: bekreftet & enkel Opt In)"
1937
 
1938
- #: ../subscribers/view-subscriber-export.php:86
1939
  msgid "3"
1940
  msgstr "3"
1941
 
1942
- #: ../subscribers/view-subscriber-export.php:87
1943
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1944
  msgstr "Inaktive abonnenter (Status: ubekreftet & avmeldt)"
1945
 
1946
- #: ../subscribers/view-subscriber-export.php:92
1947
  msgid "4"
1948
  msgstr "4"
1949
 
1950
- #: ../subscribers/view-subscriber-export.php:93
1951
  msgid "WordPress Registered Users"
1952
  msgstr "WordPress registrerte brukere"
1953
 
1954
- #: ../subscribers/view-subscriber-export.php:98
1955
  msgid "5"
1956
  msgstr "5"
1957
 
1958
- #: ../subscribers/view-subscriber-export.php:99
1959
  msgid "Commented Authors"
1960
  msgstr "Kommenterte forfattere"
1961
 
@@ -2086,6 +2068,10 @@ msgstr "Massehandlinger"
2086
  msgid "Resend Confirmation"
2087
  msgstr "Sen e-post bekreftelsen på nytt"
2088
 
 
 
 
 
2089
  #: ../subscribers/view-subscriber-show.php:304
2090
  msgid "Update Subscribers Status"
2091
  msgstr "Oppdater abonnent Status"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:45 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Norwegian (Bokmål)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
27
  msgid "Templates"
28
  msgstr ""
29
 
47
  "spam/junk folder."
48
  msgstr ""
49
 
 
 
 
 
 
 
 
 
 
 
50
  #: ../classes/es-register.php:727
 
 
 
 
51
  msgid ""
52
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
53
+ "</b>"
54
  msgstr ""
55
 
56
+ #: ../classes/es-register.php:728
57
+ msgid "Here's how"
58
  msgstr ""
59
 
60
+ #: ../classes/es-register.php:728
61
+ msgid "Not interested. Dismiss this."
62
  msgstr ""
63
 
64
+ #: ../classes/es-register.php:767
65
  #, php-format
66
  msgid "Email Subscribers version: <strong>%s</strong>"
67
  msgstr ""
68
 
69
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
70
  msgid "Add new Template"
71
  msgstr ""
72
 
73
+ #: ../classes/es-register.php:780
74
  msgid "Edit Templates"
75
  msgstr ""
76
 
77
+ #: ../classes/es-register.php:781
78
  msgid "New Templates"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:783
82
  msgid "View Templates"
83
  msgstr ""
84
 
85
+ #: ../classes/es-register.php:784
86
  msgid "Search Templates"
87
  msgstr ""
88
 
89
+ #: ../classes/es-register.php:785
90
  msgid "No Templates found"
91
  msgstr ""
92
 
93
+ #: ../classes/es-register.php:786
94
  msgid "No Templates found in Trash"
95
  msgstr ""
96
 
97
+ #: ../classes/es-register.php:789
98
  msgid "Thumbnail (For Visual Representation only)"
99
  msgstr ""
100
 
101
+ #: ../classes/es-register.php:790
102
  msgid "Set thumbnail"
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:827
106
  msgid "Template Type"
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:900
110
  #, php-format
111
  msgid "%s for Post Notification: {{POSTTITLE}}"
112
  msgstr ""
113
 
114
+ #: ../classes/es-register.php:900
115
  msgid "Available Keyword"
116
  msgstr ""
117
 
118
+ #: ../classes/es-register.php:907
119
  msgid "Select your Email Template Type"
120
  msgstr ""
121
 
122
+ #: ../classes/es-register.php:959
123
  msgid "Preview Template"
124
  msgstr ""
125
 
126
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
127
  #, php-format
128
  msgid ""
129
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
131
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
132
  msgstr ""
133
 
134
+ #: ../classes/es-register.php:979
135
  #, php-format
136
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
137
  msgstr ""
138
 
139
+ #: ../classes/es-register.php:1002
140
  #, php-format
141
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
142
  msgstr ""
143
 
144
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
145
  msgid "Unexpected url submit has been detected!"
146
  msgstr ""
147
 
253
  msgid "Please select notification mail subject. Use templates menu to create new."
254
  msgstr ""
255
 
256
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
257
+ #: 132
258
+ msgid "Subscribers Group to send post notification to"
259
+ msgstr ""
260
+
261
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
262
  #: 164
263
  msgid "(Use templates menu to create new)"
305
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
306
  msgstr ""
307
 
308
+ #: ../settings/settings-edit.php:239
309
  msgid ""
310
  "Content for the subscriber welcome email whenever a user's email is either "
311
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
312
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
313
  msgstr ""
314
 
315
+ #: ../settings/settings-edit.php:255
316
  msgid ""
317
  "The text for the unsubscribe link. This text is automatically added with "
318
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
319
  msgstr ""
320
 
321
+ #: ../settings/settings-edit.php:313
322
  msgid "Templates Menu"
323
  msgstr ""
324
 
325
+ #: ../settings/settings-edit.php:388
326
  msgid ""
327
  "Email to admin whenever a cron URL is triggered from your server.<br "
328
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
329
  msgstr ""
330
 
331
+ #: ../settings/settings-edit.php:566
332
  msgid "Please enter valid email count."
333
  msgstr ""
334
 
417
  msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
418
 
419
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
420
+ #: register.php:788
421
  msgid "Email Subscribers"
422
  msgstr "Email Subscribers"
423
 
432
  msgstr "Varsler"
433
 
434
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
435
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
436
  msgid "Newsletters"
437
  msgstr "Nyhetsbrev"
438
 
595
  msgid "Please try after some time"
596
  msgstr "Prøv på nytt senere"
597
 
598
+ #: ../classes/es-register.php:753
599
  msgid ""
600
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
601
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
607
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
608
  "fra Icegram!"
609
 
610
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
611
  msgid "Thumbnail"
612
  msgstr "Miniatyrbilde"
613
 
614
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
615
  #: sentmail/sentmail-show.php:121
616
  msgid "Preview"
617
  msgstr "Forhåndsvis"
618
 
619
+ #: ../classes/es-register.php:909
620
  msgid "Newsletter"
621
  msgstr "Nyhetsbrev"
622
 
623
+ #: ../classes/es-register.php:910
624
  msgid "Post Notification"
625
  msgstr "Varsel"
626
 
627
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
628
+ #: register.php:994 ../classes/es-register.php:1002
629
  msgid "Available Keywords"
630
  msgstr "Tilgjengelige søkeord"
631
 
632
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
633
  msgid "Name"
634
  msgstr "Navn"
635
 
636
+ #: ../classes/es-register.php:1044
637
  msgid "Email *"
638
  msgstr "E-post *"
639
 
640
+ #: ../classes/es-register.php:1053 ../help/help.php:202
641
  msgid "Subscribe"
642
  msgstr "Abonner"
643
 
644
+ #: ../classes/es-register.php:1157
645
  msgid "Widget Title"
646
  msgstr "Widget tittel"
647
 
648
+ #: ../classes/es-register.php:1161
649
  msgid "Short description about subscription form"
650
  msgstr "Kort beskrivelse av ditt abonnement skjema"
651
 
652
+ #: ../classes/es-register.php:1165
653
  msgid "Display Name Field"
654
  msgstr "Vis Navnefelt"
655
 
656
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
657
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
658
  msgid "YES"
659
  msgstr "JA"
660
 
661
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
662
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
663
  msgid "NO"
664
  msgstr "NEI"
665
 
666
+ #: ../classes/es-register.php:1172
667
  msgid "Subscriber Group"
668
  msgstr "Abonnent gruppe"
669
 
978
  msgid "add Rainmaker’s form in Email Subscribers"
979
  msgstr "legg til Rainmakers skjema i e-post abonnenter"
980
 
981
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
982
+ #: job/es-unsubscribe.php:62
983
  msgid ""
984
  "Oops.. We are getting some technical error. Please try again or contact "
985
  "admin."
987
  "Det har oppstått en intern feil. Vennligst prøv igjen eller kontakt "
988
  "kundestøtte."
989
 
990
+ #: ../job/es-optin.php:62
991
  msgid "This email address has already been confirmed."
992
  msgstr "Denne e-postadressen er allerede blitt bekreftet."
993
 
1016
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1017
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1018
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1019
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
1020
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1021
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
1022
  msgid "Help"
1023
  msgstr "Hjelp"
1024
 
 
 
 
 
1025
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1026
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1027
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1118
  msgid "Add New"
1119
  msgstr "Legg til ny"
1120
 
 
 
 
 
 
1121
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1122
  msgid "Selected record deleted."
1123
  msgstr "Valgte posten slettet."
1258
  msgstr "Leveringsrapport"
1259
 
1260
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1261
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1262
+ #: export.php:69
1263
  msgid "Sno"
1264
  msgstr "Sno"
1265
 
1323
  msgstr "Total"
1324
 
1325
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1326
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1327
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1328
  msgid "Action"
1329
  msgstr "Handling"
1330
 
1524
  msgid "It is a readonly field and you are advised not to modify it."
1525
  msgstr "Det er et skrivebeskyttet felt du anbefales ikke å endre den."
1526
 
1527
+ #: ../settings/settings-edit.php:206
1528
  msgid ""
1529
  "Text to display after an email address is successfully subscribed from "
1530
  "Double Opt-In (Confirmation) Email"
1532
  "Teksten som skal vises når en e-postadresse er vellykket registrert fra "
1533
  "Double Opt In (bekreftelse) e-post"
1534
 
1535
+ #: ../settings/settings-edit.php:207
1536
  msgid ""
1537
  "This text will be displayed once user clicks on email confirmation link from "
1538
  "the Double Opt In (confirmation) Email."
1540
  "Denne teksten vises når brukeren klikker på e-post bekreftelseslink fra "
1541
  "Double Opt i (bekreftelse) e-post."
1542
 
1543
+ #: ../settings/settings-edit.php:219
1544
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1545
  msgstr ""
1546
  "Sende velkomst e -post til abonnenten etter vellykket registrering. Dette "
1547
  "alternativet må være satt til Ja."
1548
 
1549
+ #: ../settings/settings-edit.php:220
1550
  msgid ""
1551
  "To send welcome email to subscriber after successful signup. This option "
1552
  "must be set to YES."
1554
  "Sende velkomst e -post til abonnenten etter vellykket registrering. Dette "
1555
  "alternativet må være satt til Ja."
1556
 
1557
+ #: ../settings/settings-edit.php:231
1558
  msgid "Subject for Welcome Email"
1559
  msgstr "Abonnent vellkomst E-post"
1560
 
1561
+ #: ../settings/settings-edit.php:232
1562
  msgid ""
1563
  "Subject for the subscriber welcome email. This will be sent whenever a "
1564
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1568
  "post er enten bekreftet (hvis dobbelt Opt In) / abonnert (Hvis én Opt In) "
1569
  "vellykket."
1570
 
1571
+ #: ../settings/settings-edit.php:238
1572
  msgid "Email Content for Welcome Email"
1573
  msgstr "Innhold i e-posten (Velkommen e-post)"
1574
 
1575
+ #: ../settings/settings-edit.php:247
1576
  msgid "Unsubscribe Link"
1577
  msgstr "Link for avmelding"
1578
 
1579
+ #: ../settings/settings-edit.php:248
1580
  msgid ""
1581
  "This unsubscribe link is automatically added to all the emails that are sent "
1582
  "from this plugin. It is a readonly field and you are advised not to modify "
1586
  "fra denne plugin. Det er et skrivebeskyttet felt og du anbefales ikke å "
1587
  "endre dette."
1588
 
1589
+ #: ../settings/settings-edit.php:254
1590
  msgid "Unsubscribe Text in Email"
1591
  msgstr "Avmeldings tekst i e-post"
1592
 
1593
+ #: ../settings/settings-edit.php:262
1594
  msgid "Text to display after an email address is unsubscribed"
1595
  msgstr "Teksten som skal vises etter avmeldings e-posten"
1596
 
1597
+ #: ../settings/settings-edit.php:263
1598
  msgid ""
1599
  "This text will be displayed once user clicks on unsubscribe link from the "
1600
  "email."
1601
  msgstr "Denne teksten vises når brukeren klikker på avmeldings linken."
1602
 
1603
+ #: ../settings/settings-edit.php:275
1604
  msgid "Error in the Subscribe / Confirmation Link"
1605
  msgstr "Feil i Abonner / bekreftelse Link"
1606
 
1607
+ #: ../settings/settings-edit.php:276
1608
  msgid ""
1609
  "Default message to display if there is any issue while clicking on subscribe "
1610
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1612
  "Standardmelding som vises hvis det er alle problem mens du klikker på "
1613
  "bekreftelses link fra Double Opt In (bekreftelse) e-post."
1614
 
1615
+ #: ../settings/settings-edit.php:282
1616
  msgid "Error in the Unsubscribe Link"
1617
  msgstr "Feil i avmeldings linken"
1618
 
1619
+ #: ../settings/settings-edit.php:283
1620
  msgid ""
1621
  "Default message to display if there is any issue while clicking on "
1622
  "unsubscribe link from the emails."
1624
  "Standardmelding som vises hvis det er noe problem mens du klikker på "
1625
  "avmeldings linken fra e-post."
1626
 
1627
+ #: ../settings/settings-edit.php:295
1628
  msgid "Select user roles who can access following menus. Only Admin can change this."
1629
  msgstr ""
1630
  "Velg roller som kan få tilgang til følgende menyer. Bare Admin kan endre "
1631
  "dette."
1632
 
1633
+ #: ../settings/settings-edit.php:301
1634
  msgid "Subscribers Menu"
1635
  msgstr "Abonnent Meny"
1636
 
1637
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1638
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1639
+ #: settings/settings-edit.php:353
1640
  msgid "Administrator Only"
1641
  msgstr "Bare for administrator"
1642
 
1643
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1644
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1645
+ #: settings/settings-edit.php:354
1646
  msgid "Administrator/Editor"
1647
  msgstr "Administrator/redaktør"
1648
 
1649
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1650
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1651
+ #: settings/settings-edit.php:355
1652
  msgid "Administrator/Editor/Author/Contributor"
1653
  msgstr "Administrator/redaktør/forfatter/bidragsyter"
1654
 
1655
+ #: ../settings/settings-edit.php:325
1656
  msgid "Post Notifications Menu"
1657
  msgstr "Postvarsler Meny"
1658
 
1659
+ #: ../settings/settings-edit.php:349
1660
  msgid "Reports Menu"
1661
  msgstr "Rapport Meny"
1662
 
1663
+ #: ../settings/settings-edit.php:366
1664
  msgid "Cron job URL"
1665
  msgstr "Cron jobb URL"
1666
 
1667
+ #: ../settings/settings-edit.php:367
1668
  msgid ""
1669
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1670
  "modify it."
1672
  "Dette er din Cron jobb URL. Det er et skrivebeskyttet felt du anbefales ikke "
1673
  "å endre den."
1674
 
1675
+ #: ../settings/settings-edit.php:376
1676
  msgid "Email Count"
1677
  msgstr "Antall e-poster"
1678
 
1679
+ #: ../settings/settings-edit.php:377
1680
  msgid "Number of emails that you want to trigger per hour."
1681
  msgstr "Antall e-postmeldinger som skal utløses per time."
1682
 
1683
+ #: ../settings/settings-edit.php:382
1684
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1685
  msgstr "(Web verten har begrensninger. Vi foreslår 50 e-poster per time sikre)"
1686
 
1687
+ #: ../settings/settings-edit.php:387
1688
  msgid "Cron Report"
1689
  msgstr "Cronlogg"
1690
 
1691
+ #: ../settings/settings-edit.php:398
1692
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1693
  msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
1694
 
1695
+ #: ../settings/settings-edit.php:399
1696
  msgid ""
1697
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1698
  "schedule-cron-emails/?"
1702
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1703
  "schedule-cron-emails/\">Hva er Cron?</a>"
1704
 
1705
+ #: ../settings/settings-edit.php:400
1706
  msgid ""
1707
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1708
  "schedule-cron-emails-in-cpanel/?"
1714
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Oppsett "
1715
  "cron jobb i cPanel</a>"
1716
 
1717
+ #: ../settings/settings-edit.php:401
1718
  msgid ""
1719
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1720
  "schedule-cron-emails-in-parallels-plesk/?"
1724
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1725
  "schedule-cron-emails-in-parallels-plesk/\">ISetup cron jobb i Plesk</a>"
1726
 
1727
+ #: ../settings/settings-edit.php:402
1728
  msgid ""
1729
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1730
  "if-hosting-doesnt-support-cron-jobs/?"
1734
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
1735
  "if-hosting-doesnt-support-cron-jobs/\">Host støtter ikke cron jobber?</a>"
1736
 
1737
+ #: ../settings/settings-edit.php:517
1738
  msgid "Please enter sender of notifications from name."
1739
  msgstr "Angi avsenderen av meldinger fra navn."
1740
 
1741
+ #: ../settings/settings-edit.php:522
1742
  msgid "Please enter sender of notifications from email."
1743
  msgstr "Angi avsenderen av meldinger fra e-post."
1744
 
1745
+ #: ../settings/settings-edit.php:580
1746
  msgid "Settings Saved."
1747
  msgstr "Innstillinger Lagret."
1748
 
1749
+ #: ../settings/settings-edit.php:583
1750
  msgid "Oops, unable to update."
1751
  msgstr "Oops, kan ikke oppdatere."
1752
 
1780
  msgstr "Ugyldig e-postadresse."
1781
 
1782
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1783
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1784
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1785
  #: subscribers/view-subscriber-sync.php:89
1786
  msgid "Add New Subscriber"
1787
  msgstr "Legg til en ny abonnement"
1788
 
1789
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1790
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1791
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1792
  #: subscribers/view-subscriber-sync.php:90
1793
  msgid "Import"
1800
  msgstr "Eksporter"
1801
 
1802
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1803
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1804
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1805
  #: subscribers/view-subscriber-sync.php:143
1806
  msgid "Sync"
1881
  msgid "Update Subscriber's Group"
1882
  msgstr "Oppdater abonnent gruppe"
1883
 
1884
+ #: ../subscribers/view-subscriber-export.php:50
1885
  msgid "Export Email Addresses"
1886
  msgstr "Eksportere e-post adresser"
1887
 
1888
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1889
+ #: export.php:70
1890
  msgid "Type of List to Export"
1891
  msgstr "Liste type for Eksporter"
1892
 
1893
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1894
+ #: export.php:71
1895
  msgid "Total Emails Count"
1896
  msgstr "Totalt antall e-poster"
1897
 
1898
+ #: ../subscribers/view-subscriber-export.php:77
1899
  msgid "1"
1900
  msgstr "1"
1901
 
1902
+ #: ../subscribers/view-subscriber-export.php:78
1903
  msgid "All Subscribers"
1904
  msgstr "Alle abonnenter"
1905
 
1906
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1907
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1908
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1909
  msgid "Click to Export in CSV"
1910
  msgstr "Klikk Eksporter til CSV"
1911
 
1912
+ #: ../subscribers/view-subscriber-export.php:83
1913
  msgid "2"
1914
  msgstr "2"
1915
 
1916
+ #: ../subscribers/view-subscriber-export.php:84
1917
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1918
  msgstr "Aktive abonnenter (Status: bekreftet & enkel Opt In)"
1919
 
1920
+ #: ../subscribers/view-subscriber-export.php:89
1921
  msgid "3"
1922
  msgstr "3"
1923
 
1924
+ #: ../subscribers/view-subscriber-export.php:90
1925
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1926
  msgstr "Inaktive abonnenter (Status: ubekreftet & avmeldt)"
1927
 
1928
+ #: ../subscribers/view-subscriber-export.php:95
1929
  msgid "4"
1930
  msgstr "4"
1931
 
1932
+ #: ../subscribers/view-subscriber-export.php:96
1933
  msgid "WordPress Registered Users"
1934
  msgstr "WordPress registrerte brukere"
1935
 
1936
+ #: ../subscribers/view-subscriber-export.php:101
1937
  msgid "5"
1938
  msgstr "5"
1939
 
1940
+ #: ../subscribers/view-subscriber-export.php:102
1941
  msgid "Commented Authors"
1942
  msgstr "Kommenterte forfattere"
1943
 
2068
  msgid "Resend Confirmation"
2069
  msgstr "Sen e-post bekreftelsen på nytt"
2070
 
2071
+ #: ../subscribers/view-subscriber-show.php:303
2072
+ msgid "Update Subscribers Group"
2073
+ msgstr "Oppdater abonnent gruppe"
2074
+
2075
  #: ../subscribers/view-subscriber-show.php:304
2076
  msgid "Update Subscribers Status"
2077
  msgstr "Oppdater abonnent Status"
languages/email-subscribers-pl_PL.mo CHANGED
Binary file
languages/email-subscribers-pl_PL.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:54 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Polish\n"
10
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
@@ -23,16 +23,30 @@ msgstr ""
23
  "X-Loco-Target-Locale: pl_PL\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
- #: ../classes/es-register.php:936
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  #, php-format
28
  msgid "%s for Post Notification: {{POSTTITLE}}"
29
  msgstr ""
30
 
31
- #: ../classes/es-register.php:936
32
  msgid "Available Keyword"
33
  msgstr ""
34
 
35
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
36
  #, php-format
37
  msgid ""
38
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -40,17 +54,22 @@ msgid ""
40
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
41
  msgstr ""
42
 
43
- #: ../classes/es-register.php:1038
44
  #, php-format
45
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
46
  msgstr ""
47
 
48
- #: ../settings/settings-edit.php:554
 
 
 
 
 
49
  msgid "Please enter valid email count."
50
  msgstr ""
51
 
52
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
53
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
54
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
55
  #: subscribers/view-subscriber-sync.php:143
56
  #, fuzzy
@@ -103,7 +122,7 @@ msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
103
 
104
  #. Name of the plugin
105
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
106
- #: register.php:826
107
  msgid "Email Subscribers"
108
  msgstr "Email Subscribers"
109
 
@@ -113,7 +132,7 @@ msgid "Subscribers"
113
  msgstr "Subskrybujący"
114
 
115
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
116
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
117
  msgid "Templates"
118
  msgstr "Szablony"
119
 
@@ -123,7 +142,7 @@ msgid "Post Notifications"
123
  msgstr "Powiadomienia pocztowe"
124
 
125
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
126
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
127
  msgid "Newsletters"
128
  msgstr "Biuletyny"
129
 
@@ -313,39 +332,7 @@ msgctxt "widget-page-enhanced-select"
313
  msgid "Please try after some time"
314
  msgstr "Spróbuj po pewnym czasie"
315
 
316
- #: ../classes/es-register.php:726
317
- msgid ""
318
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
319
- "subscribers list?</b> Come check our Pro plan."
320
- msgstr ""
321
- "<b>Chcesz mieć gotowe szablony e-maili?</b> Chcesz też <b>wyczyścić listę "
322
- "subskrybentów?</b>Przejdź do naszego planu Pro."
323
-
324
- #: ../classes/es-register.php:727
325
- msgid "Check Pro plan"
326
- msgstr "Wybierz plan PRO"
327
-
328
- #: ../classes/es-register.php:727
329
- msgid "Not interested."
330
- msgstr "Nie zainteresowany."
331
-
332
- #: ../classes/es-register.php:765
333
- msgid ""
334
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
335
- "Checkbox' in the subscription form.</b>"
336
- msgstr ""
337
- "<b style=\"letter-spacing:0.4px;\">Aby respektować GDPR, należy włączyć opcję "
338
- "\"Check Checkbox\" w formularzu subskrypcji.</b>"
339
-
340
- #: ../classes/es-register.php:766
341
- msgid "Steps to enable"
342
- msgstr "Kroki w celu umożliwienia"
343
-
344
- #: ../classes/es-register.php:766
345
- msgid "Ok, got it"
346
- msgstr "OK, rozumiem"
347
-
348
- #: ../classes/es-register.php:791
349
  msgid ""
350
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
351
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -357,125 +344,125 @@ msgstr ""
357
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
358
  "</a>. Z góry dziękujemy, Icegram!"
359
 
360
- #: ../classes/es-register.php:805
361
  #, php-format
362
  msgid "Email Subscribers version: <strong>%s</strong>"
363
  msgstr "Wersja Email Subscribers: <strong>%s</strong>"
364
 
365
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
366
  msgid "Add new Template"
367
  msgstr "Dodaj nowy szablon"
368
 
369
- #: ../classes/es-register.php:818
370
  msgid "Edit Templates"
371
  msgstr "Edytuj szablony"
372
 
373
- #: ../classes/es-register.php:819
374
  msgid "New Templates"
375
  msgstr "Nowe szablony"
376
 
377
- #: ../classes/es-register.php:821
378
  msgid "View Templates"
379
  msgstr "Pokaż szablony"
380
 
381
- #: ../classes/es-register.php:822
382
  msgid "Search Templates"
383
  msgstr "Szukaj szablonów"
384
 
385
- #: ../classes/es-register.php:823
386
  msgid "No Templates found"
387
  msgstr "Brak szablonów"
388
 
389
- #: ../classes/es-register.php:824
390
  msgid "No Templates found in Trash"
391
  msgstr "Brak szablonów w koszu"
392
 
393
- #: ../classes/es-register.php:827
394
  msgid "Thumbnail (For Visual Representation only)"
395
  msgstr "Miniatura (jedynie dla wizualizacji)"
396
 
397
- #: ../classes/es-register.php:828
398
  msgid "Set thumbnail"
399
  msgstr "Ustaw miniaturę"
400
 
401
- #: ../classes/es-register.php:865
402
  msgid "Template Type"
403
  msgstr "Typ szablonu"
404
 
405
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
406
  msgid "Thumbnail"
407
  msgstr "Miniatura"
408
 
409
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
410
  #: sentmail/sentmail-show.php:121
411
  msgid "Preview"
412
  msgstr "Podgląd"
413
 
414
- #: ../classes/es-register.php:943
415
  msgid "Select your Email Template Type"
416
  msgstr "Wybierz typ szablonu e-maila"
417
 
418
- #: ../classes/es-register.php:945
419
  msgid "Newsletter"
420
  msgstr "Biuletyn"
421
 
422
- #: ../classes/es-register.php:946
423
  msgid "Post Notification"
424
  msgstr "Wpis"
425
 
426
- #: ../classes/es-register.php:995
427
  msgid "Preview Template"
428
  msgstr "Podgląd szablonu"
429
 
430
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
431
- #: register.php:1030 ../classes/es-register.php:1038
432
  msgid "Available Keywords"
433
  msgstr "Dostępne słowa kluczowe"
434
 
435
- #: ../classes/es-register.php:1015
436
  #, php-format
437
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
438
  msgstr "<br/><br/>%s do Biuletynu: {{NAME}}, {{EMAIL}}"
439
 
440
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
441
  msgid "Name"
442
  msgstr "Nazwa"
443
 
444
- #: ../classes/es-register.php:1080
445
  msgid "Email *"
446
  msgstr "E-mail *"
447
 
448
- #: ../classes/es-register.php:1089 ../help/help.php:202
449
  msgid "Subscribe"
450
  msgstr "Subskrypcja"
451
 
452
- #: ../classes/es-register.php:1193
453
  msgid "Widget Title"
454
  msgstr "Tytuł wtyczki"
455
 
456
- #: ../classes/es-register.php:1197
457
  msgid "Short description about subscription form"
458
  msgstr "Krótki opis formularza subskrypcji"
459
 
460
- #: ../classes/es-register.php:1201
461
  msgid "Display Name Field"
462
  msgstr "Wyświetl nazwę pola"
463
 
464
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
465
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
466
  msgid "YES"
467
  msgstr "TAK"
468
 
469
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
470
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
471
  msgid "NO"
472
  msgstr "NIE"
473
 
474
- #: ../classes/es-register.php:1208
475
  msgid "Subscriber Group"
476
  msgstr "Grupa subskrybenta"
477
 
478
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
479
  msgid "Unexpected url submit has been detected!"
480
  msgstr "Wykryto nieoczekiwane zgłoszenie adresu URL!"
481
 
@@ -912,8 +899,8 @@ msgstr ""
912
  msgid "add Rainmaker’s form in Email Subscribers"
913
  msgstr "dodaj formularz Rainmaker w Email Subscribers"
914
 
915
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
916
- #: job/es-unsubscribe.php:61
917
  msgid ""
918
  "Oops.. We are getting some technical error. Please try again or contact "
919
  "admin."
@@ -921,7 +908,7 @@ msgstr ""
921
  "Ups... Pojawił się problem techniczny. Spróbuj raz jeszcze lub skontaktuj "
922
  "się z administratorem."
923
 
924
- #: ../job/es-optin.php:61
925
  msgid "This email address has already been confirmed."
926
  msgstr "Ten adres jest już potwierdzony."
927
 
@@ -956,16 +943,12 @@ msgstr "Dodaj powiadomienie"
956
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
957
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
958
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
959
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
960
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
961
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
962
  msgid "Help"
963
  msgstr "Pomoc"
964
 
965
- #: ../notification/notification-add.php:121
966
- msgid "Select Subscribers Group"
967
- msgstr "Wybierz Grupę Subskrybentów"
968
-
969
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
970
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
971
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1067,11 +1050,6 @@ msgstr "Edytuj zawiadomienie"
1067
  msgid "Add New"
1068
  msgstr "Dodaj Nowy"
1069
 
1070
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1071
- #: php:303
1072
- msgid "Update Subscribers Group"
1073
- msgstr "Uaktualnij grupę subskrybentów"
1074
-
1075
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1076
  msgid "Selected record deleted."
1077
  msgstr "Wybrany zapis został usunięty."
@@ -1212,8 +1190,8 @@ msgid "Delivery Report"
1212
  msgstr "Raport dostarczenia"
1213
 
1214
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1215
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1216
- #: export.php:66
1217
  msgid "Sno"
1218
  msgstr "Sno"
1219
 
@@ -1291,8 +1269,8 @@ msgid "Total"
1291
  msgstr "Całkowity"
1292
 
1293
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1294
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1295
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1296
  msgid "Action"
1297
  msgstr "Akcja"
1298
 
@@ -1541,7 +1519,7 @@ msgstr "Link potwierdzający podwójnego Opt-In"
1541
  msgid "It is a readonly field and you are advised not to modify it."
1542
  msgstr "Jest to pole tylko do odczytu i nie zaleca się go zmodyfikować."
1543
 
1544
- #: ../settings/settings-edit.php:205
1545
  msgid ""
1546
  "Text to display after an email address is successfully subscribed from "
1547
  "Double Opt-In (Confirmation) Email"
@@ -1549,7 +1527,7 @@ msgstr ""
1549
  "Tekst do wyświetlenia po pomyślnej subskrypcji z podwójnego Opt-In (e-mail "
1550
  "potwierdzenia)"
1551
 
1552
- #: ../settings/settings-edit.php:206
1553
  msgid ""
1554
  "This text will be displayed once user clicks on email confirmation link from "
1555
  "the Double Opt In (confirmation) Email."
@@ -1557,11 +1535,11 @@ msgstr ""
1557
  "Ten tekst będzie wyświetlany gdy użytkownik kliknie na link z e-maila "
1558
  "potwierdzającego w podwójnym Opt-In."
1559
 
1560
- #: ../settings/settings-edit.php:213
1561
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1562
  msgstr "Wysłać e-mail powitalny do nowego subskrybenta po potwierdzeniu?"
1563
 
1564
- #: ../settings/settings-edit.php:214
1565
  msgid ""
1566
  "To send welcome email to subscriber after successful signup. This option "
1567
  "must be set to YES."
@@ -1569,11 +1547,11 @@ msgstr ""
1569
  "By wysłać mail powitalny do subskrybenta po pomyślnej rejestracji ta opcja "
1570
  "musi być ustawiona na YES (TAK)."
1571
 
1572
- #: ../settings/settings-edit.php:225
1573
  msgid "Subject for Welcome Email"
1574
  msgstr "Temat e-maila powitalnego"
1575
 
1576
- #: ../settings/settings-edit.php:226
1577
  msgid ""
1578
  "Subject for the subscriber welcome email. This will be sent whenever a "
1579
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1583,11 +1561,11 @@ msgstr ""
1583
  "użytkownika zostanie potwierdzony (gdy podwójne Opt-In) / subskrybuje (jeśli "
1584
  "pojedynczy Opt-In)."
1585
 
1586
- #: ../settings/settings-edit.php:232
1587
  msgid "Email Content for Welcome Email"
1588
  msgstr "Treść e-maila powitalnego"
1589
 
1590
- #: ../settings/settings-edit.php:233
1591
  msgid ""
1592
  "Content for the subscriber welcome email whenever a user's email is either "
1593
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1598,11 +1576,11 @@ msgstr ""
1598
  "/ zasubskrybowania pomyślnie (przy opcji pojedynczego potwierdzenia).<br "
1599
  "/>Dostępne słowa kluczowe: {{NAME}}, {{GROUP}}, {{LINK}}"
1600
 
1601
- #: ../settings/settings-edit.php:241
1602
  msgid "Unsubscribe Link"
1603
  msgstr "Link anulujący subskrypcję"
1604
 
1605
- #: ../settings/settings-edit.php:242
1606
  msgid ""
1607
  "This unsubscribe link is automatically added to all the emails that are sent "
1608
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1612,11 +1590,11 @@ msgstr ""
1612
  "wiadomości e-mail wysyłanych z tej wtyczki. Jest to pole tylko do odczytu i "
1613
  "nie zaleca się jego modyfikowania."
1614
 
1615
- #: ../settings/settings-edit.php:248
1616
  msgid "Unsubscribe Text in Email"
1617
  msgstr "Tekst anulujący subskrypcję w Email Subscribers"
1618
 
1619
- #: ../settings/settings-edit.php:249
1620
  msgid ""
1621
  "The text for the unsubscribe link. This text is automatically added with "
1622
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1625,11 +1603,11 @@ msgstr ""
1625
  "dodawany do linku do anulowania subskrypcji w e-mailu.<br />Dostępne słowo "
1626
  "kluczowe: {{LINK}}"
1627
 
1628
- #: ../settings/settings-edit.php:255
1629
  msgid "Text to display after an email address is unsubscribed"
1630
  msgstr "Tekst do wyświetlenia po wyrejestrowaniu adresu e-mail"
1631
 
1632
- #: ../settings/settings-edit.php:256
1633
  msgid ""
1634
  "This text will be displayed once user clicks on unsubscribe link from the "
1635
  "email."
@@ -1637,11 +1615,11 @@ msgstr ""
1637
  "Ten tekst zostanie wyświetlony po kliknięciu przez użytkownika linku "
1638
  "anulującego subskrypcję."
1639
 
1640
- #: ../settings/settings-edit.php:263
1641
  msgid "Error in the Subscribe / Confirmation Link"
1642
  msgstr "Błąd w linku subskrypcji/potwierdzenia"
1643
 
1644
- #: ../settings/settings-edit.php:264
1645
  msgid ""
1646
  "Default message to display if there is any issue while clicking on subscribe "
1647
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1650,11 +1628,11 @@ msgstr ""
1650
  "jakiegokolwiek problemu przy kliknięciu linku subskrybuj / potwierdź z e-"
1651
  "maila potwierdzającego przy podwójnym Opt-In."
1652
 
1653
- #: ../settings/settings-edit.php:270
1654
  msgid "Error in the Unsubscribe Link"
1655
  msgstr "Błąd w linku wyrejestrującym"
1656
 
1657
- #: ../settings/settings-edit.php:271
1658
  msgid ""
1659
  "Default message to display if there is any issue while clicking on "
1660
  "unsubscribe link from the emails."
@@ -1663,51 +1641,51 @@ msgstr ""
1663
  "jakiegokolwiek problemu przy kliknięciu linku anulującego subskrypcję w e-"
1664
  "mailu."
1665
 
1666
- #: ../settings/settings-edit.php:283
1667
  msgid "Select user roles who can access following menus. Only Admin can change this."
1668
  msgstr ""
1669
  "Wybierz role użytkowników, którzy mają dostęp do następujących opcji. Tylko "
1670
  "Administrator może to zmienić."
1671
 
1672
- #: ../settings/settings-edit.php:289
1673
  msgid "Subscribers Menu"
1674
  msgstr "Menu subskrybentów"
1675
 
1676
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1677
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1678
- #: settings/settings-edit.php:341
1679
  msgid "Administrator Only"
1680
  msgstr "Tylko dla administratora"
1681
 
1682
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1683
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1684
- #: settings/settings-edit.php:342
1685
  msgid "Administrator/Editor"
1686
  msgstr "Administrator/Edytor"
1687
 
1688
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1689
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1690
- #: settings/settings-edit.php:343
1691
  msgid "Administrator/Editor/Author/Contributor"
1692
  msgstr "Administrator/Edytor/Autor/Specjalista"
1693
 
1694
- #: ../settings/settings-edit.php:301
1695
  msgid "Templates Menu"
1696
  msgstr "Szablony Menu"
1697
 
1698
- #: ../settings/settings-edit.php:313
1699
  msgid "Post Notifications Menu"
1700
  msgstr "Menu Powiadomień"
1701
 
1702
- #: ../settings/settings-edit.php:337
1703
  msgid "Reports Menu"
1704
  msgstr "Menu raportów"
1705
 
1706
- #: ../settings/settings-edit.php:354
1707
  msgid "Cron job URL"
1708
  msgstr "URL zadania Cron"
1709
 
1710
- #: ../settings/settings-edit.php:355
1711
  msgid ""
1712
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1713
  "modify it."
@@ -1715,25 +1693,25 @@ msgstr ""
1715
  "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie "
1716
  "zaleca się go modyfikować."
1717
 
1718
- #: ../settings/settings-edit.php:364
1719
  msgid "Email Count"
1720
  msgstr "Ilość emaili"
1721
 
1722
- #: ../settings/settings-edit.php:365
1723
  msgid "Number of emails that you want to trigger per hour."
1724
  msgstr "Ilość e-maili, które mają być wyzwalane na godzinę."
1725
 
1726
- #: ../settings/settings-edit.php:370
1727
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1728
  msgstr ""
1729
  "(Twój host ma ograniczenia. Sugerujemy bezpieczny limit 50 e-maili na "
1730
  "godzinę.)"
1731
 
1732
- #: ../settings/settings-edit.php:375
1733
  msgid "Cron Report"
1734
  msgstr "Raport Crona"
1735
 
1736
- #: ../settings/settings-edit.php:376
1737
  msgid ""
1738
  "Email to admin whenever a cron URL is triggered from your server.<br "
1739
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1742,11 +1720,11 @@ msgstr ""
1742
  "twojego serwera.<br />Możliwe słowa kluczowe: {{DATE}}, {{SUBJECT}}, "
1743
  "{{COUNT}}"
1744
 
1745
- #: ../settings/settings-edit.php:386
1746
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1747
  msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
1748
 
1749
- #: ../settings/settings-edit.php:387
1750
  msgid ""
1751
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1752
  "schedule-cron-emails/?"
@@ -1758,7 +1736,7 @@ msgstr ""
1758
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Co to jest "
1759
  "Cron?</a>"
1760
 
1761
- #: ../settings/settings-edit.php:388
1762
  msgid ""
1763
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1764
  "schedule-cron-emails-in-cpanel/?"
@@ -1770,7 +1748,7 @@ msgstr ""
1770
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1771
  "proceduję cron w cPanel</a>"
1772
 
1773
- #: ../settings/settings-edit.php:389
1774
  msgid ""
1775
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1776
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1782,7 +1760,7 @@ msgstr ""
1782
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1783
  "proceduję cron w Plesk</a>"
1784
 
1785
- #: ../settings/settings-edit.php:390
1786
  msgid ""
1787
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1788
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1794,19 +1772,19 @@ msgstr ""
1794
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1795
  "nie obsługuje procedur cron?</a>"
1796
 
1797
- #: ../settings/settings-edit.php:505
1798
  msgid "Please enter sender of notifications from name."
1799
  msgstr "Proszę podać nadawcę powiadomień po nazwie."
1800
 
1801
- #: ../settings/settings-edit.php:510
1802
  msgid "Please enter sender of notifications from email."
1803
  msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
1804
 
1805
- #: ../settings/settings-edit.php:568
1806
  msgid "Settings Saved."
1807
  msgstr "Ustawienia zapisane."
1808
 
1809
- #: ../settings/settings-edit.php:571
1810
  msgid "Oops, unable to update."
1811
  msgstr "Ups, nie można zaktualizować."
1812
 
@@ -1840,14 +1818,14 @@ msgid "Invalid Email."
1840
  msgstr "Błędny e-mail."
1841
 
1842
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1843
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1844
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1845
  #: subscribers/view-subscriber-sync.php:89
1846
  msgid "Add New Subscriber"
1847
  msgstr "Dodaj Nowego Subskrybenta"
1848
 
1849
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1850
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1851
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1852
  #: subscribers/view-subscriber-sync.php:90
1853
  msgid "Import"
@@ -1946,63 +1924,63 @@ msgstr ""
1946
  msgid "Go back to Subscribers dashboard"
1947
  msgstr "Wróć do panelu Subscribers"
1948
 
1949
- #: ../subscribers/view-subscriber-export.php:47
1950
  msgid "Export Email Addresses"
1951
  msgstr "Eksportuj Adresy E-maili"
1952
 
1953
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1954
- #: export.php:67
1955
  msgid "Type of List to Export"
1956
  msgstr "Rodzaj Listy do Eksportu"
1957
 
1958
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1959
- #: export.php:68
1960
  msgid "Total Emails Count"
1961
  msgstr "Łączna liczba e-maili"
1962
 
1963
- #: ../subscribers/view-subscriber-export.php:74
1964
  msgid "1"
1965
  msgstr "1"
1966
 
1967
- #: ../subscribers/view-subscriber-export.php:75
1968
  msgid "All Subscribers"
1969
  msgstr "Wszyscy Subskrybenci"
1970
 
1971
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1972
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1973
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1974
  msgid "Click to Export in CSV"
1975
  msgstr "Kliknij by wyeksportować do CSV"
1976
 
1977
- #: ../subscribers/view-subscriber-export.php:80
1978
  msgid "2"
1979
  msgstr "2"
1980
 
1981
- #: ../subscribers/view-subscriber-export.php:81
1982
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1983
  msgstr "Aktywni Subskrybenci (Status: Potwierdzony i Pojedynczy Opt-In)"
1984
 
1985
- #: ../subscribers/view-subscriber-export.php:86
1986
  msgid "3"
1987
  msgstr "3"
1988
 
1989
- #: ../subscribers/view-subscriber-export.php:87
1990
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1991
  msgstr "Nieaktywni Subskrybenci (Status: Niepotwierdzony i Anulowany)"
1992
 
1993
- #: ../subscribers/view-subscriber-export.php:92
1994
  msgid "4"
1995
  msgstr "4"
1996
 
1997
- #: ../subscribers/view-subscriber-export.php:93
1998
  msgid "WordPress Registered Users"
1999
  msgstr "Zarejestrowany Użytkownik WordPress"
2000
 
2001
- #: ../subscribers/view-subscriber-export.php:98
2002
  msgid "5"
2003
  msgstr "5"
2004
 
2005
- #: ../subscribers/view-subscriber-export.php:99
2006
  msgid "Commented Authors"
2007
  msgstr "Autorzy komentujący"
2008
 
@@ -2138,6 +2116,10 @@ msgstr "Działania masowe"
2138
  msgid "Resend Confirmation"
2139
  msgstr "Wyślij ponownie potwierdzenie"
2140
 
 
 
 
 
2141
  #: ../subscribers/view-subscriber-show.php:304
2142
  msgid "Update Subscribers Status"
2143
  msgstr "Uaktualnienie Statusu Subskrybentów"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:48 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Polish\n"
10
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
23
  "X-Loco-Target-Locale: pl_PL\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
+ #: ../classes/es-register.php:727
27
+ msgid ""
28
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
29
+ "</b>"
30
+ msgstr ""
31
+
32
+ #: ../classes/es-register.php:728
33
+ msgid "Here's how"
34
+ msgstr ""
35
+
36
+ #: ../classes/es-register.php:728
37
+ msgid "Not interested. Dismiss this."
38
+ msgstr ""
39
+
40
+ #: ../classes/es-register.php:900
41
  #, php-format
42
  msgid "%s for Post Notification: {{POSTTITLE}}"
43
  msgstr ""
44
 
45
+ #: ../classes/es-register.php:900
46
  msgid "Available Keyword"
47
  msgstr ""
48
 
49
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
50
  #, php-format
51
  msgid ""
52
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
54
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
55
  msgstr ""
56
 
57
+ #: ../classes/es-register.php:1002
58
  #, php-format
59
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
60
  msgstr ""
61
 
62
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
63
+ #: 132
64
+ msgid "Subscribers Group to send post notification to"
65
+ msgstr ""
66
+
67
+ #: ../settings/settings-edit.php:566
68
  msgid "Please enter valid email count."
69
  msgstr ""
70
 
71
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
72
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
73
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
74
  #: subscribers/view-subscriber-sync.php:143
75
  #, fuzzy
122
 
123
  #. Name of the plugin
124
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
125
+ #: register.php:788
126
  msgid "Email Subscribers"
127
  msgstr "Email Subscribers"
128
 
132
  msgstr "Subskrybujący"
133
 
134
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
135
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
136
  msgid "Templates"
137
  msgstr "Szablony"
138
 
142
  msgstr "Powiadomienia pocztowe"
143
 
144
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
145
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
146
  msgid "Newsletters"
147
  msgstr "Biuletyny"
148
 
332
  msgid "Please try after some time"
333
  msgstr "Spróbuj po pewnym czasie"
334
 
335
+ #: ../classes/es-register.php:753
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  msgid ""
337
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
338
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
344
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
345
  "</a>. Z góry dziękujemy, Icegram!"
346
 
347
+ #: ../classes/es-register.php:767
348
  #, php-format
349
  msgid "Email Subscribers version: <strong>%s</strong>"
350
  msgstr "Wersja Email Subscribers: <strong>%s</strong>"
351
 
352
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
353
  msgid "Add new Template"
354
  msgstr "Dodaj nowy szablon"
355
 
356
+ #: ../classes/es-register.php:780
357
  msgid "Edit Templates"
358
  msgstr "Edytuj szablony"
359
 
360
+ #: ../classes/es-register.php:781
361
  msgid "New Templates"
362
  msgstr "Nowe szablony"
363
 
364
+ #: ../classes/es-register.php:783
365
  msgid "View Templates"
366
  msgstr "Pokaż szablony"
367
 
368
+ #: ../classes/es-register.php:784
369
  msgid "Search Templates"
370
  msgstr "Szukaj szablonów"
371
 
372
+ #: ../classes/es-register.php:785
373
  msgid "No Templates found"
374
  msgstr "Brak szablonów"
375
 
376
+ #: ../classes/es-register.php:786
377
  msgid "No Templates found in Trash"
378
  msgstr "Brak szablonów w koszu"
379
 
380
+ #: ../classes/es-register.php:789
381
  msgid "Thumbnail (For Visual Representation only)"
382
  msgstr "Miniatura (jedynie dla wizualizacji)"
383
 
384
+ #: ../classes/es-register.php:790
385
  msgid "Set thumbnail"
386
  msgstr "Ustaw miniaturę"
387
 
388
+ #: ../classes/es-register.php:827
389
  msgid "Template Type"
390
  msgstr "Typ szablonu"
391
 
392
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
393
  msgid "Thumbnail"
394
  msgstr "Miniatura"
395
 
396
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
397
  #: sentmail/sentmail-show.php:121
398
  msgid "Preview"
399
  msgstr "Podgląd"
400
 
401
+ #: ../classes/es-register.php:907
402
  msgid "Select your Email Template Type"
403
  msgstr "Wybierz typ szablonu e-maila"
404
 
405
+ #: ../classes/es-register.php:909
406
  msgid "Newsletter"
407
  msgstr "Biuletyn"
408
 
409
+ #: ../classes/es-register.php:910
410
  msgid "Post Notification"
411
  msgstr "Wpis"
412
 
413
+ #: ../classes/es-register.php:959
414
  msgid "Preview Template"
415
  msgstr "Podgląd szablonu"
416
 
417
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
418
+ #: register.php:994 ../classes/es-register.php:1002
419
  msgid "Available Keywords"
420
  msgstr "Dostępne słowa kluczowe"
421
 
422
+ #: ../classes/es-register.php:979
423
  #, php-format
424
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
425
  msgstr "<br/><br/>%s do Biuletynu: {{NAME}}, {{EMAIL}}"
426
 
427
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
428
  msgid "Name"
429
  msgstr "Nazwa"
430
 
431
+ #: ../classes/es-register.php:1044
432
  msgid "Email *"
433
  msgstr "E-mail *"
434
 
435
+ #: ../classes/es-register.php:1053 ../help/help.php:202
436
  msgid "Subscribe"
437
  msgstr "Subskrypcja"
438
 
439
+ #: ../classes/es-register.php:1157
440
  msgid "Widget Title"
441
  msgstr "Tytuł wtyczki"
442
 
443
+ #: ../classes/es-register.php:1161
444
  msgid "Short description about subscription form"
445
  msgstr "Krótki opis formularza subskrypcji"
446
 
447
+ #: ../classes/es-register.php:1165
448
  msgid "Display Name Field"
449
  msgstr "Wyświetl nazwę pola"
450
 
451
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
452
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
453
  msgid "YES"
454
  msgstr "TAK"
455
 
456
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
457
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
458
  msgid "NO"
459
  msgstr "NIE"
460
 
461
+ #: ../classes/es-register.php:1172
462
  msgid "Subscriber Group"
463
  msgstr "Grupa subskrybenta"
464
 
465
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
466
  msgid "Unexpected url submit has been detected!"
467
  msgstr "Wykryto nieoczekiwane zgłoszenie adresu URL!"
468
 
899
  msgid "add Rainmaker’s form in Email Subscribers"
900
  msgstr "dodaj formularz Rainmaker w Email Subscribers"
901
 
902
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
903
+ #: job/es-unsubscribe.php:62
904
  msgid ""
905
  "Oops.. We are getting some technical error. Please try again or contact "
906
  "admin."
908
  "Ups... Pojawił się problem techniczny. Spróbuj raz jeszcze lub skontaktuj "
909
  "się z administratorem."
910
 
911
+ #: ../job/es-optin.php:62
912
  msgid "This email address has already been confirmed."
913
  msgstr "Ten adres jest już potwierdzony."
914
 
943
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
944
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
945
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
946
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
947
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
948
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
949
  msgid "Help"
950
  msgstr "Pomoc"
951
 
 
 
 
 
952
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
953
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
954
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1050
  msgid "Add New"
1051
  msgstr "Dodaj Nowy"
1052
 
 
 
 
 
 
1053
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1054
  msgid "Selected record deleted."
1055
  msgstr "Wybrany zapis został usunięty."
1190
  msgstr "Raport dostarczenia"
1191
 
1192
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1193
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1194
+ #: export.php:69
1195
  msgid "Sno"
1196
  msgstr "Sno"
1197
 
1269
  msgstr "Całkowity"
1270
 
1271
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1272
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1273
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1274
  msgid "Action"
1275
  msgstr "Akcja"
1276
 
1519
  msgid "It is a readonly field and you are advised not to modify it."
1520
  msgstr "Jest to pole tylko do odczytu i nie zaleca się go zmodyfikować."
1521
 
1522
+ #: ../settings/settings-edit.php:206
1523
  msgid ""
1524
  "Text to display after an email address is successfully subscribed from "
1525
  "Double Opt-In (Confirmation) Email"
1527
  "Tekst do wyświetlenia po pomyślnej subskrypcji z podwójnego Opt-In (e-mail "
1528
  "potwierdzenia)"
1529
 
1530
+ #: ../settings/settings-edit.php:207
1531
  msgid ""
1532
  "This text will be displayed once user clicks on email confirmation link from "
1533
  "the Double Opt In (confirmation) Email."
1535
  "Ten tekst będzie wyświetlany gdy użytkownik kliknie na link z e-maila "
1536
  "potwierdzającego w podwójnym Opt-In."
1537
 
1538
+ #: ../settings/settings-edit.php:219
1539
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1540
  msgstr "Wysłać e-mail powitalny do nowego subskrybenta po potwierdzeniu?"
1541
 
1542
+ #: ../settings/settings-edit.php:220
1543
  msgid ""
1544
  "To send welcome email to subscriber after successful signup. This option "
1545
  "must be set to YES."
1547
  "By wysłać mail powitalny do subskrybenta po pomyślnej rejestracji ta opcja "
1548
  "musi być ustawiona na YES (TAK)."
1549
 
1550
+ #: ../settings/settings-edit.php:231
1551
  msgid "Subject for Welcome Email"
1552
  msgstr "Temat e-maila powitalnego"
1553
 
1554
+ #: ../settings/settings-edit.php:232
1555
  msgid ""
1556
  "Subject for the subscriber welcome email. This will be sent whenever a "
1557
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1561
  "użytkownika zostanie potwierdzony (gdy podwójne Opt-In) / subskrybuje (jeśli "
1562
  "pojedynczy Opt-In)."
1563
 
1564
+ #: ../settings/settings-edit.php:238
1565
  msgid "Email Content for Welcome Email"
1566
  msgstr "Treść e-maila powitalnego"
1567
 
1568
+ #: ../settings/settings-edit.php:239
1569
  msgid ""
1570
  "Content for the subscriber welcome email whenever a user's email is either "
1571
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1576
  "/ zasubskrybowania pomyślnie (przy opcji pojedynczego potwierdzenia).<br "
1577
  "/>Dostępne słowa kluczowe: {{NAME}}, {{GROUP}}, {{LINK}}"
1578
 
1579
+ #: ../settings/settings-edit.php:247
1580
  msgid "Unsubscribe Link"
1581
  msgstr "Link anulujący subskrypcję"
1582
 
1583
+ #: ../settings/settings-edit.php:248
1584
  msgid ""
1585
  "This unsubscribe link is automatically added to all the emails that are sent "
1586
  "from this plugin. It is a readonly field and you are advised not to modify "
1590
  "wiadomości e-mail wysyłanych z tej wtyczki. Jest to pole tylko do odczytu i "
1591
  "nie zaleca się jego modyfikowania."
1592
 
1593
+ #: ../settings/settings-edit.php:254
1594
  msgid "Unsubscribe Text in Email"
1595
  msgstr "Tekst anulujący subskrypcję w Email Subscribers"
1596
 
1597
+ #: ../settings/settings-edit.php:255
1598
  msgid ""
1599
  "The text for the unsubscribe link. This text is automatically added with "
1600
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1603
  "dodawany do linku do anulowania subskrypcji w e-mailu.<br />Dostępne słowo "
1604
  "kluczowe: {{LINK}}"
1605
 
1606
+ #: ../settings/settings-edit.php:262
1607
  msgid "Text to display after an email address is unsubscribed"
1608
  msgstr "Tekst do wyświetlenia po wyrejestrowaniu adresu e-mail"
1609
 
1610
+ #: ../settings/settings-edit.php:263
1611
  msgid ""
1612
  "This text will be displayed once user clicks on unsubscribe link from the "
1613
  "email."
1615
  "Ten tekst zostanie wyświetlony po kliknięciu przez użytkownika linku "
1616
  "anulującego subskrypcję."
1617
 
1618
+ #: ../settings/settings-edit.php:275
1619
  msgid "Error in the Subscribe / Confirmation Link"
1620
  msgstr "Błąd w linku subskrypcji/potwierdzenia"
1621
 
1622
+ #: ../settings/settings-edit.php:276
1623
  msgid ""
1624
  "Default message to display if there is any issue while clicking on subscribe "
1625
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1628
  "jakiegokolwiek problemu przy kliknięciu linku subskrybuj / potwierdź z e-"
1629
  "maila potwierdzającego przy podwójnym Opt-In."
1630
 
1631
+ #: ../settings/settings-edit.php:282
1632
  msgid "Error in the Unsubscribe Link"
1633
  msgstr "Błąd w linku wyrejestrującym"
1634
 
1635
+ #: ../settings/settings-edit.php:283
1636
  msgid ""
1637
  "Default message to display if there is any issue while clicking on "
1638
  "unsubscribe link from the emails."
1641
  "jakiegokolwiek problemu przy kliknięciu linku anulującego subskrypcję w e-"
1642
  "mailu."
1643
 
1644
+ #: ../settings/settings-edit.php:295
1645
  msgid "Select user roles who can access following menus. Only Admin can change this."
1646
  msgstr ""
1647
  "Wybierz role użytkowników, którzy mają dostęp do następujących opcji. Tylko "
1648
  "Administrator może to zmienić."
1649
 
1650
+ #: ../settings/settings-edit.php:301
1651
  msgid "Subscribers Menu"
1652
  msgstr "Menu subskrybentów"
1653
 
1654
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1655
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1656
+ #: settings/settings-edit.php:353
1657
  msgid "Administrator Only"
1658
  msgstr "Tylko dla administratora"
1659
 
1660
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1661
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1662
+ #: settings/settings-edit.php:354
1663
  msgid "Administrator/Editor"
1664
  msgstr "Administrator/Edytor"
1665
 
1666
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1667
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1668
+ #: settings/settings-edit.php:355
1669
  msgid "Administrator/Editor/Author/Contributor"
1670
  msgstr "Administrator/Edytor/Autor/Specjalista"
1671
 
1672
+ #: ../settings/settings-edit.php:313
1673
  msgid "Templates Menu"
1674
  msgstr "Szablony Menu"
1675
 
1676
+ #: ../settings/settings-edit.php:325
1677
  msgid "Post Notifications Menu"
1678
  msgstr "Menu Powiadomień"
1679
 
1680
+ #: ../settings/settings-edit.php:349
1681
  msgid "Reports Menu"
1682
  msgstr "Menu raportów"
1683
 
1684
+ #: ../settings/settings-edit.php:366
1685
  msgid "Cron job URL"
1686
  msgstr "URL zadania Cron"
1687
 
1688
+ #: ../settings/settings-edit.php:367
1689
  msgid ""
1690
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1691
  "modify it."
1693
  "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie "
1694
  "zaleca się go modyfikować."
1695
 
1696
+ #: ../settings/settings-edit.php:376
1697
  msgid "Email Count"
1698
  msgstr "Ilość emaili"
1699
 
1700
+ #: ../settings/settings-edit.php:377
1701
  msgid "Number of emails that you want to trigger per hour."
1702
  msgstr "Ilość e-maili, które mają być wyzwalane na godzinę."
1703
 
1704
+ #: ../settings/settings-edit.php:382
1705
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1706
  msgstr ""
1707
  "(Twój host ma ograniczenia. Sugerujemy bezpieczny limit 50 e-maili na "
1708
  "godzinę.)"
1709
 
1710
+ #: ../settings/settings-edit.php:387
1711
  msgid "Cron Report"
1712
  msgstr "Raport Crona"
1713
 
1714
+ #: ../settings/settings-edit.php:388
1715
  msgid ""
1716
  "Email to admin whenever a cron URL is triggered from your server.<br "
1717
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1720
  "twojego serwera.<br />Możliwe słowa kluczowe: {{DATE}}, {{SUBJECT}}, "
1721
  "{{COUNT}}"
1722
 
1723
+ #: ../settings/settings-edit.php:398
1724
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1725
  msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
1726
 
1727
+ #: ../settings/settings-edit.php:399
1728
  msgid ""
1729
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1730
  "schedule-cron-emails/?"
1736
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Co to jest "
1737
  "Cron?</a>"
1738
 
1739
+ #: ../settings/settings-edit.php:400
1740
  msgid ""
1741
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1742
  "schedule-cron-emails-in-cpanel/?"
1748
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1749
  "proceduję cron w cPanel</a>"
1750
 
1751
+ #: ../settings/settings-edit.php:401
1752
  msgid ""
1753
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1754
  "schedule-cron-emails-in-parallels-plesk/?"
1760
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1761
  "proceduję cron w Plesk</a>"
1762
 
1763
+ #: ../settings/settings-edit.php:402
1764
  msgid ""
1765
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1766
  "if-hosting-doesnt-support-cron-jobs/?"
1772
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1773
  "nie obsługuje procedur cron?</a>"
1774
 
1775
+ #: ../settings/settings-edit.php:517
1776
  msgid "Please enter sender of notifications from name."
1777
  msgstr "Proszę podać nadawcę powiadomień po nazwie."
1778
 
1779
+ #: ../settings/settings-edit.php:522
1780
  msgid "Please enter sender of notifications from email."
1781
  msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
1782
 
1783
+ #: ../settings/settings-edit.php:580
1784
  msgid "Settings Saved."
1785
  msgstr "Ustawienia zapisane."
1786
 
1787
+ #: ../settings/settings-edit.php:583
1788
  msgid "Oops, unable to update."
1789
  msgstr "Ups, nie można zaktualizować."
1790
 
1818
  msgstr "Błędny e-mail."
1819
 
1820
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1821
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1822
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1823
  #: subscribers/view-subscriber-sync.php:89
1824
  msgid "Add New Subscriber"
1825
  msgstr "Dodaj Nowego Subskrybenta"
1826
 
1827
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1828
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1829
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1830
  #: subscribers/view-subscriber-sync.php:90
1831
  msgid "Import"
1924
  msgid "Go back to Subscribers dashboard"
1925
  msgstr "Wróć do panelu Subscribers"
1926
 
1927
+ #: ../subscribers/view-subscriber-export.php:50
1928
  msgid "Export Email Addresses"
1929
  msgstr "Eksportuj Adresy E-maili"
1930
 
1931
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1932
+ #: export.php:70
1933
  msgid "Type of List to Export"
1934
  msgstr "Rodzaj Listy do Eksportu"
1935
 
1936
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1937
+ #: export.php:71
1938
  msgid "Total Emails Count"
1939
  msgstr "Łączna liczba e-maili"
1940
 
1941
+ #: ../subscribers/view-subscriber-export.php:77
1942
  msgid "1"
1943
  msgstr "1"
1944
 
1945
+ #: ../subscribers/view-subscriber-export.php:78
1946
  msgid "All Subscribers"
1947
  msgstr "Wszyscy Subskrybenci"
1948
 
1949
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1950
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1951
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1952
  msgid "Click to Export in CSV"
1953
  msgstr "Kliknij by wyeksportować do CSV"
1954
 
1955
+ #: ../subscribers/view-subscriber-export.php:83
1956
  msgid "2"
1957
  msgstr "2"
1958
 
1959
+ #: ../subscribers/view-subscriber-export.php:84
1960
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1961
  msgstr "Aktywni Subskrybenci (Status: Potwierdzony i Pojedynczy Opt-In)"
1962
 
1963
+ #: ../subscribers/view-subscriber-export.php:89
1964
  msgid "3"
1965
  msgstr "3"
1966
 
1967
+ #: ../subscribers/view-subscriber-export.php:90
1968
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1969
  msgstr "Nieaktywni Subskrybenci (Status: Niepotwierdzony i Anulowany)"
1970
 
1971
+ #: ../subscribers/view-subscriber-export.php:95
1972
  msgid "4"
1973
  msgstr "4"
1974
 
1975
+ #: ../subscribers/view-subscriber-export.php:96
1976
  msgid "WordPress Registered Users"
1977
  msgstr "Zarejestrowany Użytkownik WordPress"
1978
 
1979
+ #: ../subscribers/view-subscriber-export.php:101
1980
  msgid "5"
1981
  msgstr "5"
1982
 
1983
+ #: ../subscribers/view-subscriber-export.php:102
1984
  msgid "Commented Authors"
1985
  msgstr "Autorzy komentujący"
1986
 
2116
  msgid "Resend Confirmation"
2117
  msgstr "Wyślij ponownie potwierdzenie"
2118
 
2119
+ #: ../subscribers/view-subscriber-show.php:303
2120
+ msgid "Update Subscribers Group"
2121
+ msgstr "Uaktualnij grupę subskrybentów"
2122
+
2123
  #: ../subscribers/view-subscriber-show.php:304
2124
  msgid "Update Subscribers Status"
2125
  msgstr "Uaktualnienie Statusu Subskrybentów"
languages/email-subscribers-pt_BR.mo CHANGED
Binary file
languages/email-subscribers-pt_BR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:42:57 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Portuguese (Brazil)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -42,44 +42,30 @@ msgid ""
42
  "spam/junk folder."
43
  msgstr ""
44
 
45
- #: ../classes/es-register.php:726
46
- msgid ""
47
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
48
- "subscribers list?</b> Come check our Pro plan."
49
- msgstr ""
50
-
51
- #: ../classes/es-register.php:727
52
- msgid "Check Pro plan"
53
- msgstr ""
54
-
55
  #: ../classes/es-register.php:727
56
- msgid "Not interested."
57
- msgstr ""
58
-
59
- #: ../classes/es-register.php:765
60
  msgid ""
61
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
62
- "Checkbox' in the subscription form.</b>"
63
  msgstr ""
64
 
65
- #: ../classes/es-register.php:766
66
- msgid "Steps to enable"
67
  msgstr ""
68
 
69
- #: ../classes/es-register.php:766
70
- msgid "Ok, got it"
71
  msgstr ""
72
 
73
- #: ../classes/es-register.php:936
74
  #, php-format
75
  msgid "%s for Post Notification: {{POSTTITLE}}"
76
  msgstr ""
77
 
78
- #: ../classes/es-register.php:936
79
  msgid "Available Keyword"
80
  msgstr ""
81
 
82
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
83
  #, php-format
84
  msgid ""
85
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -87,17 +73,17 @@ msgid ""
87
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
88
  msgstr ""
89
 
90
- #: ../classes/es-register.php:1015
91
  #, php-format
92
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:1038
96
  #, php-format
97
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
98
  msgstr ""
99
 
100
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
101
  msgid "Unexpected url submit has been detected!"
102
  msgstr ""
103
 
@@ -209,6 +195,11 @@ msgstr ""
209
  msgid "Please select notification mail subject. Use templates menu to create new."
210
  msgstr ""
211
 
 
 
 
 
 
212
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
213
  #: 164
214
  msgid "(Use templates menu to create new)"
@@ -221,7 +212,7 @@ msgid ""
221
  "deleted too and email will not be sent."
222
  msgstr ""
223
 
224
- #: ../settings/settings-edit.php:554
225
  msgid "Please enter valid email count."
226
  msgstr ""
227
 
@@ -289,7 +280,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
289
  msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
290
 
291
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
292
- #: register.php:826
293
  msgid "Email Subscribers"
294
  msgstr "Email Subscribers"
295
 
@@ -299,7 +290,7 @@ msgid "Subscribers"
299
  msgstr "Assinantes"
300
 
301
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
302
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
303
  msgid "Templates"
304
  msgstr "Modelos"
305
 
@@ -309,7 +300,7 @@ msgid "Post Notifications"
309
  msgstr "Notificações de Postagens"
310
 
311
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
312
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
313
  msgid "Newsletters"
314
  msgstr "Newsletters"
315
 
@@ -474,7 +465,7 @@ msgctxt "widget-page-enhanced-select"
474
  msgid "Please try after some time"
475
  msgstr "Por favor, tente depois de algum tempo"
476
 
477
- #: ../classes/es-register.php:791
478
  msgid ""
479
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
480
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -486,116 +477,116 @@ msgstr ""
486
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
487
  "&#9733;&#9733;&#9733;&#9733;</a> avaliação. Um enorme obrigado do Icegram!"
488
 
489
- #: ../classes/es-register.php:805
490
  #, php-format
491
  msgid "Email Subscribers version: <strong>%s</strong>"
492
  msgstr "Email Subscribers versão: <strong>%s</strong>"
493
 
494
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
495
  msgid "Add new Template"
496
  msgstr "Adicionar Novo Modelo"
497
 
498
- #: ../classes/es-register.php:818
499
  msgid "Edit Templates"
500
  msgstr "Editar Modelos"
501
 
502
- #: ../classes/es-register.php:819
503
  msgid "New Templates"
504
  msgstr "Novos Modelos"
505
 
506
- #: ../classes/es-register.php:821
507
  msgid "View Templates"
508
  msgstr "Exibir Modelos"
509
 
510
- #: ../classes/es-register.php:822
511
  msgid "Search Templates"
512
  msgstr "Procurar Modelos"
513
 
514
- #: ../classes/es-register.php:823
515
  msgid "No Templates found"
516
  msgstr "Nenhum Modelo encontrado"
517
 
518
- #: ../classes/es-register.php:824
519
  msgid "No Templates found in Trash"
520
  msgstr "Nenhum Modelo encontrado na Lixeira"
521
 
522
- #: ../classes/es-register.php:827
523
  msgid "Thumbnail (For Visual Representation only)"
524
  msgstr "Miniaturas (Para Representação Visual apenas)"
525
 
526
- #: ../classes/es-register.php:828
527
  msgid "Set thumbnail"
528
  msgstr "Definir miniatura"
529
 
530
- #: ../classes/es-register.php:865
531
  msgid "Template Type"
532
  msgstr "Tipo de Modelo"
533
 
534
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
535
  msgid "Thumbnail"
536
  msgstr "Miniatura"
537
 
538
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
539
  #: sentmail/sentmail-show.php:121
540
  msgid "Preview"
541
  msgstr "Visualizar"
542
 
543
- #: ../classes/es-register.php:943
544
  msgid "Select your Email Template Type"
545
  msgstr "Selecione o seu Tipo de Modelo de E-mail"
546
 
547
- #: ../classes/es-register.php:945
548
  msgid "Newsletter"
549
  msgstr "Newsletter"
550
 
551
- #: ../classes/es-register.php:946
552
  msgid "Post Notification"
553
  msgstr "Notificação de Postagem"
554
 
555
- #: ../classes/es-register.php:995
556
  msgid "Preview Template"
557
  msgstr "Visualização do Modelo"
558
 
559
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
560
- #: register.php:1030 ../classes/es-register.php:1038
561
  msgid "Available Keywords"
562
  msgstr "Palavras-chave disponíveis"
563
 
564
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
565
  msgid "Name"
566
  msgstr "Nome"
567
 
568
- #: ../classes/es-register.php:1080
569
  msgid "Email *"
570
  msgstr "E-mail *"
571
 
572
- #: ../classes/es-register.php:1089 ../help/help.php:202
573
  msgid "Subscribe"
574
  msgstr "Inscrever"
575
 
576
- #: ../classes/es-register.php:1193
577
  msgid "Widget Title"
578
  msgstr "Título do Widget"
579
 
580
- #: ../classes/es-register.php:1197
581
  msgid "Short description about subscription form"
582
  msgstr "Breve descrição sobre o formulário de inscrição"
583
 
584
- #: ../classes/es-register.php:1201
585
  msgid "Display Name Field"
586
  msgstr "Exibir Campo do Nome"
587
 
588
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
589
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
590
  msgid "YES"
591
  msgstr "SIM"
592
 
593
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
594
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
595
  msgid "NO"
596
  msgstr "NÃO"
597
 
598
- #: ../classes/es-register.php:1208
599
  msgid "Subscriber Group"
600
  msgstr "Grupo do Assinante"
601
 
@@ -914,8 +905,8 @@ msgstr ""
914
  msgid "add Rainmaker’s form in Email Subscribers"
915
  msgstr "adicionar o formulário do Rainmaker ao Email Subscribers"
916
 
917
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
918
- #: job/es-unsubscribe.php:61
919
  msgid ""
920
  "Oops.. We are getting some technical error. Please try again or contact "
921
  "admin."
@@ -923,7 +914,7 @@ msgstr ""
923
  "Oops. Estamos recebendo algum erro técnico. Tente novamente ou contate o "
924
  "Administrador."
925
 
926
- #: ../job/es-optin.php:61
927
  msgid "This email address has already been confirmed."
928
  msgstr "Este endereço de e-mail já foi confirmado."
929
 
@@ -952,16 +943,12 @@ msgstr "Adicionar Notificação"
952
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
953
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
954
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
955
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
956
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
957
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
958
  msgid "Help"
959
  msgstr "Ajuda"
960
 
961
- #: ../notification/notification-add.php:121
962
- msgid "Select Subscribers Group"
963
- msgstr "Selecione um Grupo de Assinantes"
964
-
965
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
966
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
967
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1058,11 +1045,6 @@ msgstr "Editar Notificação"
1058
  msgid "Add New"
1059
  msgstr "Adicionar Novo"
1060
 
1061
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1062
- #: php:303
1063
- msgid "Update Subscribers Group"
1064
- msgstr "Atualizar o Grupo do Assinante"
1065
-
1066
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1067
  msgid "Selected record deleted."
1068
  msgstr "Registro selecionado excluído."
@@ -1204,8 +1186,8 @@ msgid "Delivery Report"
1204
  msgstr "Relatório de Entrega"
1205
 
1206
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1207
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1208
- #: export.php:66
1209
  msgid "Sno"
1210
  msgstr "Sno"
1211
 
@@ -1284,8 +1266,8 @@ msgid "Total"
1284
  msgstr "Total"
1285
 
1286
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1287
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1288
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1289
  msgid "Action"
1290
  msgstr "Ação"
1291
 
@@ -1525,7 +1507,7 @@ msgstr "Link para Confirmação do Opt-In Duplo"
1525
  msgid "It is a readonly field and you are advised not to modify it."
1526
  msgstr "Este é um campo de leitura e é aconselhável não modificá-lo."
1527
 
1528
- #: ../settings/settings-edit.php:205
1529
  msgid ""
1530
  "Text to display after an email address is successfully subscribed from "
1531
  "Double Opt-In (Confirmation) Email"
@@ -1533,7 +1515,7 @@ msgstr ""
1533
  "Texto a ser exibido após um endereço de e-mail ser inscrito com sucesso no e-"
1534
  "mail Opt-In Duplo (E-mail de Confirmação)"
1535
 
1536
- #: ../settings/settings-edit.php:206
1537
  msgid ""
1538
  "This text will be displayed once user clicks on email confirmation link from "
1539
  "the Double Opt In (confirmation) Email."
@@ -1541,11 +1523,11 @@ msgstr ""
1541
  "Este texto será exibido uma vez que o usuário clicar no link de confirmação "
1542
  "de e-mail do Opt-In Duplo (E-mail de Confirmação)."
1543
 
1544
- #: ../settings/settings-edit.php:213
1545
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1546
  msgstr "Enviar o E-mail de Boas-Vindas aos Novos Assinantes após a Inscrição?"
1547
 
1548
- #: ../settings/settings-edit.php:214
1549
  msgid ""
1550
  "To send welcome email to subscriber after successful signup. This option "
1551
  "must be set to YES."
@@ -1553,11 +1535,11 @@ msgstr ""
1553
  "Para enviar um e-mail de boas-vindas ao assinante após a inscrição aprovada. "
1554
  "Esta opção deve ser definida como SIM."
1555
 
1556
- #: ../settings/settings-edit.php:225
1557
  msgid "Subject for Welcome Email"
1558
  msgstr "Assunto para o E-mail de Boas-Vindas"
1559
 
1560
- #: ../settings/settings-edit.php:226
1561
  msgid ""
1562
  "Subject for the subscriber welcome email. This will be sent whenever a "
1563
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1567,11 +1549,11 @@ msgstr ""
1567
  "que o e-mail de um usuário for confirmado (se Opt-In Duplo) / assinante (se "
1568
  "Opt-In Simples) com sucesso."
1569
 
1570
- #: ../settings/settings-edit.php:232
1571
  msgid "Email Content for Welcome Email"
1572
  msgstr "Conteúdo do e-mail para o E-mail de Boas-Vindas"
1573
 
1574
- #: ../settings/settings-edit.php:233
1575
  msgid ""
1576
  "Content for the subscriber welcome email whenever a user's email is either "
1577
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1581,11 +1563,11 @@ msgstr ""
1581
  "usuário for confirmado (se Opt-In Duplo) / assinante (se Opt-In Simples) com "
1582
  "êxito.<br />Palavras-chave disponíveis: {{NAME}}, {{GROUP}}, {{LINK}}"
1583
 
1584
- #: ../settings/settings-edit.php:241
1585
  msgid "Unsubscribe Link"
1586
  msgstr "Link para Cancelar a Inscrição"
1587
 
1588
- #: ../settings/settings-edit.php:242
1589
  msgid ""
1590
  "This unsubscribe link is automatically added to all the emails that are sent "
1591
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1595,11 +1577,11 @@ msgstr ""
1595
  "que são enviados deste plugin. É um campo de leitura e é aconselhável não "
1596
  "modificá-lo."
1597
 
1598
- #: ../settings/settings-edit.php:248
1599
  msgid "Unsubscribe Text in Email"
1600
  msgstr "Texto de Cancelamento de Inscrição no E-mail"
1601
 
1602
- #: ../settings/settings-edit.php:249
1603
  msgid ""
1604
  "The text for the unsubscribe link. This text is automatically added with "
1605
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1608,11 +1590,11 @@ msgstr ""
1608
  "automaticamente com o link de cancelamento nos e-mails.<br />Palavra-chave "
1609
  "disponível: {{LINK}}"
1610
 
1611
- #: ../settings/settings-edit.php:255
1612
  msgid "Text to display after an email address is unsubscribed"
1613
  msgstr "Texto a ser exibido após um endereço de e-mail ser cancelado"
1614
 
1615
- #: ../settings/settings-edit.php:256
1616
  msgid ""
1617
  "This text will be displayed once user clicks on unsubscribe link from the "
1618
  "email."
@@ -1620,11 +1602,11 @@ msgstr ""
1620
  "Este texto será exibido uma vez que o usuário clicar no link de cancelamento "
1621
  "do e-mail."
1622
 
1623
- #: ../settings/settings-edit.php:263
1624
  msgid "Error in the Subscribe / Confirmation Link"
1625
  msgstr "Erro no link de Inscrição / Confirmação"
1626
 
1627
- #: ../settings/settings-edit.php:264
1628
  msgid ""
1629
  "Default message to display if there is any issue while clicking on subscribe "
1630
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1632,11 +1614,11 @@ msgstr ""
1632
  "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
1633
  "inscrição / confirmação dos e-mails de Opt-In Duplo (E-mail de Confirmação)."
1634
 
1635
- #: ../settings/settings-edit.php:270
1636
  msgid "Error in the Unsubscribe Link"
1637
  msgstr "Erro no link de Cancelamento de Inscrição"
1638
 
1639
- #: ../settings/settings-edit.php:271
1640
  msgid ""
1641
  "Default message to display if there is any issue while clicking on "
1642
  "unsubscribe link from the emails."
@@ -1644,51 +1626,51 @@ msgstr ""
1644
  "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
1645
  "cancelar a inscrição nos e-mails."
1646
 
1647
- #: ../settings/settings-edit.php:283
1648
  msgid "Select user roles who can access following menus. Only Admin can change this."
1649
  msgstr ""
1650
  "Selecione as funções que os usuários podem acessar nos seguintes menus. "
1651
  "Somente o Administrador pode mudar isso."
1652
 
1653
- #: ../settings/settings-edit.php:289
1654
  msgid "Subscribers Menu"
1655
  msgstr "Menu de Assinantes"
1656
 
1657
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1658
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1659
- #: settings/settings-edit.php:341
1660
  msgid "Administrator Only"
1661
  msgstr "Apenas o Administrador"
1662
 
1663
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1664
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1665
- #: settings/settings-edit.php:342
1666
  msgid "Administrator/Editor"
1667
  msgstr "Administrador/Editor"
1668
 
1669
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1670
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1671
- #: settings/settings-edit.php:343
1672
  msgid "Administrator/Editor/Author/Contributor"
1673
  msgstr "Administrador/Editor/Autor/Contribuinte"
1674
 
1675
- #: ../settings/settings-edit.php:301
1676
  msgid "Templates Menu"
1677
  msgstr "Menu de Modelos"
1678
 
1679
- #: ../settings/settings-edit.php:313
1680
  msgid "Post Notifications Menu"
1681
  msgstr "Menu de Notificação de Postagens"
1682
 
1683
- #: ../settings/settings-edit.php:337
1684
  msgid "Reports Menu"
1685
  msgstr "Menu de Relatórios"
1686
 
1687
- #: ../settings/settings-edit.php:354
1688
  msgid "Cron job URL"
1689
  msgstr "URL do Cron Job"
1690
 
1691
- #: ../settings/settings-edit.php:355
1692
  msgid ""
1693
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1694
  "modify it."
@@ -1696,23 +1678,23 @@ msgstr ""
1696
  "Este é o URL do seu Cron Job. É um campo de leitura e é aconselhável não "
1697
  "modificá-lo."
1698
 
1699
- #: ../settings/settings-edit.php:364
1700
  msgid "Email Count"
1701
  msgstr "Contagem de e-mail"
1702
 
1703
- #: ../settings/settings-edit.php:365
1704
  msgid "Number of emails that you want to trigger per hour."
1705
  msgstr "Número de e-mails que você deseja disparar por hora."
1706
 
1707
- #: ../settings/settings-edit.php:370
1708
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1709
  msgstr "(O seu host tem limites. Sugerimos 50 e-mails por hora para serem seguros.)"
1710
 
1711
- #: ../settings/settings-edit.php:375
1712
  msgid "Cron Report"
1713
  msgstr "Relatório do Cron Job"
1714
 
1715
- #: ../settings/settings-edit.php:376
1716
  msgid ""
1717
  "Email to admin whenever a cron URL is triggered from your server.<br "
1718
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1721,11 +1703,11 @@ msgstr ""
1721
  "seu servidor.<br />Palavras-chave disponíveis: {{DATE}}, {{SUBJECT}}, "
1722
  "{{COUNT}}"
1723
 
1724
- #: ../settings/settings-edit.php:386
1725
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1726
  msgstr "O que é Cron Job (e-mails automáticos) e como configurar o Cron Job?"
1727
 
1728
- #: ../settings/settings-edit.php:387
1729
  msgid ""
1730
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1731
  "schedule-cron-emails/?"
@@ -1737,7 +1719,7 @@ msgstr ""
1737
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">O que é o "
1738
  "Cron Job?</a>"
1739
 
1740
- #: ../settings/settings-edit.php:388
1741
  msgid ""
1742
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1743
  "schedule-cron-emails-in-cpanel/?"
@@ -1749,7 +1731,7 @@ msgstr ""
1749
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1750
  "o Cron Job no cPanel</a>"
1751
 
1752
- #: ../settings/settings-edit.php:389
1753
  msgid ""
1754
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1755
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1761,7 +1743,7 @@ msgstr ""
1761
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1762
  "o Cron Job no Plesk</a>"
1763
 
1764
- #: ../settings/settings-edit.php:390
1765
  msgid ""
1766
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1767
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1773,19 +1755,19 @@ msgstr ""
1773
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">A sua "
1774
  "hospedagem não suporta trabalhos do Cron Job?</a>"
1775
 
1776
- #: ../settings/settings-edit.php:505
1777
  msgid "Please enter sender of notifications from name."
1778
  msgstr "Por favor, digite o nome do remetente de notificações."
1779
 
1780
- #: ../settings/settings-edit.php:510
1781
  msgid "Please enter sender of notifications from email."
1782
  msgstr "Por favor, digite o e-mail do remetente de notificações."
1783
 
1784
- #: ../settings/settings-edit.php:568
1785
  msgid "Settings Saved."
1786
  msgstr "Configurações Salvas."
1787
 
1788
- #: ../settings/settings-edit.php:571
1789
  msgid "Oops, unable to update."
1790
  msgstr "Oops, não foi possível de atualizar."
1791
 
@@ -1819,14 +1801,14 @@ msgid "Invalid Email."
1819
  msgstr "E-mail Inválido."
1820
 
1821
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1822
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1823
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1824
  #: subscribers/view-subscriber-sync.php:89
1825
  msgid "Add New Subscriber"
1826
  msgstr "Adicionar Novo Assinante"
1827
 
1828
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1829
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1830
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1831
  #: subscribers/view-subscriber-sync.php:90
1832
  msgid "Import"
@@ -1839,7 +1821,7 @@ msgid "Export"
1839
  msgstr "Exportar"
1840
 
1841
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1842
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1843
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1844
  #: subscribers/view-subscriber-sync.php:143
1845
  msgid "Sync"
@@ -1920,63 +1902,63 @@ msgstr "Atualize o Status do Assinante"
1920
  msgid "Update Subscriber's Group"
1921
  msgstr "Atualize o Grupo do Assinante"
1922
 
1923
- #: ../subscribers/view-subscriber-export.php:47
1924
  msgid "Export Email Addresses"
1925
  msgstr "Exportar Endereços de E-mails"
1926
 
1927
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1928
- #: export.php:67
1929
  msgid "Type of List to Export"
1930
  msgstr "Tipo de Lista para Exportar"
1931
 
1932
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1933
- #: export.php:68
1934
  msgid "Total Emails Count"
1935
  msgstr "Número Total de E-mails"
1936
 
1937
- #: ../subscribers/view-subscriber-export.php:74
1938
  msgid "1"
1939
  msgstr "1"
1940
 
1941
- #: ../subscribers/view-subscriber-export.php:75
1942
  msgid "All Subscribers"
1943
  msgstr "Todos os Assinantes"
1944
 
1945
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1946
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1947
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1948
  msgid "Click to Export in CSV"
1949
  msgstr "Clique para Exportar em CSV"
1950
 
1951
- #: ../subscribers/view-subscriber-export.php:80
1952
  msgid "2"
1953
  msgstr "2"
1954
 
1955
- #: ../subscribers/view-subscriber-export.php:81
1956
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1957
  msgstr "Assinantes Ativos (Status: Confirmados e Opt-In Simples)"
1958
 
1959
- #: ../subscribers/view-subscriber-export.php:86
1960
  msgid "3"
1961
  msgstr "3"
1962
 
1963
- #: ../subscribers/view-subscriber-export.php:87
1964
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1965
  msgstr "Assinantes Inativos (Status: Não Confirmados e Sem Subscrição)"
1966
 
1967
- #: ../subscribers/view-subscriber-export.php:92
1968
  msgid "4"
1969
  msgstr "4"
1970
 
1971
- #: ../subscribers/view-subscriber-export.php:93
1972
  msgid "WordPress Registered Users"
1973
  msgstr "Usuários Registrados do WordPress"
1974
 
1975
- #: ../subscribers/view-subscriber-export.php:98
1976
  msgid "5"
1977
  msgstr "5"
1978
 
1979
- #: ../subscribers/view-subscriber-export.php:99
1980
  msgid "Commented Authors"
1981
  msgstr "Autores Comentados"
1982
 
@@ -2103,6 +2085,10 @@ msgstr "Ações em Massa"
2103
  msgid "Resend Confirmation"
2104
  msgstr "Reenviar Confirmação"
2105
 
 
 
 
 
2106
  #: ../subscribers/view-subscriber-show.php:304
2107
  msgid "Update Subscribers Status"
2108
  msgstr "Atualizar o Status do Assinante"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:52 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Portuguese (Brazil)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
42
  "spam/junk folder."
43
  msgstr ""
44
 
 
 
 
 
 
 
 
 
 
 
45
  #: ../classes/es-register.php:727
 
 
 
 
46
  msgid ""
47
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
48
+ "</b>"
49
  msgstr ""
50
 
51
+ #: ../classes/es-register.php:728
52
+ msgid "Here's how"
53
  msgstr ""
54
 
55
+ #: ../classes/es-register.php:728
56
+ msgid "Not interested. Dismiss this."
57
  msgstr ""
58
 
59
+ #: ../classes/es-register.php:900
60
  #, php-format
61
  msgid "%s for Post Notification: {{POSTTITLE}}"
62
  msgstr ""
63
 
64
+ #: ../classes/es-register.php:900
65
  msgid "Available Keyword"
66
  msgstr ""
67
 
68
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
69
  #, php-format
70
  msgid ""
71
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
73
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
74
  msgstr ""
75
 
76
+ #: ../classes/es-register.php:979
77
  #, php-format
78
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:1002
82
  #, php-format
83
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
84
  msgstr ""
85
 
86
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
87
  msgid "Unexpected url submit has been detected!"
88
  msgstr ""
89
 
195
  msgid "Please select notification mail subject. Use templates menu to create new."
196
  msgstr ""
197
 
198
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
199
+ #: 132
200
+ msgid "Subscribers Group to send post notification to"
201
+ msgstr ""
202
+
203
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
204
  #: 164
205
  msgid "(Use templates menu to create new)"
212
  "deleted too and email will not be sent."
213
  msgstr ""
214
 
215
+ #: ../settings/settings-edit.php:566
216
  msgid "Please enter valid email count."
217
  msgstr ""
218
 
280
  msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
281
 
282
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
283
+ #: register.php:788
284
  msgid "Email Subscribers"
285
  msgstr "Email Subscribers"
286
 
290
  msgstr "Assinantes"
291
 
292
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
293
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
294
  msgid "Templates"
295
  msgstr "Modelos"
296
 
300
  msgstr "Notificações de Postagens"
301
 
302
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
303
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
304
  msgid "Newsletters"
305
  msgstr "Newsletters"
306
 
465
  msgid "Please try after some time"
466
  msgstr "Por favor, tente depois de algum tempo"
467
 
468
+ #: ../classes/es-register.php:753
469
  msgid ""
470
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
471
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
477
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
478
  "&#9733;&#9733;&#9733;&#9733;</a> avaliação. Um enorme obrigado do Icegram!"
479
 
480
+ #: ../classes/es-register.php:767
481
  #, php-format
482
  msgid "Email Subscribers version: <strong>%s</strong>"
483
  msgstr "Email Subscribers versão: <strong>%s</strong>"
484
 
485
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
486
  msgid "Add new Template"
487
  msgstr "Adicionar Novo Modelo"
488
 
489
+ #: ../classes/es-register.php:780
490
  msgid "Edit Templates"
491
  msgstr "Editar Modelos"
492
 
493
+ #: ../classes/es-register.php:781
494
  msgid "New Templates"
495
  msgstr "Novos Modelos"
496
 
497
+ #: ../classes/es-register.php:783
498
  msgid "View Templates"
499
  msgstr "Exibir Modelos"
500
 
501
+ #: ../classes/es-register.php:784
502
  msgid "Search Templates"
503
  msgstr "Procurar Modelos"
504
 
505
+ #: ../classes/es-register.php:785
506
  msgid "No Templates found"
507
  msgstr "Nenhum Modelo encontrado"
508
 
509
+ #: ../classes/es-register.php:786
510
  msgid "No Templates found in Trash"
511
  msgstr "Nenhum Modelo encontrado na Lixeira"
512
 
513
+ #: ../classes/es-register.php:789
514
  msgid "Thumbnail (For Visual Representation only)"
515
  msgstr "Miniaturas (Para Representação Visual apenas)"
516
 
517
+ #: ../classes/es-register.php:790
518
  msgid "Set thumbnail"
519
  msgstr "Definir miniatura"
520
 
521
+ #: ../classes/es-register.php:827
522
  msgid "Template Type"
523
  msgstr "Tipo de Modelo"
524
 
525
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
526
  msgid "Thumbnail"
527
  msgstr "Miniatura"
528
 
529
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
530
  #: sentmail/sentmail-show.php:121
531
  msgid "Preview"
532
  msgstr "Visualizar"
533
 
534
+ #: ../classes/es-register.php:907
535
  msgid "Select your Email Template Type"
536
  msgstr "Selecione o seu Tipo de Modelo de E-mail"
537
 
538
+ #: ../classes/es-register.php:909
539
  msgid "Newsletter"
540
  msgstr "Newsletter"
541
 
542
+ #: ../classes/es-register.php:910
543
  msgid "Post Notification"
544
  msgstr "Notificação de Postagem"
545
 
546
+ #: ../classes/es-register.php:959
547
  msgid "Preview Template"
548
  msgstr "Visualização do Modelo"
549
 
550
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
551
+ #: register.php:994 ../classes/es-register.php:1002
552
  msgid "Available Keywords"
553
  msgstr "Palavras-chave disponíveis"
554
 
555
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
556
  msgid "Name"
557
  msgstr "Nome"
558
 
559
+ #: ../classes/es-register.php:1044
560
  msgid "Email *"
561
  msgstr "E-mail *"
562
 
563
+ #: ../classes/es-register.php:1053 ../help/help.php:202
564
  msgid "Subscribe"
565
  msgstr "Inscrever"
566
 
567
+ #: ../classes/es-register.php:1157
568
  msgid "Widget Title"
569
  msgstr "Título do Widget"
570
 
571
+ #: ../classes/es-register.php:1161
572
  msgid "Short description about subscription form"
573
  msgstr "Breve descrição sobre o formulário de inscrição"
574
 
575
+ #: ../classes/es-register.php:1165
576
  msgid "Display Name Field"
577
  msgstr "Exibir Campo do Nome"
578
 
579
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
580
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
581
  msgid "YES"
582
  msgstr "SIM"
583
 
584
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
585
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
586
  msgid "NO"
587
  msgstr "NÃO"
588
 
589
+ #: ../classes/es-register.php:1172
590
  msgid "Subscriber Group"
591
  msgstr "Grupo do Assinante"
592
 
905
  msgid "add Rainmaker’s form in Email Subscribers"
906
  msgstr "adicionar o formulário do Rainmaker ao Email Subscribers"
907
 
908
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
909
+ #: job/es-unsubscribe.php:62
910
  msgid ""
911
  "Oops.. We are getting some technical error. Please try again or contact "
912
  "admin."
914
  "Oops. Estamos recebendo algum erro técnico. Tente novamente ou contate o "
915
  "Administrador."
916
 
917
+ #: ../job/es-optin.php:62
918
  msgid "This email address has already been confirmed."
919
  msgstr "Este endereço de e-mail já foi confirmado."
920
 
943
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
944
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
945
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
946
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
947
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
948
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
949
  msgid "Help"
950
  msgstr "Ajuda"
951
 
 
 
 
 
952
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
953
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
954
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1045
  msgid "Add New"
1046
  msgstr "Adicionar Novo"
1047
 
 
 
 
 
 
1048
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1049
  msgid "Selected record deleted."
1050
  msgstr "Registro selecionado excluído."
1186
  msgstr "Relatório de Entrega"
1187
 
1188
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1189
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1190
+ #: export.php:69
1191
  msgid "Sno"
1192
  msgstr "Sno"
1193
 
1266
  msgstr "Total"
1267
 
1268
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1269
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1270
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1271
  msgid "Action"
1272
  msgstr "Ação"
1273
 
1507
  msgid "It is a readonly field and you are advised not to modify it."
1508
  msgstr "Este é um campo de leitura e é aconselhável não modificá-lo."
1509
 
1510
+ #: ../settings/settings-edit.php:206
1511
  msgid ""
1512
  "Text to display after an email address is successfully subscribed from "
1513
  "Double Opt-In (Confirmation) Email"
1515
  "Texto a ser exibido após um endereço de e-mail ser inscrito com sucesso no e-"
1516
  "mail Opt-In Duplo (E-mail de Confirmação)"
1517
 
1518
+ #: ../settings/settings-edit.php:207
1519
  msgid ""
1520
  "This text will be displayed once user clicks on email confirmation link from "
1521
  "the Double Opt In (confirmation) Email."
1523
  "Este texto será exibido uma vez que o usuário clicar no link de confirmação "
1524
  "de e-mail do Opt-In Duplo (E-mail de Confirmação)."
1525
 
1526
+ #: ../settings/settings-edit.php:219
1527
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1528
  msgstr "Enviar o E-mail de Boas-Vindas aos Novos Assinantes após a Inscrição?"
1529
 
1530
+ #: ../settings/settings-edit.php:220
1531
  msgid ""
1532
  "To send welcome email to subscriber after successful signup. This option "
1533
  "must be set to YES."
1535
  "Para enviar um e-mail de boas-vindas ao assinante após a inscrição aprovada. "
1536
  "Esta opção deve ser definida como SIM."
1537
 
1538
+ #: ../settings/settings-edit.php:231
1539
  msgid "Subject for Welcome Email"
1540
  msgstr "Assunto para o E-mail de Boas-Vindas"
1541
 
1542
+ #: ../settings/settings-edit.php:232
1543
  msgid ""
1544
  "Subject for the subscriber welcome email. This will be sent whenever a "
1545
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1549
  "que o e-mail de um usuário for confirmado (se Opt-In Duplo) / assinante (se "
1550
  "Opt-In Simples) com sucesso."
1551
 
1552
+ #: ../settings/settings-edit.php:238
1553
  msgid "Email Content for Welcome Email"
1554
  msgstr "Conteúdo do e-mail para o E-mail de Boas-Vindas"
1555
 
1556
+ #: ../settings/settings-edit.php:239
1557
  msgid ""
1558
  "Content for the subscriber welcome email whenever a user's email is either "
1559
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1563
  "usuário for confirmado (se Opt-In Duplo) / assinante (se Opt-In Simples) com "
1564
  "êxito.<br />Palavras-chave disponíveis: {{NAME}}, {{GROUP}}, {{LINK}}"
1565
 
1566
+ #: ../settings/settings-edit.php:247
1567
  msgid "Unsubscribe Link"
1568
  msgstr "Link para Cancelar a Inscrição"
1569
 
1570
+ #: ../settings/settings-edit.php:248
1571
  msgid ""
1572
  "This unsubscribe link is automatically added to all the emails that are sent "
1573
  "from this plugin. It is a readonly field and you are advised not to modify "
1577
  "que são enviados deste plugin. É um campo de leitura e é aconselhável não "
1578
  "modificá-lo."
1579
 
1580
+ #: ../settings/settings-edit.php:254
1581
  msgid "Unsubscribe Text in Email"
1582
  msgstr "Texto de Cancelamento de Inscrição no E-mail"
1583
 
1584
+ #: ../settings/settings-edit.php:255
1585
  msgid ""
1586
  "The text for the unsubscribe link. This text is automatically added with "
1587
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1590
  "automaticamente com o link de cancelamento nos e-mails.<br />Palavra-chave "
1591
  "disponível: {{LINK}}"
1592
 
1593
+ #: ../settings/settings-edit.php:262
1594
  msgid "Text to display after an email address is unsubscribed"
1595
  msgstr "Texto a ser exibido após um endereço de e-mail ser cancelado"
1596
 
1597
+ #: ../settings/settings-edit.php:263
1598
  msgid ""
1599
  "This text will be displayed once user clicks on unsubscribe link from the "
1600
  "email."
1602
  "Este texto será exibido uma vez que o usuário clicar no link de cancelamento "
1603
  "do e-mail."
1604
 
1605
+ #: ../settings/settings-edit.php:275
1606
  msgid "Error in the Subscribe / Confirmation Link"
1607
  msgstr "Erro no link de Inscrição / Confirmação"
1608
 
1609
+ #: ../settings/settings-edit.php:276
1610
  msgid ""
1611
  "Default message to display if there is any issue while clicking on subscribe "
1612
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1614
  "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
1615
  "inscrição / confirmação dos e-mails de Opt-In Duplo (E-mail de Confirmação)."
1616
 
1617
+ #: ../settings/settings-edit.php:282
1618
  msgid "Error in the Unsubscribe Link"
1619
  msgstr "Erro no link de Cancelamento de Inscrição"
1620
 
1621
+ #: ../settings/settings-edit.php:283
1622
  msgid ""
1623
  "Default message to display if there is any issue while clicking on "
1624
  "unsubscribe link from the emails."
1626
  "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
1627
  "cancelar a inscrição nos e-mails."
1628
 
1629
+ #: ../settings/settings-edit.php:295
1630
  msgid "Select user roles who can access following menus. Only Admin can change this."
1631
  msgstr ""
1632
  "Selecione as funções que os usuários podem acessar nos seguintes menus. "
1633
  "Somente o Administrador pode mudar isso."
1634
 
1635
+ #: ../settings/settings-edit.php:301
1636
  msgid "Subscribers Menu"
1637
  msgstr "Menu de Assinantes"
1638
 
1639
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1640
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1641
+ #: settings/settings-edit.php:353
1642
  msgid "Administrator Only"
1643
  msgstr "Apenas o Administrador"
1644
 
1645
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1646
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1647
+ #: settings/settings-edit.php:354
1648
  msgid "Administrator/Editor"
1649
  msgstr "Administrador/Editor"
1650
 
1651
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1652
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1653
+ #: settings/settings-edit.php:355
1654
  msgid "Administrator/Editor/Author/Contributor"
1655
  msgstr "Administrador/Editor/Autor/Contribuinte"
1656
 
1657
+ #: ../settings/settings-edit.php:313
1658
  msgid "Templates Menu"
1659
  msgstr "Menu de Modelos"
1660
 
1661
+ #: ../settings/settings-edit.php:325
1662
  msgid "Post Notifications Menu"
1663
  msgstr "Menu de Notificação de Postagens"
1664
 
1665
+ #: ../settings/settings-edit.php:349
1666
  msgid "Reports Menu"
1667
  msgstr "Menu de Relatórios"
1668
 
1669
+ #: ../settings/settings-edit.php:366
1670
  msgid "Cron job URL"
1671
  msgstr "URL do Cron Job"
1672
 
1673
+ #: ../settings/settings-edit.php:367
1674
  msgid ""
1675
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1676
  "modify it."
1678
  "Este é o URL do seu Cron Job. É um campo de leitura e é aconselhável não "
1679
  "modificá-lo."
1680
 
1681
+ #: ../settings/settings-edit.php:376
1682
  msgid "Email Count"
1683
  msgstr "Contagem de e-mail"
1684
 
1685
+ #: ../settings/settings-edit.php:377
1686
  msgid "Number of emails that you want to trigger per hour."
1687
  msgstr "Número de e-mails que você deseja disparar por hora."
1688
 
1689
+ #: ../settings/settings-edit.php:382
1690
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1691
  msgstr "(O seu host tem limites. Sugerimos 50 e-mails por hora para serem seguros.)"
1692
 
1693
+ #: ../settings/settings-edit.php:387
1694
  msgid "Cron Report"
1695
  msgstr "Relatório do Cron Job"
1696
 
1697
+ #: ../settings/settings-edit.php:388
1698
  msgid ""
1699
  "Email to admin whenever a cron URL is triggered from your server.<br "
1700
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1703
  "seu servidor.<br />Palavras-chave disponíveis: {{DATE}}, {{SUBJECT}}, "
1704
  "{{COUNT}}"
1705
 
1706
+ #: ../settings/settings-edit.php:398
1707
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1708
  msgstr "O que é Cron Job (e-mails automáticos) e como configurar o Cron Job?"
1709
 
1710
+ #: ../settings/settings-edit.php:399
1711
  msgid ""
1712
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1713
  "schedule-cron-emails/?"
1719
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">O que é o "
1720
  "Cron Job?</a>"
1721
 
1722
+ #: ../settings/settings-edit.php:400
1723
  msgid ""
1724
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1725
  "schedule-cron-emails-in-cpanel/?"
1731
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1732
  "o Cron Job no cPanel</a>"
1733
 
1734
+ #: ../settings/settings-edit.php:401
1735
  msgid ""
1736
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1737
  "schedule-cron-emails-in-parallels-plesk/?"
1743
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1744
  "o Cron Job no Plesk</a>"
1745
 
1746
+ #: ../settings/settings-edit.php:402
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1749
  "if-hosting-doesnt-support-cron-jobs/?"
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">A sua "
1756
  "hospedagem não suporta trabalhos do Cron Job?</a>"
1757
 
1758
+ #: ../settings/settings-edit.php:517
1759
  msgid "Please enter sender of notifications from name."
1760
  msgstr "Por favor, digite o nome do remetente de notificações."
1761
 
1762
+ #: ../settings/settings-edit.php:522
1763
  msgid "Please enter sender of notifications from email."
1764
  msgstr "Por favor, digite o e-mail do remetente de notificações."
1765
 
1766
+ #: ../settings/settings-edit.php:580
1767
  msgid "Settings Saved."
1768
  msgstr "Configurações Salvas."
1769
 
1770
+ #: ../settings/settings-edit.php:583
1771
  msgid "Oops, unable to update."
1772
  msgstr "Oops, não foi possível de atualizar."
1773
 
1801
  msgstr "E-mail Inválido."
1802
 
1803
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1804
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1805
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1806
  #: subscribers/view-subscriber-sync.php:89
1807
  msgid "Add New Subscriber"
1808
  msgstr "Adicionar Novo Assinante"
1809
 
1810
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1811
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1812
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1813
  #: subscribers/view-subscriber-sync.php:90
1814
  msgid "Import"
1821
  msgstr "Exportar"
1822
 
1823
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1824
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1825
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1826
  #: subscribers/view-subscriber-sync.php:143
1827
  msgid "Sync"
1902
  msgid "Update Subscriber's Group"
1903
  msgstr "Atualize o Grupo do Assinante"
1904
 
1905
+ #: ../subscribers/view-subscriber-export.php:50
1906
  msgid "Export Email Addresses"
1907
  msgstr "Exportar Endereços de E-mails"
1908
 
1909
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1910
+ #: export.php:70
1911
  msgid "Type of List to Export"
1912
  msgstr "Tipo de Lista para Exportar"
1913
 
1914
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1915
+ #: export.php:71
1916
  msgid "Total Emails Count"
1917
  msgstr "Número Total de E-mails"
1918
 
1919
+ #: ../subscribers/view-subscriber-export.php:77
1920
  msgid "1"
1921
  msgstr "1"
1922
 
1923
+ #: ../subscribers/view-subscriber-export.php:78
1924
  msgid "All Subscribers"
1925
  msgstr "Todos os Assinantes"
1926
 
1927
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1928
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1929
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1930
  msgid "Click to Export in CSV"
1931
  msgstr "Clique para Exportar em CSV"
1932
 
1933
+ #: ../subscribers/view-subscriber-export.php:83
1934
  msgid "2"
1935
  msgstr "2"
1936
 
1937
+ #: ../subscribers/view-subscriber-export.php:84
1938
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1939
  msgstr "Assinantes Ativos (Status: Confirmados e Opt-In Simples)"
1940
 
1941
+ #: ../subscribers/view-subscriber-export.php:89
1942
  msgid "3"
1943
  msgstr "3"
1944
 
1945
+ #: ../subscribers/view-subscriber-export.php:90
1946
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1947
  msgstr "Assinantes Inativos (Status: Não Confirmados e Sem Subscrição)"
1948
 
1949
+ #: ../subscribers/view-subscriber-export.php:95
1950
  msgid "4"
1951
  msgstr "4"
1952
 
1953
+ #: ../subscribers/view-subscriber-export.php:96
1954
  msgid "WordPress Registered Users"
1955
  msgstr "Usuários Registrados do WordPress"
1956
 
1957
+ #: ../subscribers/view-subscriber-export.php:101
1958
  msgid "5"
1959
  msgstr "5"
1960
 
1961
+ #: ../subscribers/view-subscriber-export.php:102
1962
  msgid "Commented Authors"
1963
  msgstr "Autores Comentados"
1964
 
2085
  msgid "Resend Confirmation"
2086
  msgstr "Reenviar Confirmação"
2087
 
2088
+ #: ../subscribers/view-subscriber-show.php:303
2089
+ msgid "Update Subscribers Group"
2090
+ msgstr "Atualizar o Grupo do Assinante"
2091
+
2092
  #: ../subscribers/view-subscriber-show.php:304
2093
  msgid "Update Subscribers Status"
2094
  msgstr "Atualizar o Status do Assinante"
languages/email-subscribers-sv_SE.mo CHANGED
Binary file
languages/email-subscribers-sv_SE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:43:00 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Swedish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,763 +22,23 @@ msgstr ""
22
  "X-Loco-Target-Locale: sv_SE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
27
- msgid "Templates"
28
- msgstr ""
29
-
30
- #: ../classes/es-register.php:184
31
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
32
- msgstr ""
33
-
34
- #: ../classes/es-register.php:201
35
- msgctxt "view-subscriber-enhanced-select"
36
- msgid ""
37
- "Do you want to resend confirmation email? Also please note, this will update "
38
- "subscriber current status to 'Unconfirmed'."
39
- msgstr ""
40
-
41
- #: ../classes/es-register.php:215
42
- msgctxt "notification-enhanced-select"
43
- msgid "Please select notification mail subject. Use templates menu to create new."
44
- msgstr ""
45
-
46
- #: ../classes/es-register.php:260
47
- msgctxt "widget-page-enhanced-select"
48
- msgid ""
49
- "Your subscription was successful! Kindly check your mailbox and confirm your "
50
- "subscription. If you don't see the email within a few minutes, check the "
51
- "spam/junk folder."
52
- msgstr ""
53
-
54
- #: ../classes/es-register.php:726
55
- msgid ""
56
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
57
- "subscribers list?</b> Come check our Pro plan."
58
- msgstr ""
59
-
60
- #: ../classes/es-register.php:727
61
- msgid "Check Pro plan"
62
- msgstr ""
63
-
64
- #: ../classes/es-register.php:727
65
- msgid "Not interested."
66
- msgstr ""
67
-
68
- #: ../classes/es-register.php:765
69
- msgid ""
70
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
71
- "Checkbox' in the subscription form.</b>"
72
- msgstr ""
73
-
74
- #: ../classes/es-register.php:766
75
- msgid "Steps to enable"
76
- msgstr ""
77
-
78
- #: ../classes/es-register.php:766
79
- msgid "Ok, got it"
80
- msgstr ""
81
-
82
- #: ../classes/es-register.php:805
83
- #, php-format
84
- msgid "Email Subscribers version: <strong>%s</strong>"
85
- msgstr ""
86
-
87
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
88
- msgid "Add new Template"
89
- msgstr ""
90
-
91
- #: ../classes/es-register.php:818
92
- msgid "Edit Templates"
93
- msgstr ""
94
-
95
- #: ../classes/es-register.php:819
96
- msgid "New Templates"
97
- msgstr ""
98
-
99
- #: ../classes/es-register.php:821
100
- msgid "View Templates"
101
- msgstr ""
102
-
103
- #: ../classes/es-register.php:822
104
- msgid "Search Templates"
105
- msgstr ""
106
-
107
- #: ../classes/es-register.php:823
108
- msgid "No Templates found"
109
- msgstr ""
110
-
111
- #: ../classes/es-register.php:824
112
- msgid "No Templates found in Trash"
113
- msgstr ""
114
-
115
- #: ../classes/es-register.php:827
116
- msgid "Thumbnail (For Visual Representation only)"
117
- msgstr ""
118
-
119
- #: ../classes/es-register.php:828
120
- msgid "Set thumbnail"
121
- msgstr ""
122
-
123
- #: ../classes/es-register.php:865
124
- msgid "Template Type"
125
- msgstr ""
126
-
127
- #: ../classes/es-register.php:936
128
- #, php-format
129
- msgid "%s for Post Notification: {{POSTTITLE}}"
130
- msgstr ""
131
-
132
- #: ../classes/es-register.php:936
133
- msgid "Available Keyword"
134
- msgstr ""
135
-
136
- #: ../classes/es-register.php:943
137
- msgid "Select your Email Template Type"
138
- msgstr ""
139
-
140
- #: ../classes/es-register.php:995
141
- msgid "Preview Template"
142
- msgstr ""
143
-
144
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
145
- #, php-format
146
- msgid ""
147
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
148
- "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
149
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
150
- msgstr ""
151
-
152
- #: ../classes/es-register.php:1015
153
- #, php-format
154
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
155
- msgstr ""
156
-
157
- #: ../classes/es-register.php:1038
158
- #, php-format
159
- msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
160
- msgstr ""
161
-
162
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
163
- msgid "Unexpected url submit has been detected!"
164
- msgstr ""
165
-
166
- #: ../help/help.php:191
167
- msgid "Thanks for installing and we hope you will enjoy using this plugin."
168
- msgstr ""
169
-
170
- #: ../help/help.php:192
171
- msgid ""
172
- "By default, subscribers subscribed via Email Subscribers, will receive email "
173
- "updates when you post a new blog. You can turn these updates off like this:"
174
- msgstr ""
175
-
176
- #: ../help/help.php:193
177
- msgid ""
178
- "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
179
- "when a new post is published -> Disable -> Save."
180
- msgstr ""
181
-
182
- #: ../help/help.php:197
183
- msgid ""
184
- "Stay in touch with us. We send out plugin help, tips, periodic updates and "
185
- "even the occasional discounts."
186
- msgstr ""
187
-
188
- #: ../help/help.php:205
189
- #, php-format
190
- msgid "I have read and agreed to your %s."
191
- msgstr ""
192
-
193
- #: ../help/help.php:205
194
- msgid "Privacy Policy"
195
- msgstr ""
196
-
197
- #: ../help/help.php:214
198
- #, php-format
199
- msgid "Version: %s"
200
- msgstr ""
201
-
202
- #: ../help/help.php:217
203
- msgid "Questions? Need Help?"
204
- msgstr ""
205
-
206
- #: ../help/help.php:218
207
- msgid "Contact Us"
208
- msgstr ""
209
-
210
- #: ../help/help.php:223
211
- #, php-format
212
- msgid ""
213
- "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
214
- "developments."
215
- msgstr ""
216
-
217
- #: ../help/help.php:258
218
- msgid "Description"
219
- msgstr ""
220
-
221
- #: ../help/help.php:260
222
- msgid ""
223
- "Email Subscribers is a complete newsletter plugin which lets you collect "
224
- "leads, send automated new blog post notification emails, create & send "
225
- "newsletters and manage all this in one single place."
226
- msgstr ""
227
-
228
- #: ../help/help.php:262
229
- msgid "Feature Overview"
230
- msgstr ""
231
-
232
- #: ../help/help.php:265
233
- msgid ""
234
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
235
- "Code)."
236
- msgstr ""
237
-
238
- #: ../help/help.php:268
239
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
240
- msgstr ""
241
-
242
- #: ../help/help.php:271
243
- msgid "Send automatic welcome email to subscribers."
244
- msgstr ""
245
-
246
- #: ../help/help.php:274
247
- msgid ""
248
- "Send new post notification emails to subscribers when new posts are "
249
- "published on your website."
250
- msgstr ""
251
-
252
- #: ../help/help.php:277
253
- msgid "Schedule email (Cron job) or send them manually."
254
- msgstr ""
255
-
256
- #: ../help/help.php:280
257
- msgid "Send email notification to admin when a new user signs up."
258
- msgstr ""
259
-
260
- #: ../help/help.php:283
261
- msgid "Automatically add Unsubscribe link in the email."
262
- msgstr ""
263
-
264
- #: ../help/help.php:286
265
- msgid "Easily migrate subscribers from another app using Import & Export."
266
- msgstr ""
267
-
268
- #: ../help/help.php:289
269
- msgid "Use HTML editor to create newsletters and post notifications."
270
- msgstr ""
271
-
272
- #: ../help/help.php:292
273
- msgid "Send newsletters to different groups."
274
- msgstr ""
275
-
276
- #: ../help/help.php:295
277
- msgid "Get detailed sent email reports."
278
- msgstr ""
279
-
280
- #: ../help/help.php:298
281
- msgid "Control user access (User Roles and Capabilities)."
282
- msgstr ""
283
-
284
- #: ../help/help.php:301
285
- msgid "Supports localization and internationalization."
286
- msgstr ""
287
-
288
- #: ../help/help.php:308
289
- msgid "Add Subscribe form"
290
- msgstr ""
291
-
292
- #: ../help/help.php:313
293
- #, php-format
294
- msgid ""
295
- "Use any of the following 3 methods :<br>\n"
296
- " a) Shortcode in any page/post : <strong>[email-subscribers "
297
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
298
- " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
299
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
300
- " c) Copy and past this php code to your desired template location : "
301
- "<strong>%s</strong>"
302
- msgstr ""
303
-
304
- #: ../help/help.php:318
305
- msgid "Additional form settings"
306
- msgstr ""
307
-
308
- #: ../help/help.php:330
309
- msgid "General Plugin Configuration"
310
- msgstr ""
311
-
312
- #: ../help/help.php:333
313
- #, php-format
314
- msgid "Modify %s"
315
- msgstr ""
316
-
317
- #: ../help/help.php:333
318
- msgid "default text, email contents"
319
- msgstr ""
320
-
321
- #: ../help/help.php:333
322
- msgid ""
323
- " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
324
- "Roles"
325
- msgstr ""
326
-
327
- #: ../help/help.php:336
328
- msgid "How does Sync work?"
329
- msgstr ""
330
-
331
- #: ../help/help.php:345
332
- msgid "How to change/update/translate any texts from the plugin?"
333
- msgstr ""
334
-
335
- #: ../help/help.php:351
336
- msgid "How to check sent emails?"
337
- msgstr ""
338
-
339
- #: ../help/help.php:363
340
- msgid "Create and Send Newsletter Emails"
341
- msgstr ""
342
-
343
- #: ../help/help.php:366
344
- msgid "Keywords in the Newsletters"
345
- msgstr ""
346
-
347
- #: ../help/help.php:373
348
- msgid "Create and Send Post Notification Emails when new posts are published"
349
- msgstr ""
350
-
351
- #: ../help/help.php:376
352
- msgid "Keywords in the Post Notifications"
353
- msgstr ""
354
-
355
- #: ../help/help.php:379
356
- msgid "Send a test post notification email to myself/testgroup"
357
- msgstr ""
358
-
359
- #: ../help/help.php:384
360
- msgid "Cron Job Setup"
361
- msgstr ""
362
-
363
- #: ../help/help.php:387
364
- msgid "What is Cron and how to Schedule Cron Emails?"
365
- msgstr ""
366
-
367
- #: ../help/help.php:390
368
- msgid "Schedule Cron Emails in cPanel"
369
- msgstr ""
370
-
371
- #: ../help/help.php:393
372
- msgid "Schedule Cron Emails in Parallels Plesk"
373
- msgstr ""
374
-
375
- #: ../help/help.php:396
376
- msgid "Hosting doesn’t support Cron Jobs?"
377
- msgstr ""
378
-
379
- #: ../help/help.php:399
380
- msgid "Troubleshooting Steps"
381
- msgstr ""
382
-
383
- #: ../help/help.php:408
384
- msgid "FAQ's"
385
- msgstr ""
386
-
387
- #: ../help/help.php:413
388
- msgid "[GDPR] Email Subscribers"
389
- msgstr ""
390
-
391
- #: ../help/help.php:416 ../help/help.php:434
392
- msgid "How to enable consent checkbox in the subscribe form?"
393
- msgstr ""
394
-
395
- #: ../help/help.php:419
396
- msgid "What data Email Subscribers stores on your end?"
397
- msgstr ""
398
-
399
- #: ../help/help.php:431
400
- msgid "[GDPR] Email Subscribers - Group Selector"
401
- msgstr ""
402
-
403
- #: ../help/help.php:437
404
- msgid "What data Email Subscribers - Group Selector stores on your end?"
405
- msgstr ""
406
-
407
- #: ../help/help.php:446
408
- msgid "Want to do more? Here's how.."
409
- msgstr ""
410
-
411
- #: ../help/help.php:449
412
- msgid "Allow Subscribers to get subscribed to any group"
413
- msgstr ""
414
-
415
- #: ../help/help.php:454
416
- msgid "Using our <b>free</b> "
417
- msgstr ""
418
-
419
- #: ../help/help.php:455
420
- msgid "Group Selector"
421
- msgstr ""
422
-
423
- #: ../help/help.php:456
424
- msgid ""
425
- "plugin, you can extend Email Subscribers Form functionality by providing an "
426
- "grouping option right next to the form."
427
- msgstr ""
428
-
429
- #: ../help/help.php:459
430
- msgid "The user can then subscribe to whichever group most appeals to them."
431
- msgstr ""
432
-
433
- #: ../help/help.php:462
434
- msgid "For example: Subscribe either to Updates or to Offers."
435
- msgstr ""
436
-
437
- #: ../help/help.php:466
438
- msgid "Show your subscribe form inside attractive popups"
439
- msgstr ""
440
-
441
- #: ../help/help.php:471
442
- msgid ""
443
- "Don't limit your subscriber form to a widget. Embed it within popups, hello "
444
- "bars, slide-ins, sidebars, full screen popups etc."
445
- msgstr ""
446
-
447
- #: ../help/help.php:474
448
- msgid ""
449
- "Using Email Subscribers you can achieve this easily with our <b>free</b> "
450
- "plugin "
451
- msgstr ""
452
-
453
- #: ../help/help.php:478
454
- msgid ""
455
- "Icegram's beautiful designs instantly capture user attention and help "
456
- "increase sign-ups to your WordPress website."
457
- msgstr ""
458
-
459
- #: ../help/help.php:481 ../help/help.php:501
460
- #, php-format
461
- msgid "How to %s"
462
- msgstr ""
463
-
464
- #: ../help/help.php:481
465
- msgid "show subscribe form inside a popup"
466
- msgstr ""
467
-
468
- #: ../help/help.php:485
469
- msgid "Get beautiful and elegant form styles"
470
- msgstr ""
471
-
472
- #: ../help/help.php:491
473
- msgid "Email subscribers easily integrates with another <b>free</b> plugin "
474
- msgstr ""
475
-
476
- #: ../help/help.php:492
477
- msgid "Rainmaker"
478
- msgstr ""
479
-
480
- #: ../help/help.php:495
481
- msgid ""
482
- "Rainmaker extends the core features of Email Subscribers and provides "
483
- "elegant form styles."
484
- msgstr ""
485
-
486
- #: ../help/help.php:498
487
- msgid ""
488
- "These styles are well designed and beautify your subscription form making it "
489
- "more appealing."
490
- msgstr ""
491
-
492
- #: ../help/help.php:501
493
- msgid "add Rainmaker’s form in Email Subscribers"
494
- msgstr ""
495
-
496
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
497
- msgid "Please select notification mail subject. Use templates menu to create new."
498
- msgstr ""
499
-
500
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
501
- #: 164
502
- msgid "(Use templates menu to create new)"
503
- msgstr ""
504
-
505
- #: ../sendmail/sendmail.php:59
506
- msgid "Email sent successfully. "
507
- msgstr ""
508
-
509
- #: ../sentmail/sentmail-preview.php:27
510
- msgid "Preview Email"
511
- msgstr ""
512
-
513
- #: ../sentmail/sentmail-preview.php:31
514
- msgid ""
515
- "This is how the email you sent may look. <br>Note: Different email services "
516
- "(like gmail, yahoo etc) display email content differently. So there could be "
517
- "a slight variation on how your customer will view the email content."
518
- msgstr ""
519
-
520
- #: ../sentmail/sentmail-show.php:212
521
- msgid ""
522
- "<strong>Note:</strong> If you delete record for the emails with Status = "
523
- "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
524
- "deleted too and email will not be sent."
525
- msgstr ""
526
-
527
- #: ../settings/settings-edit.php:89
528
- msgid "Email Type"
529
- msgstr ""
530
-
531
- #: ../settings/settings-edit.php:90
532
- msgid ""
533
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
534
- "Option 3 & 4 is to send emails with PHP method mail()."
535
- msgstr ""
536
-
537
- #: ../settings/settings-edit.php:104
538
- msgid "Opt-In Type"
539
- msgstr ""
540
-
541
- #: ../settings/settings-edit.php:105
542
- msgid ""
543
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
544
- "soon as they subscribe to your list. They have to confirm their subscription "
545
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
546
- "subscriber is not asked to confirm their email address. They are subscribed "
547
- "directly in the list."
548
- msgstr ""
549
-
550
- #: ../settings/settings-edit.php:118
551
- msgid ""
552
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
553
- "Emails."
554
- msgstr ""
555
-
556
- #: ../settings/settings-edit.php:137
557
- msgid "Notify Admin when a new subscriber signs up"
558
- msgstr ""
559
-
560
- #: ../settings/settings-edit.php:150
561
- msgid "Admin Email Subject on new subscriber sign up"
562
- msgstr ""
563
-
564
- #: ../settings/settings-edit.php:151
565
- msgid ""
566
- "Subject for the admin email whenever a new subscriber signs up and is "
567
- "confirmed."
568
- msgstr ""
569
-
570
- #: ../settings/settings-edit.php:157
571
- msgid "Admin Email Content on new subscriber signs up"
572
- msgstr ""
573
-
574
- #: ../settings/settings-edit.php:158
575
- msgid ""
576
- "Content for the admin email whenever a new subscriber signs up and is "
577
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
578
- msgstr ""
579
-
580
- #: ../settings/settings-edit.php:166
581
- msgid "Subject for the email report which will be sent to admin."
582
- msgstr ""
583
-
584
- #: ../settings/settings-edit.php:173
585
- msgid ""
586
- "Content for the email report which will be sent to admin.<br />Available "
587
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
588
- msgstr ""
589
-
590
- #: ../settings/settings-edit.php:184
591
- msgid "Double Opt-In Email Subject (Confirmation Email)"
592
- msgstr ""
593
-
594
- #: ../settings/settings-edit.php:185
595
- msgid ""
596
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
597
- "subscriber signs up."
598
- msgstr ""
599
-
600
- #: ../settings/settings-edit.php:191
601
- msgid "Double Opt-In Email Content (Confirmation Email)"
602
- msgstr ""
603
-
604
- #: ../settings/settings-edit.php:192
605
- msgid ""
606
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
607
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
608
- msgstr ""
609
-
610
- #: ../settings/settings-edit.php:198
611
- msgid "Double Opt-In Confirmation Link"
612
- msgstr ""
613
-
614
- #: ../settings/settings-edit.php:205
615
- msgid ""
616
- "Text to display after an email address is successfully subscribed from "
617
- "Double Opt-In (Confirmation) Email"
618
- msgstr ""
619
-
620
- #: ../settings/settings-edit.php:213
621
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
622
- msgstr ""
623
-
624
- #: ../settings/settings-edit.php:225
625
- msgid "Subject for Welcome Email"
626
- msgstr ""
627
-
628
- #: ../settings/settings-edit.php:226
629
- msgid ""
630
- "Subject for the subscriber welcome email. This will be sent whenever a "
631
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
632
- "Opt-In) successfully."
633
- msgstr ""
634
-
635
- #: ../settings/settings-edit.php:232
636
- msgid "Email Content for Welcome Email"
637
- msgstr ""
638
-
639
- #: ../settings/settings-edit.php:233
640
- msgid ""
641
- "Content for the subscriber welcome email whenever a user's email is either "
642
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
643
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
644
- msgstr ""
645
-
646
- #: ../settings/settings-edit.php:242
647
- msgid ""
648
- "This unsubscribe link is automatically added to all the emails that are sent "
649
- "from this plugin. It is a readonly field and you are advised not to modify "
650
- "it."
651
- msgstr ""
652
-
653
- #: ../settings/settings-edit.php:249
654
- msgid ""
655
- "The text for the unsubscribe link. This text is automatically added with "
656
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
657
- msgstr ""
658
-
659
- #: ../settings/settings-edit.php:256
660
- msgid ""
661
- "This text will be displayed once user clicks on unsubscribe link from the "
662
- "email."
663
- msgstr ""
664
-
665
- #: ../settings/settings-edit.php:263
666
- msgid "Error in the Subscribe / Confirmation Link"
667
- msgstr ""
668
-
669
- #: ../settings/settings-edit.php:264
670
- msgid ""
671
- "Default message to display if there is any issue while clicking on subscribe "
672
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
673
- msgstr ""
674
-
675
- #: ../settings/settings-edit.php:271
676
- msgid ""
677
- "Default message to display if there is any issue while clicking on "
678
- "unsubscribe link from the emails."
679
- msgstr ""
680
-
681
- #: ../settings/settings-edit.php:301
682
- msgid "Templates Menu"
683
- msgstr ""
684
-
685
- #: ../settings/settings-edit.php:370
686
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
687
- msgstr ""
688
-
689
- #: ../settings/settings-edit.php:375
690
- msgid "Cron Report"
691
- msgstr ""
692
-
693
- #: ../settings/settings-edit.php:376
694
- msgid ""
695
- "Email to admin whenever a cron URL is triggered from your server.<br "
696
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
697
- msgstr ""
698
-
699
- #: ../settings/settings-edit.php:387
700
- msgid ""
701
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
702
- "schedule-cron-emails/?"
703
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
704
- "Cron?</a>"
705
- msgstr ""
706
-
707
- #: ../settings/settings-edit.php:388
708
- msgid ""
709
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
710
- "schedule-cron-emails-in-cpanel/?"
711
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
712
- "job in cPanel</a>"
713
- msgstr ""
714
-
715
- #: ../settings/settings-edit.php:389
716
- msgid ""
717
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
718
- "schedule-cron-emails-in-parallels-plesk/?"
719
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
720
- "job in Plesk</a>"
721
- msgstr ""
722
-
723
- #: ../settings/settings-edit.php:390
724
- msgid ""
725
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
726
- "if-hosting-doesnt-support-cron-jobs/?"
727
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
728
- "does not support cron jobs?</a>"
729
- msgstr ""
730
-
731
- #: ../settings/settings-edit.php:554
732
- msgid "Please enter valid email count."
733
- msgstr ""
734
-
735
- #: ../subscribers/view-subscriber-export.php:12
736
- msgid ""
737
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
738
- "administrator can export subscriber list."
739
- msgstr ""
740
-
741
- #: ../subscribers/view-subscriber-export.php:14
742
- msgid "Go back to Subscribers dashboard"
743
- msgstr ""
744
-
745
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
746
- #: php:134
747
- msgid "Confirmation emails resent successfully."
748
- msgstr ""
749
-
750
- #: ../subscribers/view-subscriber-show.php:256
751
- msgid "Total Subscribers: "
752
- msgstr ""
753
-
754
- #: ../templates/template-preview.php:32
755
- msgid "Template Preview"
756
- msgstr ""
757
-
758
- #: ../templates/template-preview.php:40
759
- msgid "This is how your email may look."
760
- msgstr ""
761
-
762
- #: ../templates/template-preview.php:42
763
  msgid ""
764
- "<br><br>This Post Notification preview has replaced keywords from your last "
765
- "published blog post."
766
  msgstr ""
767
 
768
- #: ../templates/template-preview.php:44
769
- msgid ""
770
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
771
- "content differently. So there could be a slight variation on how your "
772
- "customer will view the email content."
773
  msgstr ""
774
 
775
- #. URI of the plugin
776
- msgid "https://www.icegram.com"
777
  msgstr ""
778
 
779
- #: ../email-subscribers.php:95
780
- msgctxt "timezone date format"
781
- msgid "Y-m-d H:i:s"
782
  msgstr ""
783
 
784
  #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
@@ -832,7 +92,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
832
  msgstr "<span style=\"color:#993399;\">Omgående</span>"
833
 
834
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
835
- #: register.php:826
836
  msgid "Email Subscribers"
837
  msgstr "Email Subscribers"
838
 
@@ -841,13 +101,18 @@ msgstr "Email Subscribers"
841
  msgid "Subscribers"
842
  msgstr "Prenumeranter"
843
 
 
 
 
 
 
844
  #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
845
  #: 370 ../notification/notification-show.php:52
846
  msgid "Post Notifications"
847
  msgstr "Meddelande"
848
 
849
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
850
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
851
  msgid "Newsletters"
852
  msgstr "Nyhetsbrev"
853
 
@@ -860,20 +125,24 @@ msgstr "Rapporter"
860
  msgid "Help & Info"
861
  msgstr "Hjälp & Information"
862
 
 
 
 
 
863
  #: ../classes/es-register.php:195
864
  msgctxt "view-subscriber-enhanced-select"
865
  msgid "Please enter subscriber email address."
866
- msgstr "Ange din e-postadress"
867
 
868
  #: ../classes/es-register.php:196
869
  msgctxt "view-subscriber-enhanced-select"
870
  msgid "Please select subscriber email status."
871
- msgstr "Ange din e-postadress"
872
 
873
  #: ../classes/es-register.php:197
874
  msgctxt "view-subscriber-enhanced-select"
875
  msgid "Please select or create group for this subscriber."
876
- msgstr "Ange en grupp för denna prenumerant"
877
 
878
  #: ../classes/es-register.php:198
879
  msgctxt "view-subscriber-enhanced-select"
@@ -883,17 +152,26 @@ msgstr "Vill du radera denna post?"
883
  #: ../classes/es-register.php:199
884
  msgctxt "view-subscriber-enhanced-select"
885
  msgid "Please select the bulk action."
886
- msgstr "Välj uppdateringssätt"
887
 
888
  #: ../classes/es-register.php:200
889
  msgctxt "view-subscriber-enhanced-select"
890
  msgid "Are you sure you want to delete selected records?"
891
- msgstr "Vill du radera valda poster"
 
 
 
 
 
 
 
 
 
892
 
893
  #: ../classes/es-register.php:202
894
  msgctxt "view-subscriber-enhanced-select"
895
  msgid "Please select new subscriber group."
896
- msgstr "Välj ny prenumerantgrupp"
897
 
898
  #: ../classes/es-register.php:203
899
  msgctxt "view-subscriber-enhanced-select"
@@ -903,7 +181,7 @@ msgstr "Välj ny status för prenumeranterna"
903
  #: ../classes/es-register.php:204
904
  msgctxt "view-subscriber-enhanced-select"
905
  msgid "Do you want to update subscribers group?"
906
- msgstr "Vill du uppdatera prenumerantgruppen"
907
 
908
  #: ../classes/es-register.php:205
909
  msgctxt "view-subscriber-enhanced-select"
@@ -920,7 +198,12 @@ msgstr "Välj en csv-fil. Se vår hemsida för vidare anvisningar."
920
  #: ../classes/es-register.php:214
921
  msgctxt "notification-enhanced-select"
922
  msgid "Please select subscribers group."
923
- msgstr "Välj prenumerationsgrupp"
 
 
 
 
 
924
 
925
  #: ../classes/es-register.php:216
926
  msgctxt "notification-enhanced-select"
@@ -947,7 +230,7 @@ msgctxt "sendmail-enhanced-select"
947
  msgid ""
948
  "Have you double checked your selected group? If so, let's go ahead and send "
949
  "this."
950
- msgstr "Har du valt grupp att sända till? I så fall - sänd!"
951
 
952
  #: ../classes/es-register.php:235
953
  msgctxt "sentmail-enhanced-select"
@@ -969,7 +252,7 @@ msgstr ""
969
  #: ../classes/es-register.php:245
970
  msgctxt "cron-enhanced-select"
971
  msgid "Please enter the mail count, only number."
972
- msgstr "Ange antalet mail. endast siffror"
973
 
974
  #: ../classes/es-register.php:258
975
  msgctxt "widget-page-enhanced-select"
@@ -979,12 +262,23 @@ msgstr "Ange e-postadress"
979
  #: ../classes/es-register.php:259
980
  msgctxt "widget-page-enhanced-select"
981
  msgid "Successfully Subscribed."
982
- msgstr "Prenumeration lyckades"
 
 
 
 
 
 
 
 
 
 
 
983
 
984
  #: ../classes/es-register.php:261
985
  msgctxt "widget-page-enhanced-select"
986
  msgid "Email Address already exists!"
987
- msgstr "E-postadressen finns redan"
988
 
989
  #: ../classes/es-register.php:262
990
  msgctxt "widget-page-enhanced-select"
@@ -999,87 +293,313 @@ msgstr "Ogiltig e-postadress"
999
  #: ../classes/es-register.php:264
1000
  msgctxt "widget-page-enhanced-select"
1001
  msgid "Please try after some time"
1002
- msgstr "Försök igen om en stund."
1003
 
1004
- #: ../classes/es-register.php:791
1005
  msgid ""
1006
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1007
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1008
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1009
  "</a> rating. A huge thank you from Icegram in advance!"
1010
  msgstr ""
1011
- "Om du gillar <strong>E-abonnenter</strong>, vänligen överväga att lämna oss "
1012
- "ett <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1013
- "subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
1014
- "Icegram i förväg!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1015
 
1016
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
1017
- msgid "Thumbnail"
1018
- msgstr "Thumbnail"
1019
-
1020
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
1021
- #: sentmail/sentmail-show.php:121
1022
- msgid "Preview"
1023
- msgstr "Granska"
1024
 
1025
- #: ../classes/es-register.php:945
1026
- msgid "Newsletter"
1027
- msgstr "Nyhetsbrev"
 
 
 
 
1028
 
1029
- #: ../classes/es-register.php:946
1030
- msgid "Post Notification"
1031
- msgstr "Post notiifiering"
1032
 
1033
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
1034
- #: register.php:1030 ../classes/es-register.php:1038
1035
- msgid "Available Keywords"
1036
- msgstr "Tillgängliga nyckelord"
1037
 
1038
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
1039
- msgid "Name"
1040
- msgstr "Namn"
 
 
1041
 
1042
- #: ../classes/es-register.php:1080
1043
- msgid "Email *"
1044
- msgstr "E-post *"
1045
 
1046
- #: ../classes/es-register.php:1089 ../help/help.php:202
1047
- msgid "Subscribe"
1048
- msgstr "Prenumerera"
1049
 
1050
- #: ../classes/es-register.php:1193
1051
- msgid "Widget Title"
1052
- msgstr "Widget titel"
1053
 
1054
- #: ../classes/es-register.php:1197
1055
- msgid "Short description about subscription form"
1056
- msgstr "Kort beskrivning av prenumerationsformulär"
1057
 
1058
- #: ../classes/es-register.php:1201
1059
- msgid "Display Name Field"
1060
- msgstr "Visa Namnfältet"
1061
 
1062
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
1063
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
1064
- msgid "YES"
1065
- msgstr "JA"
1066
 
1067
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
1068
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
1069
- msgid "NO"
1070
- msgstr "NEJ"
1071
 
1072
- #: ../classes/es-register.php:1208
1073
- msgid "Subscriber Group"
1074
- msgstr "Prenumerantgrupp"
1075
 
1076
- #: ../help/help.php:190
1077
- msgid "Welcome to Email Subscribers!"
1078
- msgstr "Välkommen till Email Subscribers!"
1079
 
1080
- #: ../help/help.php:223
1081
- msgid "donating to us"
1082
- msgstr "Donation till oss"
1083
 
1084
  #: ../help/help.php:310 ../help/help.php:321 ../help/help.php:324 ../help/help.
1085
  #: php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:345 ..
@@ -1097,6 +617,29 @@ msgstr "%s"
1097
  msgid "How to Add Subscription box to website?"
1098
  msgstr "Hur lägger jag till en prenumerationsruta på min webb?"
1099
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1100
  #: ../help/help.php:321
1101
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1102
  msgstr ""
@@ -1105,7 +648,32 @@ msgstr ""
1105
 
1106
  #: ../help/help.php:324
1107
  msgid "How to add captcha in Subscribe form of Email Subscribers?"
1108
- msgstr "Hur lägger man till chapta i prenumerationsformuläret."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1109
 
1110
  #: ../help/help.php:339
1111
  msgid "How to Import or Export Email Addresses?"
@@ -1115,9 +683,61 @@ msgstr "Hur exporterar och importerar man e-postadresser?"
1115
  msgid "How to Add/Update Existing Subscribers Group & Status?"
1116
  msgstr "Så här lägger du till / uppdaterar befintliga abonnentgrupper och status?"
1117
 
 
 
 
 
1118
  #: ../help/help.php:348
1119
  msgid "How to add Unsubscribe link in emails?"
1120
- msgstr "Hur lägger man in en länk för att avaktivera sin prenumeration? "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1121
 
1122
  #: ../help/help.php:402
1123
  msgid "Subscribers are not receiving Emails?"
@@ -1127,37 +747,168 @@ msgstr "Prenumeranter får inte några mail?"
1127
  msgid "CSS Help"
1128
  msgstr "CSS Hjälp"
1129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1130
  #. Author of the plugin/theme
1131
  #: ../help/help.php:475
1132
  msgid "Icegram"
1133
  msgstr "Icegram"
1134
 
1135
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
1136
- #: job/es-unsubscribe.php:61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1137
  msgid ""
1138
  "Oops.. We are getting some technical error. Please try again or contact "
1139
  "admin."
1140
  msgstr "Oups... Något gick fel. Försök igen senare."
1141
 
1142
- #: ../job/es-optin.php:61
1143
  msgid "This email address has already been confirmed."
1144
- msgstr "Denna mailadress har redan bekräftats"
1145
 
1146
  #: ../notification/notification-add.php:33
1147
  msgid "Please select subscribers group."
1148
- msgstr "Väj prenumerantgrupp"
1149
 
1150
  #: ../notification/notification-add.php:39
1151
  msgid "Please select notification status."
1152
- msgstr "Välj notifkationsstatus"
 
 
 
 
 
 
1153
 
1154
  #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
1155
  msgid "Please select post categories."
1156
- msgstr "Väl postkategori"
1157
 
1158
  #: ../notification/notification-add.php:71
1159
  msgid "Notification successfully created. "
1160
- msgstr "Notifierning har skapats"
1161
 
1162
  #: ../notification/notification-add.php:112
1163
  msgid "Add Notification"
@@ -1168,16 +919,12 @@ msgstr "Lägg till Notifiering"
1168
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1169
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1170
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1171
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1172
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1173
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
1174
  msgid "Help"
1175
  msgstr "Hjälp"
1176
 
1177
- #: ../notification/notification-add.php:121
1178
- msgid "Select Subscribers Group"
1179
- msgstr "Välj prenumerantgrupp"
1180
-
1181
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1182
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1183
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1192,6 +939,11 @@ msgstr "Välj"
1192
  msgid "Select Notification Email Subject"
1193
  msgstr "Välj Rubrik för notifierings-Email"
1194
 
 
 
 
 
 
1195
  #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
1196
  #: 191
1197
  msgid "Select Post Categories"
@@ -1210,7 +962,7 @@ msgstr "Avmarkera alla"
1210
  #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
1211
  #: 234
1212
  msgid "Select your Custom Post Type"
1213
- msgstr "Välj typ för ditt mail."
1214
 
1215
  #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
1216
  #: 235
@@ -1251,7 +1003,7 @@ msgstr "Spara"
1251
  #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1252
  #: subscribers/view-subscriber-edit.php:22
1253
  msgid "Oops, selected details does not exists."
1254
- msgstr "Oups, ditt val finns inte"
1255
 
1256
  #: ../notification/notification-edit.php:49
1257
  msgid "Please select subscribers group"
@@ -1259,11 +1011,11 @@ msgstr "Välj prenumerationsgrupp"
1259
 
1260
  #: ../notification/notification-edit.php:55
1261
  msgid "Please select notification status"
1262
- msgstr "Välj status för nyhetsbrev."
1263
 
1264
  #: ../notification/notification-edit.php:89
1265
  msgid "Notification successfully updated. "
1266
- msgstr "Mallen uppdaterad"
1267
 
1268
  #: ../notification/notification-edit.php:122
1269
  msgid "Edit Notification"
@@ -1274,14 +1026,9 @@ msgstr "Redigera mail"
1274
  msgid "Add New"
1275
  msgstr "Lägg till ny"
1276
 
1277
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1278
- #: php:303
1279
- msgid "Update Subscribers Group"
1280
- msgstr "Vill du uppdatera prenumerantgruppen"
1281
-
1282
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1283
  msgid "Selected record deleted."
1284
- msgstr "Valda poster raderade"
1285
 
1286
  #: ../notification/notification-show.php:57
1287
  msgid ""
@@ -1304,12 +1051,12 @@ msgstr "Prenumerationsgrupp"
1304
  #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1305
  #: 78
1306
  msgid "Post Categories / Custom Post Types"
1307
- msgstr "postkategorier/Custom Post Type"
1308
 
1309
  #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1310
  #: 79
1311
  msgid "Notification Status"
1312
- msgstr "Välj status för nyhetsbrev."
1313
 
1314
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1315
  #: php:417 ../templates/template-preview.php:36
@@ -1325,7 +1072,7 @@ msgstr "Radera"
1325
  #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1326
  #: 456
1327
  msgid "No records available."
1328
- msgstr "Inga poster tillgängliga"
1329
 
1330
  #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1331
  msgid "Click Here"
@@ -1341,7 +1088,11 @@ msgstr "Välj typ för ditt mail."
1341
 
1342
  #: ../sendmail/sendmail.php:52
1343
  msgid "Please select your group."
1344
- msgstr "Välj prenumerationsgrupp"
 
 
 
 
1345
 
1346
  #: ../sendmail/sendmail.php:63
1347
  msgid "Click here to check Statistics"
@@ -1353,7 +1104,7 @@ msgstr "Oups... Det blev något fel. Mailet sändes inte iväg."
1353
 
1354
  #: ../sendmail/sendmail.php:97
1355
  msgid "Use this to send newsletter emails to your subscribers."
1356
- msgstr "Använd detta för att sända nyhetsbrev till din aprenumeranter"
1357
 
1358
  #: ../sendmail/sendmail.php:106
1359
  msgid "Select Email Subject from available list"
@@ -1369,11 +1120,11 @@ msgstr "Sänd email via Cron-jobb"
1369
 
1370
  #: ../sendmail/sendmail.php:147
1371
  msgid "Select Subscribers group to Send Email"
1372
- msgstr "Välj prenumerantgrupp att sända email till."
1373
 
1374
  #: ../sendmail/sendmail.php:179
1375
  msgid "Recipients : 0 "
1376
- msgstr "Mottagare: 0"
1377
 
1378
  #: ../sendmail/sendmail.php:181
1379
  #, php-format
@@ -1415,14 +1166,14 @@ msgid "Delivery Report"
1415
  msgstr "Leveransrapport"
1416
 
1417
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1418
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1419
- #: export.php:66
1420
  msgid "Sno"
1421
- msgstr "#"
1422
 
1423
  #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1424
  msgid "Email"
1425
- msgstr "E-post:"
1426
 
1427
  #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1428
  #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
@@ -1447,13 +1198,27 @@ msgstr "Visad status"
1447
  msgid "Viewed Date"
1448
  msgstr "Läst datum"
1449
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1450
  #: ../sentmail/sentmail-preview.php:53
1451
  msgid "Back"
1452
  msgstr "Åter"
1453
 
1454
  #: ../sentmail/sentmail-show.php:43
1455
  msgid "Successfully deleted all reports except latest 10."
1456
- msgstr "Alla rapporter utom de 10 senaste har raderats"
1457
 
1458
  #: ../sentmail/sentmail-show.php:97
1459
  msgid "It will show reports for all Newsletters & Post Notification emails sent."
@@ -1482,8 +1247,8 @@ msgid "Total"
1482
  msgstr "Summa"
1483
 
1484
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1485
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1486
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1487
  msgid "Action"
1488
  msgstr "Aktivitet"
1489
 
@@ -1499,9 +1264,19 @@ msgstr ""
1499
  "OBS. Klicka på <strong>Optimera Tabell & raderade poster</strong>-knappen "
1500
  "för att radera alla rapporter förutom de 10 senaste."
1501
 
 
 
 
 
 
 
 
 
 
 
1502
  #: ../settings/setting-sync.php:16
1503
  msgid "Table sync completed successfully."
1504
- msgstr "Synkronisering av tabellen klar"
1505
 
1506
  #: ../settings/setting-sync.php:29
1507
  msgid "Sync plugin tables"
@@ -1513,7 +1288,7 @@ msgstr "Klicka för att synkronisera tabeller"
1513
 
1514
  #: ../settings/settings-edit.php:23
1515
  msgid "Admin"
1516
- msgstr "admin"
1517
 
1518
  #: ../settings/settings-edit.php:24
1519
  msgid "Signup Confirmation"
@@ -1541,7 +1316,19 @@ msgid ""
1541
  "this plugin."
1542
  msgstr ""
1543
  "Välj ett Från-namn och avsändarmailadress för alla mail som sånds från denna "
1544
- "Plugin"
 
 
 
 
 
 
 
 
 
 
 
 
1545
 
1546
  #: ../settings/settings-edit.php:94
1547
  msgid "1. WP HTML MAIL"
@@ -1559,6 +1346,23 @@ msgstr "3. PHP HTML MAIL"
1559
  msgid "4. PHP PLAINTEXT MAIL"
1560
  msgstr "4. PHP PLAINTEXT MAIL"
1561
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1562
  #: ../settings/settings-edit.php:109
1563
  msgid "Double Opt In"
1564
  msgstr "Double Opt In"
@@ -1574,6 +1378,14 @@ msgstr "Single Opt In"
1574
  msgid "Image Size"
1575
  msgstr "Bildstorlek"
1576
 
 
 
 
 
 
 
 
 
1577
  #: ../settings/settings-edit.php:122
1578
  msgid "Full Size"
1579
  msgstr "Full storlek"
@@ -1594,127 +1406,353 @@ msgstr ""
1594
  "Ange Admins mailadresser dit notifieringar ska skickas. (separera dem med "
1595
  "komma (,)"
1596
 
 
 
 
 
1597
  #: ../settings/settings-edit.php:138
1598
  msgid ""
1599
  "To send admin email notifications for the new subscriber. This option must "
1600
  "be set to YES."
1601
- msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1602
 
1603
  #: ../settings/settings-edit.php:165
1604
  msgid "Sent Report Subject"
1605
  msgstr "Sändrapport Ämne"
1606
 
 
 
 
 
1607
  #: ../settings/settings-edit.php:172
1608
  msgid "Sent Report Content"
1609
  msgstr "Sändrapport - Innehåll"
1610
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1611
  #: ../settings/settings-edit.php:199
1612
  msgid "It is a readonly field and you are advised not to modify it."
1613
  msgstr "Det är readonly och du bör inte ändra det."
1614
 
1615
  #: ../settings/settings-edit.php:206
1616
  msgid ""
 
 
 
 
 
 
 
 
1617
  "This text will be displayed once user clicks on email confirmation link from "
1618
  "the Double Opt In (confirmation) Email."
1619
  msgstr ""
1620
  "Denna text visas när en prenumerant klickar på bekräftelselänken för att "
1621
  "bekräfta sin prenumeration i double Opt In."
1622
 
1623
- #: ../settings/settings-edit.php:214
 
 
 
 
1624
  msgid ""
1625
  "To send welcome email to subscriber after successful signup. This option "
1626
  "must be set to YES."
1627
- msgstr "För att sända välkomstmail till nya prenumeranter, så måste detta val vara JA"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1628
 
1629
- #: ../settings/settings-edit.php:241
 
 
 
 
 
 
 
 
 
 
1630
  msgid "Unsubscribe Link"
1631
  msgstr "Länk för att avbeställa prenumerationen"
1632
 
1633
  #: ../settings/settings-edit.php:248
 
 
 
 
 
 
 
 
 
 
1634
  msgid "Unsubscribe Text in Email"
1635
  msgstr "Text i email vid avlutad prenumeration"
1636
 
1637
  #: ../settings/settings-edit.php:255
 
 
 
 
 
 
 
 
 
1638
  msgid "Text to display after an email address is unsubscribed"
1639
- msgstr "Text att visa när en prenumeration avbetsällts."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1640
 
1641
- #: ../settings/settings-edit.php:270
1642
  msgid "Error in the Unsubscribe Link"
1643
  msgstr "FEL i länken för avprenumeration"
1644
 
1645
  #: ../settings/settings-edit.php:283
 
 
 
 
 
 
 
 
1646
  msgid "Select user roles who can access following menus. Only Admin can change this."
1647
  msgstr ""
1648
  "Välj användarroll som kan få tillgång till följande menyer. Bara Admin kan "
1649
  "ändra detta."
1650
 
1651
- #: ../settings/settings-edit.php:289
1652
  msgid "Subscribers Menu"
1653
  msgstr "Prenumenrantmeny"
1654
 
1655
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1656
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1657
- #: settings/settings-edit.php:341
1658
  msgid "Administrator Only"
1659
  msgstr "Endast Adminstratör"
1660
 
1661
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1662
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1663
- #: settings/settings-edit.php:342
1664
  msgid "Administrator/Editor"
1665
  msgstr "Administratör/Redigerare"
1666
 
1667
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1668
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1669
- #: settings/settings-edit.php:343
1670
  msgid "Administrator/Editor/Author/Contributor"
1671
  msgstr "Administratör/Redigerare/Författare/Bidragsgivare"
1672
 
1673
  #: ../settings/settings-edit.php:313
 
 
 
 
1674
  msgid "Post Notifications Menu"
1675
  msgstr "Meddelandemeny"
1676
 
1677
- #: ../settings/settings-edit.php:337
1678
  msgid "Reports Menu"
1679
  msgstr "Rapportmeny"
1680
 
1681
- #: ../settings/settings-edit.php:354
1682
  msgid "Cron job URL"
1683
  msgstr "Cron job URL"
1684
 
1685
- #: ../settings/settings-edit.php:355
1686
  msgid ""
1687
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1688
  "modify it."
1689
  msgstr "Detta är ditt Cron job URL. Det är readonly och du bör inte ändra det."
1690
 
1691
- #: ../settings/settings-edit.php:364
1692
  msgid "Email Count"
1693
  msgstr "Antal mail"
1694
 
1695
- #: ../settings/settings-edit.php:365
1696
  msgid "Number of emails that you want to trigger per hour."
1697
- msgstr "Antal mail du vill sända per timme"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1698
 
1699
- #: ../settings/settings-edit.php:386
1700
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1701
- msgstr "Vad är Cron och hur görs inställningarna."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1702
 
1703
- #: ../settings/settings-edit.php:505
1704
  msgid "Please enter sender of notifications from name."
1705
- msgstr "Ange namnet för notifieringens avsändare"
1706
 
1707
- #: ../settings/settings-edit.php:510
1708
  msgid "Please enter sender of notifications from email."
1709
- msgstr "Ange avsändarens mailadress på email för notifieringar"
1710
 
1711
- #: ../settings/settings-edit.php:568
 
 
 
 
1712
  msgid "Settings Saved."
1713
- msgstr "Inställningar sparade"
1714
 
1715
- #: ../settings/settings-edit.php:571
1716
  msgid "Oops, unable to update."
1717
- msgstr "Oups... Det går ej att uppdatera"
1718
 
1719
  #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1720
  #: php:54
@@ -1729,29 +1767,29 @@ msgstr "Välj eller skapa en grupp för dessa mail."
1729
  msgid ""
1730
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1731
  "the group name."
1732
- msgstr "Specialtecken (['^$%&*()}{@#~?><>,|=_+\\\"]) är inte tillåtna i gruppnamnet"
1733
 
1734
  #: ../subscribers/view-subscriber-add.php:69
1735
  msgid "Subscriber has been saved."
1736
- msgstr "Prenumerant har sparats"
1737
 
1738
  #: ../subscribers/view-subscriber-add.php:71
1739
  msgid "Subscriber already exists."
1740
- msgstr "Prenumerant finns redan"
1741
 
1742
  #: ../subscribers/view-subscriber-add.php:74
1743
  msgid "Invalid Email."
1744
  msgstr "Ogiltig epostadress."
1745
 
1746
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1747
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1748
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1749
  #: subscribers/view-subscriber-sync.php:89
1750
  msgid "Add New Subscriber"
1751
  msgstr "Lägg till ny prenumerant"
1752
 
1753
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1754
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1755
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1756
  #: subscribers/view-subscriber-sync.php:90
1757
  msgid "Import"
@@ -1764,7 +1802,7 @@ msgid "Export"
1764
  msgstr "Exportera"
1765
 
1766
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1767
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1768
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1769
  #: subscribers/view-subscriber-sync.php:143
1770
  msgid "Sync"
@@ -1776,7 +1814,7 @@ msgstr "Ange prenumerantens hela namn"
1776
 
1777
  #: ../subscribers/view-subscriber-add.php:137
1778
  msgid "Enter Subscriber's Email Address"
1779
- msgstr "Ange prenumerantens epostadress."
1780
 
1781
  #: ../subscribers/view-subscriber-add.php:147
1782
  msgid "Select Subscriber's Status"
@@ -1815,15 +1853,15 @@ msgstr "Lägg till prenumerant"
1815
 
1816
  #: ../subscribers/view-subscriber-edit.php:64
1817
  msgid "Error: Special characters are not allowed in the group name."
1818
- msgstr "Fel. Specialtecken är inte tillåtna i gruppnamn"
1819
 
1820
  #: ../subscribers/view-subscriber-edit.php:74
1821
  msgid "Subscriber details updated."
1822
- msgstr "Prenumerantuppgifter uppdaterade"
1823
 
1824
  #: ../subscribers/view-subscriber-edit.php:76
1825
  msgid "Subscriber already exists for this group."
1826
- msgstr "prenumerant finns redan i denna grupp"
1827
 
1828
  #: ../subscribers/view-subscriber-edit.php:108
1829
  msgid "Edit Subscriber"
@@ -1835,7 +1873,7 @@ msgstr "Prenumerantens hela namn"
1835
 
1836
  #: ../subscribers/view-subscriber-edit.php:132
1837
  msgid "Subscriber's Email Address"
1838
- msgstr "Prenumerantens epostadress."
1839
 
1840
  #: ../subscribers/view-subscriber-edit.php:142
1841
  msgid "Update Subscriber's Status"
@@ -1845,63 +1883,75 @@ msgstr "Uppdatera prenumerantens status"
1845
  msgid "Update Subscriber's Group"
1846
  msgstr "Uppdatera prenumerantens grupp"
1847
 
1848
- #: ../subscribers/view-subscriber-export.php:47
 
 
 
 
 
 
 
 
 
 
 
 
1849
  msgid "Export Email Addresses"
1850
  msgstr "Ecporteera epostadresser"
1851
 
1852
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1853
- #: export.php:67
1854
  msgid "Type of List to Export"
1855
  msgstr "Typ av lista att exporteera"
1856
 
1857
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1858
- #: export.php:68
1859
  msgid "Total Emails Count"
1860
  msgstr "Totalt antal email"
1861
 
1862
- #: ../subscribers/view-subscriber-export.php:74
1863
  msgid "1"
1864
  msgstr "1"
1865
 
1866
- #: ../subscribers/view-subscriber-export.php:75
1867
  msgid "All Subscribers"
1868
  msgstr "Lista över alla prenumeranter"
1869
 
1870
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1871
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1872
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1873
  msgid "Click to Export in CSV"
1874
  msgstr "Klicka för att exportera i CSV-format"
1875
 
1876
- #: ../subscribers/view-subscriber-export.php:80
1877
  msgid "2"
1878
  msgstr "2"
1879
 
1880
- #: ../subscribers/view-subscriber-export.php:81
1881
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1882
  msgstr "Aktiva prenumeranter (Status: Bekräftade och Single Opt In)"
1883
 
1884
- #: ../subscribers/view-subscriber-export.php:86
1885
  msgid "3"
1886
  msgstr "3"
1887
 
1888
- #: ../subscribers/view-subscriber-export.php:87
1889
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1890
  msgstr "Inaktiva prenumeranter (Status: Obekräftade & Icke-prenumeranter)"
1891
 
1892
- #: ../subscribers/view-subscriber-export.php:92
1893
  msgid "4"
1894
  msgstr "4"
1895
 
1896
- #: ../subscribers/view-subscriber-export.php:93
1897
  msgid "WordPress Registered Users"
1898
  msgstr "Användare registrerade i Wordpress"
1899
 
1900
- #: ../subscribers/view-subscriber-export.php:98
1901
  msgid "5"
1902
  msgstr "5"
1903
 
1904
- #: ../subscribers/view-subscriber-export.php:99
1905
  msgid "Commented Authors"
1906
  msgstr "Författarkommentarer"
1907
 
@@ -1913,15 +1963,15 @@ msgstr "Specialtecken är ej tillåtna i gruppnamn (['^$%&*()}{@#~?><>,|=_+\\\"]
1913
 
1914
  #: ../subscribers/view-subscriber-import.php:95
1915
  msgid "email imported."
1916
- msgstr "email importerade"
1917
 
1918
  #: ../subscribers/view-subscriber-import.php:96
1919
  msgid "email already exists."
1920
- msgstr "email finns redan"
1921
 
1922
  #: ../subscribers/view-subscriber-import.php:97
1923
  msgid "email are invalid."
1924
- msgstr "ogiltigt email"
1925
 
1926
  #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1927
  #: import.php:129
@@ -1931,11 +1981,11 @@ msgstr "Klicka här"
1931
  #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1932
  #: import.php:129
1933
  msgid " to view details."
1934
- msgstr "för att se detaljer"
1935
 
1936
  #: ../subscribers/view-subscriber-import.php:108
1937
  msgid "File Upload Failed."
1938
- msgstr "Uppladdning av fil misslyckades"
1939
 
1940
  #: ../subscribers/view-subscriber-import.php:145
1941
  msgid "Import Email Addresses"
@@ -1947,7 +1997,7 @@ msgstr "Väsj CSV-fil"
1947
 
1948
  #: ../subscribers/view-subscriber-import.php:160
1949
  msgid "Check CSV structure "
1950
- msgstr "Kontrollera CSV-strukturen"
1951
 
1952
  #: ../subscribers/view-subscriber-import.php:161
1953
  msgid "from here"
@@ -1963,22 +2013,27 @@ msgstr "Välj eller skapa grupp för prenumeranter"
1963
 
1964
  #: ../subscribers/view-subscriber-show.php:45
1965
  msgid "Selected details does not exists."
1966
- msgstr "Valet finns inte tillgängligt"
1967
 
1968
  #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1969
  #: php:95
1970
  msgid "Record deleted."
1971
- msgstr "Post raderad"
1972
 
1973
  #: ../subscribers/view-subscriber-show.php:67
1974
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1975
  msgstr "För att sända bekräftelsemail, ändra Opt-In till Double Opt In."
1976
 
 
 
 
 
 
1977
  #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1978
  #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1979
  #: subscriber-show.php:217
1980
  msgid "No record was selected."
1981
- msgstr "Inga poster har valts"
1982
 
1983
  #: ../subscribers/view-subscriber-show.php:115
1984
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
@@ -1986,19 +2041,23 @@ msgstr "För att sända bekräftelsemail, ändra Opt-In till Double Opt In."
1986
 
1987
  #: ../subscribers/view-subscriber-show.php:164
1988
  msgid "Subscribers Group updated."
1989
- msgstr "Prenumerationsgrupp uppdaterad"
1990
 
1991
  #: ../subscribers/view-subscriber-show.php:169
1992
  msgid "Please select New group to update."
1993
- msgstr "Väj ny grupp att uppdatera"
1994
 
1995
  #: ../subscribers/view-subscriber-show.php:203
1996
  msgid "Subscribers Status updated."
1997
- msgstr "Prenumeranternas status uppdaterad"
1998
 
1999
  #: ../subscribers/view-subscriber-show.php:208
2000
  msgid "Please select New Status to update."
2001
- msgstr "VÄlj ny status att uppdatera"
 
 
 
 
2002
 
2003
  #: ../subscribers/view-subscriber-show.php:258
2004
  #, php-format
@@ -2026,6 +2085,10 @@ msgstr "Bulc acrions"
2026
  msgid "Resend Confirmation"
2027
  msgstr "Sänd bekräftelsen igen"
2028
 
 
 
 
 
2029
  #: ../subscribers/view-subscriber-show.php:304
2030
  msgid "Update Subscribers Status"
2031
  msgstr "Uppdatera prenumeranternas status"
@@ -2084,11 +2147,11 @@ msgstr "Visa alla"
2084
 
2085
  #: ../subscribers/view-subscriber-sync.php:36
2086
  msgid "Please select default group to newly registered user."
2087
- msgstr "Välj grupp för nyregistrerade prenumeranter"
2088
 
2089
  #: ../subscribers/view-subscriber-sync.php:50
2090
  msgid "Emails Successfully Synced."
2091
- msgstr "Email synkroniserade"
2092
 
2093
  #: ../subscribers/view-subscriber-sync.php:88
2094
  msgid "Sync Email"
@@ -2102,14 +2165,49 @@ msgstr "Synkronisera nyregistrerade användare med prenumerationslistan"
2102
  msgid "Select group to add newly registered users to"
2103
  msgstr "Välj grupp som nyregistrerade ska tillhöra"
2104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2105
  #. Plugin Name of the plugin/theme
2106
  msgid "Email Subscribers & Newsletters"
2107
  msgstr "Email Subscribers & Newsletters"
2108
 
 
 
 
 
2109
  #. Description of the plugin/theme
2110
  msgid ""
2111
  "Add subscription forms on website, send HTML newsletters & automatically "
2112
  "notify subscribers about new blog posts once it is published."
2113
  msgstr ""
2114
  "Lägg till prenumerationsformulär på webbplatsen, sänd HTML-nyhetsbrev och "
2115
- "meddela prenumeranterna automatiskt när en ny bloggpost publiseras"
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:58 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Swedish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "X-Loco-Target-Locale: sv_SE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid ""
27
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
28
+ "</b>"
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:728
32
+ msgid "Here's how"
 
 
 
33
  msgstr ""
34
 
35
+ #: ../classes/es-register.php:728
36
+ msgid "Not interested. Dismiss this."
37
  msgstr ""
38
 
39
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
40
+ #: 132
41
+ msgid "Subscribers Group to send post notification to"
42
  msgstr ""
43
 
44
  #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
92
  msgstr "<span style=\"color:#993399;\">Omgående</span>"
93
 
94
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
95
+ #: register.php:788
96
  msgid "Email Subscribers"
97
  msgstr "Email Subscribers"
98
 
101
  msgid "Subscribers"
102
  msgstr "Prenumeranter"
103
 
104
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
105
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
106
+ msgid "Templates"
107
+ msgstr "Mallar"
108
+
109
  #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
110
  #: 370 ../notification/notification-show.php:52
111
  msgid "Post Notifications"
112
  msgstr "Meddelande"
113
 
114
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
115
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
116
  msgid "Newsletters"
117
  msgstr "Nyhetsbrev"
118
 
125
  msgid "Help & Info"
126
  msgstr "Hjälp & Information"
127
 
128
+ #: ../classes/es-register.php:184
129
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
130
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hjälp & Info</span>"
131
+
132
  #: ../classes/es-register.php:195
133
  msgctxt "view-subscriber-enhanced-select"
134
  msgid "Please enter subscriber email address."
135
+ msgstr "Ange din e-postadress."
136
 
137
  #: ../classes/es-register.php:196
138
  msgctxt "view-subscriber-enhanced-select"
139
  msgid "Please select subscriber email status."
140
+ msgstr "Ange din e-postadress."
141
 
142
  #: ../classes/es-register.php:197
143
  msgctxt "view-subscriber-enhanced-select"
144
  msgid "Please select or create group for this subscriber."
145
+ msgstr "Ange en grupp för denna prenumerant."
146
 
147
  #: ../classes/es-register.php:198
148
  msgctxt "view-subscriber-enhanced-select"
152
  #: ../classes/es-register.php:199
153
  msgctxt "view-subscriber-enhanced-select"
154
  msgid "Please select the bulk action."
155
+ msgstr "Välj uppdateringssätt."
156
 
157
  #: ../classes/es-register.php:200
158
  msgctxt "view-subscriber-enhanced-select"
159
  msgid "Are you sure you want to delete selected records?"
160
+ msgstr "Vill du radera valda poster?"
161
+
162
+ #: ../classes/es-register.php:201
163
+ msgctxt "view-subscriber-enhanced-select"
164
+ msgid ""
165
+ "Do you want to resend confirmation email? Also please note, this will update "
166
+ "subscriber current status to 'Unconfirmed'."
167
+ msgstr ""
168
+ "Vill du skicka bekräftelsemail igen? Observera också att detta kommer att "
169
+ "uppdatera abonnentens nuvarande status till 'Ej bekräftad'."
170
 
171
  #: ../classes/es-register.php:202
172
  msgctxt "view-subscriber-enhanced-select"
173
  msgid "Please select new subscriber group."
174
+ msgstr "Välj ny prenumerantgrupp."
175
 
176
  #: ../classes/es-register.php:203
177
  msgctxt "view-subscriber-enhanced-select"
181
  #: ../classes/es-register.php:204
182
  msgctxt "view-subscriber-enhanced-select"
183
  msgid "Do you want to update subscribers group?"
184
+ msgstr "Vill du uppdatera prenumerantgruppen?"
185
 
186
  #: ../classes/es-register.php:205
187
  msgctxt "view-subscriber-enhanced-select"
198
  #: ../classes/es-register.php:214
199
  msgctxt "notification-enhanced-select"
200
  msgid "Please select subscribers group."
201
+ msgstr "Välj prenumerationsgrupp."
202
+
203
+ #: ../classes/es-register.php:215
204
+ msgctxt "notification-enhanced-select"
205
+ msgid "Please select notification mail subject. Use templates menu to create new."
206
+ msgstr "Välj anmälan e-ämne. Använd mallar-menyn för att skapa nya."
207
 
208
  #: ../classes/es-register.php:216
209
  msgctxt "notification-enhanced-select"
230
  msgid ""
231
  "Have you double checked your selected group? If so, let's go ahead and send "
232
  "this."
233
+ msgstr "Har du valt grupp att sända till? I så fall - sänd."
234
 
235
  #: ../classes/es-register.php:235
236
  msgctxt "sentmail-enhanced-select"
252
  #: ../classes/es-register.php:245
253
  msgctxt "cron-enhanced-select"
254
  msgid "Please enter the mail count, only number."
255
+ msgstr "Ange antalet mail. endast siffror."
256
 
257
  #: ../classes/es-register.php:258
258
  msgctxt "widget-page-enhanced-select"
262
  #: ../classes/es-register.php:259
263
  msgctxt "widget-page-enhanced-select"
264
  msgid "Successfully Subscribed."
265
+ msgstr "Prenumeration lyckades."
266
+
267
+ #: ../classes/es-register.php:260
268
+ msgctxt "widget-page-enhanced-select"
269
+ msgid ""
270
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
271
+ "subscription. If you don't see the email within a few minutes, check the "
272
+ "spam/junk folder."
273
+ msgstr ""
274
+ "Din prenumeration lyckades! Vänligen kontrollera din brevlåda och bekräfta "
275
+ "din prenumeration. Om du inte ser e-post inom några minuter, kontrollera i "
276
+ "skräppostmappen."
277
 
278
  #: ../classes/es-register.php:261
279
  msgctxt "widget-page-enhanced-select"
280
  msgid "Email Address already exists!"
281
+ msgstr "E-postadressen finns redan!"
282
 
283
  #: ../classes/es-register.php:262
284
  msgctxt "widget-page-enhanced-select"
293
  #: ../classes/es-register.php:264
294
  msgctxt "widget-page-enhanced-select"
295
  msgid "Please try after some time"
296
+ msgstr "Försök igen om en stund"
297
 
298
+ #: ../classes/es-register.php:753
299
  msgid ""
300
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
301
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
302
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
303
  "</a> rating. A huge thank you from Icegram in advance!"
304
  msgstr ""
305
+ "Om du gillar <strong>E-abonnenter</strong>, vänligen överväga att lämna oss "
306
+ "ett <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
307
+ "subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
308
+ "Icegram i förväg!"
309
+
310
+ #: ../classes/es-register.php:767
311
+ #, php-format
312
+ msgid "Email Subscribers version: <strong>%s</strong>"
313
+ msgstr "Email Subscribers version: <strong>%s</strong>"
314
+
315
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
316
+ msgid "Add new Template"
317
+ msgstr "Lägg till ny mall"
318
+
319
+ #: ../classes/es-register.php:780
320
+ msgid "Edit Templates"
321
+ msgstr "Redigera mallar"
322
+
323
+ #: ../classes/es-register.php:781
324
+ msgid "New Templates"
325
+ msgstr "Nya mallar"
326
+
327
+ #: ../classes/es-register.php:783
328
+ msgid "View Templates"
329
+ msgstr "Lista mallar"
330
+
331
+ #: ../classes/es-register.php:784
332
+ msgid "Search Templates"
333
+ msgstr "Sök mall"
334
+
335
+ #: ../classes/es-register.php:785
336
+ msgid "No Templates found"
337
+ msgstr "Inga mallar funna"
338
+
339
+ #: ../classes/es-register.php:786
340
+ msgid "No Templates found in Trash"
341
+ msgstr "Inga mallar funna i Papperskorgen"
342
+
343
+ #: ../classes/es-register.php:789
344
+ msgid "Thumbnail (For Visual Representation only)"
345
+ msgstr "Thumbnail (Enbart för visuell representation)"
346
+
347
+ #: ../classes/es-register.php:790
348
+ msgid "Set thumbnail"
349
+ msgstr "Välj Thumbnail"
350
+
351
+ #: ../classes/es-register.php:827
352
+ msgid "Template Type"
353
+ msgstr "Mailtyp"
354
+
355
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
356
+ msgid "Thumbnail"
357
+ msgstr "Thumbnail"
358
+
359
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
360
+ #: sentmail/sentmail-show.php:121
361
+ msgid "Preview"
362
+ msgstr "Granska"
363
+
364
+ #: ../classes/es-register.php:900
365
+ #, php-format
366
+ msgid "%s for Post Notification: {{POSTTITLE}}"
367
+ msgstr "%s för Postnotiifiering"
368
+
369
+ #: ../classes/es-register.php:900
370
+ msgid "Available Keyword"
371
+ msgstr "Tillgängliga nyckelord"
372
+
373
+ #: ../classes/es-register.php:907
374
+ msgid "Select your Email Template Type"
375
+ msgstr "Välj Typ för din E-postmall"
376
+
377
+ #: ../classes/es-register.php:909
378
+ msgid "Newsletter"
379
+ msgstr "Nyhetsbrev"
380
+
381
+ #: ../classes/es-register.php:910
382
+ msgid "Post Notification"
383
+ msgstr "Post notiifiering"
384
+
385
+ #: ../classes/es-register.php:959
386
+ msgid "Preview Template"
387
+ msgstr "Förhandsvisa mallar"
388
+
389
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
390
+ #, php-format
391
+ msgid ""
392
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
393
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
394
+ "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
395
+ msgstr ""
396
+ "%s for Post Notifiering: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
397
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
398
+ "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
399
+
400
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
401
+ #: register.php:994 ../classes/es-register.php:1002
402
+ msgid "Available Keywords"
403
+ msgstr "Tillgängliga nyckelord"
404
+
405
+ #: ../classes/es-register.php:979
406
+ #, php-format
407
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
408
+ msgstr "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
409
+
410
+ #: ../classes/es-register.php:1002
411
+ #, php-format
412
+ msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
413
+ msgstr "%s for Nyhetsbrev: {{NAME}}, {{EMAIL}}"
414
+
415
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
416
+ msgid "Name"
417
+ msgstr "Namn"
418
+
419
+ #: ../classes/es-register.php:1044
420
+ msgid "Email *"
421
+ msgstr "E-post *"
422
+
423
+ #: ../classes/es-register.php:1053 ../help/help.php:202
424
+ msgid "Subscribe"
425
+ msgstr "Prenumerera"
426
+
427
+ #: ../classes/es-register.php:1157
428
+ msgid "Widget Title"
429
+ msgstr "Widget titel"
430
+
431
+ #: ../classes/es-register.php:1161
432
+ msgid "Short description about subscription form"
433
+ msgstr "Kort beskrivning av prenumerationsformulär"
434
+
435
+ #: ../classes/es-register.php:1165
436
+ msgid "Display Name Field"
437
+ msgstr "Visa Namnfältet"
438
+
439
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
440
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
441
+ msgid "YES"
442
+ msgstr "JA"
443
+
444
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
445
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
446
+ msgid "NO"
447
+ msgstr "NEJ"
448
+
449
+ #: ../classes/es-register.php:1172
450
+ msgid "Subscriber Group"
451
+ msgstr "Prenumerantgrupp"
452
+
453
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
454
+ msgid "Unexpected url submit has been detected!"
455
+ msgstr "Oväntad url har upptäcks!"
456
+
457
+ #: ../help/help.php:190
458
+ msgid "Welcome to Email Subscribers!"
459
+ msgstr "Välkommen till Email Subscribers!"
460
+
461
+ #: ../help/help.php:191
462
+ msgid "Thanks for installing and we hope you will enjoy using this plugin."
463
+ msgstr "Tack för att du installerar och vi hoppas du ska uppskatta Email Subscribers."
464
+
465
+ #: ../help/help.php:192
466
+ msgid ""
467
+ "By default, subscribers subscribed via Email Subscribers, will receive email "
468
+ "updates when you post a new blog. You can turn these updates off like this:"
469
+ msgstr ""
470
+ "Som standard får prenumeranterna e-post när du publicerar ett nytt "
471
+ "blogginlägg. Du kan stänga av dessa meddelanden så här:"
472
+
473
+ #: ../help/help.php:193
474
+ msgid ""
475
+ "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
476
+ "when a new post is published -> Disable -> Save."
477
+ msgstr ""
478
+ "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
479
+ "when a new post is published -> Disable -> Save."
480
+
481
+ #: ../help/help.php:197
482
+ msgid ""
483
+ "Stay in touch with us. We send out plugin help, tips, periodic updates and "
484
+ "even the occasional discounts."
485
+ msgstr ""
486
+ "Håll kontakten med oss. Vi sänder ut hjälp, tips, uppdateringar och ibland "
487
+ "rabatt på PRO-versionen."
488
+
489
+ #: ../help/help.php:205
490
+ #, php-format
491
+ msgid "I have read and agreed to your %s."
492
+ msgstr "Jag har läst och godkänt era %s."
493
+
494
+ #: ../help/help.php:205
495
+ msgid "Privacy Policy"
496
+ msgstr "Sekretesspolicy"
497
+
498
+ #: ../help/help.php:214
499
+ #, php-format
500
+ msgid "Version: %s"
501
+ msgstr "Version: %s"
502
+
503
+ #: ../help/help.php:217
504
+ msgid "Questions? Need Help?"
505
+ msgstr "Frågor? Behöver du hjälp?"
506
+
507
+ #: ../help/help.php:218
508
+ msgid "Contact Us"
509
+ msgstr "Kontakta oss"
510
+
511
+ #: ../help/help.php:223
512
+ #, php-format
513
+ msgid ""
514
+ "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
515
+ "developments."
516
+ msgstr ""
517
+ "<b>Gillar du Email Subscribers?</b>Om ja, överväg att %s för att biddra till "
518
+ "framtida utveckling."
519
+
520
+ #: ../help/help.php:223
521
+ msgid "donating to us"
522
+ msgstr "gåva till oss"
523
+
524
+ #: ../help/help.php:258
525
+ msgid "Description"
526
+ msgstr "Beskrivning"
527
+
528
+ #: ../help/help.php:260
529
+ msgid ""
530
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
531
+ "leads, send automated new blog post notification emails, create & send "
532
+ "newsletters and manage all this in one single place."
533
+ msgstr ""
534
+ "Email Subrscribers är ett komplett plugin för nyhetsbrev vilket låter dig "
535
+ "samla in leads, automatiskt sända ut nya email vid nya blogginlägg, skapa "
536
+ "och sända nyhetsbrev och styra allt detta från en plats."
537
 
538
+ #: ../help/help.php:262
539
+ msgid "Feature Overview"
540
+ msgstr "Översikt av egenskaper"
 
 
 
 
 
541
 
542
+ #: ../help/help.php:265
543
+ msgid ""
544
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
545
+ "Code)."
546
+ msgstr ""
547
+ "Samla kunders epostadresser genoom att lägga till en Prenumerationsbox "
548
+ "(Widget/Kortkommando/PHP-kod)."
549
 
550
+ #: ../help/help.php:268
551
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
552
+ msgstr "Konfigurera double Opt-In och Single Opt-In-möjlighet för prenumeranter."
553
 
554
+ #: ../help/help.php:271
555
+ msgid "Send automatic welcome email to subscribers."
556
+ msgstr "Skicka automatiskt välkomstmail till prenumeranter."
 
557
 
558
+ #: ../help/help.php:274
559
+ msgid ""
560
+ "Send new post notification emails to subscribers when new posts are "
561
+ "published on your website."
562
+ msgstr "Sänd e-post till prenumeranter när nya blogginlägg publiceras på din webb."
563
 
564
+ #: ../help/help.php:277
565
+ msgid "Schedule email (Cron job) or send them manually."
566
+ msgstr "Schemalägg e-post (Cron job) eller sänd dem manuellt."
567
 
568
+ #: ../help/help.php:280
569
+ msgid "Send email notification to admin when a new user signs up."
570
+ msgstr "Sänd e-post till admin när en ny användare prenumererar."
571
 
572
+ #: ../help/help.php:283
573
+ msgid "Automatically add Unsubscribe link in the email."
574
+ msgstr "Lägg automatiskt in en länk för att avaktivera sin prenumeration."
575
 
576
+ #: ../help/help.php:286
577
+ msgid "Easily migrate subscribers from another app using Import & Export."
578
+ msgstr "Migrera prenumeranter ett enkelt sätt genom att använda Import & Export."
579
 
580
+ #: ../help/help.php:289
581
+ msgid "Use HTML editor to create newsletters and post notifications."
582
+ msgstr "Använd HTML-editor för att skapa Nyhetsbrev och Bloggnotifieringar."
583
 
584
+ #: ../help/help.php:292
585
+ msgid "Send newsletters to different groups."
586
+ msgstr "Sänd Nyhetsbrev till olika grupper."
 
587
 
588
+ #: ../help/help.php:295
589
+ msgid "Get detailed sent email reports."
590
+ msgstr "Få detaljerad sändningsrapport."
 
591
 
592
+ #: ../help/help.php:298
593
+ msgid "Control user access (User Roles and Capabilities)."
594
+ msgstr "Kontrollera användarnas behörigheter (Användarnas Roller och möjligheter)."
595
 
596
+ #: ../help/help.php:301
597
+ msgid "Supports localization and internationalization."
598
+ msgstr "Stöder Lokalisering och Internationalisering."
599
 
600
+ #: ../help/help.php:308
601
+ msgid "Add Subscribe form"
602
+ msgstr "Lägg till Prenumerationsformulär"
603
 
604
  #: ../help/help.php:310 ../help/help.php:321 ../help/help.php:324 ../help/help.
605
  #: php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:345 ..
617
  msgid "How to Add Subscription box to website?"
618
  msgstr "Hur lägger jag till en prenumerationsruta på min webb?"
619
 
620
+ #: ../help/help.php:313
621
+ #, php-format
622
+ msgid ""
623
+ "Use any of the following 3 methods :<br>\n"
624
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
625
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
626
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
627
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
628
+ " c) Copy and past this php code to your desired template location : "
629
+ "<strong>%s</strong>"
630
+ msgstr ""
631
+ "Använd någon av följande 3 metoder :<br>\n"
632
+ " a) Shortcode på varje sida/blogginläggt : <strong>[email-subscribers "
633
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
634
+ " b) Gå till Appearance -> Widgets. Klicka på widget Email "
635
+ "subscribers och drag den till höger <i>Or</i><br>\n"
636
+ " c) Kopiera och klistra in denna PHP-kod till önskad placering i "
637
+ "mallen: <strong>%s</strong>"
638
+
639
+ #: ../help/help.php:318
640
+ msgid "Additional form settings"
641
+ msgstr "Ytterligare mallinställningar"
642
+
643
  #: ../help/help.php:321
644
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
645
  msgstr ""
648
 
649
  #: ../help/help.php:324
650
  msgid "How to add captcha in Subscribe form of Email Subscribers?"
651
+ msgstr "Hur lägger man till chapta i prenumerationsformuläret.?"
652
+
653
+ #: ../help/help.php:330
654
+ msgid "General Plugin Configuration"
655
+ msgstr "Allmänna inställningar för Tillägget"
656
+
657
+ #: ../help/help.php:333
658
+ #, php-format
659
+ msgid "Modify %s"
660
+ msgstr "Förändra %s"
661
+
662
+ #: ../help/help.php:333
663
+ msgid "default text, email contents"
664
+ msgstr "standardtext, e-postinnehåll"
665
+
666
+ #: ../help/help.php:333
667
+ msgid ""
668
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
669
+ "Roles"
670
+ msgstr ""
671
+ " (som bekräftelse, Välkommen, Admin e-post). Cron inställningar och Tilldela "
672
+ "användarroller"
673
+
674
+ #: ../help/help.php:336
675
+ msgid "How does Sync work?"
676
+ msgstr "Hur fungerar Sync?"
677
 
678
  #: ../help/help.php:339
679
  msgid "How to Import or Export Email Addresses?"
683
  msgid "How to Add/Update Existing Subscribers Group & Status?"
684
  msgstr "Så här lägger du till / uppdaterar befintliga abonnentgrupper och status?"
685
 
686
+ #: ../help/help.php:345
687
+ msgid "How to change/update/translate any texts from the plugin?"
688
+ msgstr "Hur ändrar/uppdaterar/översätter man text i detta plucin?"
689
+
690
  #: ../help/help.php:348
691
  msgid "How to add Unsubscribe link in emails?"
692
+ msgstr "Hur lägger man in en länk för att avaktivera sin prenumeration?"
693
+
694
+ #: ../help/help.php:351
695
+ msgid "How to check sent emails?"
696
+ msgstr "Hur kan man kontrollera sända mail?"
697
+
698
+ #: ../help/help.php:363
699
+ msgid "Create and Send Newsletter Emails"
700
+ msgstr "Skapa och skicka Nyhetsmail"
701
+
702
+ #: ../help/help.php:366
703
+ msgid "Keywords in the Newsletters"
704
+ msgstr "Nyckelord i Nyhetsbrev"
705
+
706
+ #: ../help/help.php:373
707
+ msgid "Create and Send Post Notification Emails when new posts are published"
708
+ msgstr "Skapa och sänd mail för blogginlägg när de publiceras"
709
+
710
+ #: ../help/help.php:376
711
+ msgid "Keywords in the Post Notifications"
712
+ msgstr "Nyckelord i blogginläggen"
713
+
714
+ #: ../help/help.php:379
715
+ msgid "Send a test post notification email to myself/testgroup"
716
+ msgstr "Skicka ett testmail, för ett blogginlägg, till mig själv eller en provgrupp"
717
+
718
+ #: ../help/help.php:384
719
+ msgid "Cron Job Setup"
720
+ msgstr "Setup för Cronjobb"
721
+
722
+ #: ../help/help.php:387
723
+ msgid "What is Cron and how to Schedule Cron Emails?"
724
+ msgstr "Vad är Cron och hur schemalägger man Cronmail?"
725
+
726
+ #: ../help/help.php:390
727
+ msgid "Schedule Cron Emails in cPanel"
728
+ msgstr "Schemalägg Cronmail från cPanelen"
729
+
730
+ #: ../help/help.php:393
731
+ msgid "Schedule Cron Emails in Parallels Plesk"
732
+ msgstr "Schemalägg Cronmail i Parallells Plesk"
733
+
734
+ #: ../help/help.php:396
735
+ msgid "Hosting doesn’t support Cron Jobs?"
736
+ msgstr "Webbhosten har inte support för Cron Job?"
737
+
738
+ #: ../help/help.php:399
739
+ msgid "Troubleshooting Steps"
740
+ msgstr "Felsökning steg för steg"
741
 
742
  #: ../help/help.php:402
743
  msgid "Subscribers are not receiving Emails?"
747
  msgid "CSS Help"
748
  msgstr "CSS Hjälp"
749
 
750
+ #: ../help/help.php:408
751
+ msgid "FAQ's"
752
+ msgstr "FAQ's"
753
+
754
+ #: ../help/help.php:413
755
+ msgid "[GDPR] Email Subscribers"
756
+ msgstr "[GDPR] Email Prenumeranter"
757
+
758
+ #: ../help/help.php:416 ../help/help.php:434
759
+ msgid "How to enable consent checkbox in the subscribe form?"
760
+ msgstr "Hur aktiverar man Samtycke genom Checkbox i prenumerationsformuläret?"
761
+
762
+ #: ../help/help.php:419
763
+ msgid "What data Email Subscribers stores on your end?"
764
+ msgstr "Vilken data lagrar Email Subscribers om dig?"
765
+
766
+ #: ../help/help.php:431
767
+ msgid "[GDPR] Email Subscribers - Group Selector"
768
+ msgstr "[GDPR] Email Subscribers - Gruppväljare"
769
+
770
+ #: ../help/help.php:437
771
+ msgid "What data Email Subscribers - Group Selector stores on your end?"
772
+ msgstr "Vilken data lagrar Email Subscribers - Grupppväljare om dig?"
773
+
774
+ #: ../help/help.php:446
775
+ msgid "Want to do more? Here's how.."
776
+ msgstr "Vill du göra mer? Här visar vi hur....."
777
+
778
+ #: ../help/help.php:449
779
+ msgid "Allow Subscribers to get subscribed to any group"
780
+ msgstr "Tillåt prenumeranter att tillhöra valfri grupp"
781
+
782
+ #: ../help/help.php:454
783
+ msgid "Using our <b>free</b> "
784
+ msgstr "Använd vår <b>free</b> "
785
+
786
+ #: ../help/help.php:455
787
+ msgid "Group Selector"
788
+ msgstr "Gruppväljare"
789
+
790
+ #: ../help/help.php:456
791
+ msgid ""
792
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
793
+ "grouping option right next to the form."
794
+ msgstr ""
795
+ "plugin, du kan utöka Email Subscribers formulärfunktionalitet genom att "
796
+ "tillhandahålla en grupperingsmöjlighet bredvid formuläret."
797
+
798
+ #: ../help/help.php:459
799
+ msgid "The user can then subscribe to whichever group most appeals to them."
800
+ msgstr "Användare kan då prenumerera på vilken grupp som är mest lämplig för hen."
801
+
802
+ #: ../help/help.php:462
803
+ msgid "For example: Subscribe either to Updates or to Offers."
804
+ msgstr "T.ex: Prenumerera på antingen Uppdateringar eller Erbjudanden."
805
+
806
+ #: ../help/help.php:466
807
+ msgid "Show your subscribe form inside attractive popups"
808
+ msgstr "Visa ditt prenumerationsformulär i en popup"
809
+
810
+ #: ../help/help.php:471
811
+ msgid ""
812
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
813
+ "bars, slide-ins, sidebars, full screen popups etc."
814
+ msgstr ""
815
+ "Begränsa inte ditt prenumerationsformulär till en widget. Visa det i popups, "
816
+ "hello bars, slide-ins, sidebars, full screen popup etc."
817
+
818
+ #: ../help/help.php:474
819
+ msgid ""
820
+ "Using Email Subscribers you can achieve this easily with our <b>free</b> "
821
+ "plugin "
822
+ msgstr ""
823
+ "Genom att använda Email Subscribers kan du erbjuda detta enkelt med "
824
+ "vår<b>gratis<b> plugin "
825
+
826
  #. Author of the plugin/theme
827
  #: ../help/help.php:475
828
  msgid "Icegram"
829
  msgstr "Icegram"
830
 
831
+ #: ../help/help.php:478
832
+ msgid ""
833
+ "Icegram's beautiful designs instantly capture user attention and help "
834
+ "increase sign-ups to your WordPress website."
835
+ msgstr ""
836
+ "Icegram´s snygga design fångar direkt användarens uppmärksamhet och hjälper "
837
+ "till att öka prenumerationer på din WordPress webb."
838
+
839
+ #: ../help/help.php:481 ../help/help.php:501
840
+ #, php-format
841
+ msgid "How to %s"
842
+ msgstr "Hur man %s"
843
+
844
+ #: ../help/help.php:481
845
+ msgid "show subscribe form inside a popup"
846
+ msgstr "visar prenumerationsformulär i en popup"
847
+
848
+ #: ../help/help.php:485
849
+ msgid "Get beautiful and elegant form styles"
850
+ msgstr "Få snygga och eleganta formulär"
851
+
852
+ #: ../help/help.php:491
853
+ msgid "Email subscribers easily integrates with another <b>free</b> plugin "
854
+ msgstr "Du kan enkelt integrera Email Subscribers med andra <b>gratis<b> plugin "
855
+
856
+ #: ../help/help.php:492
857
+ msgid "Rainmaker"
858
+ msgstr "Rainmaker"
859
+
860
+ #: ../help/help.php:495
861
+ msgid ""
862
+ "Rainmaker extends the core features of Email Subscribers and provides "
863
+ "elegant form styles."
864
+ msgstr ""
865
+ "Rainmaker utökar grundfunktionaliteten hos Email Subscribers och erbjuder "
866
+ "eleganta formulär."
867
+
868
+ #: ../help/help.php:498
869
+ msgid ""
870
+ "These styles are well designed and beautify your subscription form making it "
871
+ "more appealing."
872
+ msgstr ""
873
+ "Formulären/styles är utmärkt designade ch förbättrar dina "
874
+ "prenumerationsformulär och gör dessa mer tilltalande."
875
+
876
+ #: ../help/help.php:501
877
+ msgid "add Rainmaker’s form in Email Subscribers"
878
+ msgstr "lägg till Rainmakers formulär till Email Subscribers"
879
+
880
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
881
+ #: job/es-unsubscribe.php:62
882
  msgid ""
883
  "Oops.. We are getting some technical error. Please try again or contact "
884
  "admin."
885
  msgstr "Oups... Något gick fel. Försök igen senare."
886
 
887
+ #: ../job/es-optin.php:62
888
  msgid "This email address has already been confirmed."
889
+ msgstr "Denna mailadress har redan bekräftats."
890
 
891
  #: ../notification/notification-add.php:33
892
  msgid "Please select subscribers group."
893
+ msgstr "Väj prenumerantgrupp."
894
 
895
  #: ../notification/notification-add.php:39
896
  msgid "Please select notification status."
897
+ msgstr "Välj notifkationsstatus."
898
+
899
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
900
+ msgid "Please select notification mail subject. Use templates menu to create new."
901
+ msgstr ""
902
+ "V. g. välj Ämne för notifieringsmailet. Använd mallmenyn för att skapa ett "
903
+ "nytt."
904
 
905
  #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
906
  msgid "Please select post categories."
907
+ msgstr "Väl postkategori."
908
 
909
  #: ../notification/notification-add.php:71
910
  msgid "Notification successfully created. "
911
+ msgstr "Notifierning har skapats "
912
 
913
  #: ../notification/notification-add.php:112
914
  msgid "Add Notification"
919
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
920
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
921
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
922
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
923
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
924
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
925
  msgid "Help"
926
  msgstr "Hjälp"
927
 
 
 
 
 
928
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
929
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
930
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
939
  msgid "Select Notification Email Subject"
940
  msgstr "Välj Rubrik för notifierings-Email"
941
 
942
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
943
+ #: 164
944
+ msgid "(Use templates menu to create new)"
945
+ msgstr "(Använd mallmenyn för att skapa nytt)"
946
+
947
  #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
948
  #: 191
949
  msgid "Select Post Categories"
962
  #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
963
  #: 234
964
  msgid "Select your Custom Post Type"
965
+ msgstr "Välj typ för ditt mail"
966
 
967
  #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
968
  #: 235
1003
  #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1004
  #: subscribers/view-subscriber-edit.php:22
1005
  msgid "Oops, selected details does not exists."
1006
+ msgstr "Oups, ditt val finns inte."
1007
 
1008
  #: ../notification/notification-edit.php:49
1009
  msgid "Please select subscribers group"
1011
 
1012
  #: ../notification/notification-edit.php:55
1013
  msgid "Please select notification status"
1014
+ msgstr "Välj status för nyhetsbrev"
1015
 
1016
  #: ../notification/notification-edit.php:89
1017
  msgid "Notification successfully updated. "
1018
+ msgstr "Mallen uppdaterad "
1019
 
1020
  #: ../notification/notification-edit.php:122
1021
  msgid "Edit Notification"
1026
  msgid "Add New"
1027
  msgstr "Lägg till ny"
1028
 
 
 
 
 
 
1029
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1030
  msgid "Selected record deleted."
1031
+ msgstr "Valda poster raderade."
1032
 
1033
  #: ../notification/notification-show.php:57
1034
  msgid ""
1051
  #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1052
  #: 78
1053
  msgid "Post Categories / Custom Post Types"
1054
+ msgstr "Postkategorier/Custom Post Type"
1055
 
1056
  #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1057
  #: 79
1058
  msgid "Notification Status"
1059
+ msgstr "Välj status för nyhetsbrev"
1060
 
1061
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1062
  #: php:417 ../templates/template-preview.php:36
1072
  #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1073
  #: 456
1074
  msgid "No records available."
1075
+ msgstr "Inga poster tillgängliga."
1076
 
1077
  #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1078
  msgid "Click Here"
1088
 
1089
  #: ../sendmail/sendmail.php:52
1090
  msgid "Please select your group."
1091
+ msgstr "Välj prenumerationsgrupp."
1092
+
1093
+ #: ../sendmail/sendmail.php:59
1094
+ msgid "Email sent successfully. "
1095
+ msgstr "Sändningen av E-post lyckades "
1096
 
1097
  #: ../sendmail/sendmail.php:63
1098
  msgid "Click here to check Statistics"
1104
 
1105
  #: ../sendmail/sendmail.php:97
1106
  msgid "Use this to send newsletter emails to your subscribers."
1107
+ msgstr "Använd detta för att sända nyhetsbrev till din aprenumeranter."
1108
 
1109
  #: ../sendmail/sendmail.php:106
1110
  msgid "Select Email Subject from available list"
1120
 
1121
  #: ../sendmail/sendmail.php:147
1122
  msgid "Select Subscribers group to Send Email"
1123
+ msgstr "Välj prenumerantgrupp att sända email till"
1124
 
1125
  #: ../sendmail/sendmail.php:179
1126
  msgid "Recipients : 0 "
1127
+ msgstr "Mottagare: 0 "
1128
 
1129
  #: ../sendmail/sendmail.php:181
1130
  #, php-format
1166
  msgstr "Leveransrapport"
1167
 
1168
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1169
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1170
+ #: export.php:69
1171
  msgid "Sno"
1172
+ msgstr "Sno"
1173
 
1174
  #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1175
  msgid "Email"
1176
+ msgstr "E-post"
1177
 
1178
  #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1179
  #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1198
  msgid "Viewed Date"
1199
  msgstr "Läst datum"
1200
 
1201
+ #: ../sentmail/sentmail-preview.php:27
1202
+ msgid "Preview Email"
1203
+ msgstr "Förhandsgranska E-post"
1204
+
1205
+ #: ../sentmail/sentmail-preview.php:31
1206
+ msgid ""
1207
+ "This is how the email you sent may look. <br>Note: Different email services "
1208
+ "(like gmail, yahoo etc) display email content differently. So there could be "
1209
+ "a slight variation on how your customer will view the email content."
1210
+ msgstr ""
1211
+ "Här ser du hur mailet du sände kan se ut. <b> Obs: Olika mailsystem ger "
1212
+ "olika utseenden, så där kan vara skillnader beroende på mottagarens "
1213
+ "mailklient."
1214
+
1215
  #: ../sentmail/sentmail-preview.php:53
1216
  msgid "Back"
1217
  msgstr "Åter"
1218
 
1219
  #: ../sentmail/sentmail-show.php:43
1220
  msgid "Successfully deleted all reports except latest 10."
1221
+ msgstr "Alla rapporter utom de 10 senaste har raderats."
1222
 
1223
  #: ../sentmail/sentmail-show.php:97
1224
  msgid "It will show reports for all Newsletters & Post Notification emails sent."
1247
  msgstr "Summa"
1248
 
1249
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1250
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1251
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1252
  msgid "Action"
1253
  msgstr "Aktivitet"
1254
 
1264
  "OBS. Klicka på <strong>Optimera Tabell & raderade poster</strong>-knappen "
1265
  "för att radera alla rapporter förutom de 10 senaste."
1266
 
1267
+ #: ../sentmail/sentmail-show.php:212
1268
+ msgid ""
1269
+ "<strong>Note:</strong> If you delete record for the emails with Status = "
1270
+ "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
1271
+ "deleted too and email will not be sent."
1272
+ msgstr ""
1273
+ "<strong>Obs:</strong> Om du raderar listan för mailen med Status = <span "
1274
+ "style=\"color:#FF0000;\">In Queue</span>, kommer de cronjobb som ligger i kö "
1275
+ "också att bli raderade."
1276
+
1277
  #: ../settings/setting-sync.php:16
1278
  msgid "Table sync completed successfully."
1279
+ msgstr "Synkronisering av tabellen klar."
1280
 
1281
  #: ../settings/setting-sync.php:29
1282
  msgid "Sync plugin tables"
1288
 
1289
  #: ../settings/settings-edit.php:23
1290
  msgid "Admin"
1291
+ msgstr "Admin"
1292
 
1293
  #: ../settings/settings-edit.php:24
1294
  msgid "Signup Confirmation"
1316
  "this plugin."
1317
  msgstr ""
1318
  "Välj ett Från-namn och avsändarmailadress för alla mail som sånds från denna "
1319
+ "Plugin."
1320
+
1321
+ #: ../settings/settings-edit.php:89
1322
+ msgid "Email Type"
1323
+ msgstr "Email-typ"
1324
+
1325
+ #: ../settings/settings-edit.php:90
1326
+ msgid ""
1327
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1328
+ "Option 3 & 4 is to send emails with PHP method mail()."
1329
+ msgstr ""
1330
+ "Val 1 & 2 används för att sända e-post med Wordpress standardmetod wp_mail()."
1331
+ " Val 3&4 används för att sända e-post med PHP method mail()."
1332
 
1333
  #: ../settings/settings-edit.php:94
1334
  msgid "1. WP HTML MAIL"
1346
  msgid "4. PHP PLAINTEXT MAIL"
1347
  msgstr "4. PHP PLAINTEXT MAIL"
1348
 
1349
+ #: ../settings/settings-edit.php:104
1350
+ msgid "Opt-In Type"
1351
+ msgstr "Opt-In Type"
1352
+
1353
+ #: ../settings/settings-edit.php:105
1354
+ msgid ""
1355
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
1356
+ "soon as they subscribe to your list. They have to confirm their subscription "
1357
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1358
+ "subscriber is not asked to confirm their email address. They are subscribed "
1359
+ "directly in the list."
1360
+ msgstr ""
1361
+ "Double Opt-in : Med denna metod får prenumeranterna ett mail med en "
1362
+ "aktiveringslänk. De måste bekräfta prenumerationen genom att klicka på "
1363
+ "aktiveringslänken. <b>Single Opt-In : Med denna metod begärs inte "
1364
+ "bekräftelse utan prenumeranten läggs direkt till prenumerantlistan."
1365
+
1366
  #: ../settings/settings-edit.php:109
1367
  msgid "Double Opt In"
1368
  msgstr "Double Opt In"
1378
  msgid "Image Size"
1379
  msgstr "Bildstorlek"
1380
 
1381
+ #: ../settings/settings-edit.php:118
1382
+ msgid ""
1383
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1384
+ "Emails."
1385
+ msgstr ""
1386
+ "Välj bildstorlek för {{POSTIMAGE}} att bli visad i E-post för att informera "
1387
+ "omm nya blogginlägg."
1388
+
1389
  #: ../settings/settings-edit.php:122
1390
  msgid "Full Size"
1391
  msgstr "Full storlek"
1406
  "Ange Admins mailadresser dit notifieringar ska skickas. (separera dem med "
1407
  "komma (,)"
1408
 
1409
+ #: ../settings/settings-edit.php:137
1410
+ msgid "Notify Admin when a new subscriber signs up"
1411
+ msgstr "Meddela admin när en ny prenumerant anmäler sig"
1412
+
1413
  #: ../settings/settings-edit.php:138
1414
  msgid ""
1415
  "To send admin email notifications for the new subscriber. This option must "
1416
  "be set to YES."
1417
+ msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA."
1418
+
1419
+ #: ../settings/settings-edit.php:150
1420
+ msgid "Admin Email Subject on new subscriber sign up"
1421
+ msgstr "Rubrik i mail till Admin när en ny prenumerant anmäler sig"
1422
+
1423
+ #: ../settings/settings-edit.php:151
1424
+ msgid ""
1425
+ "Subject for the admin email whenever a new subscriber signs up and is "
1426
+ "confirmed."
1427
+ msgstr "Rubrik i mail till Admin när en ny prenumerant anmäler sig och bekräftats."
1428
+
1429
+ #: ../settings/settings-edit.php:157
1430
+ msgid "Admin Email Content on new subscriber signs up"
1431
+ msgstr "Innehåll i mailet till admin när en ny prenumerant anmäler sig"
1432
+
1433
+ #: ../settings/settings-edit.php:158
1434
+ msgid ""
1435
+ "Content for the admin email whenever a new subscriber signs up and is "
1436
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1437
+ msgstr ""
1438
+ "Innehåll för Admin-mail när en ny prenumerant läggs till och bekräftas. "
1439
+ "<b/>Tillgängliga nyckelord;{{NAME}}, {{EMAIL}}, {{GROUP}}"
1440
 
1441
  #: ../settings/settings-edit.php:165
1442
  msgid "Sent Report Subject"
1443
  msgstr "Sändrapport Ämne"
1444
 
1445
+ #: ../settings/settings-edit.php:166
1446
+ msgid "Subject for the email report which will be sent to admin."
1447
+ msgstr "Ange Ämne för Sändrapporterna. Det sänds till Admin."
1448
+
1449
  #: ../settings/settings-edit.php:172
1450
  msgid "Sent Report Content"
1451
  msgstr "Sändrapport - Innehåll"
1452
 
1453
+ #: ../settings/settings-edit.php:173
1454
+ msgid ""
1455
+ "Content for the email report which will be sent to admin.<br />Available "
1456
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1457
+ msgstr ""
1458
+ "Innehåll för Admin-mail som sänds till admins. <b/>Tillgängliga nyckelord;"
1459
+ "{{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1460
+
1461
+ #: ../settings/settings-edit.php:184
1462
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
1463
+ msgstr "Double Opt In mailrubrik (Bekräftelsemail)"
1464
+
1465
+ #: ../settings/settings-edit.php:185
1466
+ msgid ""
1467
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1468
+ "subscriber signs up."
1469
+ msgstr ""
1470
+ "Rubrik för bekräftelsemailet som sänds Double Opt när en prenumerant "
1471
+ "registrerar sig."
1472
+
1473
+ #: ../settings/settings-edit.php:191
1474
+ msgid "Double Opt-In Email Content (Confirmation Email)"
1475
+ msgstr "Double Opt In. Mailets innehåll (Bekräftelsemail)"
1476
+
1477
+ #: ../settings/settings-edit.php:192
1478
+ msgid ""
1479
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
1480
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1481
+ msgstr ""
1482
+ "Innehåll i bekräftelsemailet som sänds fäör Double-Opt-in när en prenumerant "
1483
+ "läggs till.<br />Tillgängliga Nyckelord : {{NAME}}, {{LINK}}"
1484
+
1485
+ #: ../settings/settings-edit.php:198
1486
+ msgid "Double Opt-In Confirmation Link"
1487
+ msgstr "Double Opt In bekräftelselänk"
1488
+
1489
  #: ../settings/settings-edit.php:199
1490
  msgid "It is a readonly field and you are advised not to modify it."
1491
  msgstr "Det är readonly och du bör inte ändra det."
1492
 
1493
  #: ../settings/settings-edit.php:206
1494
  msgid ""
1495
+ "Text to display after an email address is successfully subscribed from "
1496
+ "Double Opt-In (Confirmation) Email"
1497
+ msgstr ""
1498
+ "Text att visa när Email prenumeration lyckats för Double Opt In "
1499
+ "(bekräftelse) mail"
1500
+
1501
+ #: ../settings/settings-edit.php:207
1502
+ msgid ""
1503
  "This text will be displayed once user clicks on email confirmation link from "
1504
  "the Double Opt In (confirmation) Email."
1505
  msgstr ""
1506
  "Denna text visas när en prenumerant klickar på bekräftelselänken för att "
1507
  "bekräfta sin prenumeration i double Opt In."
1508
 
1509
+ #: ../settings/settings-edit.php:219
1510
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
1511
+ msgstr "Skicka välkomstmail till nya prenumeranter?"
1512
+
1513
+ #: ../settings/settings-edit.php:220
1514
  msgid ""
1515
  "To send welcome email to subscriber after successful signup. This option "
1516
  "must be set to YES."
1517
+ msgstr ""
1518
+ "För att sända välkomstmail till nya prenumeranter, så måste detta val vara "
1519
+ "JA."
1520
+
1521
+ #: ../settings/settings-edit.php:231
1522
+ msgid "Subject for Welcome Email"
1523
+ msgstr "Ämne i välkomstmail till prenumerant"
1524
+
1525
+ #: ../settings/settings-edit.php:232
1526
+ msgid ""
1527
+ "Subject for the subscriber welcome email. This will be sent whenever a "
1528
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1529
+ "Opt-In) successfully."
1530
+ msgstr ""
1531
+ "Innehållet i välkomstmailet som går ut till en prenumerant när mailadressen "
1532
+ "bekräftats (double Opdt In) /beställts (Single Opt In)."
1533
+
1534
+ #: ../settings/settings-edit.php:238
1535
+ msgid "Email Content for Welcome Email"
1536
+ msgstr "Välkomstmailets innehåll"
1537
 
1538
+ #: ../settings/settings-edit.php:239
1539
+ msgid ""
1540
+ "Content for the subscriber welcome email whenever a user's email is either "
1541
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1542
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1543
+ msgstr ""
1544
+ "Innehåll i välkomstmailet till prenumeranter oavsett om prenumerationen "
1545
+ "bekräftats (vid Doulble Opt-In) eller prenumererats (Single Opt-In).<br "
1546
+ "/>Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1547
+
1548
+ #: ../settings/settings-edit.php:247
1549
  msgid "Unsubscribe Link"
1550
  msgstr "Länk för att avbeställa prenumerationen"
1551
 
1552
  #: ../settings/settings-edit.php:248
1553
+ msgid ""
1554
+ "This unsubscribe link is automatically added to all the emails that are sent "
1555
+ "from this plugin. It is a readonly field and you are advised not to modify "
1556
+ "it."
1557
+ msgstr ""
1558
+ "Denna länk för avregistrering av prenumerationen läggs automatiskt till all "
1559
+ "e-post som sänds från detta plugin. Det är ett \"läs-fält\" och du uppmanas "
1560
+ "att inte ändra det."
1561
+
1562
+ #: ../settings/settings-edit.php:254
1563
  msgid "Unsubscribe Text in Email"
1564
  msgstr "Text i email vid avlutad prenumeration"
1565
 
1566
  #: ../settings/settings-edit.php:255
1567
+ msgid ""
1568
+ "The text for the unsubscribe link. This text is automatically added with "
1569
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1570
+ msgstr ""
1571
+ "Texten för att avsluta prenumerationen. Denna text läggs automatiskt till "
1572
+ "tillsammans med länken \"Avsluta prenumeration\". <b> Tillgängliga Nyckelord:"
1573
+ "{{LINK}}"
1574
+
1575
+ #: ../settings/settings-edit.php:262
1576
  msgid "Text to display after an email address is unsubscribed"
1577
+ msgstr "Text att visa när en prenumeration avbetsällts"
1578
+
1579
+ #: ../settings/settings-edit.php:263
1580
+ msgid ""
1581
+ "This text will be displayed once user clicks on unsubscribe link from the "
1582
+ "email."
1583
+ msgstr ""
1584
+ "Denna text visas en gång när en användare klickar på länken att avsluta sin "
1585
+ "prenumeration."
1586
+
1587
+ #: ../settings/settings-edit.php:275
1588
+ msgid "Error in the Subscribe / Confirmation Link"
1589
+ msgstr "Fel i Prenumerera / Bekräfta-länken"
1590
+
1591
+ #: ../settings/settings-edit.php:276
1592
+ msgid ""
1593
+ "Default message to display if there is any issue while clicking on subscribe "
1594
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
1595
+ msgstr ""
1596
+ "Standardmeddelande att visa om det finns något problem medan man klickar på "
1597
+ "länken för att prenumerera / bekräfta i be bekräftelsemailet (Double Opt-In)."
1598
 
1599
+ #: ../settings/settings-edit.php:282
1600
  msgid "Error in the Unsubscribe Link"
1601
  msgstr "FEL i länken för avprenumeration"
1602
 
1603
  #: ../settings/settings-edit.php:283
1604
+ msgid ""
1605
+ "Default message to display if there is any issue while clicking on "
1606
+ "unsubscribe link from the emails."
1607
+ msgstr ""
1608
+ "Standardmeddelande att visa om det blir fel när man klickar på länken för "
1609
+ "att avsluta prenumerationen."
1610
+
1611
+ #: ../settings/settings-edit.php:295
1612
  msgid "Select user roles who can access following menus. Only Admin can change this."
1613
  msgstr ""
1614
  "Välj användarroll som kan få tillgång till följande menyer. Bara Admin kan "
1615
  "ändra detta."
1616
 
1617
+ #: ../settings/settings-edit.php:301
1618
  msgid "Subscribers Menu"
1619
  msgstr "Prenumenrantmeny"
1620
 
1621
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1622
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1623
+ #: settings/settings-edit.php:353
1624
  msgid "Administrator Only"
1625
  msgstr "Endast Adminstratör"
1626
 
1627
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1628
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1629
+ #: settings/settings-edit.php:354
1630
  msgid "Administrator/Editor"
1631
  msgstr "Administratör/Redigerare"
1632
 
1633
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1634
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1635
+ #: settings/settings-edit.php:355
1636
  msgid "Administrator/Editor/Author/Contributor"
1637
  msgstr "Administratör/Redigerare/Författare/Bidragsgivare"
1638
 
1639
  #: ../settings/settings-edit.php:313
1640
+ msgid "Templates Menu"
1641
+ msgstr "Meny för mallar"
1642
+
1643
+ #: ../settings/settings-edit.php:325
1644
  msgid "Post Notifications Menu"
1645
  msgstr "Meddelandemeny"
1646
 
1647
+ #: ../settings/settings-edit.php:349
1648
  msgid "Reports Menu"
1649
  msgstr "Rapportmeny"
1650
 
1651
+ #: ../settings/settings-edit.php:366
1652
  msgid "Cron job URL"
1653
  msgstr "Cron job URL"
1654
 
1655
+ #: ../settings/settings-edit.php:367
1656
  msgid ""
1657
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1658
  "modify it."
1659
  msgstr "Detta är ditt Cron job URL. Det är readonly och du bör inte ändra det."
1660
 
1661
+ #: ../settings/settings-edit.php:376
1662
  msgid "Email Count"
1663
  msgstr "Antal mail"
1664
 
1665
+ #: ../settings/settings-edit.php:377
1666
  msgid "Number of emails that you want to trigger per hour."
1667
+ msgstr "Antal mail du vill sända per timme."
1668
+
1669
+ #: ../settings/settings-edit.php:382
1670
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1671
+ msgstr "(Din mailleverantör har begränsningar. vi rekommenderar 50 per timme)"
1672
+
1673
+ #: ../settings/settings-edit.php:387
1674
+ msgid "Cron Report"
1675
+ msgstr "Cronrapport"
1676
+
1677
+ #: ../settings/settings-edit.php:388
1678
+ msgid ""
1679
+ "Email to admin whenever a cron URL is triggered from your server.<br "
1680
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1681
+ msgstr ""
1682
+ "Email till Admin när crom URL triggas av din server. <br />Available "
1683
+ "Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1684
 
1685
+ #: ../settings/settings-edit.php:398
1686
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1687
+ msgstr "Vad är Cron och hur görs inställningarna?"
1688
+
1689
+ #: ../settings/settings-edit.php:399
1690
+ msgid ""
1691
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1692
+ "schedule-cron-emails/?"
1693
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
1694
+ "Cron?</a>"
1695
+ msgstr ""
1696
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1697
+ "schedule-cron-emails/?"
1698
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Vad är "
1699
+ "Cron?</a>"
1700
+
1701
+ #: ../settings/settings-edit.php:400
1702
+ msgid ""
1703
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1704
+ "schedule-cron-emails-in-cpanel/?"
1705
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1706
+ "job in cPanel</a>"
1707
+ msgstr ""
1708
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1709
+ "schedule-cron-emails-in-cpanel/?"
1710
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Sät upp "
1711
+ "ett cronjobb i cPanel</a>"
1712
+
1713
+ #: ../settings/settings-edit.php:401
1714
+ msgid ""
1715
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1716
+ "schedule-cron-emails-in-parallels-plesk/?"
1717
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1718
+ "job in Plesk</a>"
1719
+ msgstr ""
1720
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1721
+ "schedule-cron-emails-in-parallels-plesk/?"
1722
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Sätt upp "
1723
+ "cron job i Plesk</a>"
1724
+
1725
+ #: ../settings/settings-edit.php:402
1726
+ msgid ""
1727
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1728
+ "if-hosting-doesnt-support-cron-jobs/?"
1729
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1730
+ "does not support cron jobs?</a>"
1731
+ msgstr ""
1732
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1733
+ "if-hosting-doesnt-support-cron-jobs/?"
1734
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1735
+ "stöder inte cron jobs?</a>"
1736
 
1737
+ #: ../settings/settings-edit.php:517
1738
  msgid "Please enter sender of notifications from name."
1739
+ msgstr "Ange namnet för notifieringens avsändare."
1740
 
1741
+ #: ../settings/settings-edit.php:522
1742
  msgid "Please enter sender of notifications from email."
1743
+ msgstr "Ange avsändarens mailadress på email för notifieringar."
1744
 
1745
+ #: ../settings/settings-edit.php:566
1746
+ msgid "Please enter valid email count."
1747
+ msgstr "Välj giltigt mailkonto."
1748
+
1749
+ #: ../settings/settings-edit.php:580
1750
  msgid "Settings Saved."
1751
+ msgstr "Inställningar sparade."
1752
 
1753
+ #: ../settings/settings-edit.php:583
1754
  msgid "Oops, unable to update."
1755
+ msgstr "Oups... Det går ej att uppdatera."
1756
 
1757
  #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1758
  #: php:54
1767
  msgid ""
1768
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1769
  "the group name."
1770
+ msgstr "Specialtecken (['^$%&*()}{@#~?><>,|=_+\\\"]) är inte tillåtna i gruppnamnet."
1771
 
1772
  #: ../subscribers/view-subscriber-add.php:69
1773
  msgid "Subscriber has been saved."
1774
+ msgstr "Prenumerant har sparats."
1775
 
1776
  #: ../subscribers/view-subscriber-add.php:71
1777
  msgid "Subscriber already exists."
1778
+ msgstr "Prenumerant finns redan."
1779
 
1780
  #: ../subscribers/view-subscriber-add.php:74
1781
  msgid "Invalid Email."
1782
  msgstr "Ogiltig epostadress."
1783
 
1784
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1785
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1786
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1787
  #: subscribers/view-subscriber-sync.php:89
1788
  msgid "Add New Subscriber"
1789
  msgstr "Lägg till ny prenumerant"
1790
 
1791
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1792
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1793
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1794
  #: subscribers/view-subscriber-sync.php:90
1795
  msgid "Import"
1802
  msgstr "Exportera"
1803
 
1804
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1805
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1806
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1807
  #: subscribers/view-subscriber-sync.php:143
1808
  msgid "Sync"
1814
 
1815
  #: ../subscribers/view-subscriber-add.php:137
1816
  msgid "Enter Subscriber's Email Address"
1817
+ msgstr "Ange prenumerantens epostadress"
1818
 
1819
  #: ../subscribers/view-subscriber-add.php:147
1820
  msgid "Select Subscriber's Status"
1853
 
1854
  #: ../subscribers/view-subscriber-edit.php:64
1855
  msgid "Error: Special characters are not allowed in the group name."
1856
+ msgstr "Fel. Specialtecken är inte tillåtna i gruppnamn."
1857
 
1858
  #: ../subscribers/view-subscriber-edit.php:74
1859
  msgid "Subscriber details updated."
1860
+ msgstr "Prenumerantuppgifter uppdaterade."
1861
 
1862
  #: ../subscribers/view-subscriber-edit.php:76
1863
  msgid "Subscriber already exists for this group."
1864
+ msgstr "Prenumerant finns redan i denna grupp."
1865
 
1866
  #: ../subscribers/view-subscriber-edit.php:108
1867
  msgid "Edit Subscriber"
1873
 
1874
  #: ../subscribers/view-subscriber-edit.php:132
1875
  msgid "Subscriber's Email Address"
1876
+ msgstr "Prenumerantens epostadress"
1877
 
1878
  #: ../subscribers/view-subscriber-edit.php:142
1879
  msgid "Update Subscriber's Status"
1883
  msgid "Update Subscriber's Group"
1884
  msgstr "Uppdatera prenumerantens grupp"
1885
 
1886
+ #: ../subscribers/view-subscriber-export.php:12
1887
+ msgid ""
1888
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
1889
+ "administrator can export subscriber list."
1890
+ msgstr ""
1891
+ "Oops! Det verkar som om du inte har administratörsbehörighet. <br><br> Bara "
1892
+ "administratörer kan exportera prenumerationslistor."
1893
+
1894
+ #: ../subscribers/view-subscriber-export.php:14
1895
+ msgid "Go back to Subscribers dashboard"
1896
+ msgstr "Återgår till Prenumerantsidan"
1897
+
1898
+ #: ../subscribers/view-subscriber-export.php:50
1899
  msgid "Export Email Addresses"
1900
  msgstr "Ecporteera epostadresser"
1901
 
1902
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1903
+ #: export.php:70
1904
  msgid "Type of List to Export"
1905
  msgstr "Typ av lista att exporteera"
1906
 
1907
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1908
+ #: export.php:71
1909
  msgid "Total Emails Count"
1910
  msgstr "Totalt antal email"
1911
 
1912
+ #: ../subscribers/view-subscriber-export.php:77
1913
  msgid "1"
1914
  msgstr "1"
1915
 
1916
+ #: ../subscribers/view-subscriber-export.php:78
1917
  msgid "All Subscribers"
1918
  msgstr "Lista över alla prenumeranter"
1919
 
1920
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1921
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1922
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1923
  msgid "Click to Export in CSV"
1924
  msgstr "Klicka för att exportera i CSV-format"
1925
 
1926
+ #: ../subscribers/view-subscriber-export.php:83
1927
  msgid "2"
1928
  msgstr "2"
1929
 
1930
+ #: ../subscribers/view-subscriber-export.php:84
1931
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1932
  msgstr "Aktiva prenumeranter (Status: Bekräftade och Single Opt In)"
1933
 
1934
+ #: ../subscribers/view-subscriber-export.php:89
1935
  msgid "3"
1936
  msgstr "3"
1937
 
1938
+ #: ../subscribers/view-subscriber-export.php:90
1939
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1940
  msgstr "Inaktiva prenumeranter (Status: Obekräftade & Icke-prenumeranter)"
1941
 
1942
+ #: ../subscribers/view-subscriber-export.php:95
1943
  msgid "4"
1944
  msgstr "4"
1945
 
1946
+ #: ../subscribers/view-subscriber-export.php:96
1947
  msgid "WordPress Registered Users"
1948
  msgstr "Användare registrerade i Wordpress"
1949
 
1950
+ #: ../subscribers/view-subscriber-export.php:101
1951
  msgid "5"
1952
  msgstr "5"
1953
 
1954
+ #: ../subscribers/view-subscriber-export.php:102
1955
  msgid "Commented Authors"
1956
  msgstr "Författarkommentarer"
1957
 
1963
 
1964
  #: ../subscribers/view-subscriber-import.php:95
1965
  msgid "email imported."
1966
+ msgstr "email importerade."
1967
 
1968
  #: ../subscribers/view-subscriber-import.php:96
1969
  msgid "email already exists."
1970
+ msgstr "email finns redan."
1971
 
1972
  #: ../subscribers/view-subscriber-import.php:97
1973
  msgid "email are invalid."
1974
+ msgstr "ogiltigt email."
1975
 
1976
  #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1977
  #: import.php:129
1981
  #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1982
  #: import.php:129
1983
  msgid " to view details."
1984
+ msgstr " för att se detaljer."
1985
 
1986
  #: ../subscribers/view-subscriber-import.php:108
1987
  msgid "File Upload Failed."
1988
+ msgstr "Uppladdning av fil misslyckades."
1989
 
1990
  #: ../subscribers/view-subscriber-import.php:145
1991
  msgid "Import Email Addresses"
1997
 
1998
  #: ../subscribers/view-subscriber-import.php:160
1999
  msgid "Check CSV structure "
2000
+ msgstr "Kontrollera CSV-strukturen "
2001
 
2002
  #: ../subscribers/view-subscriber-import.php:161
2003
  msgid "from here"
2013
 
2014
  #: ../subscribers/view-subscriber-show.php:45
2015
  msgid "Selected details does not exists."
2016
+ msgstr "Valet finns inte tillgängligt."
2017
 
2018
  #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
2019
  #: php:95
2020
  msgid "Record deleted."
2021
+ msgstr "Post raderad."
2022
 
2023
  #: ../subscribers/view-subscriber-show.php:67
2024
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
2025
  msgstr "För att sända bekräftelsemail, ändra Opt-In till Double Opt In."
2026
 
2027
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
2028
+ #: php:134
2029
+ msgid "Confirmation emails resent successfully."
2030
+ msgstr "Bekräftelsemail har just sänts."
2031
+
2032
  #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
2033
  #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
2034
  #: subscriber-show.php:217
2035
  msgid "No record was selected."
2036
+ msgstr "Inga poster har valts."
2037
 
2038
  #: ../subscribers/view-subscriber-show.php:115
2039
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
2041
 
2042
  #: ../subscribers/view-subscriber-show.php:164
2043
  msgid "Subscribers Group updated."
2044
+ msgstr "Prenumerationsgrupp uppdaterad."
2045
 
2046
  #: ../subscribers/view-subscriber-show.php:169
2047
  msgid "Please select New group to update."
2048
+ msgstr "Väj ny grupp att uppdatera."
2049
 
2050
  #: ../subscribers/view-subscriber-show.php:203
2051
  msgid "Subscribers Status updated."
2052
+ msgstr "Prenumeranternas status uppdaterad."
2053
 
2054
  #: ../subscribers/view-subscriber-show.php:208
2055
  msgid "Please select New Status to update."
2056
+ msgstr "VÄlj ny status att uppdatera."
2057
+
2058
+ #: ../subscribers/view-subscriber-show.php:256
2059
+ msgid "Total Subscribers: "
2060
+ msgstr "Totalt antal prenumeranter "
2061
 
2062
  #: ../subscribers/view-subscriber-show.php:258
2063
  #, php-format
2085
  msgid "Resend Confirmation"
2086
  msgstr "Sänd bekräftelsen igen"
2087
 
2088
+ #: ../subscribers/view-subscriber-show.php:303
2089
+ msgid "Update Subscribers Group"
2090
+ msgstr "Vill du uppdatera prenumerantgruppen"
2091
+
2092
  #: ../subscribers/view-subscriber-show.php:304
2093
  msgid "Update Subscribers Status"
2094
  msgstr "Uppdatera prenumeranternas status"
2147
 
2148
  #: ../subscribers/view-subscriber-sync.php:36
2149
  msgid "Please select default group to newly registered user."
2150
+ msgstr "Välj grupp för nyregistrerade prenumeranter."
2151
 
2152
  #: ../subscribers/view-subscriber-sync.php:50
2153
  msgid "Emails Successfully Synced."
2154
+ msgstr "Email synkroniserade."
2155
 
2156
  #: ../subscribers/view-subscriber-sync.php:88
2157
  msgid "Sync Email"
2165
  msgid "Select group to add newly registered users to"
2166
  msgstr "Välj grupp som nyregistrerade ska tillhöra"
2167
 
2168
+ #: ../templates/template-preview.php:32
2169
+ msgid "Template Preview"
2170
+ msgstr "Förhandsvisa mallar"
2171
+
2172
+ #: ../templates/template-preview.php:40
2173
+ msgid "This is how your email may look."
2174
+ msgstr "Så här kommer ditt email att se ut."
2175
+
2176
+ #: ../templates/template-preview.php:42
2177
+ msgid ""
2178
+ "<br><br>This Post Notification preview has replaced keywords from your last "
2179
+ "published blog post."
2180
+ msgstr ""
2181
+ "<br><br>Dennna notifiering ar ersatt nyckelord från ditt senast publicerade "
2182
+ "blogginlägg."
2183
+
2184
+ #: ../templates/template-preview.php:44
2185
+ msgid ""
2186
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
2187
+ "content differently. So there could be a slight variation on how your "
2188
+ "customer will view the email content."
2189
+ msgstr ""
2190
+ "<br><br>OBS: Olika mailsystem (som Gmail, Yahoo etc) visar innehållet på "
2191
+ "olika sätt. Det kan därmed uppstår en mindre variation på hur ditt mail "
2192
+ "upplevs beroende på mottagarens mailsystem."
2193
+
2194
  #. Plugin Name of the plugin/theme
2195
  msgid "Email Subscribers & Newsletters"
2196
  msgstr "Email Subscribers & Newsletters"
2197
 
2198
+ #. URI of the plugin
2199
+ msgid "https://www.icegram.com"
2200
+ msgstr "https://www.icegram.com"
2201
+
2202
  #. Description of the plugin/theme
2203
  msgid ""
2204
  "Add subscription forms on website, send HTML newsletters & automatically "
2205
  "notify subscribers about new blog posts once it is published."
2206
  msgstr ""
2207
  "Lägg till prenumerationsformulär på webbplatsen, sänd HTML-nyhetsbrev och "
2208
+ "meddela prenumeranterna automatiskt när en ny bloggpost publiceras."
2209
+
2210
+ #: ../email-subscribers.php:95
2211
+ msgctxt "timezone date format"
2212
+ msgid "Y-m-d H:i:s"
2213
+ msgstr "Y-m-d H:i:s"
languages/email-subscribers-tr_TR.mo CHANGED
Binary file
languages/email-subscribers-tr_TR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\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 Jun 18 2018 16:43:03 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Turkish\n"
10
  "Plural-Forms: nplurals=1; plural=0\n"
@@ -23,33 +23,29 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:727
26
- msgid "Check Pro plan"
27
- msgstr ""
28
-
29
- #: ../classes/es-register.php:765
30
  msgid ""
31
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
32
- "Checkbox' in the subscription form.</b>"
33
  msgstr ""
34
 
35
- #: ../classes/es-register.php:766
36
- msgid "Steps to enable"
37
  msgstr ""
38
 
39
- #: ../classes/es-register.php:766
40
- msgid "Ok, got it"
41
  msgstr ""
42
 
43
- #: ../classes/es-register.php:936
44
  #, php-format
45
  msgid "%s for Post Notification: {{POSTTITLE}}"
46
  msgstr ""
47
 
48
- #: ../classes/es-register.php:936
49
  msgid "Available Keyword"
50
  msgstr ""
51
 
52
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
53
  #, php-format
54
  msgid ""
55
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -57,7 +53,7 @@ msgid ""
57
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
58
  msgstr ""
59
 
60
- #: ../classes/es-register.php:1038
61
  #, php-format
62
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
63
  msgstr ""
@@ -97,6 +93,11 @@ msgstr ""
97
  msgid "What data Email Subscribers - Group Selector stores on your end?"
98
  msgstr ""
99
 
 
 
 
 
 
100
  #: ../sentmail/sentmail-show.php:212
101
  msgid ""
102
  "<strong>Note:</strong> If you delete record for the emails with Status = "
@@ -104,7 +105,7 @@ msgid ""
104
  "deleted too and email will not be sent."
105
  msgstr ""
106
 
107
- #: ../settings/settings-edit.php:554
108
  msgid "Please enter valid email count."
109
  msgstr ""
110
 
@@ -159,7 +160,7 @@ msgstr "<span style=\"color:#993399;\">Acilen</span>"
159
 
160
  #. Name of the plugin
161
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
162
- #: register.php:826
163
  msgid "Email Subscribers"
164
  msgstr "Email Subscribers"
165
 
@@ -169,7 +170,7 @@ msgid "Subscribers"
169
  msgstr "Aboneler"
170
 
171
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
172
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
173
  msgid "Templates"
174
  msgstr "Şablonlar"
175
 
@@ -179,7 +180,7 @@ msgid "Post Notifications"
179
  msgstr "Gönderi Bildirimleri"
180
 
181
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
182
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
183
  msgid "Newsletters"
184
  msgstr "Bültenler"
185
 
@@ -371,19 +372,7 @@ msgctxt "widget-page-enhanced-select"
371
  msgid "Please try after some time"
372
  msgstr "Biraz sonra tekrar deneyiniz"
373
 
374
- #: ../classes/es-register.php:726
375
- msgid ""
376
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
377
- "subscribers list?</b> Come check our Pro plan."
378
- msgstr ""
379
- "<b>Hazır eposta şablonu mu istiyorsunuz?</b> Veya, <b>abone listesini "
380
- "temizlemek mi?</b> Hadi o zaman Pro lisansa göz atın."
381
-
382
- #: ../classes/es-register.php:727
383
- msgid "Not interested."
384
- msgstr "İlgilenmiyor."
385
-
386
- #: ../classes/es-register.php:791
387
  msgid ""
388
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
389
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -395,125 +384,125 @@ msgstr ""
395
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
396
  "</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
397
 
398
- #: ../classes/es-register.php:805
399
  #, php-format
400
  msgid "Email Subscribers version: <strong>%s</strong>"
401
  msgstr "Eposta Abone versiyonu: <strong>%s</strong>"
402
 
403
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
404
  msgid "Add new Template"
405
  msgstr "Yeni Şablon Ekle"
406
 
407
- #: ../classes/es-register.php:818
408
  msgid "Edit Templates"
409
  msgstr "Şablon Düzenle"
410
 
411
- #: ../classes/es-register.php:819
412
  msgid "New Templates"
413
  msgstr "Yeni Şablon"
414
 
415
- #: ../classes/es-register.php:821
416
  msgid "View Templates"
417
  msgstr "Şablon Görüntüle"
418
 
419
- #: ../classes/es-register.php:822
420
  msgid "Search Templates"
421
  msgstr "Şablon Ara"
422
 
423
- #: ../classes/es-register.php:823
424
  msgid "No Templates found"
425
  msgstr "Şablon bulunamadı"
426
 
427
- #: ../classes/es-register.php:824
428
  msgid "No Templates found in Trash"
429
  msgstr "Çöp kutusunda şablon bulunamadı"
430
 
431
- #: ../classes/es-register.php:827
432
  msgid "Thumbnail (For Visual Representation only)"
433
  msgstr "Küçük resim(Sadece görseli sunum için)"
434
 
435
- #: ../classes/es-register.php:828
436
  msgid "Set thumbnail"
437
  msgstr "Küçük resim ayarla"
438
 
439
- #: ../classes/es-register.php:865
440
  msgid "Template Type"
441
  msgstr "ŞAblon Tipi"
442
 
443
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
444
  msgid "Thumbnail"
445
  msgstr "Küçük Boy"
446
 
447
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
448
  #: sentmail/sentmail-show.php:121
449
  msgid "Preview"
450
  msgstr "Önizleme"
451
 
452
- #: ../classes/es-register.php:943
453
  msgid "Select your Email Template Type"
454
  msgstr "Şablon Tipini Seçiniz"
455
 
456
- #: ../classes/es-register.php:945
457
  msgid "Newsletter"
458
  msgstr "Bülten"
459
 
460
- #: ../classes/es-register.php:946
461
  msgid "Post Notification"
462
  msgstr "Gönderi Bildirimi"
463
 
464
- #: ../classes/es-register.php:995
465
  msgid "Preview Template"
466
  msgstr "Şablon Önizleme"
467
 
468
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
469
- #: register.php:1030 ../classes/es-register.php:1038
470
  msgid "Available Keywords"
471
  msgstr "Mevcut Anahtar Kelimeler"
472
 
473
- #: ../classes/es-register.php:1015
474
  #, php-format
475
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
476
  msgstr "<br/><br/>%s - Bülten İçin: {{NAME}}, {{EMAIL}}"
477
 
478
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
479
  msgid "Name"
480
  msgstr "Adınız"
481
 
482
- #: ../classes/es-register.php:1080
483
  msgid "Email *"
484
  msgstr "E-posta Adresiniz*"
485
 
486
- #: ../classes/es-register.php:1089 ../help/help.php:202
487
  msgid "Subscribe"
488
  msgstr "Üye Ol"
489
 
490
- #: ../classes/es-register.php:1193
491
  msgid "Widget Title"
492
  msgstr "Bileşen Adı"
493
 
494
- #: ../classes/es-register.php:1197
495
  msgid "Short description about subscription form"
496
  msgstr "Abone formu hakkında kısa açıklama"
497
 
498
- #: ../classes/es-register.php:1201
499
  msgid "Display Name Field"
500
  msgstr "İsim Alanını Göster"
501
 
502
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
503
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
504
  msgid "YES"
505
  msgstr "EVET"
506
 
507
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
508
- #: settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
509
  msgid "NO"
510
  msgstr "HAYIR"
511
 
512
- #: ../classes/es-register.php:1208
513
  msgid "Subscriber Group"
514
  msgstr "Abone Grubu"
515
 
516
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
517
  msgid "Unexpected url submit has been detected!"
518
  msgstr "Beklenmeyen URL gönderimi tespit edildi!"
519
 
@@ -918,8 +907,8 @@ msgstr ""
918
  msgid "add Rainmaker’s form in Email Subscribers"
919
  msgstr "Rainmaker formunu Email Subscribers içine ekle"
920
 
921
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
922
- #: job/es-unsubscribe.php:61
923
  msgid ""
924
  "Oops.. We are getting some technical error. Please try again or contact "
925
  "admin."
@@ -927,7 +916,7 @@ msgstr ""
927
  "Afedersiniz.. Teknik bir sorun yaşıyoruz. Lütfen tekrar deneyin veya site "
928
  "yönetimine E-posta gönderin."
929
 
930
- #: ../job/es-optin.php:61
931
  msgid "This email address has already been confirmed."
932
  msgstr "E-Posta adresi seçilmedi."
933
 
@@ -962,16 +951,12 @@ msgstr "Bildirim Ekle"
962
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
963
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
964
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
965
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
966
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
967
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
968
  msgid "Help"
969
  msgstr "Yardım"
970
 
971
- #: ../notification/notification-add.php:121
972
- msgid "Select Subscribers Group"
973
- msgstr "Üye Grubunu Seçiniz"
974
-
975
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
976
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
977
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
@@ -1073,11 +1058,6 @@ msgstr "Bildirim Düzeltme"
1073
  msgid "Add New"
1074
  msgstr "Yeni Ekle"
1075
 
1076
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1077
- #: php:303
1078
- msgid "Update Subscribers Group"
1079
- msgstr "Abone Grubunu Güncelle"
1080
-
1081
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1082
  msgid "Selected record deleted."
1083
  msgstr "Seçilen kayıt silindi."
@@ -1219,8 +1199,8 @@ msgid "Delivery Report"
1219
  msgstr "Teslimat Raporu"
1220
 
1221
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1222
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1223
- #: export.php:66
1224
  msgid "Sno"
1225
  msgstr "Sıra"
1226
 
@@ -1299,8 +1279,8 @@ msgid "Total"
1299
  msgstr "Toplam"
1300
 
1301
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1302
- #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1303
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1304
  msgid "Action"
1305
  msgstr "Eylem"
1306
 
@@ -1533,7 +1513,7 @@ msgstr "Çift Onay Doğrulama Bağlantısı"
1533
  msgid "It is a readonly field and you are advised not to modify it."
1534
  msgstr "Bu sadece okunabilir bir alandır ve düzenleme yapılmaması önerilir."
1535
 
1536
- #: ../settings/settings-edit.php:205
1537
  msgid ""
1538
  "Text to display after an email address is successfully subscribed from "
1539
  "Double Opt-In (Confirmation) Email"
@@ -1541,17 +1521,17 @@ msgstr ""
1541
  "E-posta adresinin Çift Onay E-postası'ndan başarıyla abone olduktan sonra "
1542
  "görüntülenecek metin"
1543
 
1544
- #: ../settings/settings-edit.php:206
1545
  msgid ""
1546
  "This text will be displayed once user clicks on email confirmation link from "
1547
  "the Double Opt In (confirmation) Email."
1548
  msgstr "Bu mesaj, ikinci onayda aboneler onay linkine tıkladığı zaman gösterilecek."
1549
 
1550
- #: ../settings/settings-edit.php:213
1551
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1552
  msgstr "Kayıt olduktan sonra Yeni Abonelere Hoş Geldiniz E-postası gönderilsin mi?"
1553
 
1554
- #: ../settings/settings-edit.php:214
1555
  msgid ""
1556
  "To send welcome email to subscriber after successful signup. This option "
1557
  "must be set to YES."
@@ -1559,11 +1539,11 @@ msgstr ""
1559
  "Başarılı bir kayıt yapıldıktan sonra Hoşgeldin Mesajı göndermek için bu "
1560
  "seçenek EVET olarak seçilmelidir."
1561
 
1562
- #: ../settings/settings-edit.php:225
1563
  msgid "Subject for Welcome Email"
1564
  msgstr "Hoş Geldiniz E-postası Konusu"
1565
 
1566
- #: ../settings/settings-edit.php:226
1567
  msgid ""
1568
  "Subject for the subscriber welcome email. This will be sent whenever a "
1569
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1573,11 +1553,11 @@ msgstr ""
1573
  "onaylandığında (Çift Onay varsa) / abone olduğunda (Tek Onaylı ise) "
1574
  "başarıyla gönderildiğinde gönderilir."
1575
 
1576
- #: ../settings/settings-edit.php:232
1577
  msgid "Email Content for Welcome Email"
1578
  msgstr "Karşılama E-postası için E-posta İçeriği"
1579
 
1580
- #: ../settings/settings-edit.php:233
1581
  msgid ""
1582
  "Content for the subscriber welcome email whenever a user's email is either "
1583
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1587,11 +1567,11 @@ msgstr ""
1587
  "(Tek Onaylı ise) başarıyla abone olduğunda abone karşılama e-postası içeriği."
1588
  " <br /> Kullanılabilir Anahtar Kelimeler: {{NAME}}, {{GROUP}}, {{ LİNK}}"
1589
 
1590
- #: ../settings/settings-edit.php:241
1591
  msgid "Unsubscribe Link"
1592
  msgstr "Üyelikten Ayrıl Linki"
1593
 
1594
- #: ../settings/settings-edit.php:242
1595
  msgid ""
1596
  "This unsubscribe link is automatically added to all the emails that are sent "
1597
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1601,11 +1581,11 @@ msgstr ""
1601
  "otomatik olarak eklenir. Bu bir salt okunur alan ve onu değiştirmemeniz "
1602
  "tavsiye edilir."
1603
 
1604
- #: ../settings/settings-edit.php:248
1605
  msgid "Unsubscribe Text in Email"
1606
  msgstr "E-postada Üyelikten Ayrıl Yazısı"
1607
 
1608
- #: ../settings/settings-edit.php:249
1609
  msgid ""
1610
  "The text for the unsubscribe link. This text is automatically added with "
1611
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1614,11 +1594,11 @@ msgstr ""
1614
  "bağlantısıyla otomatik olarak eklenir. <br /> Kullanılabilir Anahtar Kelime: "
1615
  "{{LINK}}"
1616
 
1617
- #: ../settings/settings-edit.php:255
1618
  msgid "Text to display after an email address is unsubscribed"
1619
  msgstr "Bir e-posta üyeliği sonlandırıldığında gösterilecek mesaj."
1620
 
1621
- #: ../settings/settings-edit.php:256
1622
  msgid ""
1623
  "This text will be displayed once user clicks on unsubscribe link from the "
1624
  "email."
@@ -1626,11 +1606,11 @@ msgstr ""
1626
  "Bu metin, kullanıcı e-postadan abonelikten çık bağlantısını tıklayarak bir "
1627
  "kez görüntülenir."
1628
 
1629
- #: ../settings/settings-edit.php:263
1630
  msgid "Error in the Subscribe / Confirmation Link"
1631
  msgstr "Abone / Onay Bağlantısında Hata"
1632
 
1633
- #: ../settings/settings-edit.php:264
1634
  msgid ""
1635
  "Default message to display if there is any issue while clicking on subscribe "
1636
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1638,11 +1618,11 @@ msgstr ""
1638
  "Çift Onay e-postalarından abonelik veya onay bağlantısına tıklarken herhangi "
1639
  "bir sorun varsa, görüntülenecek varsayılan mesaj."
1640
 
1641
- #: ../settings/settings-edit.php:270
1642
  msgid "Error in the Unsubscribe Link"
1643
  msgstr "\"Üyelikten Ayrıl\" Linkinde Hata"
1644
 
1645
- #: ../settings/settings-edit.php:271
1646
  msgid ""
1647
  "Default message to display if there is any issue while clicking on "
1648
  "unsubscribe link from the emails."
@@ -1650,51 +1630,51 @@ msgstr ""
1650
  "E-postalardan aboneliğinizi iptal et bağlantısına tıklarken herhangi bir "
1651
  "sorun olduğunda görüntülenecek varsayılan mesaj."
1652
 
1653
- #: ../settings/settings-edit.php:283
1654
  msgid "Select user roles who can access following menus. Only Admin can change this."
1655
  msgstr ""
1656
  "Aşağıdaki menülere girebilecek kullanıcı yetkilerini seçiniz. Bunu sadece "
1657
  "yönetici değiştirebilir."
1658
 
1659
- #: ../settings/settings-edit.php:289
1660
  msgid "Subscribers Menu"
1661
  msgstr "Aboneler Menüsü"
1662
 
1663
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1664
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1665
- #: settings/settings-edit.php:341
1666
  msgid "Administrator Only"
1667
  msgstr "Sadece Yönetici"
1668
 
1669
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1670
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1671
- #: settings/settings-edit.php:342
1672
  msgid "Administrator/Editor"
1673
  msgstr "Yönetici/Editör"
1674
 
1675
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1676
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1677
- #: settings/settings-edit.php:343
1678
  msgid "Administrator/Editor/Author/Contributor"
1679
  msgstr "Yönetici/Editör/Yazar/Katılımcı"
1680
 
1681
- #: ../settings/settings-edit.php:301
1682
  msgid "Templates Menu"
1683
  msgstr "Şablon Menüsü"
1684
 
1685
- #: ../settings/settings-edit.php:313
1686
  msgid "Post Notifications Menu"
1687
  msgstr "Gönderi Bildirim Menüsü"
1688
 
1689
- #: ../settings/settings-edit.php:337
1690
  msgid "Reports Menu"
1691
  msgstr "Raporlar Menüsü"
1692
 
1693
- #: ../settings/settings-edit.php:354
1694
  msgid "Cron job URL"
1695
  msgstr "Planlanmış gönderim URL"
1696
 
1697
- #: ../settings/settings-edit.php:355
1698
  msgid ""
1699
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1700
  "modify it."
@@ -1702,25 +1682,25 @@ msgstr ""
1702
  "Bu sizin planlanmış gönderi URL adresinizdir. Bu alan okunabilir bir alandır "
1703
  "ve düzenleme yapılmaması önerilir."
1704
 
1705
- #: ../settings/settings-edit.php:364
1706
  msgid "Email Count"
1707
  msgstr "E-posta sayısı"
1708
 
1709
- #: ../settings/settings-edit.php:365
1710
  msgid "Number of emails that you want to trigger per hour."
1711
  msgstr "Her saat bildirim yapmak istediğiniz e-postaların adedi"
1712
 
1713
- #: ../settings/settings-edit.php:370
1714
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1715
  msgstr ""
1716
  "(Hosting panelinizin limitleri var. Her saat için 50 eposta gönderimini "
1717
  "öneriyoruz.)"
1718
 
1719
- #: ../settings/settings-edit.php:375
1720
  msgid "Cron Report"
1721
  msgstr "Planlanmış İş (CRON) Raporu"
1722
 
1723
- #: ../settings/settings-edit.php:376
1724
  msgid ""
1725
  "Email to admin whenever a cron URL is triggered from your server.<br "
1726
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1729,11 +1709,11 @@ msgstr ""
1729
  "eposta gönder. <br />Kullanılabilir Anahtar Kelimeler: {{DATE}}, {{SUBJECT}},"
1730
  " {{COUNT}}"
1731
 
1732
- #: ../settings/settings-edit.php:386
1733
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1734
  msgstr "Planlanmış gönderi (Cron / Otomatik e-postalar) nedir ve nasıl ayarlanır?"
1735
 
1736
- #: ../settings/settings-edit.php:387
1737
  msgid ""
1738
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1739
  "schedule-cron-emails/?"
@@ -1745,7 +1725,7 @@ msgstr ""
1745
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Planlanmış "
1746
  "iş (CRON) nedir?</a>"
1747
 
1748
- #: ../settings/settings-edit.php:388
1749
  msgid ""
1750
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1751
  "schedule-cron-emails-in-cpanel/?"
@@ -1757,7 +1737,7 @@ msgstr ""
1757
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cpanel "
1758
  "için planlanmış iş (CRON) ayarı.</a>"
1759
 
1760
- #: ../settings/settings-edit.php:389
1761
  msgid ""
1762
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1763
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1769,7 +1749,7 @@ msgstr ""
1769
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\"> Plesk "
1770
  "için planlanmış iş (CRON) ayarı.</a>"
1771
 
1772
- #: ../settings/settings-edit.php:390
1773
  msgid ""
1774
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1775
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1781,19 +1761,19 @@ msgstr ""
1781
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1782
  "firmanız planlanmış işlere (CRON) izin veriyor mu?</a>"
1783
 
1784
- #: ../settings/settings-edit.php:505
1785
  msgid "Please enter sender of notifications from name."
1786
  msgstr "Bildirimlerin hangi isimden gönderileceğini giriniz."
1787
 
1788
- #: ../settings/settings-edit.php:510
1789
  msgid "Please enter sender of notifications from email."
1790
  msgstr "Bildirimlerin hangi E-Posta adresinden gönderileceğini giriniz."
1791
 
1792
- #: ../settings/settings-edit.php:568
1793
  msgid "Settings Saved."
1794
  msgstr "Ayarlar Kaydedildi."
1795
 
1796
- #: ../settings/settings-edit.php:571
1797
  msgid "Oops, unable to update."
1798
  msgstr "Bir dakika, güncelleme yapılamadı."
1799
 
@@ -1827,14 +1807,14 @@ msgid "Invalid Email."
1827
  msgstr "Geçersiz E-posta."
1828
 
1829
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1830
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1831
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1832
  #: subscribers/view-subscriber-sync.php:89
1833
  msgid "Add New Subscriber"
1834
  msgstr "Yeni Abone Ekle"
1835
 
1836
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1837
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1838
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1839
  #: subscribers/view-subscriber-sync.php:90
1840
  msgid "Import"
@@ -1847,7 +1827,7 @@ msgid "Export"
1847
  msgstr "Dışarı Aktar"
1848
 
1849
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1850
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1851
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1852
  #: subscribers/view-subscriber-sync.php:143
1853
  msgid "Sync"
@@ -1940,63 +1920,63 @@ msgstr ""
1940
  msgid "Go back to Subscribers dashboard"
1941
  msgstr "Abone listesine geri dön"
1942
 
1943
- #: ../subscribers/view-subscriber-export.php:47
1944
  msgid "Export Email Addresses"
1945
  msgstr "E-posta Adreslerini Dışarı Aktar"
1946
 
1947
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1948
- #: export.php:67
1949
  msgid "Type of List to Export"
1950
  msgstr "Dışarı Aktarım için Liste Tipi"
1951
 
1952
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1953
- #: export.php:68
1954
  msgid "Total Emails Count"
1955
  msgstr "Toplam E-posta Sayısı"
1956
 
1957
- #: ../subscribers/view-subscriber-export.php:74
1958
  msgid "1"
1959
  msgstr "1"
1960
 
1961
- #: ../subscribers/view-subscriber-export.php:75
1962
  msgid "All Subscribers"
1963
  msgstr "Tüm Aboneler"
1964
 
1965
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1966
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1967
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1968
  msgid "Click to Export in CSV"
1969
  msgstr "CSV olarak Dışarı Aktarmak için Tıklayınız."
1970
 
1971
- #: ../subscribers/view-subscriber-export.php:80
1972
  msgid "2"
1973
  msgstr "2"
1974
 
1975
- #: ../subscribers/view-subscriber-export.php:81
1976
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1977
  msgstr "Aktif Aboneler (Durum: Onaylı & Tek Onaylı)"
1978
 
1979
- #: ../subscribers/view-subscriber-export.php:86
1980
  msgid "3"
1981
  msgstr "3"
1982
 
1983
- #: ../subscribers/view-subscriber-export.php:87
1984
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1985
  msgstr "Pasif Aboneler (Durum: Onaylanmamış & Üyelikten Çıkarılmamış)"
1986
 
1987
- #: ../subscribers/view-subscriber-export.php:92
1988
  msgid "4"
1989
  msgstr "4"
1990
 
1991
- #: ../subscribers/view-subscriber-export.php:93
1992
  msgid "WordPress Registered Users"
1993
  msgstr "Wordpress Kayıtlı Kullanıcılar"
1994
 
1995
- #: ../subscribers/view-subscriber-export.php:98
1996
  msgid "5"
1997
  msgstr "5"
1998
 
1999
- #: ../subscribers/view-subscriber-export.php:99
2000
  msgid "Commented Authors"
2001
  msgstr "Yorum Yapan Yazarlar"
2002
 
@@ -2136,6 +2116,10 @@ msgstr "Toplu Eylemler"
2136
  msgid "Resend Confirmation"
2137
  msgstr "Yeniden Onay Gönder"
2138
 
 
 
 
 
2139
  #: ../subscribers/view-subscriber-show.php:304
2140
  msgid "Update Subscribers Status"
2141
  msgstr "Abonelerin Durumunu Güncelle"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\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 Jul 02 2018 10:53:55 GMT+0530 (IST)\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Turkish\n"
10
  "Plural-Forms: nplurals=1; plural=0\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
  #: ../classes/es-register.php:727
 
 
 
 
26
  msgid ""
27
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
28
+ "</b>"
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:728
32
+ msgid "Here's how"
33
  msgstr ""
34
 
35
+ #: ../classes/es-register.php:728
36
+ msgid "Not interested. Dismiss this."
37
  msgstr ""
38
 
39
+ #: ../classes/es-register.php:900
40
  #, php-format
41
  msgid "%s for Post Notification: {{POSTTITLE}}"
42
  msgstr ""
43
 
44
+ #: ../classes/es-register.php:900
45
  msgid "Available Keyword"
46
  msgstr ""
47
 
48
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
49
  #, php-format
50
  msgid ""
51
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
53
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
54
  msgstr ""
55
 
56
+ #: ../classes/es-register.php:1002
57
  #, php-format
58
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
59
  msgstr ""
93
  msgid "What data Email Subscribers - Group Selector stores on your end?"
94
  msgstr ""
95
 
96
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
97
+ #: 132
98
+ msgid "Subscribers Group to send post notification to"
99
+ msgstr ""
100
+
101
  #: ../sentmail/sentmail-show.php:212
102
  msgid ""
103
  "<strong>Note:</strong> If you delete record for the emails with Status = "
105
  "deleted too and email will not be sent."
106
  msgstr ""
107
 
108
+ #: ../settings/settings-edit.php:566
109
  msgid "Please enter valid email count."
110
  msgstr ""
111
 
160
 
161
  #. Name of the plugin
162
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
163
+ #: register.php:788
164
  msgid "Email Subscribers"
165
  msgstr "Email Subscribers"
166
 
170
  msgstr "Aboneler"
171
 
172
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
173
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
174
  msgid "Templates"
175
  msgstr "Şablonlar"
176
 
180
  msgstr "Gönderi Bildirimleri"
181
 
182
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
183
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
184
  msgid "Newsletters"
185
  msgstr "Bültenler"
186
 
372
  msgid "Please try after some time"
373
  msgstr "Biraz sonra tekrar deneyiniz"
374
 
375
+ #: ../classes/es-register.php:753
 
 
 
 
 
 
 
 
 
 
 
 
376
  msgid ""
377
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
378
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
384
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
385
  "</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
386
 
387
+ #: ../classes/es-register.php:767
388
  #, php-format
389
  msgid "Email Subscribers version: <strong>%s</strong>"
390
  msgstr "Eposta Abone versiyonu: <strong>%s</strong>"
391
 
392
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
393
  msgid "Add new Template"
394
  msgstr "Yeni Şablon Ekle"
395
 
396
+ #: ../classes/es-register.php:780
397
  msgid "Edit Templates"
398
  msgstr "Şablon Düzenle"
399
 
400
+ #: ../classes/es-register.php:781
401
  msgid "New Templates"
402
  msgstr "Yeni Şablon"
403
 
404
+ #: ../classes/es-register.php:783
405
  msgid "View Templates"
406
  msgstr "Şablon Görüntüle"
407
 
408
+ #: ../classes/es-register.php:784
409
  msgid "Search Templates"
410
  msgstr "Şablon Ara"
411
 
412
+ #: ../classes/es-register.php:785
413
  msgid "No Templates found"
414
  msgstr "Şablon bulunamadı"
415
 
416
+ #: ../classes/es-register.php:786
417
  msgid "No Templates found in Trash"
418
  msgstr "Çöp kutusunda şablon bulunamadı"
419
 
420
+ #: ../classes/es-register.php:789
421
  msgid "Thumbnail (For Visual Representation only)"
422
  msgstr "Küçük resim(Sadece görseli sunum için)"
423
 
424
+ #: ../classes/es-register.php:790
425
  msgid "Set thumbnail"
426
  msgstr "Küçük resim ayarla"
427
 
428
+ #: ../classes/es-register.php:827
429
  msgid "Template Type"
430
  msgstr "ŞAblon Tipi"
431
 
432
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
433
  msgid "Thumbnail"
434
  msgstr "Küçük Boy"
435
 
436
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
437
  #: sentmail/sentmail-show.php:121
438
  msgid "Preview"
439
  msgstr "Önizleme"
440
 
441
+ #: ../classes/es-register.php:907
442
  msgid "Select your Email Template Type"
443
  msgstr "Şablon Tipini Seçiniz"
444
 
445
+ #: ../classes/es-register.php:909
446
  msgid "Newsletter"
447
  msgstr "Bülten"
448
 
449
+ #: ../classes/es-register.php:910
450
  msgid "Post Notification"
451
  msgstr "Gönderi Bildirimi"
452
 
453
+ #: ../classes/es-register.php:959
454
  msgid "Preview Template"
455
  msgstr "Şablon Önizleme"
456
 
457
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
458
+ #: register.php:994 ../classes/es-register.php:1002
459
  msgid "Available Keywords"
460
  msgstr "Mevcut Anahtar Kelimeler"
461
 
462
+ #: ../classes/es-register.php:979
463
  #, php-format
464
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
465
  msgstr "<br/><br/>%s - Bülten İçin: {{NAME}}, {{EMAIL}}"
466
 
467
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
468
  msgid "Name"
469
  msgstr "Adınız"
470
 
471
+ #: ../classes/es-register.php:1044
472
  msgid "Email *"
473
  msgstr "E-posta Adresiniz*"
474
 
475
+ #: ../classes/es-register.php:1053 ../help/help.php:202
476
  msgid "Subscribe"
477
  msgstr "Üye Ol"
478
 
479
+ #: ../classes/es-register.php:1157
480
  msgid "Widget Title"
481
  msgstr "Bileşen Adı"
482
 
483
+ #: ../classes/es-register.php:1161
484
  msgid "Short description about subscription form"
485
  msgstr "Abone formu hakkında kısa açıklama"
486
 
487
+ #: ../classes/es-register.php:1165
488
  msgid "Display Name Field"
489
  msgstr "İsim Alanını Göster"
490
 
491
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
492
+ #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
493
  msgid "YES"
494
  msgstr "EVET"
495
 
496
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
497
+ #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
498
  msgid "NO"
499
  msgstr "HAYIR"
500
 
501
+ #: ../classes/es-register.php:1172
502
  msgid "Subscriber Group"
503
  msgstr "Abone Grubu"
504
 
505
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
506
  msgid "Unexpected url submit has been detected!"
507
  msgstr "Beklenmeyen URL gönderimi tespit edildi!"
508
 
907
  msgid "add Rainmaker’s form in Email Subscribers"
908
  msgstr "Rainmaker formunu Email Subscribers içine ekle"
909
 
910
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
911
+ #: job/es-unsubscribe.php:62
912
  msgid ""
913
  "Oops.. We are getting some technical error. Please try again or contact "
914
  "admin."
916
  "Afedersiniz.. Teknik bir sorun yaşıyoruz. Lütfen tekrar deneyin veya site "
917
  "yönetimine E-posta gönderin."
918
 
919
+ #: ../job/es-optin.php:62
920
  msgid "This email address has already been confirmed."
921
  msgstr "E-Posta adresi seçilmedi."
922
 
951
  #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
952
  #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
953
  #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
954
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
955
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
956
  #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
957
  msgid "Help"
958
  msgstr "Yardım"
959
 
 
 
 
 
960
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
961
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
962
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1058
  msgid "Add New"
1059
  msgstr "Yeni Ekle"
1060
 
 
 
 
 
 
1061
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1062
  msgid "Selected record deleted."
1063
  msgstr "Seçilen kayıt silindi."
1199
  msgstr "Teslimat Raporu"
1200
 
1201
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1202
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1203
+ #: export.php:69
1204
  msgid "Sno"
1205
  msgstr "Sıra"
1206
 
1279
  msgstr "Toplam"
1280
 
1281
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1282
+ #: subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1283
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1284
  msgid "Action"
1285
  msgstr "Eylem"
1286
 
1513
  msgid "It is a readonly field and you are advised not to modify it."
1514
  msgstr "Bu sadece okunabilir bir alandır ve düzenleme yapılmaması önerilir."
1515
 
1516
+ #: ../settings/settings-edit.php:206
1517
  msgid ""
1518
  "Text to display after an email address is successfully subscribed from "
1519
  "Double Opt-In (Confirmation) Email"
1521
  "E-posta adresinin Çift Onay E-postası'ndan başarıyla abone olduktan sonra "
1522
  "görüntülenecek metin"
1523
 
1524
+ #: ../settings/settings-edit.php:207
1525
  msgid ""
1526
  "This text will be displayed once user clicks on email confirmation link from "
1527
  "the Double Opt In (confirmation) Email."
1528
  msgstr "Bu mesaj, ikinci onayda aboneler onay linkine tıkladığı zaman gösterilecek."
1529
 
1530
+ #: ../settings/settings-edit.php:219
1531
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1532
  msgstr "Kayıt olduktan sonra Yeni Abonelere Hoş Geldiniz E-postası gönderilsin mi?"
1533
 
1534
+ #: ../settings/settings-edit.php:220
1535
  msgid ""
1536
  "To send welcome email to subscriber after successful signup. This option "
1537
  "must be set to YES."
1539
  "Başarılı bir kayıt yapıldıktan sonra Hoşgeldin Mesajı göndermek için bu "
1540
  "seçenek EVET olarak seçilmelidir."
1541
 
1542
+ #: ../settings/settings-edit.php:231
1543
  msgid "Subject for Welcome Email"
1544
  msgstr "Hoş Geldiniz E-postası Konusu"
1545
 
1546
+ #: ../settings/settings-edit.php:232
1547
  msgid ""
1548
  "Subject for the subscriber welcome email. This will be sent whenever a "
1549
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1553
  "onaylandığında (Çift Onay varsa) / abone olduğunda (Tek Onaylı ise) "
1554
  "başarıyla gönderildiğinde gönderilir."
1555
 
1556
+ #: ../settings/settings-edit.php:238
1557
  msgid "Email Content for Welcome Email"
1558
  msgstr "Karşılama E-postası için E-posta İçeriği"
1559
 
1560
+ #: ../settings/settings-edit.php:239
1561
  msgid ""
1562
  "Content for the subscriber welcome email whenever a user's email is either "
1563
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1567
  "(Tek Onaylı ise) başarıyla abone olduğunda abone karşılama e-postası içeriği."
1568
  " <br /> Kullanılabilir Anahtar Kelimeler: {{NAME}}, {{GROUP}}, {{ LİNK}}"
1569
 
1570
+ #: ../settings/settings-edit.php:247
1571
  msgid "Unsubscribe Link"
1572
  msgstr "Üyelikten Ayrıl Linki"
1573
 
1574
+ #: ../settings/settings-edit.php:248
1575
  msgid ""
1576
  "This unsubscribe link is automatically added to all the emails that are sent "
1577
  "from this plugin. It is a readonly field and you are advised not to modify "
1581
  "otomatik olarak eklenir. Bu bir salt okunur alan ve onu değiştirmemeniz "
1582
  "tavsiye edilir."
1583
 
1584
+ #: ../settings/settings-edit.php:254
1585
  msgid "Unsubscribe Text in Email"
1586
  msgstr "E-postada Üyelikten Ayrıl Yazısı"
1587
 
1588
+ #: ../settings/settings-edit.php:255
1589
  msgid ""
1590
  "The text for the unsubscribe link. This text is automatically added with "
1591
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1594
  "bağlantısıyla otomatik olarak eklenir. <br /> Kullanılabilir Anahtar Kelime: "
1595
  "{{LINK}}"
1596
 
1597
+ #: ../settings/settings-edit.php:262
1598
  msgid "Text to display after an email address is unsubscribed"
1599
  msgstr "Bir e-posta üyeliği sonlandırıldığında gösterilecek mesaj."
1600
 
1601
+ #: ../settings/settings-edit.php:263
1602
  msgid ""
1603
  "This text will be displayed once user clicks on unsubscribe link from the "
1604
  "email."
1606
  "Bu metin, kullanıcı e-postadan abonelikten çık bağlantısını tıklayarak bir "
1607
  "kez görüntülenir."
1608
 
1609
+ #: ../settings/settings-edit.php:275
1610
  msgid "Error in the Subscribe / Confirmation Link"
1611
  msgstr "Abone / Onay Bağlantısında Hata"
1612
 
1613
+ #: ../settings/settings-edit.php:276
1614
  msgid ""
1615
  "Default message to display if there is any issue while clicking on subscribe "
1616
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1618
  "Çift Onay e-postalarından abonelik veya onay bağlantısına tıklarken herhangi "
1619
  "bir sorun varsa, görüntülenecek varsayılan mesaj."
1620
 
1621
+ #: ../settings/settings-edit.php:282
1622
  msgid "Error in the Unsubscribe Link"
1623
  msgstr "\"Üyelikten Ayrıl\" Linkinde Hata"
1624
 
1625
+ #: ../settings/settings-edit.php:283
1626
  msgid ""
1627
  "Default message to display if there is any issue while clicking on "
1628
  "unsubscribe link from the emails."
1630
  "E-postalardan aboneliğinizi iptal et bağlantısına tıklarken herhangi bir "
1631
  "sorun olduğunda görüntülenecek varsayılan mesaj."
1632
 
1633
+ #: ../settings/settings-edit.php:295
1634
  msgid "Select user roles who can access following menus. Only Admin can change this."
1635
  msgstr ""
1636
  "Aşağıdaki menülere girebilecek kullanıcı yetkilerini seçiniz. Bunu sadece "
1637
  "yönetici değiştirebilir."
1638
 
1639
+ #: ../settings/settings-edit.php:301
1640
  msgid "Subscribers Menu"
1641
  msgstr "Aboneler Menüsü"
1642
 
1643
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1644
+ #: settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1645
+ #: settings/settings-edit.php:353
1646
  msgid "Administrator Only"
1647
  msgstr "Sadece Yönetici"
1648
 
1649
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1650
+ #: settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1651
+ #: settings/settings-edit.php:354
1652
  msgid "Administrator/Editor"
1653
  msgstr "Yönetici/Editör"
1654
 
1655
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1656
+ #: settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1657
+ #: settings/settings-edit.php:355
1658
  msgid "Administrator/Editor/Author/Contributor"
1659
  msgstr "Yönetici/Editör/Yazar/Katılımcı"
1660
 
1661
+ #: ../settings/settings-edit.php:313
1662
  msgid "Templates Menu"
1663
  msgstr "Şablon Menüsü"
1664
 
1665
+ #: ../settings/settings-edit.php:325
1666
  msgid "Post Notifications Menu"
1667
  msgstr "Gönderi Bildirim Menüsü"
1668
 
1669
+ #: ../settings/settings-edit.php:349
1670
  msgid "Reports Menu"
1671
  msgstr "Raporlar Menüsü"
1672
 
1673
+ #: ../settings/settings-edit.php:366
1674
  msgid "Cron job URL"
1675
  msgstr "Planlanmış gönderim URL"
1676
 
1677
+ #: ../settings/settings-edit.php:367
1678
  msgid ""
1679
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1680
  "modify it."
1682
  "Bu sizin planlanmış gönderi URL adresinizdir. Bu alan okunabilir bir alandır "
1683
  "ve düzenleme yapılmaması önerilir."
1684
 
1685
+ #: ../settings/settings-edit.php:376
1686
  msgid "Email Count"
1687
  msgstr "E-posta sayısı"
1688
 
1689
+ #: ../settings/settings-edit.php:377
1690
  msgid "Number of emails that you want to trigger per hour."
1691
  msgstr "Her saat bildirim yapmak istediğiniz e-postaların adedi"
1692
 
1693
+ #: ../settings/settings-edit.php:382
1694
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1695
  msgstr ""
1696
  "(Hosting panelinizin limitleri var. Her saat için 50 eposta gönderimini "
1697
  "öneriyoruz.)"
1698
 
1699
+ #: ../settings/settings-edit.php:387
1700
  msgid "Cron Report"
1701
  msgstr "Planlanmış İş (CRON) Raporu"
1702
 
1703
+ #: ../settings/settings-edit.php:388
1704
  msgid ""
1705
  "Email to admin whenever a cron URL is triggered from your server.<br "
1706
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1709
  "eposta gönder. <br />Kullanılabilir Anahtar Kelimeler: {{DATE}}, {{SUBJECT}},"
1710
  " {{COUNT}}"
1711
 
1712
+ #: ../settings/settings-edit.php:398
1713
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1714
  msgstr "Planlanmış gönderi (Cron / Otomatik e-postalar) nedir ve nasıl ayarlanır?"
1715
 
1716
+ #: ../settings/settings-edit.php:399
1717
  msgid ""
1718
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1719
  "schedule-cron-emails/?"
1725
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Planlanmış "
1726
  "iş (CRON) nedir?</a>"
1727
 
1728
+ #: ../settings/settings-edit.php:400
1729
  msgid ""
1730
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1731
  "schedule-cron-emails-in-cpanel/?"
1737
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cpanel "
1738
  "için planlanmış iş (CRON) ayarı.</a>"
1739
 
1740
+ #: ../settings/settings-edit.php:401
1741
  msgid ""
1742
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1743
  "schedule-cron-emails-in-parallels-plesk/?"
1749
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\"> Plesk "
1750
  "için planlanmış iş (CRON) ayarı.</a>"
1751
 
1752
+ #: ../settings/settings-edit.php:402
1753
  msgid ""
1754
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1755
  "if-hosting-doesnt-support-cron-jobs/?"
1761
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1762
  "firmanız planlanmış işlere (CRON) izin veriyor mu?</a>"
1763
 
1764
+ #: ../settings/settings-edit.php:517
1765
  msgid "Please enter sender of notifications from name."
1766
  msgstr "Bildirimlerin hangi isimden gönderileceğini giriniz."
1767
 
1768
+ #: ../settings/settings-edit.php:522
1769
  msgid "Please enter sender of notifications from email."
1770
  msgstr "Bildirimlerin hangi E-Posta adresinden gönderileceğini giriniz."
1771
 
1772
+ #: ../settings/settings-edit.php:580
1773
  msgid "Settings Saved."
1774
  msgstr "Ayarlar Kaydedildi."
1775
 
1776
+ #: ../settings/settings-edit.php:583
1777
  msgid "Oops, unable to update."
1778
  msgstr "Bir dakika, güncelleme yapılamadı."
1779
 
1807
  msgstr "Geçersiz E-posta."
1808
 
1809
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1810
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1811
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1812
  #: subscribers/view-subscriber-sync.php:89
1813
  msgid "Add New Subscriber"
1814
  msgstr "Yeni Abone Ekle"
1815
 
1816
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1817
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1818
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1819
  #: subscribers/view-subscriber-sync.php:90
1820
  msgid "Import"
1827
  msgstr "Dışarı Aktar"
1828
 
1829
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1830
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1831
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1832
  #: subscribers/view-subscriber-sync.php:143
1833
  msgid "Sync"
1920
  msgid "Go back to Subscribers dashboard"
1921
  msgstr "Abone listesine geri dön"
1922
 
1923
+ #: ../subscribers/view-subscriber-export.php:50
1924
  msgid "Export Email Addresses"
1925
  msgstr "E-posta Adreslerini Dışarı Aktar"
1926
 
1927
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1928
+ #: export.php:70
1929
  msgid "Type of List to Export"
1930
  msgstr "Dışarı Aktarım için Liste Tipi"
1931
 
1932
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1933
+ #: export.php:71
1934
  msgid "Total Emails Count"
1935
  msgstr "Toplam E-posta Sayısı"
1936
 
1937
+ #: ../subscribers/view-subscriber-export.php:77
1938
  msgid "1"
1939
  msgstr "1"
1940
 
1941
+ #: ../subscribers/view-subscriber-export.php:78
1942
  msgid "All Subscribers"
1943
  msgstr "Tüm Aboneler"
1944
 
1945
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1946
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1947
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1948
  msgid "Click to Export in CSV"
1949
  msgstr "CSV olarak Dışarı Aktarmak için Tıklayınız."
1950
 
1951
+ #: ../subscribers/view-subscriber-export.php:83
1952
  msgid "2"
1953
  msgstr "2"
1954
 
1955
+ #: ../subscribers/view-subscriber-export.php:84
1956
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1957
  msgstr "Aktif Aboneler (Durum: Onaylı & Tek Onaylı)"
1958
 
1959
+ #: ../subscribers/view-subscriber-export.php:89
1960
  msgid "3"
1961
  msgstr "3"
1962
 
1963
+ #: ../subscribers/view-subscriber-export.php:90
1964
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1965
  msgstr "Pasif Aboneler (Durum: Onaylanmamış & Üyelikten Çıkarılmamış)"
1966
 
1967
+ #: ../subscribers/view-subscriber-export.php:95
1968
  msgid "4"
1969
  msgstr "4"
1970
 
1971
+ #: ../subscribers/view-subscriber-export.php:96
1972
  msgid "WordPress Registered Users"
1973
  msgstr "Wordpress Kayıtlı Kullanıcılar"
1974
 
1975
+ #: ../subscribers/view-subscriber-export.php:101
1976
  msgid "5"
1977
  msgstr "5"
1978
 
1979
+ #: ../subscribers/view-subscriber-export.php:102
1980
  msgid "Commented Authors"
1981
  msgstr "Yorum Yapan Yazarlar"
1982
 
2116
  msgid "Resend Confirmation"
2117
  msgstr "Yeniden Onay Gönder"
2118
 
2119
+ #: ../subscribers/view-subscriber-show.php:303
2120
+ msgid "Update Subscribers Group"
2121
+ msgstr "Abone Grubunu Güncelle"
2122
+
2123
  #: ../subscribers/view-subscriber-show.php:304
2124
  msgid "Update Subscribers Status"
2125
  msgstr "Abonelerin Durumunu Güncelle"
languages/email-subscribers.pot CHANGED
@@ -2,10 +2,10 @@
2
  #, fuzzy
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.2\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
- "POT-Revision-Date: Mon Jun 18 2018 16:42:19 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
@@ -69,7 +69,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
69
  msgstr ""
70
 
71
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
72
- #: register.php:826
73
  msgid "Email Subscribers"
74
  msgstr ""
75
 
@@ -79,7 +79,7 @@ msgid "Subscribers"
79
  msgstr ""
80
 
81
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
82
- #: register.php:814 ../classes/es-register.php:815 ../classes/es-register.php:820
83
  msgid "Templates"
84
  msgstr ""
85
 
@@ -89,7 +89,7 @@ msgid "Post Notifications"
89
  msgstr ""
90
 
91
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
92
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:325
93
  msgid "Newsletters"
94
  msgstr ""
95
 
@@ -270,35 +270,21 @@ msgctxt "widget-page-enhanced-select"
270
  msgid "Please try after some time"
271
  msgstr ""
272
 
273
- #: ../classes/es-register.php:726
274
- msgid ""
275
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
276
- "subscribers list?</b> Come check our Pro plan."
277
- msgstr ""
278
-
279
- #: ../classes/es-register.php:727
280
- msgid "Check Pro plan"
281
- msgstr ""
282
-
283
  #: ../classes/es-register.php:727
284
- msgid "Not interested."
285
- msgstr ""
286
-
287
- #: ../classes/es-register.php:765
288
  msgid ""
289
- "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
290
- "Checkbox' in the subscription form.</b>"
291
  msgstr ""
292
 
293
- #: ../classes/es-register.php:766
294
- msgid "Steps to enable"
295
  msgstr ""
296
 
297
- #: ../classes/es-register.php:766
298
- msgid "Ok, got it"
299
  msgstr ""
300
 
301
- #: ../classes/es-register.php:791
302
  msgid ""
303
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
304
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -306,86 +292,86 @@ msgid ""
306
  "</a> rating. A huge thank you from Icegram in advance!"
307
  msgstr ""
308
 
309
- #: ../classes/es-register.php:805
310
  #, php-format
311
  msgid "Email Subscribers version: <strong>%s</strong>"
312
  msgstr ""
313
 
314
- #: ../classes/es-register.php:816 ../classes/es-register.php:817
315
  msgid "Add new Template"
316
  msgstr ""
317
 
318
- #: ../classes/es-register.php:818
319
  msgid "Edit Templates"
320
  msgstr ""
321
 
322
- #: ../classes/es-register.php:819
323
  msgid "New Templates"
324
  msgstr ""
325
 
326
- #: ../classes/es-register.php:821
327
  msgid "View Templates"
328
  msgstr ""
329
 
330
- #: ../classes/es-register.php:822
331
  msgid "Search Templates"
332
  msgstr ""
333
 
334
- #: ../classes/es-register.php:823
335
  msgid "No Templates found"
336
  msgstr ""
337
 
338
- #: ../classes/es-register.php:824
339
  msgid "No Templates found in Trash"
340
  msgstr ""
341
 
342
- #: ../classes/es-register.php:827
343
  msgid "Thumbnail (For Visual Representation only)"
344
  msgstr ""
345
 
346
- #: ../classes/es-register.php:828
347
  msgid "Set thumbnail"
348
  msgstr ""
349
 
350
- #: ../classes/es-register.php:865
351
  msgid "Template Type"
352
  msgstr ""
353
 
354
- #: ../classes/es-register.php:866 ../settings/settings-edit.php:124
355
  msgid "Thumbnail"
356
  msgstr ""
357
 
358
- #: ../classes/es-register.php:914 ../sentmail/sentmail-show.php:108 ..
359
  #: /sentmail/sentmail-show.php:121
360
  msgid "Preview"
361
  msgstr ""
362
 
363
- #: ../classes/es-register.php:936
364
  #, php-format
365
  msgid "%s for Post Notification: {{POSTTITLE}}"
366
  msgstr ""
367
 
368
- #: ../classes/es-register.php:936
369
  msgid "Available Keyword"
370
  msgstr ""
371
 
372
- #: ../classes/es-register.php:943
373
  msgid "Select your Email Template Type"
374
  msgstr ""
375
 
376
- #: ../classes/es-register.php:945
377
  msgid "Newsletter"
378
  msgstr ""
379
 
380
- #: ../classes/es-register.php:946
381
  msgid "Post Notification"
382
  msgstr ""
383
 
384
- #: ../classes/es-register.php:995
385
  msgid "Preview Template"
386
  msgstr ""
387
 
388
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1030
389
  #, php-format
390
  msgid ""
391
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -393,60 +379,60 @@ msgid ""
393
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
394
  msgstr ""
395
 
396
- #: ../classes/es-register.php:1014 ../classes/es-register.php:1015 ../classes/es-
397
- #: register.php:1030 ../classes/es-register.php:1038
398
  msgid "Available Keywords"
399
  msgstr ""
400
 
401
- #: ../classes/es-register.php:1015
402
  #, php-format
403
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
404
  msgstr ""
405
 
406
- #: ../classes/es-register.php:1038
407
  #, php-format
408
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
409
  msgstr ""
410
 
411
- #: ../classes/es-register.php:1073 ../subscribers/view-subscriber-show.php:289
412
  msgid "Name"
413
  msgstr ""
414
 
415
- #: ../classes/es-register.php:1080
416
  msgid "Email *"
417
  msgstr ""
418
 
419
- #: ../classes/es-register.php:1089 ../help/help.php:202
420
  msgid "Subscribe"
421
  msgstr ""
422
 
423
- #: ../classes/es-register.php:1193
424
  msgid "Widget Title"
425
  msgstr ""
426
 
427
- #: ../classes/es-register.php:1197
428
  msgid "Short description about subscription form"
429
  msgstr ""
430
 
431
- #: ../classes/es-register.php:1201
432
  msgid "Display Name Field"
433
  msgstr ""
434
 
435
- #: ../classes/es-register.php:1203 ../settings/settings-edit.php:143 ..
436
- #: /settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:107
437
  msgid "YES"
438
  msgstr ""
439
 
440
- #: ../classes/es-register.php:1204 ../settings/settings-edit.php:144 ..
441
- #: /settings/settings-edit.php:219 ../subscribers/view-subscriber-sync.php:106
442
  msgid "NO"
443
  msgstr ""
444
 
445
- #: ../classes/es-register.php:1208
446
  msgid "Subscriber Group"
447
  msgstr ""
448
 
449
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
450
  msgid "Unexpected url submit has been detected!"
451
  msgstr ""
452
 
@@ -837,14 +823,14 @@ msgstr ""
837
  msgid "add Rainmaker’s form in Email Subscribers"
838
  msgstr ""
839
 
840
- #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
841
- #: /job/es-unsubscribe.php:61
842
  msgid ""
843
  "Oops.. We are getting some technical error. Please try again or contact "
844
  "admin."
845
  msgstr ""
846
 
847
- #: ../job/es-optin.php:61
848
  msgid "This email address has already been confirmed."
849
  msgstr ""
850
 
@@ -877,14 +863,15 @@ msgstr ""
877
  #: /sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
878
  #: /sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
879
  #: /subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
880
- #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
881
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
882
  #: /subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
883
  msgid "Help"
884
  msgstr ""
885
 
886
- #: ../notification/notification-add.php:121
887
- msgid "Select Subscribers Group"
 
888
  msgstr ""
889
 
890
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
@@ -988,11 +975,6 @@ msgstr ""
988
  msgid "Add New"
989
  msgstr ""
990
 
991
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
992
- #: php:303
993
- msgid "Update Subscribers Group"
994
- msgstr ""
995
-
996
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
997
  msgid "Selected record deleted."
998
  msgstr ""
@@ -1128,8 +1110,8 @@ msgid "Delivery Report"
1128
  msgstr ""
1129
 
1130
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1131
- #: /subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1132
- #: export.php:66
1133
  msgid "Sno"
1134
  msgstr ""
1135
 
@@ -1204,8 +1186,8 @@ msgid "Total"
1204
  msgstr ""
1205
 
1206
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1207
- #: /subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1208
- #: export.php:69 ../subscribers/view-subscriber-show.php:293
1209
  msgid "Action"
1210
  msgstr ""
1211
 
@@ -1422,176 +1404,176 @@ msgstr ""
1422
  msgid "It is a readonly field and you are advised not to modify it."
1423
  msgstr ""
1424
 
1425
- #: ../settings/settings-edit.php:205
1426
  msgid ""
1427
  "Text to display after an email address is successfully subscribed from "
1428
  "Double Opt-In (Confirmation) Email"
1429
  msgstr ""
1430
 
1431
- #: ../settings/settings-edit.php:206
1432
  msgid ""
1433
  "This text will be displayed once user clicks on email confirmation link from "
1434
  "the Double Opt In (confirmation) Email."
1435
  msgstr ""
1436
 
1437
- #: ../settings/settings-edit.php:213
1438
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1439
  msgstr ""
1440
 
1441
- #: ../settings/settings-edit.php:214
1442
  msgid ""
1443
  "To send welcome email to subscriber after successful signup. This option "
1444
  "must be set to YES."
1445
  msgstr ""
1446
 
1447
- #: ../settings/settings-edit.php:225
1448
  msgid "Subject for Welcome Email"
1449
  msgstr ""
1450
 
1451
- #: ../settings/settings-edit.php:226
1452
  msgid ""
1453
  "Subject for the subscriber welcome email. This will be sent whenever a "
1454
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1455
  "Opt-In) successfully."
1456
  msgstr ""
1457
 
1458
- #: ../settings/settings-edit.php:232
1459
  msgid "Email Content for Welcome Email"
1460
  msgstr ""
1461
 
1462
- #: ../settings/settings-edit.php:233
1463
  msgid ""
1464
  "Content for the subscriber welcome email whenever a user's email is either "
1465
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1466
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1467
  msgstr ""
1468
 
1469
- #: ../settings/settings-edit.php:241
1470
  msgid "Unsubscribe Link"
1471
  msgstr ""
1472
 
1473
- #: ../settings/settings-edit.php:242
1474
  msgid ""
1475
  "This unsubscribe link is automatically added to all the emails that are sent "
1476
  "from this plugin. It is a readonly field and you are advised not to modify "
1477
  "it."
1478
  msgstr ""
1479
 
1480
- #: ../settings/settings-edit.php:248
1481
  msgid "Unsubscribe Text in Email"
1482
  msgstr ""
1483
 
1484
- #: ../settings/settings-edit.php:249
1485
  msgid ""
1486
  "The text for the unsubscribe link. This text is automatically added with "
1487
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1488
  msgstr ""
1489
 
1490
- #: ../settings/settings-edit.php:255
1491
  msgid "Text to display after an email address is unsubscribed"
1492
  msgstr ""
1493
 
1494
- #: ../settings/settings-edit.php:256
1495
  msgid ""
1496
  "This text will be displayed once user clicks on unsubscribe link from the "
1497
  "email."
1498
  msgstr ""
1499
 
1500
- #: ../settings/settings-edit.php:263
1501
  msgid "Error in the Subscribe / Confirmation Link"
1502
  msgstr ""
1503
 
1504
- #: ../settings/settings-edit.php:264
1505
  msgid ""
1506
  "Default message to display if there is any issue while clicking on subscribe "
1507
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1508
  msgstr ""
1509
 
1510
- #: ../settings/settings-edit.php:270
1511
  msgid "Error in the Unsubscribe Link"
1512
  msgstr ""
1513
 
1514
- #: ../settings/settings-edit.php:271
1515
  msgid ""
1516
  "Default message to display if there is any issue while clicking on "
1517
  "unsubscribe link from the emails."
1518
  msgstr ""
1519
 
1520
- #: ../settings/settings-edit.php:283
1521
  msgid "Select user roles who can access following menus. Only Admin can change this."
1522
  msgstr ""
1523
 
1524
- #: ../settings/settings-edit.php:289
1525
  msgid "Subscribers Menu"
1526
  msgstr ""
1527
 
1528
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1529
- #: /settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1530
- #: /settings/settings-edit.php:341
1531
  msgid "Administrator Only"
1532
  msgstr ""
1533
 
1534
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1535
- #: /settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1536
- #: /settings/settings-edit.php:342
1537
  msgid "Administrator/Editor"
1538
  msgstr ""
1539
 
1540
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1541
- #: /settings/settings-edit.php:319 ../settings/settings-edit.php:331 ..
1542
- #: /settings/settings-edit.php:343
1543
  msgid "Administrator/Editor/Author/Contributor"
1544
  msgstr ""
1545
 
1546
- #: ../settings/settings-edit.php:301
1547
  msgid "Templates Menu"
1548
  msgstr ""
1549
 
1550
- #: ../settings/settings-edit.php:313
1551
  msgid "Post Notifications Menu"
1552
  msgstr ""
1553
 
1554
- #: ../settings/settings-edit.php:337
1555
  msgid "Reports Menu"
1556
  msgstr ""
1557
 
1558
- #: ../settings/settings-edit.php:354
1559
  msgid "Cron job URL"
1560
  msgstr ""
1561
 
1562
- #: ../settings/settings-edit.php:355
1563
  msgid ""
1564
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1565
  "modify it."
1566
  msgstr ""
1567
 
1568
- #: ../settings/settings-edit.php:364
1569
  msgid "Email Count"
1570
  msgstr ""
1571
 
1572
- #: ../settings/settings-edit.php:365
1573
  msgid "Number of emails that you want to trigger per hour."
1574
  msgstr ""
1575
 
1576
- #: ../settings/settings-edit.php:370
1577
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1578
  msgstr ""
1579
 
1580
- #: ../settings/settings-edit.php:375
1581
  msgid "Cron Report"
1582
  msgstr ""
1583
 
1584
- #: ../settings/settings-edit.php:376
1585
  msgid ""
1586
  "Email to admin whenever a cron URL is triggered from your server.<br "
1587
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1588
  msgstr ""
1589
 
1590
- #: ../settings/settings-edit.php:386
1591
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1592
  msgstr ""
1593
 
1594
- #: ../settings/settings-edit.php:387
1595
  msgid ""
1596
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1597
  "schedule-cron-emails/?"
@@ -1599,7 +1581,7 @@ msgid ""
1599
  "Cron?</a>"
1600
  msgstr ""
1601
 
1602
- #: ../settings/settings-edit.php:388
1603
  msgid ""
1604
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1605
  "schedule-cron-emails-in-cpanel/?"
@@ -1607,7 +1589,7 @@ msgid ""
1607
  "job in cPanel</a>"
1608
  msgstr ""
1609
 
1610
- #: ../settings/settings-edit.php:389
1611
  msgid ""
1612
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1613
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1615,7 +1597,7 @@ msgid ""
1615
  "job in Plesk</a>"
1616
  msgstr ""
1617
 
1618
- #: ../settings/settings-edit.php:390
1619
  msgid ""
1620
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1621
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1623,23 +1605,23 @@ msgid ""
1623
  "does not support cron jobs?</a>"
1624
  msgstr ""
1625
 
1626
- #: ../settings/settings-edit.php:505
1627
  msgid "Please enter sender of notifications from name."
1628
  msgstr ""
1629
 
1630
- #: ../settings/settings-edit.php:510
1631
  msgid "Please enter sender of notifications from email."
1632
  msgstr ""
1633
 
1634
- #: ../settings/settings-edit.php:554
1635
  msgid "Please enter valid email count."
1636
  msgstr ""
1637
 
1638
- #: ../settings/settings-edit.php:568
1639
  msgid "Settings Saved."
1640
  msgstr ""
1641
 
1642
- #: ../settings/settings-edit.php:571
1643
  msgid "Oops, unable to update."
1644
  msgstr ""
1645
 
@@ -1671,14 +1653,14 @@ msgid "Invalid Email."
1671
  msgstr ""
1672
 
1673
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1674
- #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1675
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1676
  #: /subscribers/view-subscriber-sync.php:89
1677
  msgid "Add New Subscriber"
1678
  msgstr ""
1679
 
1680
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1681
- #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1682
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1683
  #: /subscribers/view-subscriber-sync.php:90
1684
  msgid "Import"
@@ -1691,7 +1673,7 @@ msgid "Export"
1691
  msgstr ""
1692
 
1693
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1694
- #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1695
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1696
  #: /subscribers/view-subscriber-sync.php:143
1697
  msgid "Sync"
@@ -1782,63 +1764,63 @@ msgstr ""
1782
  msgid "Go back to Subscribers dashboard"
1783
  msgstr ""
1784
 
1785
- #: ../subscribers/view-subscriber-export.php:47
1786
  msgid "Export Email Addresses"
1787
  msgstr ""
1788
 
1789
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1790
- #: export.php:67
1791
  msgid "Type of List to Export"
1792
  msgstr ""
1793
 
1794
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1795
- #: export.php:68
1796
  msgid "Total Emails Count"
1797
  msgstr ""
1798
 
1799
- #: ../subscribers/view-subscriber-export.php:74
1800
  msgid "1"
1801
  msgstr ""
1802
 
1803
- #: ../subscribers/view-subscriber-export.php:75
1804
  msgid "All Subscribers"
1805
  msgstr ""
1806
 
1807
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1808
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1809
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1810
  msgid "Click to Export in CSV"
1811
  msgstr ""
1812
 
1813
- #: ../subscribers/view-subscriber-export.php:80
1814
  msgid "2"
1815
  msgstr ""
1816
 
1817
- #: ../subscribers/view-subscriber-export.php:81
1818
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1819
  msgstr ""
1820
 
1821
- #: ../subscribers/view-subscriber-export.php:86
1822
  msgid "3"
1823
  msgstr ""
1824
 
1825
- #: ../subscribers/view-subscriber-export.php:87
1826
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1827
  msgstr ""
1828
 
1829
- #: ../subscribers/view-subscriber-export.php:92
1830
  msgid "4"
1831
  msgstr ""
1832
 
1833
- #: ../subscribers/view-subscriber-export.php:93
1834
  msgid "WordPress Registered Users"
1835
  msgstr ""
1836
 
1837
- #: ../subscribers/view-subscriber-export.php:98
1838
  msgid "5"
1839
  msgstr ""
1840
 
1841
- #: ../subscribers/view-subscriber-export.php:99
1842
  msgid "Commented Authors"
1843
  msgstr ""
1844
 
@@ -1972,6 +1954,10 @@ msgstr ""
1972
  msgid "Resend Confirmation"
1973
  msgstr ""
1974
 
 
 
 
 
1975
  #: ../subscribers/view-subscriber-show.php:304
1976
  msgid "Update Subscribers Status"
1977
  msgstr ""
2
  #, fuzzy
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
+ "POT-Revision-Date: Mon Jul 02 2018 10:53:07 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
69
  msgstr ""
70
 
71
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
72
+ #: register.php:788
73
  msgid "Email Subscribers"
74
  msgstr ""
75
 
79
  msgstr ""
80
 
81
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
82
+ #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
83
  msgid "Templates"
84
  msgstr ""
85
 
89
  msgstr ""
90
 
91
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
92
+ #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
93
  msgid "Newsletters"
94
  msgstr ""
95
 
270
  msgid "Please try after some time"
271
  msgstr ""
272
 
 
 
 
 
 
 
 
 
 
 
273
  #: ../classes/es-register.php:727
 
 
 
 
274
  msgid ""
275
+ "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
276
+ "</b>"
277
  msgstr ""
278
 
279
+ #: ../classes/es-register.php:728
280
+ msgid "Here's how"
281
  msgstr ""
282
 
283
+ #: ../classes/es-register.php:728
284
+ msgid "Not interested. Dismiss this."
285
  msgstr ""
286
 
287
+ #: ../classes/es-register.php:753
288
  msgid ""
289
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
290
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
292
  "</a> rating. A huge thank you from Icegram in advance!"
293
  msgstr ""
294
 
295
+ #: ../classes/es-register.php:767
296
  #, php-format
297
  msgid "Email Subscribers version: <strong>%s</strong>"
298
  msgstr ""
299
 
300
+ #: ../classes/es-register.php:778 ../classes/es-register.php:779
301
  msgid "Add new Template"
302
  msgstr ""
303
 
304
+ #: ../classes/es-register.php:780
305
  msgid "Edit Templates"
306
  msgstr ""
307
 
308
+ #: ../classes/es-register.php:781
309
  msgid "New Templates"
310
  msgstr ""
311
 
312
+ #: ../classes/es-register.php:783
313
  msgid "View Templates"
314
  msgstr ""
315
 
316
+ #: ../classes/es-register.php:784
317
  msgid "Search Templates"
318
  msgstr ""
319
 
320
+ #: ../classes/es-register.php:785
321
  msgid "No Templates found"
322
  msgstr ""
323
 
324
+ #: ../classes/es-register.php:786
325
  msgid "No Templates found in Trash"
326
  msgstr ""
327
 
328
+ #: ../classes/es-register.php:789
329
  msgid "Thumbnail (For Visual Representation only)"
330
  msgstr ""
331
 
332
+ #: ../classes/es-register.php:790
333
  msgid "Set thumbnail"
334
  msgstr ""
335
 
336
+ #: ../classes/es-register.php:827
337
  msgid "Template Type"
338
  msgstr ""
339
 
340
+ #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
341
  msgid "Thumbnail"
342
  msgstr ""
343
 
344
+ #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
345
  #: /sentmail/sentmail-show.php:121
346
  msgid "Preview"
347
  msgstr ""
348
 
349
+ #: ../classes/es-register.php:900
350
  #, php-format
351
  msgid "%s for Post Notification: {{POSTTITLE}}"
352
  msgstr ""
353
 
354
+ #: ../classes/es-register.php:900
355
  msgid "Available Keyword"
356
  msgstr ""
357
 
358
+ #: ../classes/es-register.php:907
359
  msgid "Select your Email Template Type"
360
  msgstr ""
361
 
362
+ #: ../classes/es-register.php:909
363
  msgid "Newsletter"
364
  msgstr ""
365
 
366
+ #: ../classes/es-register.php:910
367
  msgid "Post Notification"
368
  msgstr ""
369
 
370
+ #: ../classes/es-register.php:959
371
  msgid "Preview Template"
372
  msgstr ""
373
 
374
+ #: ../classes/es-register.php:978 ../classes/es-register.php:994
375
  #, php-format
376
  msgid ""
377
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
379
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
380
  msgstr ""
381
 
382
+ #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
383
+ #: register.php:994 ../classes/es-register.php:1002
384
  msgid "Available Keywords"
385
  msgstr ""
386
 
387
+ #: ../classes/es-register.php:979
388
  #, php-format
389
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
390
  msgstr ""
391
 
392
+ #: ../classes/es-register.php:1002
393
  #, php-format
394
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
395
  msgstr ""
396
 
397
+ #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
398
  msgid "Name"
399
  msgstr ""
400
 
401
+ #: ../classes/es-register.php:1044
402
  msgid "Email *"
403
  msgstr ""
404
 
405
+ #: ../classes/es-register.php:1053 ../help/help.php:202
406
  msgid "Subscribe"
407
  msgstr ""
408
 
409
+ #: ../classes/es-register.php:1157
410
  msgid "Widget Title"
411
  msgstr ""
412
 
413
+ #: ../classes/es-register.php:1161
414
  msgid "Short description about subscription form"
415
  msgstr ""
416
 
417
+ #: ../classes/es-register.php:1165
418
  msgid "Display Name Field"
419
  msgstr ""
420
 
421
+ #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
422
+ #: /settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
423
  msgid "YES"
424
  msgstr ""
425
 
426
+ #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
427
+ #: /settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
428
  msgid "NO"
429
  msgstr ""
430
 
431
+ #: ../classes/es-register.php:1172
432
  msgid "Subscriber Group"
433
  msgstr ""
434
 
435
+ #: ../export/export-email-address.php:67 ../export/export-email-address.php:71
436
  msgid "Unexpected url submit has been detected!"
437
  msgstr ""
438
 
823
  msgid "add Rainmaker’s form in Email Subscribers"
824
  msgstr ""
825
 
826
+ #: ../job/es-optin.php:59 ../job/es-optin.php:69 ../job/es-unsubscribe.php:55 ..
827
+ #: /job/es-unsubscribe.php:62
828
  msgid ""
829
  "Oops.. We are getting some technical error. Please try again or contact "
830
  "admin."
831
  msgstr ""
832
 
833
+ #: ../job/es-optin.php:62
834
  msgid "This email address has already been confirmed."
835
  msgstr ""
836
 
863
  #: /sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
864
  #: /sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
865
  #: /subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
866
+ #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
867
  #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
868
  #: /subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
869
  msgid "Help"
870
  msgstr ""
871
 
872
+ #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
873
+ #: 132
874
+ msgid "Subscribers Group to send post notification to"
875
  msgstr ""
876
 
877
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
975
  msgid "Add New"
976
  msgstr ""
977
 
 
 
 
 
 
978
  #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
979
  msgid "Selected record deleted."
980
  msgstr ""
1110
  msgstr ""
1111
 
1112
  #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1113
+ #: /subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1114
+ #: export.php:69
1115
  msgid "Sno"
1116
  msgstr ""
1117
 
1186
  msgstr ""
1187
 
1188
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1189
+ #: /subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1190
+ #: export.php:72 ../subscribers/view-subscriber-show.php:293
1191
  msgid "Action"
1192
  msgstr ""
1193
 
1404
  msgid "It is a readonly field and you are advised not to modify it."
1405
  msgstr ""
1406
 
1407
+ #: ../settings/settings-edit.php:206
1408
  msgid ""
1409
  "Text to display after an email address is successfully subscribed from "
1410
  "Double Opt-In (Confirmation) Email"
1411
  msgstr ""
1412
 
1413
+ #: ../settings/settings-edit.php:207
1414
  msgid ""
1415
  "This text will be displayed once user clicks on email confirmation link from "
1416
  "the Double Opt In (confirmation) Email."
1417
  msgstr ""
1418
 
1419
+ #: ../settings/settings-edit.php:219
1420
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1421
  msgstr ""
1422
 
1423
+ #: ../settings/settings-edit.php:220
1424
  msgid ""
1425
  "To send welcome email to subscriber after successful signup. This option "
1426
  "must be set to YES."
1427
  msgstr ""
1428
 
1429
+ #: ../settings/settings-edit.php:231
1430
  msgid "Subject for Welcome Email"
1431
  msgstr ""
1432
 
1433
+ #: ../settings/settings-edit.php:232
1434
  msgid ""
1435
  "Subject for the subscriber welcome email. This will be sent whenever a "
1436
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1437
  "Opt-In) successfully."
1438
  msgstr ""
1439
 
1440
+ #: ../settings/settings-edit.php:238
1441
  msgid "Email Content for Welcome Email"
1442
  msgstr ""
1443
 
1444
+ #: ../settings/settings-edit.php:239
1445
  msgid ""
1446
  "Content for the subscriber welcome email whenever a user's email is either "
1447
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1448
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1449
  msgstr ""
1450
 
1451
+ #: ../settings/settings-edit.php:247
1452
  msgid "Unsubscribe Link"
1453
  msgstr ""
1454
 
1455
+ #: ../settings/settings-edit.php:248
1456
  msgid ""
1457
  "This unsubscribe link is automatically added to all the emails that are sent "
1458
  "from this plugin. It is a readonly field and you are advised not to modify "
1459
  "it."
1460
  msgstr ""
1461
 
1462
+ #: ../settings/settings-edit.php:254
1463
  msgid "Unsubscribe Text in Email"
1464
  msgstr ""
1465
 
1466
+ #: ../settings/settings-edit.php:255
1467
  msgid ""
1468
  "The text for the unsubscribe link. This text is automatically added with "
1469
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1470
  msgstr ""
1471
 
1472
+ #: ../settings/settings-edit.php:262
1473
  msgid "Text to display after an email address is unsubscribed"
1474
  msgstr ""
1475
 
1476
+ #: ../settings/settings-edit.php:263
1477
  msgid ""
1478
  "This text will be displayed once user clicks on unsubscribe link from the "
1479
  "email."
1480
  msgstr ""
1481
 
1482
+ #: ../settings/settings-edit.php:275
1483
  msgid "Error in the Subscribe / Confirmation Link"
1484
  msgstr ""
1485
 
1486
+ #: ../settings/settings-edit.php:276
1487
  msgid ""
1488
  "Default message to display if there is any issue while clicking on subscribe "
1489
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1490
  msgstr ""
1491
 
1492
+ #: ../settings/settings-edit.php:282
1493
  msgid "Error in the Unsubscribe Link"
1494
  msgstr ""
1495
 
1496
+ #: ../settings/settings-edit.php:283
1497
  msgid ""
1498
  "Default message to display if there is any issue while clicking on "
1499
  "unsubscribe link from the emails."
1500
  msgstr ""
1501
 
1502
+ #: ../settings/settings-edit.php:295
1503
  msgid "Select user roles who can access following menus. Only Admin can change this."
1504
  msgstr ""
1505
 
1506
+ #: ../settings/settings-edit.php:301
1507
  msgid "Subscribers Menu"
1508
  msgstr ""
1509
 
1510
+ #: ../settings/settings-edit.php:305 ../settings/settings-edit.php:317 ..
1511
+ #: /settings/settings-edit.php:329 ../settings/settings-edit.php:341 ..
1512
+ #: /settings/settings-edit.php:353
1513
  msgid "Administrator Only"
1514
  msgstr ""
1515
 
1516
+ #: ../settings/settings-edit.php:306 ../settings/settings-edit.php:318 ..
1517
+ #: /settings/settings-edit.php:330 ../settings/settings-edit.php:342 ..
1518
+ #: /settings/settings-edit.php:354
1519
  msgid "Administrator/Editor"
1520
  msgstr ""
1521
 
1522
+ #: ../settings/settings-edit.php:307 ../settings/settings-edit.php:319 ..
1523
+ #: /settings/settings-edit.php:331 ../settings/settings-edit.php:343 ..
1524
+ #: /settings/settings-edit.php:355
1525
  msgid "Administrator/Editor/Author/Contributor"
1526
  msgstr ""
1527
 
1528
+ #: ../settings/settings-edit.php:313
1529
  msgid "Templates Menu"
1530
  msgstr ""
1531
 
1532
+ #: ../settings/settings-edit.php:325
1533
  msgid "Post Notifications Menu"
1534
  msgstr ""
1535
 
1536
+ #: ../settings/settings-edit.php:349
1537
  msgid "Reports Menu"
1538
  msgstr ""
1539
 
1540
+ #: ../settings/settings-edit.php:366
1541
  msgid "Cron job URL"
1542
  msgstr ""
1543
 
1544
+ #: ../settings/settings-edit.php:367
1545
  msgid ""
1546
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1547
  "modify it."
1548
  msgstr ""
1549
 
1550
+ #: ../settings/settings-edit.php:376
1551
  msgid "Email Count"
1552
  msgstr ""
1553
 
1554
+ #: ../settings/settings-edit.php:377
1555
  msgid "Number of emails that you want to trigger per hour."
1556
  msgstr ""
1557
 
1558
+ #: ../settings/settings-edit.php:382
1559
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1560
  msgstr ""
1561
 
1562
+ #: ../settings/settings-edit.php:387
1563
  msgid "Cron Report"
1564
  msgstr ""
1565
 
1566
+ #: ../settings/settings-edit.php:388
1567
  msgid ""
1568
  "Email to admin whenever a cron URL is triggered from your server.<br "
1569
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1570
  msgstr ""
1571
 
1572
+ #: ../settings/settings-edit.php:398
1573
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1574
  msgstr ""
1575
 
1576
+ #: ../settings/settings-edit.php:399
1577
  msgid ""
1578
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1579
  "schedule-cron-emails/?"
1581
  "Cron?</a>"
1582
  msgstr ""
1583
 
1584
+ #: ../settings/settings-edit.php:400
1585
  msgid ""
1586
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1587
  "schedule-cron-emails-in-cpanel/?"
1589
  "job in cPanel</a>"
1590
  msgstr ""
1591
 
1592
+ #: ../settings/settings-edit.php:401
1593
  msgid ""
1594
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1595
  "schedule-cron-emails-in-parallels-plesk/?"
1597
  "job in Plesk</a>"
1598
  msgstr ""
1599
 
1600
+ #: ../settings/settings-edit.php:402
1601
  msgid ""
1602
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1603
  "if-hosting-doesnt-support-cron-jobs/?"
1605
  "does not support cron jobs?</a>"
1606
  msgstr ""
1607
 
1608
+ #: ../settings/settings-edit.php:517
1609
  msgid "Please enter sender of notifications from name."
1610
  msgstr ""
1611
 
1612
+ #: ../settings/settings-edit.php:522
1613
  msgid "Please enter sender of notifications from email."
1614
  msgstr ""
1615
 
1616
+ #: ../settings/settings-edit.php:566
1617
  msgid "Please enter valid email count."
1618
  msgstr ""
1619
 
1620
+ #: ../settings/settings-edit.php:580
1621
  msgid "Settings Saved."
1622
  msgstr ""
1623
 
1624
+ #: ../settings/settings-edit.php:583
1625
  msgid "Oops, unable to update."
1626
  msgstr ""
1627
 
1653
  msgstr ""
1654
 
1655
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1656
+ #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1657
  #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1658
  #: /subscribers/view-subscriber-sync.php:89
1659
  msgid "Add New Subscriber"
1660
  msgstr ""
1661
 
1662
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1663
+ #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1664
  #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1665
  #: /subscribers/view-subscriber-sync.php:90
1666
  msgid "Import"
1673
  msgstr ""
1674
 
1675
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1676
+ #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1677
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1678
  #: /subscribers/view-subscriber-sync.php:143
1679
  msgid "Sync"
1764
  msgid "Go back to Subscribers dashboard"
1765
  msgstr ""
1766
 
1767
+ #: ../subscribers/view-subscriber-export.php:50
1768
  msgid "Export Email Addresses"
1769
  msgstr ""
1770
 
1771
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1772
+ #: export.php:70
1773
  msgid "Type of List to Export"
1774
  msgstr ""
1775
 
1776
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1777
+ #: export.php:71
1778
  msgid "Total Emails Count"
1779
  msgstr ""
1780
 
1781
+ #: ../subscribers/view-subscriber-export.php:77
1782
  msgid "1"
1783
  msgstr ""
1784
 
1785
+ #: ../subscribers/view-subscriber-export.php:78
1786
  msgid "All Subscribers"
1787
  msgstr ""
1788
 
1789
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1790
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1791
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1792
  msgid "Click to Export in CSV"
1793
  msgstr ""
1794
 
1795
+ #: ../subscribers/view-subscriber-export.php:83
1796
  msgid "2"
1797
  msgstr ""
1798
 
1799
+ #: ../subscribers/view-subscriber-export.php:84
1800
  msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1801
  msgstr ""
1802
 
1803
+ #: ../subscribers/view-subscriber-export.php:89
1804
  msgid "3"
1805
  msgstr ""
1806
 
1807
+ #: ../subscribers/view-subscriber-export.php:90
1808
  msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1809
  msgstr ""
1810
 
1811
+ #: ../subscribers/view-subscriber-export.php:95
1812
  msgid "4"
1813
  msgstr ""
1814
 
1815
+ #: ../subscribers/view-subscriber-export.php:96
1816
  msgid "WordPress Registered Users"
1817
  msgstr ""
1818
 
1819
+ #: ../subscribers/view-subscriber-export.php:101
1820
  msgid "5"
1821
  msgstr ""
1822
 
1823
+ #: ../subscribers/view-subscriber-export.php:102
1824
  msgid "Commented Authors"
1825
  msgstr ""
1826
 
1954
  msgid "Resend Confirmation"
1955
  msgstr ""
1956
 
1957
+ #: ../subscribers/view-subscriber-show.php:303
1958
+ msgid "Update Subscribers Group"
1959
+ msgstr ""
1960
+
1961
  #: ../subscribers/view-subscriber-show.php:304
1962
  msgid "Update Subscribers Status"
1963
  msgstr ""
notification/notification-add.php CHANGED
@@ -103,7 +103,7 @@ if ( ! defined( 'ABSPATH' ) ) {
103
 
104
  <style>
105
  .form-table th {
106
- width: 250px;
107
  }
108
  </style>
109
 
@@ -118,7 +118,7 @@ if ( ! defined( 'ABSPATH' ) ) {
118
  <tbody>
119
  <tr>
120
  <th scope="row">
121
- <label for="tag-link"><?php echo __( 'Select Subscribers Group', ES_TDOMAIN ); ?></label>
122
  </th>
123
  <td>
124
  <select name="es_note_group" id="es_note_group">
103
 
104
  <style>
105
  .form-table th {
106
+ width: 400px;
107
  }
108
  </style>
109
 
118
  <tbody>
119
  <tr>
120
  <th scope="row">
121
+ <label for="tag-link"><?php echo __( 'Subscribers Group to send post notification to', ES_TDOMAIN ); ?></label>
122
  </th>
123
  <td>
124
  <select name="es_note_group" id="es_note_group">
notification/notification-edit.php CHANGED
@@ -113,7 +113,7 @@ if ( ! defined( 'ABSPATH' ) ) {
113
 
114
  <style>
115
  .form-table th {
116
- width: 250px;
117
  }
118
  </style>
119
 
@@ -129,7 +129,7 @@ if ( ! defined( 'ABSPATH' ) ) {
129
  <tbody>
130
  <tr>
131
  <th scope="row">
132
- <label for="tag-link"><?php echo __( 'Update Subscribers Group', ES_TDOMAIN ); ?></label>
133
  </th>
134
  <td>
135
  <select name="es_note_group" id="es_note_group">
113
 
114
  <style>
115
  .form-table th {
116
+ width: 400px;
117
  }
118
  </style>
119
 
129
  <tbody>
130
  <tr>
131
  <th scope="row">
132
+ <label for="tag-link"><?php echo __( 'Subscribers Group to send post notification to', ES_TDOMAIN ); ?></label>
133
  </th>
134
  <td>
135
  <select name="es_note_group" id="es_note_group">
query/db_delivery.php CHANGED
@@ -6,134 +6,153 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  class es_cls_delivery {
9
- public static function es_delivery_select($sentguid = "", $offset = 0, $limit = 0) {
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_deliverreport` where 1=1";
16
- if($sentguid != "") {
17
- $sSql = $sSql . " and es_deliver_sentguid='".$sentguid."'";
18
- $sSql = $sSql . " order by es_deliver_id desc limit $offset, $limit";
 
 
 
 
 
 
19
  }
20
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
21
 
22
  return $arrRes;
23
 
24
  }
25
 
26
- public static function es_delivery_count($sentguid = "") {
 
27
 
28
  global $wpdb;
29
 
30
  $result = '0';
31
 
32
- if($sentguid != "") {
33
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s", array($sentguid));
 
 
 
34
  }
35
- $result = $wpdb->get_var($sSql);
36
 
37
  return $result;
38
 
39
  }
40
 
41
  // Query to get total viewed emails per report
42
- public static function es_delivery_viewed_count($sentguid = "") {
43
 
44
  global $wpdb;
45
 
46
  $result = '0';
47
 
48
- if($sentguid != "") {
49
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_deliverreport` WHERE `es_deliver_status` = 'Viewed' AND `es_deliver_sentguid` = %s", array($sentguid));
 
 
 
50
  }
51
- $result = $wpdb->get_var($sSql);
52
 
53
  return $result;
54
 
55
  }
56
 
57
- public static function es_delivery_ins($guid = "", $dbid = 0, $email = "", $mailsenttype = "") {
58
 
59
  global $wpdb;
60
 
61
- $returnid = 0;
62
 
63
- if($mailsenttype == "Immediately") {
64
  $es_sent_status = "Sent";
65
- $currentdate = date('Y-m-d G:i:s');
66
  } else {
67
  $es_sent_status = "In Queue";
68
- $currentdate = "0000-00-00";
69
  }
70
 
71
- $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_deliverreport` (`es_deliver_sentguid`,`es_deliver_emailid`, `es_deliver_emailmail`, `es_deliver_sentdate`,`es_deliver_status`,`es_deliver_sentstatus`,`es_deliver_senttype`) VALUES (%s, %s, %s, %s, %s, %s, %s)", array($guid, $dbid, $email, $currentdate, "Nodata", $es_sent_status, $mailsenttype));
72
- $wpdb->query($sSql);
73
- $returnid = $wpdb->insert_id;
 
 
 
74
 
75
- return $returnid;
76
  }
77
 
78
- public static function es_delivery_ups($id = 0) {
79
 
80
  global $wpdb;
81
 
82
- $returnid = 0;
83
- $currentdate = date('Y-m-d G:i:s');
84
 
85
- if(is_numeric($id)) {
86
- $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_deliverreport` SET `es_deliver_status` = %s,
87
- `es_deliver_viewdate` = %s WHERE es_deliver_id = %d LIMIT 1", array("Viewed", $currentdate, $id));
88
- $wpdb->query($sSql);
 
 
89
  }
90
 
91
  return true;
92
 
93
  }
94
 
95
- public static function es_delivery_ups_cron($id = 0) {
96
 
97
  global $wpdb;
98
 
99
- $returnid = 0;
100
- $currentdate = date('Y-m-d G:i:s');
101
 
102
- if(is_numeric($id)) {
103
- $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_deliverreport` SET `es_deliver_sentstatus` = %s,
104
- `es_deliver_sentdate` = %s WHERE es_deliver_id = %d LIMIT 1", array("Sent", $currentdate, $id));
105
- $wpdb->query($sSql);
 
 
106
  }
107
 
108
  return true;
109
 
110
  }
111
 
112
- public static function es_delivery_cronmail_inqueue($limit = 50, $sentguid) {
113
 
114
  global $wpdb;
115
 
116
  $arrRes = array();
117
 
118
- $sSql = "";
119
- $sSql = $wpdb->prepare("SELECT * FROM `".$wpdb->prefix."es_deliverreport` where es_deliver_senttype=%s
120
- and es_deliver_sentstatus=%s and es_deliver_sentguid = %s order by es_deliver_id limit 0, $limit", array("Cron", "In Queue", $sentguid));
121
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
 
122
 
123
  return $arrRes;
124
 
125
  }
126
 
127
- public static function es_delivery_cronmail_count($sentguid) {
128
 
129
  global $wpdb;
130
 
131
  $result = '0';
132
 
133
- if($sentguid != "") {
134
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s
135
- and es_deliver_senttype=%s and es_deliver_sentstatus = %s", array($sentguid, "Cron", "In Queue"));
136
- $result = $wpdb->get_var($sSql);
 
137
  }
138
 
139
  return $result;
6
  }
7
 
8
  class es_cls_delivery {
9
+ public static function es_delivery_select( $sentguid = "", $offset = 0, $limit = 0 ) {
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
+ if( $sentguid != "" ) {
16
+ $query = $wpdb->prepare( "SELECT *
17
+ FROM {$wpdb->prefix}es_deliverreport
18
+ WHERE es_deliver_sentguid = %s
19
+ ORDER BY es_deliver_id DESC
20
+ LIMIT $offset, $limit", $sentguid );
21
+ } else {
22
+ $query = $wpdb->prepare( "SELECT *
23
+ FROM {$wpdb->prefix}es_deliverreport
24
+ WHERE 1 = %d", 1 );
25
  }
26
+ $arrRes = $wpdb->get_results( $query, ARRAY_A );
27
 
28
  return $arrRes;
29
 
30
  }
31
 
32
+ // Query to get count of total emails sent
33
+ public static function es_delivery_count( $sentguid = "" ) {
34
 
35
  global $wpdb;
36
 
37
  $result = '0';
38
 
39
+ if( $sentguid != "" ) {
40
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
41
+ FROM {$wpdb->prefix}es_deliverreport
42
+ WHERE es_deliver_sentguid = %s", array( $sentguid ) );
43
+ $result = $wpdb->get_var( $query );
44
  }
 
45
 
46
  return $result;
47
 
48
  }
49
 
50
  // Query to get total viewed emails per report
51
+ public static function es_delivery_viewed_count( $sentguid = "" ) {
52
 
53
  global $wpdb;
54
 
55
  $result = '0';
56
 
57
+ if( $sentguid != "" ) {
58
+ $query = $wpdb->prepare("SELECT COUNT(*) AS count
59
+ FROM {$wpdb->prefix}es_deliverreport
60
+ WHERE es_deliver_status = 'Viewed' AND es_deliver_sentguid = %s", array( $sentguid ) );
61
+ $result = $wpdb->get_var( $query );
62
  }
 
63
 
64
  return $result;
65
 
66
  }
67
 
68
+ public static function es_delivery_ins( $guid = "", $dbid = 0, $email = "", $mailsenttype = "" ) {
69
 
70
  global $wpdb;
71
 
72
+ $return_id = 0;
73
 
74
+ if( $mailsenttype == "Immediately" ) {
75
  $es_sent_status = "Sent";
76
+ $current_date = date('Y-m-d G:i:s');
77
  } else {
78
  $es_sent_status = "In Queue";
79
+ $current_date = "0000-00-00";
80
  }
81
 
82
+ $query = $wpdb->prepare( "INSERT INTO {$wpdb->prefix}es_deliverreport
83
+ ( es_deliver_sentguid, es_deliver_emailid, es_deliver_emailmail, es_deliver_sentdate, es_deliver_status, es_deliver_sentstatus, es_deliver_senttype )
84
+ VALUES ( %s, %s, %s, %s, %s, %s, %s )", array( $guid, $dbid, $email, $current_date, "Nodata", $es_sent_status, $mailsenttype ) );
85
+
86
+ $wpdb->query( $query );
87
+ $return_id = $wpdb->insert_id;
88
 
89
+ return $return_id;
90
  }
91
 
92
+ public static function es_delivery_ups( $id = 0 ) {
93
 
94
  global $wpdb;
95
 
96
+ $current_date = date('Y-m-d G:i:s');
 
97
 
98
+ if( is_numeric( $id ) ) {
99
+ $query = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_deliverreport
100
+ SET es_deliver_status = %s, es_deliver_viewdate = %s
101
+ WHERE es_deliver_id = %d
102
+ LIMIT 1", array( "Viewed", $current_date, $id ) );
103
+ $wpdb->query( $query );
104
  }
105
 
106
  return true;
107
 
108
  }
109
 
110
+ public static function es_delivery_ups_cron( $id = 0 ) {
111
 
112
  global $wpdb;
113
 
114
+ $current_date = date('Y-m-d G:i:s');
 
115
 
116
+ if( is_numeric( $id ) ) {
117
+ $query = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_deliverreport
118
+ SET es_deliver_sentstatus = %s, es_deliver_sentdate = %s
119
+ WHERE es_deliver_id = %d
120
+ LIMIT 1", array( "Sent", $current_date, $id ) );
121
+ $wpdb->query( $query );
122
  }
123
 
124
  return true;
125
 
126
  }
127
 
128
+ public static function es_delivery_cronmail_inqueue( $limit = 50, $sentguid ) {
129
 
130
  global $wpdb;
131
 
132
  $arrRes = array();
133
 
134
+ $query = $wpdb->prepare( "SELECT *
135
+ FROM {$wpdb->prefix}es_deliverreport
136
+ WHERE es_deliver_senttype = %s AND es_deliver_sentstatus = %s AND es_deliver_sentguid = %s
137
+ ORDER BY es_deliver_id
138
+ LIMIT 0, $limit", array( "Cron", "In Queue", $sentguid ) );
139
+ $arrRes = $wpdb->get_results( $query, ARRAY_A );
140
 
141
  return $arrRes;
142
 
143
  }
144
 
145
+ public static function es_delivery_cronmail_count( $sentguid ) {
146
 
147
  global $wpdb;
148
 
149
  $result = '0';
150
 
151
+ if( $sentguid != "" ) {
152
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
153
+ FROM {$wpdb->prefix}es_deliverreport
154
+ WHERE es_deliver_sentguid = %s AND es_deliver_senttype = %s AND es_deliver_sentstatus = %s", array( $sentguid, "Cron", "In Queue" ) );
155
+ $result = $wpdb->get_var( $query );
156
  }
157
 
158
  return $result;
query/db_notification.php CHANGED
@@ -6,100 +6,113 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  class es_cls_notification {
9
- public static function es_notification_select($id = 0) {
 
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_notification` where 1=1";
16
- if($id > 0) {
17
- $sSql = $sSql . " and es_note_id=".$id;
18
- $arrRes = $wpdb->get_row($sSql, ARRAY_A);
 
19
  } else {
20
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
 
 
21
  }
22
 
23
  return $arrRes;
24
 
25
  }
26
 
27
- public static function es_notification_count($id = 0) {
28
 
29
  global $wpdb;
30
 
31
  $result = '0';
32
 
33
- if($id > 0) {
34
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_notification` WHERE `es_note_id` = %d", array($id));
 
 
35
  } else {
36
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_notification`";
 
 
37
  }
38
- $result = $wpdb->get_var($sSql);
39
 
40
  return $result;
41
 
42
  }
43
 
44
- public static function es_notification_delete($id = 0) {
45
 
46
  global $wpdb;
47
 
48
- $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_notification` WHERE `es_note_id` = %d LIMIT 1", $id);
49
- $wpdb->query($sSql);
 
 
 
50
 
51
  return true;
52
 
53
  }
54
 
55
- public static function es_notification_ins($data = array(), $action = "insert") {
56
 
57
  global $wpdb;
58
 
59
- if($action == "insert") {
60
- $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_notification` (`es_note_cat`,
61
- `es_note_group`, `es_note_templ`, `es_note_status`) VALUES(%s, %s, %s, %s)",
62
- array($data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"]));
63
- } elseif($action == "update") {
64
- $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_notification` SET `es_note_cat` = %s, `es_note_group` = %s, `es_note_templ` = %d,
65
- `es_note_status` = %s WHERE es_note_id = %d LIMIT 1",
66
- array($data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"], $data["es_note_id"]));
 
67
  }
68
- $wpdb->query($sSql);
69
 
70
  return true;
71
 
72
  }
73
 
74
- public static function es_notification_prepare($post_id = 0) {
75
 
76
  global $wpdb;
77
 
78
  $arrNotification = array();
79
 
80
- if($post_id > 0) {
81
  $post_type = get_post_type( $post_id );
82
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_notification` where (es_note_status = 'Enable' or es_note_status = 'Cron') ";
83
- if($post_type == "post") {
84
  $category = get_the_category( $post_id );
85
- $totcategory = count($category);
86
- if ( $totcategory > 0) {
87
- for($i=0; $i<$totcategory; $i++) {
88
- if($i == 0) {
89
- $sSql = $sSql . " and (";
90
  } else {
91
- $sSql = $sSql . " or";
92
  }
93
- $sSql = $sSql . " es_note_cat LIKE '%##" . addslashes(htmlspecialchars_decode($category[$i]->cat_name)). "##%'"; // alternative addslashes(htmlspecialchars_decode(text)) = mysqli_real_escape_string but not working all the time
94
- if($i == ($totcategory-1)) {
95
- $sSql = $sSql . ")";
96
  }
97
  }
98
- $arrNotification = $wpdb->get_results($sSql, ARRAY_A);
99
  }
100
  } else {
101
- $sSql = $sSql . " and es_note_cat LIKE '%##{T}" . $post_type . "{T}##%'";
102
- $arrNotification = $wpdb->get_results($sSql, ARRAY_A);
103
  }
104
  }
105
 
@@ -107,29 +120,29 @@ class es_cls_notification {
107
 
108
  }
109
 
110
- public static function es_notification_subscribers($arrNotification = array()) {
111
 
112
  global $wpdb;
113
 
114
  $subscribers = array();
115
  $totnotification = count($arrNotification);
116
 
117
- if($totnotification > 0) {
118
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail <> '' ";
119
- for($i=0; $i<$totnotification; $i++) {
120
- if($i == 0) {
121
- $sSql = $sSql . " and (";
122
  } else {
123
- $sSql = $sSql . " or";
124
  }
125
- $sSql = $sSql . " es_email_group = '" . $arrNotification[$i]['es_note_group']. "'";
126
- if($i == ($totnotification-1)) {
127
- $sSql = $sSql . ")";
128
  }
129
  }
130
- $sSql = $sSql . " and (es_email_status = 'Confirmed' or es_email_status = 'Single Opt In')";
131
- $sSql = $sSql . " order by es_email_mail asc";
132
- $subscribers = $wpdb->get_results($sSql, ARRAY_A);
133
  }
134
 
135
  return $subscribers;
6
  }
7
 
8
  class es_cls_notification {
9
+ // Query to view Post Notifications Dashboard and edit any Post Notification
10
+ public static function es_notification_select( $id = 0 ) {
11
 
12
  global $wpdb;
13
 
14
  $arrRes = array();
15
 
16
+ if( $id > 0 ) {
17
+ $query = $wpdb->prepare( "SELECT *
18
+ FROM {$wpdb->prefix}es_notification
19
+ WHERE es_note_id = %d", $id );
20
+ $arrRes = $wpdb->get_row( $query, ARRAY_A );
21
  } else {
22
+ $query = $wpdb->prepare( "SELECT *
23
+ FROM {$wpdb->prefix}es_notification
24
+ WHERE 1 = %d", 1 );
25
+ $arrRes = $wpdb->get_results( $query, ARRAY_A );
26
  }
27
 
28
  return $arrRes;
29
 
30
  }
31
 
32
+ public static function es_notification_count( $id = 0 ) {
33
 
34
  global $wpdb;
35
 
36
  $result = '0';
37
 
38
+ if( $id > 0 ) {
39
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
40
+ FROM {$wpdb->prefix}es_notification
41
+ WHERE es_note_id = %d", array( $id ) );
42
  } else {
43
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
44
+ FROM {$wpdb->prefix}es_notification
45
+ WHERE 1 = %d", 1 );
46
  }
47
+ $result = $wpdb->get_var( $query );
48
 
49
  return $result;
50
 
51
  }
52
 
53
+ public static function es_notification_delete( $id = 0 ) {
54
 
55
  global $wpdb;
56
 
57
+ $es_delete_notification = $wpdb->prepare( "DELETE
58
+ FROM {$wpdb->prefix}es_notification
59
+ WHERE es_note_id = %d
60
+ LIMIT 1", $id );
61
+ $wpdb->query( $es_delete_notification );
62
 
63
  return true;
64
 
65
  }
66
 
67
+ public static function es_notification_ins( $data = array(), $action = "insert" ) {
68
 
69
  global $wpdb;
70
 
71
+ if( $action == "insert" ) {
72
+ $query = $wpdb->prepare( "INSERT INTO {$wpdb->prefix}es_notification
73
+ ( es_note_cat, es_note_group, es_note_templ, es_note_status )
74
+ VALUES( %s, %s, %s, %s )", array( $data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"] ) );
75
+ } elseif( $action == "update" ) {
76
+ $query = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_notification
77
+ SET es_note_cat = %s, es_note_group = %s, es_note_templ = %d, es_note_status = %s
78
+ WHERE es_note_id = %d
79
+ LIMIT 1", array( $data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"], $data["es_note_id"] ) );
80
  }
81
+ $wpdb->query( $query );
82
 
83
  return true;
84
 
85
  }
86
 
87
+ public static function es_notification_prepare( $post_id = 0 ) {
88
 
89
  global $wpdb;
90
 
91
  $arrNotification = array();
92
 
93
+ if( $post_id > 0 ) {
94
  $post_type = get_post_type( $post_id );
95
+ $sSql = "SELECT * FROM {$wpdb->prefix}es_notification WHERE (es_note_status = 'Enable' OR es_note_status = 'Cron') ";
96
+ if( $post_type == "post" ) {
97
  $category = get_the_category( $post_id );
98
+ $totcategory = count( $category );
99
+ if ( $totcategory > 0 ) {
100
+ for( $i=0; $i<$totcategory; $i++ ) {
101
+ if( $i == 0 ) {
102
+ $sSql .= " and (";
103
  } else {
104
+ $sSql .= " or";
105
  }
106
+ $sSql .= " es_note_cat LIKE '%##" . addslashes(htmlspecialchars_decode($category[$i]->cat_name)). "##%'"; // alternative addslashes(htmlspecialchars_decode(text)) = mysqli_real_escape_string but not working all the time
107
+ if( $i == ( $totcategory-1 ) ) {
108
+ $sSql .= ")";
109
  }
110
  }
111
+ $arrNotification = $wpdb->get_results( $sSql, ARRAY_A );
112
  }
113
  } else {
114
+ $sSql .= " and es_note_cat LIKE '%##{T}" . $post_type . "{T}##%'";
115
+ $arrNotification = $wpdb->get_results( $sSql, ARRAY_A );
116
  }
117
  }
118
 
120
 
121
  }
122
 
123
+ public static function es_notification_subscribers( $arrNotification = array() ) {
124
 
125
  global $wpdb;
126
 
127
  $subscribers = array();
128
  $totnotification = count($arrNotification);
129
 
130
+ if( $totnotification > 0 ) {
131
+ $sSql = "SELECT * FROM {$wpdb->prefix}es_emaillist WHERE es_email_mail != ''";
132
+ for( $i=0; $i<$totnotification; $i++ ) {
133
+ if( $i == 0 ) {
134
+ $sSql .= " and (";
135
  } else {
136
+ $sSql .= " or";
137
  }
138
+ $sSql .= " es_email_group = '" . $arrNotification[$i]['es_note_group']. "'";
139
+ if( $i == ( $totnotification-1 ) ) {
140
+ $sSql .= ")";
141
  }
142
  }
143
+ $sSql .= " and (es_email_status = 'Confirmed' or es_email_status = 'Single Opt In')";
144
+ $sSql .= " ORDER BY es_email_mail ASC";
145
+ $subscribers = $wpdb->get_results( $sSql, ARRAY_A );
146
  }
147
 
148
  return $subscribers;
query/db_optimize.php CHANGED
@@ -11,15 +11,19 @@ class es_cls_optimize {
11
  global $wpdb;
12
 
13
  $total = es_cls_sentmail::es_sentmail_count($id = 0);
14
- if ($total > 10) {
15
  $delete = $total - 10;
16
- $sSql = "DELETE FROM `".$wpdb->prefix."es_sentdetails` ORDER BY es_sent_id ASC LIMIT ".$delete;
17
- $wpdb->query($sSql);
 
 
 
18
  }
19
 
20
- $sSql = "DELETE FROM `".$wpdb->prefix."es_deliverreport` WHERE es_deliver_sentguid NOT IN";
21
- $sSql = $sSql . " (SELECT es_sent_guid FROM `".$wpdb->prefix."es_sentdetails`)";
22
- $wpdb->query($sSql);
 
23
 
24
  return true;
25
  }
11
  global $wpdb;
12
 
13
  $total = es_cls_sentmail::es_sentmail_count($id = 0);
14
+ if ( $total > 10 ) {
15
  $delete = $total - 10;
16
+ $sSql = $wpdb->prepare( "DELETE
17
+ FROM {$wpdb->prefix}es_sentdetails
18
+ WHERE 1 = %d
19
+ ORDER BY es_sent_id ASC LIMIT".$delete, 1 );
20
+ $wpdb->query( $sSql );
21
  }
22
 
23
+ $sSql = $wpdb->prepare( "DELETE
24
+ FROM {$wpdb->prefix}es_deliverreport
25
+ WHERE 1 = %d AND es_deliver_sentguid NOT IN (SELECT es_sent_guid FROM {$wpdb->prefix}es_sentdetails)", 1 );
26
+ $wpdb->query( $sSql );
27
 
28
  return true;
29
  }
query/db_sentmail.php CHANGED
@@ -6,96 +6,117 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  class es_cls_sentmail {
9
- public static function es_sentmail_select($id = 0, $offset = 0, $limit = 0) {
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_sentdetails` where 1=1";
16
- if($id > 0) {
17
- $sSql = $sSql . " and es_sent_id=".$id;
18
- $arrRes = $wpdb->get_row($sSql, ARRAY_A);
 
19
  } else {
20
- $sSql = $sSql . " order by es_sent_id desc limit $offset, $limit";
21
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
 
 
 
22
  }
23
 
24
  return $arrRes;
25
 
26
  }
27
 
28
- public static function es_sentmail_count($id = 0) {
 
29
 
30
  global $wpdb;
31
 
32
  $result = '0';
33
 
34
- if($id > 0) {
35
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_sentdetails` WHERE `es_sent_id` = %d", array($id));
 
 
36
  } else {
37
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_sentdetails`";
 
 
38
  }
39
- $result = $wpdb->get_var($sSql);
40
 
41
  return $result;
42
 
43
  }
44
 
45
- public static function es_sentmail_delete($id = 0) {
 
46
 
47
  global $wpdb;
48
 
49
  $Sentdetails = array();
50
  $Sentdetails = es_cls_sentmail::es_sentmail_select($id, 0, 1);
51
 
52
- if(count($Sentdetails) > 0) {
53
  $es_deliver_sentguid = $Sentdetails['es_sent_guid'];
54
- if($es_deliver_sentguid != "") {
55
- $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s", $es_deliver_sentguid);
56
- $wpdb->query($sSql);
57
- }
58
- $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_sentdetails` WHERE `es_sent_id` = %d LIMIT 1", $id);
59
- $wpdb->query($sSql);
 
 
 
 
 
 
60
  }
61
 
62
  return true;
63
 
64
  }
65
 
66
- public static function es_sentmail_ins($guid = "", $qstring = 0, $source = "", $startdt = "", $enddt = "", $count = "", $preview = "", $mailsenttype = "") {
 
67
 
68
  global $wpdb;
69
 
70
  $returnid = 0;
71
  $currentdate = date('Y-m-d G:i:s');
72
 
73
- if($mailsenttype == "Immediately") {
74
  $es_sent_status = "Sent";
75
  } else {
76
  $es_sent_status = "In Queue";
77
  }
78
 
79
- $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_sentdetails` (`es_sent_guid`, `es_sent_qstring`, `es_sent_source`,
80
- `es_sent_starttime`, `es_sent_endtime`, `es_sent_count`, `es_sent_preview`, `es_sent_status`, `es_sent_type`)
81
- VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
82
- array($guid, $qstring, $source, $startdt, $enddt, $count, $preview, $es_sent_status, $mailsenttype));
83
- $wpdb->query($sSql);
84
 
85
  return true;
86
 
87
  }
88
 
89
- public static function es_sentmail_ups($guid = "", $sentsubject = "") {
 
90
 
91
  global $wpdb;
92
 
93
  $returnid = 0;
94
- $currentdate = date('Y-m-d G:i:s');
95
 
96
- $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_sentdetails` SET `es_sent_endtime` = %s, `es_sent_subject` = %s
97
- WHERE es_sent_guid = %s LIMIT 1", array($currentdate, $sentsubject, $guid));
98
- $wpdb->query($sSql);
 
 
99
 
100
  return true;
101
  }
@@ -106,24 +127,33 @@ class es_cls_sentmail {
106
 
107
  $arrRes = array();
108
 
109
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_sentdetails` where es_sent_type='Cron' and es_sent_status='In Queue'";
110
- $sSql = $sSql . " order by es_sent_id limit 0, 1";
111
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
 
 
 
 
 
112
 
113
  return $arrRes;
114
 
115
  }
116
 
117
- public static function es_sentmail_cronmail_ups($guid = "") {
 
118
 
119
  global $wpdb;
120
 
121
  $returnid = 0;
122
- $currentdate = date('Y-m-d G:i:s');
123
 
124
- $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_sentdetails` SET `es_sent_endtime` = %s, `es_sent_status` = %s
125
- WHERE es_sent_guid = %s LIMIT 1", array($currentdate, "Sent", $guid));
126
- $wpdb->query($sSql);
 
 
127
 
128
  return true;
129
  }
6
  }
7
 
8
  class es_cls_sentmail {
9
+ public static function es_sentmail_select( $id = 0, $offset = 0, $limit = 0 ) {
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
+ if( $id > 0 ) {
16
+ $query = $wpdb->prepare( "SELECT *
17
+ FROM {$wpdb->prefix}es_sentdetails
18
+ WHERE es_sent_id = %d", $id );
19
+ $arrRes = $wpdb->get_row( $query, ARRAY_A );
20
  } else {
21
+ $query = $wpdb->prepare( "SELECT *
22
+ FROM {$wpdb->prefix}es_sentdetails
23
+ WHERE 1 = %d
24
+ ORDER BY es_sent_id DESC
25
+ LIMIT %d, %d", 1, $offset, $limit );
26
+ $arrRes = $wpdb->get_results( $query, ARRAY_A );
27
  }
28
 
29
  return $arrRes;
30
 
31
  }
32
 
33
+ // Query to view records on Reports Dashboard and preview individual report from Reports Dashboard
34
+ public static function es_sentmail_count( $id = 0 ) {
35
 
36
  global $wpdb;
37
 
38
  $result = '0';
39
 
40
+ if( $id > 0 ) {
41
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
42
+ FROM {$wpdb->prefix}es_sentdetails
43
+ WHERE es_sent_id = %d", array($id) );
44
  } else {
45
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
46
+ FROM {$wpdb->prefix}es_sentdetails
47
+ WHERE 1 = %d", 1 );
48
  }
49
+ $result = $wpdb->get_var( $query );
50
 
51
  return $result;
52
 
53
  }
54
 
55
+ // Query to delete records from Reports Dashboard from two tables: es_deliverreport & es_sentdetails
56
+ public static function es_sentmail_delete( $id = 0 ) {
57
 
58
  global $wpdb;
59
 
60
  $Sentdetails = array();
61
  $Sentdetails = es_cls_sentmail::es_sentmail_select($id, 0, 1);
62
 
63
+ if( count( $Sentdetails ) > 0 ) {
64
  $es_deliver_sentguid = $Sentdetails['es_sent_guid'];
65
+ if( $es_deliver_sentguid != "" ) {
66
+ $query = $wpdb->prepare( "DELETE
67
+ FROM {$wpdb->prefix}es_deliverreport
68
+ WHERE es_deliver_sentguid = %s", $es_deliver_sentguid );
69
+ $wpdb->query( $query );
70
+ }
71
+
72
+ $query = $wpdb->prepare( "DELETE
73
+ FROM {$wpdb->prefix}es_sentdetails
74
+ WHERE es_sent_id = %d
75
+ LIMIT 1", $id );
76
+ $wpdb->query( $query );
77
  }
78
 
79
  return true;
80
 
81
  }
82
 
83
+ // Query to insert sent emails (immediately) records in table: es_sentdetails - 1
84
+ public static function es_sentmail_ins( $guid = "", $qstring = 0, $source = "", $startdt = "", $enddt = "", $count = "", $preview = "", $mailsenttype = "" ) {
85
 
86
  global $wpdb;
87
 
88
  $returnid = 0;
89
  $currentdate = date('Y-m-d G:i:s');
90
 
91
+ if( $mailsenttype == "Immediately" ) {
92
  $es_sent_status = "Sent";
93
  } else {
94
  $es_sent_status = "In Queue";
95
  }
96
 
97
+ $query = $wpdb->prepare( "INSERT INTO {$wpdb->prefix}es_sentdetails
98
+ (es_sent_guid, es_sent_qstring, es_sent_source, es_sent_starttime, es_sent_endtime, es_sent_count, es_sent_preview, es_sent_status, es_sent_type)
99
+ VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)", array( $guid, $qstring, $source, $startdt, $enddt, $count, $preview, $es_sent_status, $mailsenttype ) );
100
+
101
+ $wpdb->query( $query );
102
 
103
  return true;
104
 
105
  }
106
 
107
+ // Query to insert sent emails (immediately) records in table: es_sentdetails - 2
108
+ public static function es_sentmail_ups( $guid = "", $sentsubject = "" ) {
109
 
110
  global $wpdb;
111
 
112
  $returnid = 0;
113
+ $currentdate = date('Y-m-d G:i:s');
114
 
115
+ $query = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_sentdetails
116
+ SET es_sent_endtime = %s, es_sent_subject = %s
117
+ WHERE es_sent_guid = %s
118
+ LIMIT 1", array( $currentdate, $sentsubject, $guid ) );
119
+ $wpdb->query( $query );
120
 
121
  return true;
122
  }
127
 
128
  $arrRes = array();
129
 
130
+ $cron = 'Cron';
131
+ $in_queue = 'In Queue';
132
+
133
+ $query = $wpdb->prepare( "SELECT *
134
+ FROM {$wpdb->prefix}es_sentdetails
135
+ WHERE es_sent_type = %s AND es_sent_status = %s
136
+ ORDER BY es_sent_id
137
+ LIMIT 0, 1", $cron, $in_queue );
138
+ $arrRes = $wpdb->get_results( $query, ARRAY_A );
139
 
140
  return $arrRes;
141
 
142
  }
143
 
144
+ // Query to insert sent emails (cron) records in table: es_sentdetails
145
+ public static function es_sentmail_cronmail_ups( $guid = "" ) {
146
 
147
  global $wpdb;
148
 
149
  $returnid = 0;
150
+ $currentdate = date('Y-m-d G:i:s');
151
 
152
+ $query = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_sentdetails
153
+ SET es_sent_endtime = %s, es_sent_status = %s
154
+ WHERE es_sent_guid = %s
155
+ LIMIT 1", array( $currentdate, "Sent", $guid ) );
156
+ $wpdb->query( $query );
157
 
158
  return true;
159
  }
query/db_settings.php CHANGED
@@ -6,24 +6,30 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  class es_cls_settings {
9
- public static function es_setting_select($id = 1) {
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_pluginconfig` where 1=1";
16
- $sSql = $sSql . " and es_c_id=".$id;
17
- $arrRes = $wpdb->get_row($sSql, ARRAY_A);
 
 
 
18
 
19
- return $arrRes;
20
  }
21
 
22
  public static function es_get_all_settings() {
 
23
  global $wpdb;
24
 
25
- $query = "SELECT option_name, option_value FROM {$wpdb->prefix}options WHERE option_name LIKE 'ig_es%'";
26
- $result = $wpdb->get_results( $query, ARRAY_A);
 
 
 
27
 
28
  $settings = array();
29
 
@@ -34,5 +40,6 @@ class es_cls_settings {
34
  }
35
 
36
  return $settings;
 
37
  }
38
  }
6
  }
7
 
8
  class es_cls_settings {
9
+ public static function es_setting_select( $id = 1 ) {
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
+ $es_get_settings_data = $wpdb->prepare( "SELECT *
16
+ FROM {$wpdb->prefix}es_pluginconfig
17
+ WHERE es_c_id = %d", $id );
18
+ $es_settings_data = $wpdb->get_row( $es_get_settings_data, ARRAY_A );
19
+
20
+ return $es_settings_data;
21
 
 
22
  }
23
 
24
  public static function es_get_all_settings() {
25
+
26
  global $wpdb;
27
 
28
+ $condition = 'ig_es';
29
+ $get_all_es_settings_from_options = $wpdb->prepare( "SELECT option_name, option_value
30
+ FROM {$wpdb->prefix}options
31
+ WHERE option_name LIKE %s", $wpdb->esc_like( $condition ) . '%' );
32
+ $result = $wpdb->get_results( $get_all_es_settings_from_options, ARRAY_A );
33
 
34
  $settings = array();
35
 
40
  }
41
 
42
  return $settings;
43
+
44
  }
45
  }
query/db_subscriber.php CHANGED
@@ -6,69 +6,91 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  class es_cls_dbquery {
9
- public static function es_view_subscriber_search($search = "", $id = 0) {
 
10
 
11
  global $wpdb;
12
 
13
  $arrRes = array();
14
 
15
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail != '' ";
16
- if($search != "" && $search != "ALL") {
17
- $letter = explode(',', $search);
18
- $length = count($letter);
19
- for ($i = 0; $i < $length; $i++) {
20
- if($i == 0) {
21
- $sSql = $sSql . " and";
22
  } else {
23
- $sSql = $sSql . " or";
24
  }
25
- $sSql = $sSql . " es_email_mail LIKE '" . $letter[$i]. "%'";
26
  }
27
  }
28
  if($id > 0) {
29
- $sSql = $sSql . " and es_email_id=".$id;
30
 
31
  }
32
- $sSql = $sSql . " order by es_email_id asc";
33
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  return $arrRes;
36
  }
37
 
38
  // Query to fetch subscribers data on Subscribers Dashboard
39
- public static function es_view_subscribers_details($id = 0, $search_sts = "", $offset = 0, $limit = 0, $search_group = "") {
40
 
41
  global $wpdb;
42
 
43
  $view_subscribers_details = array();
44
 
45
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_mail != '' ";
46
- if($search_sts != "") {
47
- $sSql = $sSql . " and es_email_status='".$search_sts."'";
48
  }
49
 
50
- if($search_group != "" && $search_group != "ALL") {
51
- $sSql = $sSql . ' and es_email_group="'.$search_group.'"';
52
  }
53
 
54
- if($id > 0) {
55
- $sSql = $sSql . " and es_email_id=".$id;
56
 
57
  }
58
- $sSql = $sSql . " order by es_email_id desc";
59
- $sSql = $sSql . " LIMIT $offset, $limit";
60
- $view_subscribers_details = $wpdb->get_results($sSql, ARRAY_A);
61
 
62
  return $view_subscribers_details;
63
  }
64
 
65
 
66
- public static function es_view_subscriber_delete($id = 0) {
67
 
68
  global $wpdb;
69
 
70
- $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_emaillist` WHERE `es_email_id` = %d LIMIT 1", $id);
71
- $wpdb->query($sSql);
72
 
73
  return true;
74
  }
@@ -118,10 +140,9 @@ class es_cls_dbquery {
118
  return "ext";
119
  } else {
120
  $data['guid'] = es_cls_common::es_generate_guid(60);
121
- $sql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_emaillist`
122
- (`es_email_name`,`es_email_mail`, `es_email_status`, `es_email_created`, `es_email_viewcount`, `es_email_group`, `es_email_guid`)
123
- VALUES(%s, %s, %s, %s, %d, %s, %s)", array(trim($data["es_email_name"]), trim($data["es_email_mail"]),
124
- trim($data["es_email_status"]), $CurrentDate, 0, trim($data["es_email_group"]), $data['guid']));
125
  $sql = apply_filters( 'es_insert_subscribers_sql', $sql, $data );
126
  $wpdb->query($sql);
127
 
@@ -151,15 +172,16 @@ class es_cls_dbquery {
151
  return "sus";
152
  }
153
  } elseif( $action == "update" ) {
154
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."'";
155
- $sSql = $sSql . " and es_email_group='".trim($data["es_email_group"])."' and es_email_id != ".$data["es_email_id"];
 
156
  $result = $wpdb->get_var($sSql);
157
  if ( $result > 0 ) {
158
  return "ext";
159
  } else {
160
- $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_name` = %s, `es_email_mail` = %s,
161
- `es_email_status` = %s, `es_email_group` = %s WHERE es_email_id = %d LIMIT 1", array($data["es_email_name"], $data["es_email_mail"],
162
- $data["es_email_status"], $data["es_email_group"], $data["es_email_id"]));
163
  $wpdb->query($sSql);
164
  return "sus";
165
  }
@@ -168,135 +190,128 @@ class es_cls_dbquery {
168
 
169
  }
170
 
171
- public static function es_view_subscriber_bulk($idlist = "") {
172
-
173
- global $wpdb;
174
-
175
- $arrRes = array();
176
-
177
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail <> '' ";
178
- if($idlist != "") {
179
- $sSql = $sSql . " and es_email_id in (" . $idlist. ");";
180
- }
181
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
182
-
183
- return $arrRes;
184
- }
185
-
186
  public static function es_view_subscriber_group() {
187
 
188
  global $wpdb;
189
 
190
  $arrRes = array();
191
 
192
- $sSql = "SELECT distinct(es_email_group) FROM `".$wpdb->prefix."es_emaillist`";
193
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
 
194
 
195
  return $arrRes;
196
  }
197
 
198
- public static function es_view_subscriber_one($mail = "", $group = "") {
199
 
200
  global $wpdb;
201
 
202
  $arrRes = array();
203
 
204
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_mail = '".$mail."' AND es_email_group = '".$group."'";
205
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
206
 
207
  return $arrRes;
208
  }
209
 
210
  // Function to Bulk Update Subscribers Status
211
- public static function es_view_subscriber_upd_status($status = "", $idlist = "") {
212
 
213
  global $wpdb;
214
 
215
- $sSql = "UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_status` = '".$status."'";
216
- $sSql = $sSql . " WHERE es_email_id IN (".$idlist.")";
217
- $wpdb->query($sSql);
 
218
 
219
  return "sus";
220
  }
221
 
222
  // Function to Bulk Update Subscribers Group
223
- public static function es_view_subscriber_upd_group($group = "", $idlist = "") {
224
 
225
  global $wpdb;
226
 
227
- $sSql = "UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_group` = '".$group."'";
228
- $sSql = $sSql . " WHERE es_email_id IN (".$idlist.")";
229
- $wpdb->query($sSql);
 
230
 
231
  return "sus";
232
  }
233
 
234
- public static function es_view_subscriber_job($status = "", $id = 0, $guid = "", $email = "") {
235
 
236
  global $wpdb;
237
 
238
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist`";
239
- $sSql = $sSql . " WHERE es_email_id = %d";
240
- $sSql = $sSql . " and es_email_mail = %s";
241
- $sSql = $sSql . " and es_email_guid = %s Limit 1";
242
- $sSql = $wpdb->prepare($sSql, array($id, $email, $guid));
243
- $result = $wpdb->get_var($sSql);
244
 
245
- if ( $result > 0 ) {
246
- $sSql = "UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_status` = %s";
247
- $sSql = $sSql . " WHERE es_email_mail = %s Limit 10";
248
- $sSql = $wpdb->prepare($sSql, array($status, $email));
249
- $wpdb->query($sSql);
 
 
250
  return true;
251
  } else {
252
  return false;
253
  }
254
  }
255
 
256
- public static function es_view_subscriber_jobstatus($status = "", $id = 0, $guid = "", $email = "") {
257
 
258
  global $wpdb;
259
 
260
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist`";
261
- $sSql = $sSql . " WHERE es_email_id = %d";
262
- $sSql = $sSql . " and es_email_mail = %s";
263
- $sSql = $sSql . " and es_email_status = %s";
264
- $sSql = $sSql . " and es_email_guid = %s Limit 1";
265
- $sSql = $wpdb->prepare($sSql, array($id, $email, $status, $guid));
266
- $result = $wpdb->get_var($sSql);
267
 
268
- if ( $result > 0) {
269
  return true;
270
  } else {
271
  return false;
272
  }
273
  }
274
 
275
- public static function es_view_subscriber_widget($data = array()) {
276
 
277
  global $wpdb;
278
 
279
- $arrRes = array();
280
  $currentdate = date('Y-m-d G:i:s');
281
 
282
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."' and es_email_group='".trim($data["es_email_group"])."'";
283
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
 
284
 
285
- if ( !empty( $arrRes ) && count($arrRes) > 0 ) {
286
- if( $arrRes[0]['es_email_status'] == "Confirmed" || $arrRes[0]['es_email_status'] == "Single Opt In" ) {
287
  return "ext";
288
  } else {
289
  $action = "";
290
- $form['es_email_name'] = sanitize_text_field(esc_attr($data["es_email_name"]));
291
- $form['es_email_mail'] = sanitize_email(esc_attr($data["es_email_mail"]));
292
- $form['es_email_group'] = sanitize_text_field(esc_attr($data["es_email_group"]));
293
- $form['es_email_status'] = sanitize_text_field(esc_attr($data["es_email_status"]));
294
- $form['es_email_id'] = $arrRes[0]["es_email_id"];
 
295
  if ( array_key_exists( 'es_nonce', $data ) ) {
296
  $form['es_nonce'] = $data['es_nonce'];
297
  } elseif ( array_key_exists( 'es_af_nonce', $data ) ) {
298
  $form['es_af_nonce'] = $data['es_af_nonce'];
299
  }
 
300
  $action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
301
  return $action;
302
  }
@@ -311,8 +326,10 @@ class es_cls_dbquery {
311
 
312
  global $wpdb;
313
 
314
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_group = '".$groups."' AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' )";
315
- $total_subscribers = $wpdb->get_var( $sSql );
 
 
316
 
317
  return $total_subscribers;
318
 
@@ -325,8 +342,10 @@ class es_cls_dbquery {
325
 
326
  $subscribers_in_group = array();
327
 
328
- $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_group = '".$group."' AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' ) ";
329
- $subscribers_in_group = $wpdb->get_results( $sSql, ARRAY_A );
 
 
330
 
331
  return $subscribers_in_group;
332
 
@@ -339,13 +358,17 @@ class es_cls_dbquery {
339
 
340
  $result = '0';
341
 
342
- if($id > 0) {
343
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist` WHERE `es_email_id` = %d", array($id));
 
 
344
  } else {
345
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist`";
 
 
346
  }
347
 
348
- $result = $wpdb->get_var( $sSql );
349
 
350
  return $result;
351
 
@@ -358,8 +381,10 @@ class es_cls_dbquery {
358
 
359
  $active_subscribers_count = '0';
360
 
361
- $sSql = "SELECT COUNT(*) AS `count` FROM ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Confirmed', 'Single Opt In' )";
362
- $active_subscribers_count = $wpdb->get_var( $sSql );
 
 
363
 
364
  return $active_subscribers_count;
365
 
@@ -372,53 +397,13 @@ class es_cls_dbquery {
372
 
373
  $inactive_subscribers_count = '0';
374
 
375
- $sSql = "SELECT COUNT(*) AS `count` FROM ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Unconfirmed', 'Unsubscribed' )";
376
- $inactive_subscribers_count = $wpdb->get_var( $sSql );
 
 
377
 
378
  return $inactive_subscribers_count;
379
 
380
  }
381
 
382
- // Query to fetch survey result
383
- public static function es_survey_res() {
384
- global $wpdb;
385
-
386
- $args = array(
387
- 'post_type' => 'post',
388
- 'post_status' => 'publish',
389
- 'fields' => 'ids',
390
- 'date_query' => array(
391
- 'after' => '- 30 days'
392
- )
393
- );
394
- $query = new WP_Query( $args );
395
-
396
- $posts = $query->posts;
397
- $avg_post = (round((count($posts)/4)) > 1 ) ? round((count($posts)/4)) : 1 ;
398
-
399
- $sSql = "SELECT
400
- SUM((CASE WHEN es_sent_source = 'Post Notification' THEN 1 ELSE 0 END)) AS post_notification,
401
- SUM((CASE WHEN es_sent_source = 'Newsletter' THEN 1 ELSE 0 END)) AS newsletter,
402
- SUM((CASE WHEN es_sent_type = 'Cron' THEN 1 ELSE 0 END)) AS cron,
403
- SUM((CASE WHEN es_sent_type = 'Immediately' THEN 1 ELSE 0 END)) AS immediately
404
- FROM ".$wpdb->prefix . "es_sentdetails";
405
- $es_query_res = $wpdb->get_results( $sSql, ARRAY_A );
406
-
407
- $total_subscribers = es_cls_dbquery::es_view_subscriber_count(0);
408
- $active_subscribers = es_cls_dbquery::es_active_subscribers();
409
-
410
- $opt_in_type = get_option( 'ig_es_optintype', 'Double Opt In' );
411
-
412
- $es_survey_res['post_notification'] = (!empty($es_query_res[0]['post_notification'])) ? $es_query_res[0]['post_notification'] : 0;
413
- $es_survey_res['newsletter'] = (!empty($es_query_res[0]['newsletter'])) ? $es_query_res[0]['newsletter'] : 0;
414
- $es_survey_res['cron'] = (!empty($es_query_res[0]['cron'])) ? $es_query_res[0]['cron'] : 0;
415
- $es_survey_res['immediately'] = (!empty($es_query_res[0]['immediately'])) ? $es_query_res[0]['immediately'] : 0;
416
- $es_survey_res['es_active_subscribers'] = $active_subscribers;
417
- $es_survey_res['es_total_subscribers'] = $total_subscribers;
418
- $es_survey_res['es_avg_post_cnt'] = $avg_post;
419
- $es_survey_res['es_opt_in_type'] = $opt_in_type;
420
-
421
- return $es_survey_res;
422
- }
423
-
424
  }
6
  }
7
 
8
  class es_cls_dbquery {
9
+ // Query to filter records on Subscribers Dashboard and get subscribers information for sending confirmation email and welcome email to subscribers
10
+ public static function es_view_subscriber_search( $search = "", $id = 0 ) {
11
 
12
  global $wpdb;
13
 
14
  $arrRes = array();
15
 
16
+ $sSql = "SELECT * FROM {$wpdb->prefix}es_emaillist WHERE es_email_mail != ''";
17
+ if( $search != "" && $search != "ALL" ) {
18
+ $letter = explode( ',', $search );
19
+ $length = count( $letter );
20
+ for( $i = 0; $i < $length; $i++ ) {
21
+ if( $i == 0 ) {
22
+ $sSql .= " AND";
23
  } else {
24
+ $sSql .= " OR";
25
  }
26
+ $sSql .= " es_email_mail LIKE '" . $letter[$i]. "%'";
27
  }
28
  }
29
  if($id > 0) {
30
+ $sSql .= " AND es_email_id=".$id;
31
 
32
  }
33
+ $sSql .= " ORDER BY es_email_id ASC";
34
+ $arrRes = $wpdb->get_results( $sSql, ARRAY_A );
35
+
36
+ return $arrRes;
37
+ }
38
+
39
+ // Query to re-send confirmation emails in bulk from Subscribers Dashboard
40
+ public static function es_view_subscriber_bulk( $idlist = "" ) {
41
+
42
+ global $wpdb;
43
+
44
+ $arrRes = array();
45
+
46
+ if( $idlist != "" ) {
47
+ $sSql = $wpdb->prepare( "SELECT *
48
+ FROM {$wpdb->prefix}es_emaillist
49
+ WHERE es_email_mail != %s AND es_email_id IN ( ". $idlist ." )", '' );
50
+ } else {
51
+ $sSql = $wpdb->prepare( "SELECT *
52
+ FROM {$wpdb->prefix}es_emaillist
53
+ WHERE es_email_mail != %s", '' );
54
+ }
55
+ $arrRes = $wpdb->get_results( $sSql, ARRAY_A );
56
 
57
  return $arrRes;
58
  }
59
 
60
  // Query to fetch subscribers data on Subscribers Dashboard
61
+ public static function es_view_subscribers_details( $id = 0, $search_sts = "", $offset = 0, $limit = 0, $search_group = "" ) {
62
 
63
  global $wpdb;
64
 
65
  $view_subscribers_details = array();
66
 
67
+ $sSql = "SELECT * FROM {$wpdb->prefix}es_emaillist WHERE es_email_mail != ''";
68
+ if( $search_sts != "" ) {
69
+ $sSql .= " AND es_email_status='".$search_sts."'";
70
  }
71
 
72
+ if( $search_group != "" && $search_group != "ALL" ) {
73
+ $sSql .= ' AND es_email_group="'.$search_group.'"';
74
  }
75
 
76
+ if( $id > 0 ) {
77
+ $sSql .= " AND es_email_id=".$id;
78
 
79
  }
80
+ $sSql .= " ORDER BY es_email_id DESC";
81
+ $sSql .= " LIMIT $offset, $limit";
82
+ $view_subscribers_details = $wpdb->get_results( $sSql, ARRAY_A );
83
 
84
  return $view_subscribers_details;
85
  }
86
 
87
 
88
+ public static function es_view_subscriber_delete( $id = 0 ) {
89
 
90
  global $wpdb;
91
 
92
+ $es_delete_subscriber = $wpdb->prepare( "DELETE FROM {$wpdb->prefix}es_emaillist WHERE es_email_id = %d LIMIT 1", $id );
93
+ $wpdb->query( $es_delete_subscriber );
94
 
95
  return true;
96
  }
140
  return "ext";
141
  } else {
142
  $data['guid'] = es_cls_common::es_generate_guid(60);
143
+ $sql = $wpdb->prepare( "INSERT INTO {$wpdb->prefix}es_emaillist
144
+ (es_email_name, es_email_mail, es_email_status, es_email_created, es_email_viewcount, es_email_group, es_email_guid) VALUES(%s, %s, %s, %s, %d, %s, %s)",
145
+ array( trim($data["es_email_name"]), trim($data["es_email_mail"]), trim($data["es_email_status"]), $CurrentDate, 0, trim($data["es_email_group"]), $data['guid'] ) );
 
146
  $sql = apply_filters( 'es_insert_subscribers_sql', $sql, $data );
147
  $wpdb->query($sql);
148
 
172
  return "sus";
173
  }
174
  } elseif( $action == "update" ) {
175
+ $sSql = $wpdb->prepare( "SELECT *
176
+ FROM {$wpdb->prefix}es_emaillist
177
+ WHERE es_email_mail = %s AND es_email_group = %s AND es_email_id != %d", $data["es_email_mail"], trim($data["es_email_group"]), $data["es_email_id"] );
178
  $result = $wpdb->get_var($sSql);
179
  if ( $result > 0 ) {
180
  return "ext";
181
  } else {
182
+ $sSql = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_emaillist
183
+ SET es_email_name = %s, es_email_mail = %s, es_email_status = %s, es_email_group = %s
184
+ WHERE es_email_id = %d LIMIT 1", array( $data["es_email_name"], $data["es_email_mail"], $data["es_email_status"], $data["es_email_group"], $data["es_email_id"] ) );
185
  $wpdb->query($sSql);
186
  return "sus";
187
  }
190
 
191
  }
192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  public static function es_view_subscriber_group() {
194
 
195
  global $wpdb;
196
 
197
  $arrRes = array();
198
 
199
+ $sSql = $wpdb->prepare( "SELECT DISTINCT(es_email_group)
200
+ FROM {$wpdb->prefix}es_emaillist
201
+ WHERE 1=%d", 1 ) ;
202
+ $arrRes = $wpdb->get_results( $sSql, ARRAY_A );
203
 
204
  return $arrRes;
205
  }
206
 
207
+ public static function es_view_subscriber_one( $mail = "", $group = "" ) {
208
 
209
  global $wpdb;
210
 
211
  $arrRes = array();
212
 
213
+ $sSql = $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}es_emaillist
214
+ WHERE es_email_mail = %s AND es_email_group = %s", $mail, $group );
215
+ $arrRes = $wpdb->get_results( $sSql, ARRAY_A );
216
 
217
  return $arrRes;
218
  }
219
 
220
  // Function to Bulk Update Subscribers Status
221
+ public static function es_view_subscriber_upd_status( $status = "", $idlist = "" ) {
222
 
223
  global $wpdb;
224
 
225
+ $update_subscribers_status = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_emaillist
226
+ SET es_email_status = %s
227
+ WHERE es_email_id IN ( $idlist )", $status );
228
+ $wpdb->query( $update_subscribers_status );
229
 
230
  return "sus";
231
  }
232
 
233
  // Function to Bulk Update Subscribers Group
234
+ public static function es_view_subscriber_upd_group( $group = "", $idlist = "" ) {
235
 
236
  global $wpdb;
237
 
238
+ $update_subscribers_group = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_emaillist
239
+ SET es_email_group = %s
240
+ WHERE es_email_id IN ( $idlist )", $group );
241
+ $wpdb->query( $update_subscribers_group );
242
 
243
  return "sus";
244
  }
245
 
246
+ public static function es_view_subscriber_job( $status = "", $id = 0, $guid = "", $email = "" ) {
247
 
248
  global $wpdb;
249
 
250
+ $get_count_of_subscriber = $wpdb->prepare( "SELECT COUNT(*) AS count
251
+ FROM {$wpdb->prefix}es_emaillist
252
+ WHERE es_email_id = %d AND es_email_mail = %s AND es_email_guid = %s
253
+ LIMIT 1", array($id, $email, $guid) );
254
+ $count_of_subscribers = $wpdb->get_var( $get_count_of_subscriber );
 
255
 
256
+ if ( $count_of_subscribers > 0 ) {
257
+
258
+ $update_subscriber_status = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_emaillist
259
+ SET es_email_status = %s
260
+ WHERE es_email_mail = %s
261
+ LIMIT 10", array( $status, $email ) );
262
+ $wpdb->query( $update_subscriber_status );
263
  return true;
264
  } else {
265
  return false;
266
  }
267
  }
268
 
269
+ public static function es_view_subscriber_jobstatus( $status = "", $id = 0, $guid = "", $email = "" ) {
270
 
271
  global $wpdb;
272
 
273
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
274
+ FROM {$wpdb->prefix}es_emaillist
275
+ WHERE es_email_id = %d AND es_email_mail = %s AND es_email_status = %s AND es_email_guid = %s
276
+ LIMIT 1", array( $id, $email, $status, $guid ) );
277
+ $result = $wpdb->get_var( $query );
 
 
278
 
279
+ if ( $result > 0 ) {
280
  return true;
281
  } else {
282
  return false;
283
  }
284
  }
285
 
286
+ public static function es_view_subscriber_widget( $data = array() ) {
287
 
288
  global $wpdb;
289
 
290
+ $es_result = array();
291
  $currentdate = date('Y-m-d G:i:s');
292
 
293
+ $check_if_subscriber_exists = $wpdb->prepare( "SELECT *
294
+ FROM {$wpdb->prefix}es_emaillist
295
+ WHERE es_email_mail = %s AND es_email_group = %s", $data['es_email_mail'], trim($data['es_email_group']) );
296
+ $es_result = $wpdb->get_results( $check_if_subscriber_exists, ARRAY_A );
297
 
298
+ if ( !empty( $es_result ) && count( $es_result ) > 0 ) {
299
+ if( $es_result[0]['es_email_status'] == "Confirmed" || $es_result[0]['es_email_status'] == "Single Opt In" ) {
300
  return "ext";
301
  } else {
302
  $action = "";
303
+ $form['es_email_name'] = sanitize_text_field(esc_attr($data["es_email_name"]));
304
+ $form['es_email_mail'] = sanitize_email(esc_attr($data["es_email_mail"]));
305
+ $form['es_email_group'] = sanitize_text_field(esc_attr($data["es_email_group"]));
306
+ $form['es_email_status'] = sanitize_text_field(esc_attr($data["es_email_status"]));
307
+ $form['es_email_id'] = $es_result[0]["es_email_id"];
308
+
309
  if ( array_key_exists( 'es_nonce', $data ) ) {
310
  $form['es_nonce'] = $data['es_nonce'];
311
  } elseif ( array_key_exists( 'es_af_nonce', $data ) ) {
312
  $form['es_af_nonce'] = $data['es_af_nonce'];
313
  }
314
+
315
  $action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
316
  return $action;
317
  }
326
 
327
  global $wpdb;
328
 
329
+ $count_of_subscribers_in_a_group = $wpdb->prepare( "SELECT COUNT(*) AS count
330
+ FROM {$wpdb->prefix}es_emaillist
331
+ WHERE es_email_group = %s AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' )", $groups );
332
+ $total_subscribers = $wpdb->get_var( $count_of_subscribers_in_a_group );
333
 
334
  return $total_subscribers;
335
 
342
 
343
  $subscribers_in_group = array();
344
 
345
+ $query = $wpdb->prepare( "SELECT *
346
+ FROM {$wpdb->prefix}es_emaillist
347
+ WHERE es_email_group = %s AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' )", $group );
348
+ $subscribers_in_group = $wpdb->get_results( $query, ARRAY_A );
349
 
350
  return $subscribers_in_group;
351
 
358
 
359
  $result = '0';
360
 
361
+ if( $id > 0 ) {
362
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
363
+ FROM {$wpdb->prefix}es_emaillist
364
+ WHERE es_email_id = %d", array( $id ) );
365
  } else {
366
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
367
+ FROM {$wpdb->prefix}es_emaillist
368
+ WHERE 1 = %d", 1 );
369
  }
370
 
371
+ $result = $wpdb->get_var( $query );
372
 
373
  return $result;
374
 
381
 
382
  $active_subscribers_count = '0';
383
 
384
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
385
+ FROM {$wpdb->prefix}es_emaillist
386
+ WHERE 1 = %d AND es_email_status IN ( 'Confirmed', 'Single Opt In' )", 1 );
387
+ $active_subscribers_count = $wpdb->get_var( $query );
388
 
389
  return $active_subscribers_count;
390
 
397
 
398
  $inactive_subscribers_count = '0';
399
 
400
+ $query = $wpdb->prepare( "SELECT COUNT(*) AS count
401
+ FROM {$wpdb->prefix}es_emaillist
402
+ WHERE 1 = %d AND es_email_status IN ( 'Unconfirmed', 'Unsubscribed' )", 1 );
403
+ $inactive_subscribers_count = $wpdb->get_var( $query );
404
 
405
  return $inactive_subscribers_count;
406
 
407
  }
408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  }
readme.txt CHANGED
@@ -5,7 +5,7 @@ Author URI: https://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.9
7
  Tested up to: 4.9.6
8
- Stable tag: 3.5.2
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -321,6 +321,15 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
321
 
322
  == Changelog ==
323
 
 
 
 
 
 
 
 
 
 
324
  = 3.5.2 (18.06.2018) =
325
 
326
  * Update: Show list of available keywords based on template type while editing a template
@@ -798,6 +807,15 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
798
 
799
  == Upgrade Notice ==
800
 
 
 
 
 
 
 
 
 
 
801
  = 3.5.2 (18.06.2018) =
802
 
803
  * Update: Show list of available keywords based on template type while editing a template
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.9
7
  Tested up to: 4.9.6
8
+ Stable tag: 3.5.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
321
 
322
  == Changelog ==
323
 
324
+ = 3.5.3 (02.07.2018) =
325
+
326
+ * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
327
+ * Update: Use of $wpdb->prepare for direct queries to the database
328
+ * Update: Text improvements while creating/editing post notification
329
+ * Update: POT file
330
+ * Localization: Translation for Swedish (sv_SE) language updated (Thanks to Rune Svennelid)
331
+ * Localization: Made all translation files up-to-date with latest POT file
332
+
333
  = 3.5.2 (18.06.2018) =
334
 
335
  * Update: Show list of available keywords based on template type while editing a template
807
 
808
  == Upgrade Notice ==
809
 
810
+ = 3.5.3 (02.07.2018) =
811
+
812
+ * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
813
+ * Update: Use of $wpdb->prepare for direct queries to the database
814
+ * Update: Text improvements while creating/editing post notification
815
+ * Update: POT file
816
+ * Localization: Translation for Swedish (sv_SE) language updated (Thanks to Rune Svennelid)
817
+ * Localization: Made all translation files up-to-date with latest POT file
818
+
819
  = 3.5.2 (18.06.2018) =
820
 
821
  * Update: Show list of available keywords based on template type while editing a template
settings/settings-edit.php CHANGED
@@ -200,6 +200,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
200
  </th>
201
  <td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($this->form['ig_es_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
202
  </tr>
 
203
  <tr class="es-signup-confirmation hidden">
204
  <th scope="row">
205
  <label for="elp"><?php echo __( 'Text to display after an email address is successfully subscribed from Double Opt-In (Confirmation) Email', ES_TDOMAIN ); ?>
@@ -207,6 +208,11 @@ if ( ! class_exists( 'ES_Settings' ) ) {
207
  </th>
208
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($this->form['ig_es_successmsg'])); ?></textarea></td>
209
  </tr>
 
 
 
 
 
210
  <!-------------------------------------------------------------------------------->
211
  <tr class="es-signup-confirmation hidden">
212
  <th scope="row">
@@ -250,6 +256,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
250
  </th>
251
  <td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($this->form['ig_es_unsubcontent'])); ?></textarea></td>
252
  </tr>
 
253
  <tr class="es-signup-confirmation hidden">
254
  <th scope="row">
255
  <label for="elp"><?php echo __( 'Text to display after an email address is unsubscribed', ES_TDOMAIN ); ?>
@@ -257,6 +264,11 @@ if ( ! class_exists( 'ES_Settings' ) ) {
257
  </th>
258
  <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($this->form['ig_es_unsubtext'])); ?></textarea></td>
259
  </tr>
 
 
 
 
 
260
  <!-------------------------------------------------------------------------------->
261
  <tr class="es-signup-confirmation hidden">
262
  <th scope="row">
200
  </th>
201
  <td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($this->form['ig_es_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
202
  </tr>
203
+ <?php ob_start(); ?>
204
  <tr class="es-signup-confirmation hidden">
205
  <th scope="row">
206
  <label for="elp"><?php echo __( 'Text to display after an email address is successfully subscribed from Double Opt-In (Confirmation) Email', ES_TDOMAIN ); ?>
208
  </th>
209
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($this->form['ig_es_successmsg'])); ?></textarea></td>
210
  </tr>
211
+ <?php $es_optin_settings = ob_get_clean();
212
+ $es_type = 'es_optin';
213
+ $es_optin_settings = apply_filters('es_optin_settings', $es_optin_settings, $es_type);
214
+ echo $es_optin_settings;
215
+ ?>
216
  <!-------------------------------------------------------------------------------->
217
  <tr class="es-signup-confirmation hidden">
218
  <th scope="row">
256
  </th>
257
  <td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($this->form['ig_es_unsubcontent'])); ?></textarea></td>
258
  </tr>
259
+ <?php ob_start(); ?>
260
  <tr class="es-signup-confirmation hidden">
261
  <th scope="row">
262
  <label for="elp"><?php echo __( 'Text to display after an email address is unsubscribed', ES_TDOMAIN ); ?>
264
  </th>
265
  <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($this->form['ig_es_unsubtext'])); ?></textarea></td>
266
  </tr>
267
+ <?php $es_optin_settings = ob_get_clean();
268
+ $es_type = 'es_unsubscribe';
269
+ $es_optin_settings = apply_filters('es_optin_settings', $es_optin_settings, $es_type);
270
+ echo $es_optin_settings;
271
+ ?>
272
  <!-------------------------------------------------------------------------------->
273
  <tr class="es-signup-confirmation hidden">
274
  <th scope="row">
subscribers/view-subscriber-export.php CHANGED
@@ -34,11 +34,14 @@ $cnt_inactive_subscribers = es_cls_dbquery::es_inactive_subscribers();
34
 
35
  // WordPress Registered Users
36
  $cnt_users = 0;
37
- $cnt_users = $wpdb->get_var( "SELECT count(DISTINCT user_email) FROM ". $wpdb->prefix . "users" );
 
38
 
39
  // Users who comments on blog posts
40
  $cnt_comment_author = 0;
41
- $cnt_comment_author = $wpdb->get_var( "SELECT count(DISTINCT comment_author_email) FROM ". $wpdb->prefix . "comments WHERE comment_author_email != ''" );
 
 
42
 
43
  ?>
44
 
34
 
35
  // WordPress Registered Users
36
  $cnt_users = 0;
37
+ $get_wp_registered_users = $wpdb->prepare( "SELECT count(DISTINCT user_email) FROM {$wpdb->prefix}users WHERE 1=%d", 1 );
38
+ $cnt_users = $wpdb->get_var( $get_wp_registered_users );
39
 
40
  // Users who comments on blog posts
41
  $cnt_comment_author = 0;
42
+ $wp_comment_author_email = '';
43
+ $get_wp_commented_users_on_blog = $wpdb->prepare( "SELECT count(DISTINCT comment_author_email) FROM {$wpdb->prefix}comments WHERE comment_author_email != %s", $wp_comment_author_email );
44
+ $cnt_comment_author = $wpdb->get_var( $get_wp_commented_users_on_blog );
45
 
46
  ?>
47
 
subscribers/view-subscriber-sync.php CHANGED
@@ -52,7 +52,7 @@ if ( ! defined( 'ABSPATH' ) ) {
52
  }
53
 
54
  $es_c_emailsubscribers = get_option( 'ig_es_sync_wp_users', 'norecord' );
55
- if($es_c_emailsubscribers != 'norecord' && $es_c_emailsubscribers != "") {
56
 
57
  $es_sync_unserialized_data = maybe_unserialize($es_c_emailsubscribers);
58
  $es_registered = $es_sync_unserialized_data['es_registered'];
52
  }
53
 
54
  $es_c_emailsubscribers = get_option( 'ig_es_sync_wp_users', 'norecord' );
55
+ if( $es_c_emailsubscribers != 'norecord' && $es_c_emailsubscribers != "" && !is_numeric( $es_c_emailsubscribers ) ) {
56
 
57
  $es_sync_unserialized_data = maybe_unserialize($es_c_emailsubscribers);
58
  $es_registered = $es_sync_unserialized_data['es_registered'];