Email Subscribers & Newsletters - Version 3.5.2

Version Description

(18.06.2018) =

  • Update: Show list of available keywords based on template type while editing a template
  • Update: Increased 'maxlength' for name and email field in the subscription form
  • Update: Single subscription form for widget, shortcode and php code
  • Update: Added text domain for missing texts
  • Update: POT file
  • Localization: Translation for Polish (pl_PL) language updated (Thanks to Witold)
  • Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Zero & Markus Buschmann)
  • 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.2
Comparing to
See all releases

Code changes from version 3.5.1 to 3.5.2

changelog.txt CHANGED
@@ -5,6 +5,17 @@ Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
 
 
 
 
 
 
 
 
 
 
 
 
8
  ***********************************************************Version 3.5.1************************************************************
9
 
10
  * Update: Privacy Policy page link on Help & Info page
5
  License : GPLv3
6
 
7
 
8
+ ***********************************************************Version 3.5.2************************************************************
9
+
10
+ * Update: Show list of available keywords based on template type while editing a template
11
+ * Update: Increased 'maxlength' for name and email field in the subscription form
12
+ * Update: Single subscription form for widget, shortcode and php code
13
+ * Update: Added text domain for missing texts
14
+ * Update: POT file
15
+ * Localization: Translation for Polish (pl_PL) language updated (Thanks to Witold)
16
+ * Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Zero & Markus Buschmann)
17
+ * Localization: Made all translation files up-to-date with latest POT file
18
+
19
  ***********************************************************Version 3.5.1************************************************************
20
 
21
  * Update: Privacy Policy page link on Help & Info page
classes/es-loadwidget.php CHANGED
@@ -6,60 +6,23 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  }
7
 
8
  class es_cls_widget {
9
- public static function load_subscription($arr) {
10
- $es_name = trim($arr['es_name']);
11
- $es_desc = trim($arr['es_desc']);
12
- $es_group = trim($arr['es_group']);
13
- $url = "'" . home_url() . "'";
14
- $es = "";
15
 
16
- global $es_includes;
17
- if (!isset($es_includes) || $es_includes !== true) {
18
- $es_includes = true;
19
  }
20
 
21
- // Compatibility for GDPR
22
- $active_plugins = (array) get_option('active_plugins', array());
23
- if (is_multisite()) {
24
- $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
25
- }
26
-
27
- $es .= '<div>';
28
- $es .= '<form class="es_shortcode_form" data-es_form_id="es_shortcode_form">';
29
 
30
- if( $es_desc != "" ) {
31
- $es .= '<div class="es_caption">'.$es_desc.'</div>';
32
- }
33
- if( $es_name == "YES" ) {
34
- $es .= '<div class="es_lablebox"><label class="es_shortcode_form_name">'.__( 'Name', ES_TDOMAIN ).'</label></div>';
35
- $es .= '<div class="es_textbox">';
36
- $es .= '<input type="text" id="es_txt_name_pg" class="es_textbox_class" name="es_txt_name_pg" value="" maxlength="40">';
37
- $es .= '</div>';
38
- }
39
- $es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
40
- $es .= '<div class="es_textbox">';
41
- $es .= '<input type="email" id="es_txt_email_pg" class="es_textbox_class" name="es_txt_email_pg" maxlength="40" required>';
42
- $es .= '</div>';
43
- if (( in_array('gdpr/gdpr.php', $active_plugins) || array_key_exists('gdpr/gdpr.php', $active_plugins) )) {
44
- $es .= GDPR::get_consent_checkboxes();
45
- }
46
- $es .= '<div class="es_button">';
47
- $es .= '<input type="submit" id="es_txt_button_pg" class="es_textbox_button es_submit_button" name="es_txt_button_pg" value="'.__( 'Subscribe', ES_TDOMAIN ).'">';
48
- $es .= '</div>';
49
- $es .= '<div class="es_msg" id="es_shortcode_msg"><span id="es_msg_pg"></span></div>';
50
- if( $es_name != "YES" ) {
51
- $es .= '<input type="hidden" id="es_txt_name_pg" name="es_txt_name_pg" value="">';
52
- }
53
- $es .= '<input type="hidden" id="es_txt_group_pg" name="es_txt_group_pg" value="'.$es_group.'">';
54
- $es .= wp_nonce_field( 'es-subscribe', 'es-subscribe', true, false );
55
-
56
- $es .= '</form>';
57
- $es .= '</div>';
58
- return $es;
59
  }
60
  }
61
 
62
  function es_shortcode( $atts ) {
 
63
  if ( ! is_array( $atts ) ) {
64
  return '';
65
  }
@@ -74,13 +37,16 @@ function es_shortcode( $atts ) {
74
  $arr["es_name"] = $es_name;
75
  $arr["es_group"] = $es_group;
76
  return es_cls_widget::load_subscription($arr);
 
77
  }
78
 
79
  function es_subbox( $namefield = "YES", $desc = "", $group = "" ) {
 
80
  $arr = array();
81
  $arr["es_title"] = "";
82
  $arr["es_desc"] = $desc;
83
  $arr["es_name"] = $namefield;
84
  $arr["es_group"] = $group;
85
  echo es_cls_widget::load_subscription($arr);
 
86
  }
6
  }
7
 
8
  class es_cls_widget {
9
+ public static function load_subscription( $arr ) {
 
 
 
 
 
10
 
11
+ if ( ! is_array( $arr ) ) {
12
+ return '';
 
13
  }
14
 
15
+ $instance['es_name'] = trim($arr['es_name']);
16
+ $instance['es_desc'] = trim($arr['es_desc']);
17
+ $instance['es_group'] = trim($arr['es_group']);
18
+ $instance['es_pre'] = 'shortcode';
19
+ return es_cls_registerhook::es_get_form($instance);
 
 
 
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  }
22
  }
23
 
24
  function es_shortcode( $atts ) {
25
+
26
  if ( ! is_array( $atts ) ) {
27
  return '';
28
  }
37
  $arr["es_name"] = $es_name;
38
  $arr["es_group"] = $es_group;
39
  return es_cls_widget::load_subscription($arr);
40
+
41
  }
42
 
43
  function es_subbox( $namefield = "YES", $desc = "", $group = "" ) {
44
+
45
  $arr = array();
46
  $arr["es_title"] = "";
47
  $arr["es_desc"] = $desc;
48
  $arr["es_name"] = $namefield;
49
  $arr["es_group"] = $group;
50
  echo es_cls_widget::load_subscription($arr);
51
+
52
  }
classes/es-register.php CHANGED
@@ -78,13 +78,13 @@ class es_cls_registerhook {
78
  }
79
 
80
  if($es_missing_tables) {
81
- $errors[] = __( 'These tables could not be created on installation ' . implode(', ',$es_missing_tables), 'email-subscribers' );
82
  $es_has_errors = true;
83
  }
84
 
85
  // if error call wp_die()
86
  if($es_has_errors) {
87
- wp_die( __( $errors[0] , 'email-subscribers' ) );
88
  return false;
89
  } else {
90
  // Inserting dummy data on first activation
@@ -159,8 +159,8 @@ class es_cls_registerhook {
159
  $es_roles_sentmail = $es_c_rolesandcapabilities['es_roles_sentmail'];
160
  }
161
 
162
- add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
163
- __( 'Email Subscribers', 'email-subscribers' ), 'edit_posts', 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ), 'dashicons-email', 51 );
164
 
165
  add_submenu_page('es-view-subscribers', __( 'Subscribers', ES_TDOMAIN ),
166
  __( 'Subscribers', ES_TDOMAIN ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
@@ -252,20 +252,6 @@ class es_cls_registerhook {
252
 
253
  public static function es_load_widget_scripts_styles() {
254
 
255
- wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', array ('jquery'), '', true );
256
- wp_enqueue_script( 'es-widget' );
257
- $es_select_params = array(
258
- 'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
259
- 'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
260
- 'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don\'t see the email within a few minutes, check the spam/junk folder.', 'widget-enhanced-select', ES_TDOMAIN ),
261
- 'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
262
- 'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
263
- 'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
264
- 'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
265
- 'es_ajax_url' => admin_url( 'admin-ajax.php' ),
266
- );
267
- wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
268
-
269
  wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', array ('jquery'), '', true );
270
  wp_enqueue_script( 'es-widget-page' );
271
  $es_select_params = array(
@@ -282,6 +268,7 @@ class es_cls_registerhook {
282
 
283
  wp_register_style( 'es-widget-css', ES_URL . 'widget/es-widget.css' );
284
  wp_enqueue_style( 'es-widget-css' );
 
285
  }
286
 
287
  public static function es_widget_loading() {
@@ -796,7 +783,7 @@ class es_cls_registerhook {
796
 
797
  }
798
 
799
- public static function es_footer_text($es_rating_text) {
800
 
801
  global $post;
802
 
@@ -807,7 +794,7 @@ class es_cls_registerhook {
807
  return $es_rating_text;
808
  }
809
 
810
- public static function es_update_footer_text($es_text) {
811
 
812
  global $post;
813
 
@@ -933,16 +920,25 @@ class es_cls_registerhook {
933
 
934
  global $post, $pagenow;
935
 
936
- if ($post->post_type != 'es_template') return;
 
 
937
 
938
  $es_templ_type = '';
939
  if ( $pagenow != 'post-new.php' ) {
940
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
941
  }
 
 
 
 
 
 
 
 
 
 
942
  ?>
943
- <p style="margin-top: 0em; !important;">
944
- <?php echo __( 'Available Keyword for Post Notification: {{POSTTITLE}}', ES_TDOMAIN ); ?>
945
- </p>
946
  <p>
947
  <label for="tag-link"><?php echo __( 'Select your Email Template Type', ES_TDOMAIN ); ?></label><br/>
948
  <select name="es_template_type" id="es_template_type">
@@ -982,7 +978,9 @@ class es_cls_registerhook {
982
  public static function add_preview_button() {
983
 
984
  global $post;
985
- if ($post->post_type != 'es_template') return;
 
 
986
 
987
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
988
  $page = ($es_templ_type == 'Newsletter') ? 'es-sendemail' : 'es-notification';
@@ -1003,16 +1001,109 @@ class es_cls_registerhook {
1003
 
1004
  public static function es_add_keyword() {
1005
 
1006
- global $post;
1007
- if ($post->post_type != 'es_template') return;
1008
- ?>
1009
- <p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1010
  <?php
1011
- echo sprintf(__( '%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' );
1012
- echo sprintf(__( '<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-newsletters/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' );
1013
  ?>
1014
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1015
  <?php
 
 
1016
  }
1017
 
1018
  }
@@ -1039,7 +1130,7 @@ function es_sync_registereduser( $user_id ) {
1039
 
1040
  $form['es_email_name'] = $user_firstname;
1041
  $form['es_email_mail'] = $user_mail;
1042
- $form['es_email_group'] = $es_sync_unserialized_data['es_registered_group'];
1043
  $form['es_email_status'] = "Confirmed";
1044
  $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
1045
  $action = es_cls_dbquery::es_view_subscriber_ins($form, "insert");
@@ -1063,66 +1154,19 @@ class es_widget_register extends WP_Widget {
1063
  function widget( $args, $instance ) {
1064
  extract( $args, EXTR_SKIP );
1065
 
1066
- $es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
1067
- $es_desc = $instance['es_desc'];
1068
- $es_name = $instance['es_name'];
1069
- $es_group = $instance['es_group'];
1070
-
1071
  echo $args['before_widget'];
1072
  if ( ! empty( $es_title ) ) {
1073
  echo $args['before_title'] . $es_title . $args['after_title'];
1074
  }
1075
 
1076
  // display widget method
1077
- $url = home_url();
1078
-
1079
- global $es_includes;
1080
- if (!isset($es_includes) || $es_includes !== true) {
1081
- $es_includes = true;
1082
- }
1083
- // Compatibility for GDPR
1084
- $active_plugins = (array) get_option('active_plugins', array());
1085
- if (is_multisite()) {
1086
- $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
1087
- }
1088
- ?>
1089
-
1090
- <div>
1091
- <form class="es_widget_form" data-es_form_id="es_widget_form">
1092
- <?php if( $es_desc != "" ) { ?>
1093
- <div class="es_caption"><?php echo $es_desc; ?></div>
1094
- <?php } ?>
1095
- <?php if( $es_name == "YES" ) { ?>
1096
- <div class="es_lablebox"><label class="es_widget_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label></div>
1097
- <div class="es_textbox">
1098
- <input type="text" id="es_txt_name" class="es_textbox_class" name="es_txt_name" value="" maxlength="40">
1099
- </div>
1100
- <?php } ?>
1101
- <div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
1102
- <div class="es_textbox">
1103
- <input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="40" required>
1104
- </div>
1105
- <?php if (( in_array('gdpr/gdpr.php', $active_plugins) || array_key_exists('gdpr/gdpr.php', $active_plugins) )) {
1106
- echo GDPR::consent_checkboxes();
1107
- } ?>
1108
- <div class="es_button">
1109
- <input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
1110
- </div>
1111
- <div class="es_msg" id="es_widget_msg">
1112
- <span id="es_msg"></span>
1113
- </div>
1114
- <?php if( $es_name != "YES" ) { ?>
1115
- <input type="hidden" id="es_txt_name" name="es_txt_name" value="">
1116
- <?php } ?>
1117
- <input type="hidden" id="es_txt_group" name="es_txt_group" value="<?php echo $es_group; ?>">
1118
- <?php $nonce = wp_create_nonce( 'es-subscribe' ); ?>
1119
- <input type="hidden" name="es-subscribe" id="es-subscribe" value="<?php echo $nonce; ?>"/>
1120
- </form>
1121
- </div>
1122
- <?php
1123
  echo $args['after_widget'];
1124
  }
1125
-
1126
  function update( $new_instance, $old_instance ) {
1127
  $instance = $old_instance;
1128
  $instance['es_title'] = ( ! empty( $new_instance['es_title'] ) ) ? strip_tags( $new_instance['es_title'] ) : '';
78
  }
79
 
80
  if($es_missing_tables) {
81
+ $errors[] = __( 'These tables could not be created on installation ' . implode(', ',$es_missing_tables), ES_TDOMAIN );
82
  $es_has_errors = true;
83
  }
84
 
85
  // if error call wp_die()
86
  if($es_has_errors) {
87
+ wp_die( __( $errors[0] , ES_TDOMAIN ) );
88
  return false;
89
  } else {
90
  // Inserting dummy data on first activation
159
  $es_roles_sentmail = $es_c_rolesandcapabilities['es_roles_sentmail'];
160
  }
161
 
162
+ add_menu_page( __( 'Email Subscribers', ES_TDOMAIN ),
163
+ __( 'Email Subscribers', ES_TDOMAIN ), 'edit_posts', 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ), 'dashicons-email', 51 );
164
 
165
  add_submenu_page('es-view-subscribers', __( 'Subscribers', ES_TDOMAIN ),
166
  __( 'Subscribers', ES_TDOMAIN ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
252
 
253
  public static function es_load_widget_scripts_styles() {
254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', array ('jquery'), '', true );
256
  wp_enqueue_script( 'es-widget-page' );
257
  $es_select_params = array(
268
 
269
  wp_register_style( 'es-widget-css', ES_URL . 'widget/es-widget.css' );
270
  wp_enqueue_style( 'es-widget-css' );
271
+
272
  }
273
 
274
  public static function es_widget_loading() {
783
 
784
  }
785
 
786
+ public static function es_footer_text( $es_rating_text ) {
787
 
788
  global $post;
789
 
794
  return $es_rating_text;
795
  }
796
 
797
+ public static function es_update_footer_text( $es_text ) {
798
 
799
  global $post;
800
 
920
 
921
  global $post, $pagenow;
922
 
923
+ if ( $post->post_type != 'es_template' ) {
924
+ return;
925
+ }
926
 
927
  $es_templ_type = '';
928
  if ( $pagenow != 'post-new.php' ) {
929
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
930
  }
931
+
932
+ if ( $es_templ_type == 'Post Notification' || $pagenow == 'post-new.php' ) {
933
+ ?>
934
+ <p style="margin-top: 0em; !important;">
935
+ <?php
936
+ echo sprintf(__( '%s for Post Notification: {{POSTTITLE}}', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keyword', ES_TDOMAIN ) . '</a>' );
937
+ ?>
938
+ </p>
939
+ <?php
940
+ }
941
  ?>
 
 
 
942
  <p>
943
  <label for="tag-link"><?php echo __( 'Select your Email Template Type', ES_TDOMAIN ); ?></label><br/>
944
  <select name="es_template_type" id="es_template_type">
978
  public static function add_preview_button() {
979
 
980
  global $post;
981
+ if ($post->post_type != 'es_template') {
982
+ return;
983
+ }
984
 
985
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
986
  $page = ($es_templ_type == 'Newsletter') ? 'es-sendemail' : 'es-notification';
1001
 
1002
  public static function es_add_keyword() {
1003
 
1004
+ global $post, $pagenow;
1005
+
1006
+ if ( $post->post_type != 'es_template' ) {
1007
+ return;
1008
+ }
1009
+
1010
+ if ( $pagenow == 'post-new.php' ) {
1011
+ ?>
1012
+ <p>
1013
+ <?php
1014
+ echo sprintf(__( '%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, {{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, {{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' );
1015
+ echo sprintf(__( '<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-newsletters/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' );
1016
+ ?>
1017
+ </p>
1018
+ <?php
1019
+ }
1020
+
1021
+ $es_templ_type = '';
1022
+ if ( $pagenow != 'post-new.php' ) {
1023
+ $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
1024
+ }
1025
+
1026
+ if ( $es_templ_type == 'Post Notification' ) {
1027
+ ?>
1028
+ <p>
1029
+ <?php
1030
+ echo sprintf(__( '%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, {{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, {{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' );
1031
+ ?>
1032
+ </p>
1033
  <?php
1034
+ } elseif ( $es_templ_type == 'Newsletter' ) {
 
1035
  ?>
1036
+ <p>
1037
+ <?php
1038
+ echo sprintf(__( '%s for Newsletter: {{NAME}}, {{EMAIL}}', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-newsletters/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' );
1039
+ ?>
1040
+ </p>
1041
+ <?php
1042
+ }
1043
+ }
1044
+
1045
+ public static function es_get_form( $instance ) {
1046
+
1047
+ global $es_includes;
1048
+
1049
+ // Compatibility for GDPR
1050
+ $active_plugins = get_option( 'active_plugins', array() );
1051
+ if (is_multisite()) {
1052
+ $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
1053
+ }
1054
+
1055
+ if ( !isset($es_includes) || $es_includes !== true ) {
1056
+ $es_includes = true;
1057
+ }
1058
+ $es_desc = $instance['es_desc'];
1059
+ $es_name = $instance['es_name'];
1060
+ $es_group = $instance['es_group'];
1061
+ $es_pre = $instance['es_pre'];
1062
+
1063
+ ob_start();
1064
+ ?>
1065
+
1066
+ <div class="es_form_container">
1067
+ <form class="es_<?php echo $es_pre ?>_form" data-es_form_id="es_<?php echo $es_pre ?>_form">
1068
+ <?php if( $es_desc != "" ) { ?>
1069
+ <div class="es_caption"><?php echo $es_desc; ?></div>
1070
+ <?php } ?>
1071
+ <?php if( $es_name == "YES" ) { ?>
1072
+ <div class="es_lablebox">
1073
+ <label class="es_<?php echo $es_pre ?>_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label>
1074
+ </div>
1075
+ <div class="es_textbox">
1076
+ <input type="text" id="es_txt_name" class="es_textbox_class" name="es_txt_name" value="" maxlength="60">
1077
+ </div>
1078
+ <?php } ?>
1079
+ <div class="es_lablebox">
1080
+ <label class="es_<?php echo $es_pre ?>_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label>
1081
+ </div>
1082
+ <div class="es_textbox">
1083
+ <input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="60" required>
1084
+ </div>
1085
+ <?php if (( in_array('gdpr/gdpr.php', $active_plugins) || array_key_exists('gdpr/gdpr.php', $active_plugins) )) {
1086
+ echo GDPR::consent_checkboxes();
1087
+ } ?>
1088
+ <div class="es_button">
1089
+ <input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
1090
+ </div>
1091
+ <div class="es_msg" id="es_<?php echo $es_pre ?>_msg">
1092
+ <span id="es_msg"></span>
1093
+ </div>
1094
+ <?php if( $es_name != "YES" ) { ?>
1095
+ <input type="hidden" id="es_txt_name" name="es_txt_name" value="">
1096
+ <?php } ?>
1097
+ <input type="hidden" id="es_txt_group" name="es_txt_group" value="<?php echo $es_group; ?>">
1098
+ <?php $nonce = wp_create_nonce( 'es-subscribe' ); ?>
1099
+ <input type="hidden" name="es-subscribe" id="es-subscribe" value="<?php echo $nonce; ?>"/>
1100
+ </form>
1101
+ <?php do_action('es_after_form')?>
1102
+ </div>
1103
+
1104
  <?php
1105
+ return $es_form = ob_get_clean();
1106
+
1107
  }
1108
 
1109
  }
1130
 
1131
  $form['es_email_name'] = $user_firstname;
1132
  $form['es_email_mail'] = $user_mail;
1133
+ $form['es_email_group'] = $es_registered_group;
1134
  $form['es_email_status'] = "Confirmed";
1135
  $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
1136
  $action = es_cls_dbquery::es_view_subscriber_ins($form, "insert");
1154
  function widget( $args, $instance ) {
1155
  extract( $args, EXTR_SKIP );
1156
 
1157
+ $es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
1158
+
 
 
 
1159
  echo $args['before_widget'];
1160
  if ( ! empty( $es_title ) ) {
1161
  echo $args['before_title'] . $es_title . $args['after_title'];
1162
  }
1163
 
1164
  // display widget method
1165
+ $instance['es_pre'] = 'widget';
1166
+ echo es_cls_registerhook::es_get_form($instance);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1167
  echo $args['after_widget'];
1168
  }
1169
+
1170
  function update( $new_instance, $old_instance ) {
1171
  $instance = $old_instance;
1172
  $instance['es_title'] = ( ! empty( $new_instance['es_title'] ) ) ? strip_tags( $new_instance['es_title'] ) : '';
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.1
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.2
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\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: Wed May 23 2018 11:03:21 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"
@@ -35,14 +35,6 @@ msgid "Please select notification mail subject. Use templates menu to create new
35
  msgstr ""
36
 
37
  #: ../classes/es-register.php:260
38
- msgctxt "widget-enhanced-select"
39
- msgid ""
40
- "Your subscription was successful! Kindly check your mailbox and confirm your "
41
- "subscription. If you don't see the email within a few minutes, check the "
42
- "spam/junk folder."
43
- msgstr ""
44
-
45
- #: ../classes/es-register.php:274
46
  msgctxt "widget-page-enhanced-select"
47
  msgid ""
48
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -50,39 +42,61 @@ msgid ""
50
  "spam/junk folder."
51
  msgstr ""
52
 
53
- #: ../classes/es-register.php:739
54
  msgid ""
55
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
56
  "subscribers list?</b> Come check our Pro plan."
57
  msgstr ""
58
 
59
- #: ../classes/es-register.php:740
60
  msgid "Check Pro plan"
61
  msgstr ""
62
 
63
- #: ../classes/es-register.php:740
64
  msgid "Not interested."
65
  msgstr ""
66
 
67
- #: ../classes/es-register.php:778
68
  msgid ""
69
  "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
70
  "Checkbox' in the subscription form.</b>"
71
  msgstr ""
72
 
73
- #: ../classes/es-register.php:779
74
  msgid "Steps to enable"
75
  msgstr ""
76
 
77
- #: ../classes/es-register.php:779
78
  msgid "Ok, got it"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:1012
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  #, php-format
83
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
84
  msgstr ""
85
 
 
 
 
 
 
86
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
87
  msgid "Unexpected url submit has been detected!"
88
  msgstr ""
@@ -183,6 +197,10 @@ msgid ""
183
  "deleted too and email will not be sent."
184
  msgstr ""
185
 
 
 
 
 
186
  #: ../subscribers/view-subscriber-export.php:12
187
  msgid ""
188
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
@@ -246,22 +264,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
246
  msgid "<span style=\"color:#993399;\">Immediately</span>"
247
  msgstr "Immediatament"
248
 
249
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
250
- #: subscribers/view-subscriber-show.php:289
251
- msgid "Name"
252
- msgstr "Nom"
253
-
254
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
255
- msgid "Email *"
256
- msgstr "Email*"
257
-
258
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
259
- #: php:202
260
- msgid "Subscribe"
261
- msgstr "Subscriure"
262
-
263
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
264
- #: register.php:839
265
  msgid "Email Subscribers"
266
  msgstr "Email Subscribers"
267
 
@@ -271,7 +275,7 @@ msgid "Subscribers"
271
  msgstr "Subscriptors"
272
 
273
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
274
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
275
  msgid "Templates"
276
  msgstr "Plantilles"
277
 
@@ -281,7 +285,7 @@ msgid "Post Notifications"
281
  msgstr "Notificacions de les entrades"
282
 
283
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
284
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
285
  msgid "Newsletters"
286
  msgstr "Butlletins"
287
 
@@ -419,66 +423,36 @@ msgid "Please enter the mail count, only number."
419
  msgstr "Si us plau, introdueixi el recompte d'emails, només número."
420
 
421
  #: ../classes/es-register.php:258
422
- msgctxt "widget-enhanced-select"
423
- msgid "Please enter email address"
424
- msgstr "Si us plau, entra l'adreça d'email"
425
-
426
- #: ../classes/es-register.php:259
427
- msgctxt "widget-enhanced-select"
428
- msgid "Successfully Subscribed."
429
- msgstr "Subscripció exitosa"
430
-
431
- #: ../classes/es-register.php:261
432
- msgctxt "widget-enhanced-select"
433
- msgid "Email Address already exists!"
434
- msgstr "Aquesta adreça de correu electrònic ja existeix!"
435
-
436
- #: ../classes/es-register.php:262
437
- msgctxt "widget-enhanced-select"
438
- msgid "Oops.. Unexpected error occurred."
439
- msgstr "Vaja... S'ha produït un error inesperat."
440
-
441
- #: ../classes/es-register.php:263
442
- msgctxt "widget-enhanced-select"
443
- msgid "Invalid email address"
444
- msgstr "l'Adreça de correu electrònic no és vàlida"
445
-
446
- #: ../classes/es-register.php:264
447
- msgctxt "widget-enhanced-select"
448
- msgid "Please try after some time"
449
- msgstr "Torna-ho a provar d'aquí a una estona"
450
-
451
- #: ../classes/es-register.php:272
452
  msgctxt "widget-page-enhanced-select"
453
  msgid "Please enter email address"
454
  msgstr "Si us plau, entra l'adreça d'email"
455
 
456
- #: ../classes/es-register.php:273
457
  msgctxt "widget-page-enhanced-select"
458
  msgid "Successfully Subscribed."
459
  msgstr "Subscripció exitosa"
460
 
461
- #: ../classes/es-register.php:275
462
  msgctxt "widget-page-enhanced-select"
463
  msgid "Email Address already exists!"
464
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
465
 
466
- #: ../classes/es-register.php:276
467
  msgctxt "widget-page-enhanced-select"
468
  msgid "Oops.. Unexpected error occurred."
469
  msgstr "Vaja... S'ha produït un error inesperat."
470
 
471
- #: ../classes/es-register.php:277
472
  msgctxt "widget-page-enhanced-select"
473
  msgid "Invalid email address"
474
  msgstr "l'Adreça de correu electrònic no és vàlida"
475
 
476
- #: ../classes/es-register.php:278
477
  msgctxt "widget-page-enhanced-select"
478
  msgid "Please try after some time"
479
  msgstr "Torna-ho a provar d'aquí a una estona"
480
 
481
- #: ../classes/es-register.php:804
482
  msgid ""
483
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
484
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -490,118 +464,116 @@ msgstr ""
490
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
491
  "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
492
 
493
- #: ../classes/es-register.php:818
494
  #, php-format
495
  msgid "Email Subscribers version: <strong>%s</strong>"
496
  msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
497
 
498
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
499
  msgid "Add new Template"
500
  msgstr "Afegir plantilla nova"
501
 
502
- #: ../classes/es-register.php:831
503
  msgid "Edit Templates"
504
  msgstr "Editar plantilles"
505
 
506
- #: ../classes/es-register.php:832
507
  msgid "New Templates"
508
  msgstr "Plantilla nova"
509
 
510
- #: ../classes/es-register.php:834
511
  msgid "View Templates"
512
  msgstr "Veure les plantilles"
513
 
514
- #: ../classes/es-register.php:835
515
  msgid "Search Templates"
516
  msgstr "Cercar plantilles"
517
 
518
- #: ../classes/es-register.php:836
519
  msgid "No Templates found"
520
  msgstr "No s'han trobat plantilles"
521
 
522
- #: ../classes/es-register.php:837
523
  msgid "No Templates found in Trash"
524
  msgstr "No s'ha trobat cap plantilla a la paperera"
525
 
526
- #: ../classes/es-register.php:840
527
  msgid "Thumbnail (For Visual Representation only)"
528
  msgstr "Miniatura (només per a la representació visual)"
529
 
530
- #: ../classes/es-register.php:841
531
  msgid "Set thumbnail"
532
  msgstr "Estableix miniatura"
533
 
534
- #: ../classes/es-register.php:878
535
  msgid "Template Type"
536
  msgstr "Tipus de plantilla"
537
 
538
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
539
  msgid "Thumbnail"
540
  msgstr "Miniatura"
541
 
542
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
543
  #: sentmail/sentmail-show.php:121
544
  msgid "Preview"
545
  msgstr "Vista previa"
546
 
547
- #: ../classes/es-register.php:944
548
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
549
- msgstr "Paraula clau disponible per a la notificació de publicacions: {{POSTTITLE}}"
550
-
551
- #: ../classes/es-register.php:947
552
  msgid "Select your Email Template Type"
553
  msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
554
 
555
- #: ../classes/es-register.php:949
556
  msgid "Newsletter"
557
  msgstr "Butlletí de notícies"
558
 
559
- #: ../classes/es-register.php:950
560
  msgid "Post Notification"
561
  msgstr "Notificació de l'entrada"
562
 
563
- #: ../classes/es-register.php:997
564
  msgid "Preview Template"
565
  msgstr "Vista prèvia de la plantilla"
566
 
567
- #: ../classes/es-register.php:1011
568
- #, php-format
569
- msgid ""
570
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
571
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
572
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
573
- msgstr ""
574
- "%s per a la notificació de correus:{{NAME}}, {{EMAIL}}, {{DATE}}, "
575
- "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
576
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
577
-
578
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
579
  msgid "Available Keywords"
580
  msgstr "Paraules clau disponibles"
581
 
582
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
583
  msgid "Widget Title"
584
  msgstr "Títol del widget"
585
 
586
- #: ../classes/es-register.php:1153
587
  msgid "Short description about subscription form"
588
  msgstr "Breu descripció sobre el formulari de subscripció"
589
 
590
- #: ../classes/es-register.php:1157
591
  msgid "Display Name Field"
592
  msgstr "Mostra nom del camp"
593
 
594
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
595
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
596
  msgid "YES"
597
  msgstr "Si"
598
 
599
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
600
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
601
  msgid "NO"
602
  msgstr "No"
603
 
604
- #: ../classes/es-register.php:1164
605
  msgid "Subscriber Group"
606
  msgstr "Grup de subscriptor"
607
 
@@ -1442,11 +1414,11 @@ msgstr "Doble Opt In"
1442
  msgid "Single Opt In"
1443
  msgstr "Opt In sencill"
1444
 
1445
- #: ../settings/settings-edit.php:116
1446
  msgid "Image Size"
1447
  msgstr "Mida de la imatge"
1448
 
1449
- #: ../settings/settings-edit.php:117
1450
  msgid ""
1451
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1452
  "Emails."
@@ -1454,19 +1426,19 @@ msgstr ""
1454
  "Seleccioneu la mida de la imatge {{POSTIMAGE}} que es mostrarà als correus "
1455
  "electrònics de notificació de correu"
1456
 
1457
- #: ../settings/settings-edit.php:121
1458
  msgid "Full Size"
1459
  msgstr "mida completa"
1460
 
1461
- #: ../settings/settings-edit.php:122
1462
  msgid "Medium Size"
1463
  msgstr "Mida mitjana"
1464
 
1465
- #: ../settings/settings-edit.php:129
1466
  msgid "Admin Email Addresses"
1467
  msgstr "Adreces email dels administradors"
1468
 
1469
- #: ../settings/settings-edit.php:130
1470
  msgid ""
1471
  "Enter the admin email addresses that should receive notifications (separated "
1472
  "by comma)."
@@ -1474,11 +1446,11 @@ msgstr ""
1474
  "Introduïu les adreces de correu electrònic d'administració que han de rebre "
1475
  "notificacions (separades per comes)."
1476
 
1477
- #: ../settings/settings-edit.php:136
1478
  msgid "Notify Admin when a new subscriber signs up"
1479
  msgstr "Notifica a Admin quan un nou subscriptor s'inscriu"
1480
 
1481
- #: ../settings/settings-edit.php:137
1482
  msgid ""
1483
  "To send admin email notifications for the new subscriber. This option must "
1484
  "be set to YES."
@@ -1486,13 +1458,13 @@ msgstr ""
1486
  "Per enviar notificacions per correu electrònic a l'administrador per un nou "
1487
  "subscrit. Aquesta opció ha d'estar a YES."
1488
 
1489
- #: ../settings/settings-edit.php:149
1490
  msgid "Admin Email Subject on new subscriber sign up"
1491
  msgstr ""
1492
  "Assumpte del correu electrònic a l'administrador quan hi ha un subscripció "
1493
  "nou"
1494
 
1495
- #: ../settings/settings-edit.php:150
1496
  msgid ""
1497
  "Subject for the admin email whenever a new subscriber signs up and is "
1498
  "confirmed."
@@ -1500,13 +1472,13 @@ msgstr ""
1500
  "Assumpte del correu electrònic a l'administració sempre que un subscriptor "
1501
  "nou es registri i es confirmi."
1502
 
1503
- #: ../settings/settings-edit.php:156
1504
  msgid "Admin Email Content on new subscriber signs up"
1505
  msgstr ""
1506
  "Contingut de correu electrònic a l'administrador quan es registra un nou "
1507
  "subscriptor"
1508
 
1509
- #: ../settings/settings-edit.php:157
1510
  msgid ""
1511
  "Content for the admin email whenever a new subscriber signs up and is "
1512
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
@@ -1515,19 +1487,19 @@ msgstr ""
1515
  "subscriptor nou es registra i es confirma.<br />Paraules clau disponibles: "
1516
  "{{NAME}}, {{EMAIL}}, {{GROUP}}"
1517
 
1518
- #: ../settings/settings-edit.php:164
1519
  msgid "Sent Report Subject"
1520
  msgstr "Assumpte del informe enviat"
1521
 
1522
- #: ../settings/settings-edit.php:165
1523
  msgid "Subject for the email report which will be sent to admin."
1524
  msgstr "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
1525
 
1526
- #: ../settings/settings-edit.php:171
1527
  msgid "Sent Report Content"
1528
  msgstr "Contingut del informe enviat"
1529
 
1530
- #: ../settings/settings-edit.php:172
1531
  msgid ""
1532
  "Content for the email report which will be sent to admin.<br />Available "
1533
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
@@ -1536,11 +1508,11 @@ msgstr ""
1536
  "l'administrador.<br />Paraules clau disponibles: {{COUNT}}, {{UNIQUE}}, "
1537
  "{{STARTTIME}}, {{ENDTIME}}"
1538
 
1539
- #: ../settings/settings-edit.php:183
1540
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1541
  msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
1542
 
1543
- #: ../settings/settings-edit.php:184
1544
  msgid ""
1545
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1546
  "subscriber signs up."
@@ -1548,13 +1520,13 @@ msgstr ""
1548
  "Assumpte per al correu electrònic de confirmació que s'enviarà sempre que un "
1549
  "subscriptor s'inscrigui per Double Opt-In "
1550
 
1551
- #: ../settings/settings-edit.php:190
1552
  msgid "Double Opt-In Email Content (Confirmation Email)"
1553
  msgstr ""
1554
  "Contingut de correu electrònic pel sistema Double Opt-In (correu de "
1555
  "confirmació)"
1556
 
1557
- #: ../settings/settings-edit.php:191
1558
  msgid ""
1559
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1560
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
@@ -1563,15 +1535,15 @@ msgstr ""
1563
  "sempre que un subscriptor s'inscrigui.<br />Paraules clau disponibles: "
1564
  "{{NAME}}, {{LINK}}"
1565
 
1566
- #: ../settings/settings-edit.php:197
1567
  msgid "Double Opt-In Confirmation Link"
1568
  msgstr "Link de confirmació pel sistema Double Opt-in"
1569
 
1570
- #: ../settings/settings-edit.php:198
1571
  msgid "It is a readonly field and you are advised not to modify it."
1572
  msgstr "És un camp de només lectura i se li recomana no modificar-lo."
1573
 
1574
- #: ../settings/settings-edit.php:204
1575
  msgid ""
1576
  "Text to display after an email address is successfully subscribed from "
1577
  "Double Opt-In (Confirmation) Email"
@@ -1579,7 +1551,7 @@ msgstr ""
1579
  "Text que es mostrarà després que una adreça de correu electrònic s'ha "
1580
  "subscrit correctament per Double Opt-In (email de confirmació)"
1581
 
1582
- #: ../settings/settings-edit.php:205
1583
  msgid ""
1584
  "This text will be displayed once user clicks on email confirmation link from "
1585
  "the Double Opt In (confirmation) Email."
@@ -1587,13 +1559,13 @@ msgstr ""
1587
  "Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
1588
  "confirmació del correu electrònic pel Doble Opt In (confirmació)"
1589
 
1590
- #: ../settings/settings-edit.php:212
1591
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1592
  msgstr ""
1593
  "Enviar uncorreu electrònic de benvinguda als subscriptors nous després de "
1594
  "registrar-se?"
1595
 
1596
- #: ../settings/settings-edit.php:213
1597
  msgid ""
1598
  "To send welcome email to subscriber after successful signup. This option "
1599
  "must be set to YES."
@@ -1601,11 +1573,11 @@ msgstr ""
1601
  "Per enviar correu electrònic de benvinguda al subscriptor després del "
1602
  "registre amb èxit. Aquesta opció ha d'estar a YES."
1603
 
1604
- #: ../settings/settings-edit.php:224
1605
  msgid "Subject for Welcome Email"
1606
  msgstr "Assumpte del correu electrònic de benvinguda"
1607
 
1608
- #: ../settings/settings-edit.php:225
1609
  msgid ""
1610
  "Subject for the subscriber welcome email. This will be sent whenever a "
1611
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1615,11 +1587,11 @@ msgstr ""
1615
  "s'enviarà sempre que s'hagi confirmat un email de l'usuari (si és Double Opt-"
1616
  "In) / o subscrit (si és Opt-In individual) amb èxit."
1617
 
1618
- #: ../settings/settings-edit.php:231
1619
  msgid "Email Content for Welcome Email"
1620
  msgstr "Contingut del correu electrònic de benvinguda"
1621
 
1622
- #: ../settings/settings-edit.php:232
1623
  msgid ""
1624
  "Content for the subscriber welcome email whenever a user's email is either "
1625
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1630,11 +1602,11 @@ msgstr ""
1630
  "o es subscrigui (per Opt in sencill) amb èxit.<br />Paraules clau "
1631
  "disponibles: {{NAME}}, {{GROUP}}, {{LINK}}"
1632
 
1633
- #: ../settings/settings-edit.php:240
1634
  msgid "Unsubscribe Link"
1635
  msgstr "Enllaç per a donar-se de baixa"
1636
 
1637
- #: ../settings/settings-edit.php:241
1638
  msgid ""
1639
  "This unsubscribe link is automatically added to all the emails that are sent "
1640
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1644,11 +1616,11 @@ msgstr ""
1644
  "els correus electrònics que s'envien des d'aquest complement. Es tracta d'un "
1645
  "camp de lectura i se us aconsella no modificar-lo."
1646
 
1647
- #: ../settings/settings-edit.php:247
1648
  msgid "Unsubscribe Text in Email"
1649
  msgstr "Text de donar-se de baixa en el correu electrònic"
1650
 
1651
- #: ../settings/settings-edit.php:248
1652
  msgid ""
1653
  "The text for the unsubscribe link. This text is automatically added with "
1654
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1657,11 +1629,11 @@ msgstr ""
1657
  "automàticament amb l'enllaç de baixa al correu electrònic.<br />Paraules "
1658
  "clau disponibles: {{LINK}}"
1659
 
1660
- #: ../settings/settings-edit.php:254
1661
  msgid "Text to display after an email address is unsubscribed"
1662
  msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
1663
 
1664
- #: ../settings/settings-edit.php:255
1665
  msgid ""
1666
  "This text will be displayed once user clicks on unsubscribe link from the "
1667
  "email."
@@ -1669,11 +1641,11 @@ msgstr ""
1669
  "Aquest text es mostrarà una vegada que l'usuari faci clic a l'enllaç de "
1670
  "baixa de l'adreça electrònica."
1671
 
1672
- #: ../settings/settings-edit.php:262
1673
  msgid "Error in the Subscribe / Confirmation Link"
1674
  msgstr "Error en l'enllaç de subscripció / confirmació"
1675
 
1676
- #: ../settings/settings-edit.php:263
1677
  msgid ""
1678
  "Default message to display if there is any issue while clicking on subscribe "
1679
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1682,11 +1654,11 @@ msgstr ""
1682
  "l'enllaç de subscripció / confirmació des dels correus electrònics de Double "
1683
  "Opt-In (confirmació)."
1684
 
1685
- #: ../settings/settings-edit.php:269
1686
  msgid "Error in the Unsubscribe Link"
1687
  msgstr "Error amb l'enllaç de baixa"
1688
 
1689
- #: ../settings/settings-edit.php:270
1690
  msgid ""
1691
  "Default message to display if there is any issue while clicking on "
1692
  "unsubscribe link from the emails."
@@ -1694,51 +1666,51 @@ msgstr ""
1694
  "Missatge predeterminat per mostrar si hi ha cap problema mentre feu clic a "
1695
  "l'enllaç de baixa dels correus electrònics."
1696
 
1697
- #: ../settings/settings-edit.php:282
1698
  msgid "Select user roles who can access following menus. Only Admin can change this."
1699
  msgstr ""
1700
  "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
1701
  "administrador pot canviar això."
1702
 
1703
- #: ../settings/settings-edit.php:288
1704
  msgid "Subscribers Menu"
1705
  msgstr "Menú dels subscriptors"
1706
 
1707
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1708
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1709
- #: settings/settings-edit.php:340
1710
- msgid "Administrator Only"
1711
- msgstr "Només l'administrador"
1712
-
1713
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1714
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1715
  #: settings/settings-edit.php:341
1716
- msgid "Administrator/Editor"
1717
- msgstr "Administrador/editor"
1718
 
1719
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1720
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1721
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1722
  msgid "Administrator/Editor/Author/Contributor"
1723
  msgstr "Administrador/editor/autor/contribuidor"
1724
 
1725
- #: ../settings/settings-edit.php:300
1726
  msgid "Templates Menu"
1727
  msgstr "Menú de plantilles"
1728
 
1729
- #: ../settings/settings-edit.php:312
1730
  msgid "Post Notifications Menu"
1731
  msgstr "Menú de notificacionns"
1732
 
1733
- #: ../settings/settings-edit.php:336
1734
  msgid "Reports Menu"
1735
  msgstr "menú d'informes"
1736
 
1737
- #: ../settings/settings-edit.php:353
1738
  msgid "Cron job URL"
1739
  msgstr "URL de treball del Cron"
1740
 
1741
- #: ../settings/settings-edit.php:354
1742
  msgid ""
1743
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1744
  "modify it."
@@ -1746,25 +1718,25 @@ msgstr ""
1746
  "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
1747
  "recomana no modificar-lo."
1748
 
1749
- #: ../settings/settings-edit.php:363
1750
  msgid "Email Count"
1751
  msgstr "Comte de correu electrònic"
1752
 
1753
- #: ../settings/settings-edit.php:364
1754
  msgid "Number of emails that you want to trigger per hour."
1755
  msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
1756
 
1757
- #: ../settings/settings-edit.php:369
1758
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1759
  msgstr ""
1760
  "(El vostre proveïdor d'allotjament web té límits. Us suggerim 50 correus "
1761
  "electrònics per hora per anar segurs.)"
1762
 
1763
- #: ../settings/settings-edit.php:374
1764
  msgid "Cron Report"
1765
  msgstr "Informe Cron"
1766
 
1767
- #: ../settings/settings-edit.php:375
1768
  msgid ""
1769
  "Email to admin whenever a cron URL is triggered from your server.<br "
1770
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1773,11 +1745,11 @@ msgstr ""
1773
  "s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
1774
  "{{DATE}}, {{SUBJECT}}, {{COUNT}}"
1775
 
1776
- #: ../settings/settings-edit.php:385
1777
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1778
  msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
1779
 
1780
- #: ../settings/settings-edit.php:386
1781
  msgid ""
1782
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1783
  "schedule-cron-emails/?"
@@ -1789,7 +1761,7 @@ msgstr ""
1789
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
1790
  "Cron?</a>"
1791
 
1792
- #: ../settings/settings-edit.php:387
1793
  msgid ""
1794
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1795
  "schedule-cron-emails-in-cpanel/?"
@@ -1801,7 +1773,7 @@ msgstr ""
1801
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
1802
  "el treball cron a cPanel</a>"
1803
 
1804
- #: ../settings/settings-edit.php:388
1805
  msgid ""
1806
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1807
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1813,7 +1785,7 @@ msgstr ""
1813
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1814
  "el treball cron a Plesk</a>"
1815
 
1816
- #: ../settings/settings-edit.php:389
1817
  msgid ""
1818
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1819
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1825,23 +1797,19 @@ msgstr ""
1825
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
1826
  "nt no és compatible amb els treballs de cron?</a>"
1827
 
1828
- #: ../settings/settings-edit.php:504
1829
  msgid "Please enter sender of notifications from name."
1830
  msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
1831
 
1832
- #: ../settings/settings-edit.php:509
1833
  msgid "Please enter sender of notifications from email."
1834
  msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
1835
 
1836
- #: ../settings/settings-edit.php:553
1837
- msgid "Please enter valid mail count."
1838
- msgstr "Si us plau, introdueix un compte de correu electrònic vàlid."
1839
-
1840
- #: ../settings/settings-edit.php:566
1841
  msgid "Settings Saved."
1842
  msgstr "Configuració guardada"
1843
 
1844
- #: ../settings/settings-edit.php:569
1845
  msgid "Oops, unable to update."
1846
  msgstr "Vaja, no es pot actualitzar."
1847
 
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"
35
  msgstr ""
36
 
37
  #: ../classes/es-register.php:260
 
 
 
 
 
 
 
 
38
  msgctxt "widget-page-enhanced-select"
39
  msgid ""
40
  "Your subscription was successful! Kindly check your mailbox and confirm your "
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}}, "
86
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
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
+
204
  #: ../subscribers/view-subscriber-export.php:12
205
  msgid ""
206
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
264
  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
  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
  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
 
423
  msgstr "Si us plau, introdueixi el recompte d'emails, només número."
424
 
425
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  msgctxt "widget-page-enhanced-select"
427
  msgid "Please enter email address"
428
  msgstr "Si us plau, entra l'adreça d'email"
429
 
430
+ #: ../classes/es-register.php:259
431
  msgctxt "widget-page-enhanced-select"
432
  msgid "Successfully Subscribed."
433
  msgstr "Subscripció exitosa"
434
 
435
+ #: ../classes/es-register.php:261
436
  msgctxt "widget-page-enhanced-select"
437
  msgid "Email Address already exists!"
438
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
439
 
440
+ #: ../classes/es-register.php:262
441
  msgctxt "widget-page-enhanced-select"
442
  msgid "Oops.. Unexpected error occurred."
443
  msgstr "Vaja... S'ha produït un error inesperat."
444
 
445
+ #: ../classes/es-register.php:263
446
  msgctxt "widget-page-enhanced-select"
447
  msgid "Invalid email address"
448
  msgstr "l'Adreça de correu electrònic no és vàlida"
449
 
450
+ #: ../classes/es-register.php:264
451
  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
  "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
 
1414
  msgid "Single Opt In"
1415
  msgstr "Opt In sencill"
1416
 
1417
+ #: ../settings/settings-edit.php:117
1418
  msgid "Image Size"
1419
  msgstr "Mida de la imatge"
1420
 
1421
+ #: ../settings/settings-edit.php:118
1422
  msgid ""
1423
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1424
  "Emails."
1426
  "Seleccioneu la mida de la imatge {{POSTIMAGE}} que es mostrarà als correus "
1427
  "electrònics de notificació de correu"
1428
 
1429
+ #: ../settings/settings-edit.php:122
1430
  msgid "Full Size"
1431
  msgstr "mida completa"
1432
 
1433
+ #: ../settings/settings-edit.php:123
1434
  msgid "Medium Size"
1435
  msgstr "Mida mitjana"
1436
 
1437
+ #: ../settings/settings-edit.php:130
1438
  msgid "Admin Email Addresses"
1439
  msgstr "Adreces email dels administradors"
1440
 
1441
+ #: ../settings/settings-edit.php:131
1442
  msgid ""
1443
  "Enter the admin email addresses that should receive notifications (separated "
1444
  "by comma)."
1446
  "Introduïu les adreces de correu electrònic d'administració que han de rebre "
1447
  "notificacions (separades per comes)."
1448
 
1449
+ #: ../settings/settings-edit.php:137
1450
  msgid "Notify Admin when a new subscriber signs up"
1451
  msgstr "Notifica a Admin quan un nou subscriptor s'inscriu"
1452
 
1453
+ #: ../settings/settings-edit.php:138
1454
  msgid ""
1455
  "To send admin email notifications for the new subscriber. This option must "
1456
  "be set to YES."
1458
  "Per enviar notificacions per correu electrònic a l'administrador per un nou "
1459
  "subscrit. Aquesta opció ha d'estar a YES."
1460
 
1461
+ #: ../settings/settings-edit.php:150
1462
  msgid "Admin Email Subject on new subscriber sign up"
1463
  msgstr ""
1464
  "Assumpte del correu electrònic a l'administrador quan hi ha un subscripció "
1465
  "nou"
1466
 
1467
+ #: ../settings/settings-edit.php:151
1468
  msgid ""
1469
  "Subject for the admin email whenever a new subscriber signs up and is "
1470
  "confirmed."
1472
  "Assumpte del correu electrònic a l'administració sempre que un subscriptor "
1473
  "nou es registri i es confirmi."
1474
 
1475
+ #: ../settings/settings-edit.php:157
1476
  msgid "Admin Email Content on new subscriber signs up"
1477
  msgstr ""
1478
  "Contingut de correu electrònic a l'administrador quan es registra un nou "
1479
  "subscriptor"
1480
 
1481
+ #: ../settings/settings-edit.php:158
1482
  msgid ""
1483
  "Content for the admin email whenever a new subscriber signs up and is "
1484
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1487
  "subscriptor nou es registra i es confirma.<br />Paraules clau disponibles: "
1488
  "{{NAME}}, {{EMAIL}}, {{GROUP}}"
1489
 
1490
+ #: ../settings/settings-edit.php:165
1491
  msgid "Sent Report Subject"
1492
  msgstr "Assumpte del informe enviat"
1493
 
1494
+ #: ../settings/settings-edit.php:166
1495
  msgid "Subject for the email report which will be sent to admin."
1496
  msgstr "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
1497
 
1498
+ #: ../settings/settings-edit.php:172
1499
  msgid "Sent Report Content"
1500
  msgstr "Contingut del informe enviat"
1501
 
1502
+ #: ../settings/settings-edit.php:173
1503
  msgid ""
1504
  "Content for the email report which will be sent to admin.<br />Available "
1505
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1508
  "l'administrador.<br />Paraules clau disponibles: {{COUNT}}, {{UNIQUE}}, "
1509
  "{{STARTTIME}}, {{ENDTIME}}"
1510
 
1511
+ #: ../settings/settings-edit.php:184
1512
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1513
  msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
1514
 
1515
+ #: ../settings/settings-edit.php:185
1516
  msgid ""
1517
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1518
  "subscriber signs up."
1520
  "Assumpte per al correu electrònic de confirmació que s'enviarà sempre que un "
1521
  "subscriptor s'inscrigui per Double Opt-In "
1522
 
1523
+ #: ../settings/settings-edit.php:191
1524
  msgid "Double Opt-In Email Content (Confirmation Email)"
1525
  msgstr ""
1526
  "Contingut de correu electrònic pel sistema Double Opt-In (correu de "
1527
  "confirmació)"
1528
 
1529
+ #: ../settings/settings-edit.php:192
1530
  msgid ""
1531
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1532
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1535
  "sempre que un subscriptor s'inscrigui.<br />Paraules clau disponibles: "
1536
  "{{NAME}}, {{LINK}}"
1537
 
1538
+ #: ../settings/settings-edit.php:198
1539
  msgid "Double Opt-In Confirmation Link"
1540
  msgstr "Link de confirmació pel sistema Double Opt-in"
1541
 
1542
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
 
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Wed May 23 2018 11:03:46 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"
@@ -22,24 +22,51 @@ msgstr ""
22
  "X-Loco-Target-Locale: de_DE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:740
 
 
 
 
 
26
  msgid "Check Pro plan"
27
  msgstr ""
28
 
29
- #: ../classes/es-register.php:778
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:779
36
  msgid "Steps to enable"
37
  msgstr ""
38
 
39
- #: ../classes/es-register.php:779
40
  msgid "Ok, got it"
41
  msgstr ""
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  #: ../help/help.php:197
44
  msgid ""
45
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
@@ -55,10 +82,6 @@ msgstr ""
55
  msgid "Privacy Policy"
56
  msgstr ""
57
 
58
- #: ../help/help.php:413
59
- msgid "[GDPR] Email Subscribers"
60
- msgstr ""
61
-
62
  #: ../help/help.php:416 ../help/help.php:434
63
  msgid "How to enable consent checkbox in the subscribe form?"
64
  msgstr ""
@@ -82,6 +105,10 @@ msgid ""
82
  "deleted too and email will not be sent."
83
  msgstr ""
84
 
 
 
 
 
85
  #: ../classes/es-common.php:13
86
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
87
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
@@ -126,32 +153,13 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
126
  msgid "<span style=\"color:#993399;\">Immediately</span>"
127
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
128
 
129
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
130
- #: subscribers/view-subscriber-show.php:289
131
- msgid "Name"
132
- msgstr "Name"
133
-
134
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
135
- msgid "Email *"
136
- msgstr "Email *"
137
-
138
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
139
- #: php:202
140
- msgid "Subscribe"
141
- msgstr "Anmelden"
142
-
143
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
144
- #: register.php:839
145
- msgid "Email Subscribers"
146
- msgstr "Email Subscribers"
147
-
148
  #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
149
  #: subscribers/view-subscriber-show.php:242
150
  msgid "Subscribers"
151
  msgstr "Abonnenten"
152
 
153
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
154
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
155
  msgid "Templates"
156
  msgstr "Vorlagen"
157
 
@@ -161,7 +169,7 @@ msgid "Post Notifications"
161
  msgstr "Benachrichtigungen"
162
 
163
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
164
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
165
  msgid "Newsletters"
166
  msgstr "Newsletter"
167
 
@@ -186,12 +194,12 @@ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
186
  #: ../classes/es-register.php:195
187
  msgctxt "view-subscriber-enhanced-select"
188
  msgid "Please enter subscriber email address."
189
- msgstr "Bitte Emailadresse des Abonnenten eingeben."
190
 
191
  #: ../classes/es-register.php:196
192
  msgctxt "view-subscriber-enhanced-select"
193
  msgid "Please select subscriber email status."
194
- msgstr "Wähle den Emailstatus des Abonnenten."
195
 
196
  #: ../classes/es-register.php:197
197
  msgctxt "view-subscriber-enhanced-select"
@@ -219,7 +227,7 @@ msgid ""
219
  "Do you want to resend confirmation email? Also please note, this will update "
220
  "subscriber current status to 'Unconfirmed'."
221
  msgstr ""
222
- "Möchtest Du die Bestätigungsemail erneut versenden? Beachte, dies wird den "
223
  "Status des Abonnenten auf 'unbestätigt' setzen."
224
 
225
  #: ../classes/es-register.php:202
@@ -258,7 +266,7 @@ msgstr "Abonnentengruppe wählen."
258
  msgctxt "notification-enhanced-select"
259
  msgid "Please select notification mail subject. Use templates menu to create new."
260
  msgstr ""
261
- "Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
262
  "um ein neues zu erstellen."
263
 
264
  #: ../classes/es-register.php:216
@@ -311,57 +319,16 @@ msgid "Please enter the mail count, only number."
311
  msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
312
 
313
  #: ../classes/es-register.php:258
314
- msgctxt "widget-enhanced-select"
315
- msgid "Please enter email address"
316
- msgstr "Bitte gib die Emailadresse ein"
317
-
318
- #: ../classes/es-register.php:259
319
- msgctxt "widget-enhanced-select"
320
- msgid "Successfully Subscribed."
321
- msgstr "Erfolgreich angemeldet."
322
-
323
- #: ../classes/es-register.php:260
324
- msgctxt "widget-enhanced-select"
325
- msgid ""
326
- "Your subscription was successful! Kindly check your mailbox and confirm your "
327
- "subscription. If you don't see the email within a few minutes, check the "
328
- "spam/junk folder."
329
- msgstr ""
330
- "Deine Anmeldung war erfolgreich! Bitte prüfe Deine Mailbox und bestätige die "
331
- "Anmeldung. Wenn Du nach einigen Minuten noch keine Email erhalten hast prüfe "
332
- "bitte Deinen Spam-Ordner."
333
-
334
- #: ../classes/es-register.php:261
335
- msgctxt "widget-enhanced-select"
336
- msgid "Email Address already exists!"
337
- msgstr "Diese Adresse existiert bereits!"
338
-
339
- #: ../classes/es-register.php:262
340
- msgctxt "widget-enhanced-select"
341
- msgid "Oops.. Unexpected error occurred."
342
- msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
343
-
344
- #: ../classes/es-register.php:263
345
- msgctxt "widget-enhanced-select"
346
- msgid "Invalid email address"
347
- msgstr "Ungültige Emailadresse"
348
-
349
- #: ../classes/es-register.php:264
350
- msgctxt "widget-enhanced-select"
351
- msgid "Please try after some time"
352
- msgstr "Versuche es in Kürze nochmal"
353
-
354
- #: ../classes/es-register.php:272
355
  msgctxt "widget-page-enhanced-select"
356
  msgid "Please enter email address"
357
- msgstr "Bitte gib die Emailadresse ein"
358
 
359
- #: ../classes/es-register.php:273
360
  msgctxt "widget-page-enhanced-select"
361
  msgid "Successfully Subscribed."
362
  msgstr "Erfolgreich angemeldet."
363
 
364
- #: ../classes/es-register.php:274
365
  msgctxt "widget-page-enhanced-select"
366
  msgid ""
367
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -372,27 +339,27 @@ msgstr ""
372
  "Anmeldung. Wenn Du nach einigen Minuten noch keine Email erhalten hast prüfe "
373
  "bitte Deinen Spam-Ordner."
374
 
375
- #: ../classes/es-register.php:275
376
  msgctxt "widget-page-enhanced-select"
377
  msgid "Email Address already exists!"
378
  msgstr "Diese Adresse existiert bereits!"
379
 
380
- #: ../classes/es-register.php:276
381
  msgctxt "widget-page-enhanced-select"
382
  msgid "Oops.. Unexpected error occurred."
383
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
384
 
385
- #: ../classes/es-register.php:277
386
  msgctxt "widget-page-enhanced-select"
387
  msgid "Invalid email address"
388
- msgstr "Ungültige Emailadresse"
389
 
390
- #: ../classes/es-register.php:278
391
  msgctxt "widget-page-enhanced-select"
392
  msgid "Please try after some time"
393
  msgstr "Versuche es in Kürze nochmal"
394
 
395
- #: ../classes/es-register.php:739
396
  msgid ""
397
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
398
  "subscribers list?</b> Come check our Pro plan."
@@ -400,11 +367,11 @@ msgstr ""
400
  "<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
401
  "Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
402
 
403
- #: ../classes/es-register.php:740
404
  msgid "Not interested."
405
  msgstr "Nicht interessiert."
406
 
407
- #: ../classes/es-register.php:804
408
  msgid ""
409
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
410
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -417,123 +384,121 @@ msgstr ""
417
  "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
418
  "riesiges Dankeschön von Icegram im Voraus!"
419
 
420
- #: ../classes/es-register.php:818
421
  #, php-format
422
  msgid "Email Subscribers version: <strong>%s</strong>"
423
  msgstr "Email Subscribers Version: <strong>%s</strong>"
424
 
425
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
426
  msgid "Add new Template"
427
  msgstr "Neue Vorlage hinzufügen"
428
 
429
- #: ../classes/es-register.php:831
430
  msgid "Edit Templates"
431
  msgstr "Vorlagen bearbeiten"
432
 
433
- #: ../classes/es-register.php:832
434
  msgid "New Templates"
435
  msgstr "Neue Vorlagen"
436
 
437
- #: ../classes/es-register.php:834
438
  msgid "View Templates"
439
  msgstr "Vorlagen ansehen"
440
 
441
- #: ../classes/es-register.php:835
442
  msgid "Search Templates"
443
  msgstr "Vorlagen suchen"
444
 
445
- #: ../classes/es-register.php:836
446
  msgid "No Templates found"
447
  msgstr "Keine Vorlagen gefunden"
448
 
449
- #: ../classes/es-register.php:837
450
  msgid "No Templates found in Trash"
451
  msgstr "Keine Vorlagen im Papierkorb gefunden"
452
 
453
- #: ../classes/es-register.php:840
454
  msgid "Thumbnail (For Visual Representation only)"
455
  msgstr "Vorschaubild (nur zur visuellen Darstellung)"
456
 
457
- #: ../classes/es-register.php:841
458
  msgid "Set thumbnail"
459
  msgstr "Vorschaubild auswählen"
460
 
461
- #: ../classes/es-register.php:878
462
  msgid "Template Type"
463
  msgstr "Vorlagentyp"
464
 
465
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
466
  msgid "Thumbnail"
467
  msgstr "Vorschau"
468
 
469
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
470
  #: sentmail/sentmail-show.php:121
471
  msgid "Preview"
472
  msgstr "Vorschau"
473
 
474
- #: ../classes/es-register.php:944
475
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
476
- msgstr "Verfügbares Schlüsselwort für Beitragsbenachrichtigung: {{POSTTITLE}}"
477
-
478
- #: ../classes/es-register.php:947
479
  msgid "Select your Email Template Type"
480
  msgstr "Wähle den Typ der Emailvorlage"
481
 
482
- #: ../classes/es-register.php:949
483
  msgid "Newsletter"
484
  msgstr "Newsletter"
485
 
486
- #: ../classes/es-register.php:950
487
  msgid "Post Notification"
488
  msgstr "Benachrichtigung über Beitrag"
489
 
490
- #: ../classes/es-register.php:997
491
  msgid "Preview Template"
492
  msgstr "Voransicht Vorlage"
493
 
494
- #: ../classes/es-register.php:1011
495
- #, php-format
496
- msgid ""
497
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
498
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
499
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
500
- msgstr ""
501
- "%s für Beitragsbenachrichtigung: {{NAME}}, {{EMAIL}}, {{DATE}}, "
502
- "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
503
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
504
-
505
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
506
  msgid "Available Keywords"
507
  msgstr "Verfügbare Schlüsselworte"
508
 
509
- #: ../classes/es-register.php:1012
510
  #, php-format
511
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
512
  msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
513
 
514
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
515
  msgid "Widget Title"
516
  msgstr "Widget Titel"
517
 
518
- #: ../classes/es-register.php:1153
519
  msgid "Short description about subscription form"
520
  msgstr "Kurze Beschreibung des Anmeldeformulars"
521
 
522
- #: ../classes/es-register.php:1157
523
  msgid "Display Name Field"
524
  msgstr "Namensfeld anzeigen"
525
 
526
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
527
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
528
  msgid "YES"
529
  msgstr "Ja"
530
 
531
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
532
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
533
  msgid "NO"
534
  msgstr "Nein"
535
 
536
- #: ../classes/es-register.php:1164
537
  msgid "Subscriber Group"
538
  msgstr "Abonnentengruppe"
539
 
@@ -617,7 +582,7 @@ msgid ""
617
  "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
618
  "Code)."
619
  msgstr ""
620
- "Sammeln von Kundenemailadressen durch hinzufügen einer Anmeldebox "
621
  "(Widget/Shortcode/PHP Code)."
622
 
623
  #: ../help/help.php:268
@@ -750,7 +715,7 @@ msgid ""
750
  " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
751
  "Roles"
752
  msgstr ""
753
- " (wie Bestätigungs-, Willkommens-, Adminemails), Cron Einstellungen und "
754
  "zuweisen von Benutzerrollen"
755
 
756
  #: ../help/help.php:336
@@ -759,7 +724,7 @@ msgstr "Wie funktioniert Sync?"
759
 
760
  #: ../help/help.php:339
761
  msgid "How to Import or Export Email Addresses?"
762
- msgstr "Wie importiere oder exportiere ich Emailadressen?"
763
 
764
  #: ../help/help.php:342
765
  msgid "How to Add/Update Existing Subscribers Group & Status?"
@@ -809,11 +774,11 @@ msgstr "Was ist Cron und wie plane ich Cron Emailversand?"
809
 
810
  #: ../help/help.php:390
811
  msgid "Schedule Cron Emails in cPanel"
812
- msgstr "Planen von Cron Emails in cPanel"
813
 
814
  #: ../help/help.php:393
815
  msgid "Schedule Cron Emails in Parallels Plesk"
816
- msgstr "Planen von Cron Emails in Paralles Plesk"
817
 
818
  #: ../help/help.php:396
819
  msgid "Hosting doesn’t support Cron Jobs?"
@@ -825,7 +790,7 @@ msgstr "Schritte bei der Fehlersuche"
825
 
826
  #: ../help/help.php:402
827
  msgid "Subscribers are not receiving Emails?"
828
- msgstr "Abonnenten erhalten keine Emails?"
829
 
830
  #: ../help/help.php:405
831
  msgid "CSS Help"
@@ -835,6 +800,10 @@ msgstr "CSS Hilfe"
835
  msgid "FAQ's"
836
  msgstr "FAQ's"
837
 
 
 
 
 
838
  #: ../help/help.php:446
839
  msgid "Want to do more? Here's how.."
840
  msgstr "Du möchtest mehr machen? Hier steht wie..."
@@ -955,7 +924,7 @@ msgstr ""
955
 
956
  #: ../job/es-optin.php:61
957
  msgid "This email address has already been confirmed."
958
- msgstr "Diese Emailadresse wurde schon bestätigt."
959
 
960
  #: ../notification/notification-add.php:33
961
  msgid "Please select subscribers group."
@@ -968,7 +937,7 @@ msgstr "Bitte wähle den Benachrichtigungsstatus."
968
  #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
969
  msgid "Please select notification mail subject. Use templates menu to create new."
970
  msgstr ""
971
- "Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
972
  "um ein neues zu erstellen."
973
 
974
  #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
@@ -1010,7 +979,7 @@ msgstr "Wähle"
1010
  #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
1011
  #: 163
1012
  msgid "Select Notification Email Subject"
1013
- msgstr "Wähle das Subjekt der Benachrichtigungsmail"
1014
 
1015
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
1016
  #: 164
@@ -1055,17 +1024,17 @@ msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlich
1055
  #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1056
  #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1057
  msgid "Send email immediately"
1058
- msgstr "Sende Email sofort"
1059
 
1060
  #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1061
  #: 281 ../notification/notification-show.php:132
1062
  msgid "Add to cron and send email via cron job"
1063
- msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
1064
 
1065
  #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1066
  #: 282
1067
  msgid "Disable email notification"
1068
- msgstr "Emailbenachrichtigungen deaktivieren"
1069
 
1070
  #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1071
  #: 291 ../subscribers/view-subscriber-edit.php:191
@@ -1119,7 +1088,7 @@ msgstr ""
1119
  #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1120
  #: 76
1121
  msgid "Email Subject"
1122
- msgstr "Emailsubjekt"
1123
 
1124
  #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1125
  #: 77
@@ -1158,7 +1127,7 @@ msgstr "Hier klicken"
1158
 
1159
  #: ../sendmail/sendmail.php:40
1160
  msgid "Please select your mail subject."
1161
- msgstr "Bitte wähle das Subjekt der Mail."
1162
 
1163
  #: ../sendmail/sendmail.php:46
1164
  msgid "Please select your mail type."
@@ -1170,7 +1139,7 @@ msgstr "Bitte wähle die Gruppe."
1170
 
1171
  #: ../sendmail/sendmail.php:59
1172
  msgid "Email sent successfully. "
1173
- msgstr "Email erfolgreich gesendet. "
1174
 
1175
  #: ../sendmail/sendmail.php:63
1176
  msgid "Click here to check Statistics"
@@ -1186,19 +1155,19 @@ msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
1186
 
1187
  #: ../sendmail/sendmail.php:106
1188
  msgid "Select Email Subject from available list"
1189
- msgstr "Wähle das Subjekt der Email aus"
1190
 
1191
  #: ../sendmail/sendmail.php:133
1192
  msgid "Select Email Type"
1193
- msgstr "Wähle den Emailtyp"
1194
 
1195
  #: ../sendmail/sendmail.php:140
1196
  msgid "Send email via cron job"
1197
- msgstr "Sende Email via Cron Job"
1198
 
1199
  #: ../sendmail/sendmail.php:147
1200
  msgid "Select Subscribers group to Send Email"
1201
- msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
1202
 
1203
  #: ../sendmail/sendmail.php:179
1204
  msgid "Recipients : 0 "
@@ -1216,12 +1185,12 @@ msgid ""
1216
  "</strong><br>Click on Help for more information."
1217
  msgstr ""
1218
  "<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den "
1219
- "Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1220
  "</strong><br>Klicke auf Hilfe für weitere Informationen."
1221
 
1222
  #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1223
  msgid "Send Email"
1224
- msgstr "Email senden"
1225
 
1226
  #: ../sendmail/sendmail.php:201
1227
  msgid "Reset"
@@ -1251,7 +1220,7 @@ msgstr "Alle"
1251
 
1252
  #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1253
  msgid "Email"
1254
- msgstr "Email"
1255
 
1256
  #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1257
  #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
@@ -1278,7 +1247,7 @@ msgstr "Gelesen am"
1278
 
1279
  #: ../sentmail/sentmail-preview.php:27
1280
  msgid "Preview Email"
1281
- msgstr "Email Vorschau"
1282
 
1283
  #: ../sentmail/sentmail-preview.php:31
1284
  msgid ""
@@ -1286,10 +1255,10 @@ msgid ""
1286
  "(like gmail, yahoo etc) display email content differently. So there could be "
1287
  "a slight variation on how your customer will view the email content."
1288
  msgstr ""
1289
- "So könnte die Email ausehen die Du gesendet hast. <br>Hinweis: Die Email "
1290
- "kann bei unterschiedlichen Emailanbietern (z. Bsp. GMail, Yahoo, usw.) "
1291
  "unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
1292
- "darin kommen wie der Kunde den Inhalt der Email sieht."
1293
 
1294
  #: ../sentmail/sentmail-preview.php:53
1295
  msgid "Back"
@@ -1382,20 +1351,20 @@ msgid ""
1382
  "Choose a FROM name and FROM email address for all the emails to be sent from "
1383
  "this plugin."
1384
  msgstr ""
1385
- "Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von "
1386
  "diesem Plugin verschickt werden."
1387
 
1388
  #: ../settings/settings-edit.php:89
1389
  msgid "Email Type"
1390
- msgstr "Emailtyp"
1391
 
1392
  #: ../settings/settings-edit.php:90
1393
  msgid ""
1394
  "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1395
  "Option 3 & 4 is to send emails with PHP method mail()."
1396
  msgstr ""
1397
- "Optionen 1 & 2 um Emails über die Standard-Wordpress-Methode wp_mail() zu "
1398
- "senden, Optionen 3 & 4 um Emails über die PHP-Methode mail() zu senden."
1399
 
1400
  #: ../settings/settings-edit.php:94
1401
  msgid "1. WP HTML MAIL"
@@ -1442,11 +1411,11 @@ msgstr "Doppeltes Opt In"
1442
  msgid "Single Opt In"
1443
  msgstr "Einfaches Opt In"
1444
 
1445
- #: ../settings/settings-edit.php:116
1446
  msgid "Image Size"
1447
  msgstr "Bildgröße"
1448
 
1449
- #: ../settings/settings-edit.php:117
1450
  msgid ""
1451
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1452
  "Emails."
@@ -1454,31 +1423,31 @@ msgstr ""
1454
  "Wähle die Bildgröße für {{POSTIMAGE}} die in den Benachrichtigungsmails "
1455
  "angezeigt wird."
1456
 
1457
- #: ../settings/settings-edit.php:121
1458
  msgid "Full Size"
1459
  msgstr "Volle Größe"
1460
 
1461
- #: ../settings/settings-edit.php:122
1462
  msgid "Medium Size"
1463
  msgstr "Mittlere Größe"
1464
 
1465
- #: ../settings/settings-edit.php:129
1466
  msgid "Admin Email Addresses"
1467
- msgstr "Admin Emailadresse"
1468
 
1469
- #: ../settings/settings-edit.php:130
1470
  msgid ""
1471
  "Enter the admin email addresses that should receive notifications (separated "
1472
  "by comma)."
1473
  msgstr ""
1474
- "Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen "
1475
- "(durch Kommas getrennt)."
1476
 
1477
- #: ../settings/settings-edit.php:136
1478
  msgid "Notify Admin when a new subscriber signs up"
1479
  msgstr "Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1480
 
1481
- #: ../settings/settings-edit.php:137
1482
  msgid ""
1483
  "To send admin email notifications for the new subscriber. This option must "
1484
  "be set to YES."
@@ -1486,11 +1455,11 @@ msgstr ""
1486
  "Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent "
1487
  "dazugekommen ist. Diese Option muss auf JA stehen."
1488
 
1489
- #: ../settings/settings-edit.php:149
1490
  msgid "Admin Email Subject on new subscriber sign up"
1491
  msgstr "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1492
 
1493
- #: ../settings/settings-edit.php:150
1494
  msgid ""
1495
  "Subject for the admin email whenever a new subscriber signs up and is "
1496
  "confirmed."
@@ -1498,43 +1467,43 @@ msgstr ""
1498
  "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet und "
1499
  "bestätigt ist."
1500
 
1501
- #: ../settings/settings-edit.php:156
1502
  msgid "Admin Email Content on new subscriber signs up"
1503
  msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1504
 
1505
- #: ../settings/settings-edit.php:157
1506
  msgid ""
1507
  "Content for the admin email whenever a new subscriber signs up and is "
1508
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1509
  msgstr ""
1510
- "Inhalt der Email an den Admin wenn ein neuer Abonnent angemeldet und "
1511
  "bestätigt ist.<br />Verfügbare Schlüsselworte: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1512
 
1513
- #: ../settings/settings-edit.php:164
1514
  msgid "Sent Report Subject"
1515
  msgstr "Subjekt des Sendeberichts"
1516
 
1517
- #: ../settings/settings-edit.php:165
1518
  msgid "Subject for the email report which will be sent to admin."
1519
- msgstr "Subjekt des Emailberichtes der an den Admin geschickt wird."
1520
 
1521
- #: ../settings/settings-edit.php:171
1522
  msgid "Sent Report Content"
1523
  msgstr "Inhalt des Sendeberichts"
1524
 
1525
- #: ../settings/settings-edit.php:172
1526
  msgid ""
1527
  "Content for the email report which will be sent to admin.<br />Available "
1528
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1529
  msgstr ""
1530
- "Inhalt des Emailreports der an den Admin geschickt wird.<br />Verfügbare "
1531
  "Schlüsselworte: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1532
 
1533
- #: ../settings/settings-edit.php:183
1534
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1535
- msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt-In)"
1536
 
1537
- #: ../settings/settings-edit.php:184
1538
  msgid ""
1539
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1540
  "subscriber signs up."
@@ -1542,11 +1511,11 @@ msgstr ""
1542
  "Subjekt der Bestätigungsmail bei doppeltem Opt-In wenn ein Abonnent sich "
1543
  "einträgt."
1544
 
1545
- #: ../settings/settings-edit.php:190
1546
  msgid "Double Opt-In Email Content (Confirmation Email)"
1547
  msgstr "Inhalt der Bestätigungsmail bei doppeltem Opt-In"
1548
 
1549
- #: ../settings/settings-edit.php:191
1550
  msgid ""
1551
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1552
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
@@ -1554,23 +1523,23 @@ msgstr ""
1554
  "Inhalt der Bestätigungsmail bei Doppeltem Opt-In wenn ein neuer Benutzer "
1555
  "sich angemeldet hat.<br />Verfügbare Schlüsselworte: {{NAME}}, {{LINK}}"
1556
 
1557
- #: ../settings/settings-edit.php:197
1558
  msgid "Double Opt-In Confirmation Link"
1559
  msgstr "Bestätigungslink bei doppeltem Opt-In"
1560
 
1561
- #: ../settings/settings-edit.php:198
1562
  msgid "It is a readonly field and you are advised not to modify it."
1563
  msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
1564
 
1565
- #: ../settings/settings-edit.php:204
1566
  msgid ""
1567
  "Text to display after an email address is successfully subscribed from "
1568
  "Double Opt-In (Confirmation) Email"
1569
  msgstr ""
1570
- "Angezeigter Text nachdem eine Emailadresse erfolgreich durch Doppeltes Opt-"
1571
  "In eingetragen wurde"
1572
 
1573
- #: ../settings/settings-edit.php:205
1574
  msgid ""
1575
  "This text will be displayed once user clicks on email confirmation link from "
1576
  "the Double Opt In (confirmation) Email."
@@ -1578,51 +1547,51 @@ msgstr ""
1578
  "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in "
1579
  "der Double Opt In Bestätigungsmail klickt."
1580
 
1581
- #: ../settings/settings-edit.php:212
1582
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1583
- msgstr "Nach der Anmeldung Willkommensemail an neue Abonnenten schicken?"
1584
 
1585
- #: ../settings/settings-edit.php:213
1586
  msgid ""
1587
  "To send welcome email to subscriber after successful signup. This option "
1588
  "must be set to YES."
1589
  msgstr ""
1590
- "Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich "
1591
  "registriert ist. Diese Option muss auf JA stehen."
1592
 
1593
- #: ../settings/settings-edit.php:224
1594
  msgid "Subject for Welcome Email"
1595
- msgstr "Subjekt der Willkommensemail"
1596
 
1597
- #: ../settings/settings-edit.php:225
1598
  msgid ""
1599
  "Subject for the subscriber welcome email. This will be sent whenever a "
1600
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1601
  "Opt-In) successfully."
1602
  msgstr ""
1603
- "Subjekt der Willkommensemail für den Abonnenten. Diese Mail wird gesendet "
1604
- "sobald eine Emailadresse entweder erfolgreich bestätigt (bei doppeltem Opt-"
1605
- "In) oder erfolgreich eingetragen (bei einfachem Opt-In) wurde."
1606
 
1607
- #: ../settings/settings-edit.php:231
1608
  msgid "Email Content for Welcome Email"
1609
- msgstr "Inhalt der Willkommensemail"
1610
 
1611
- #: ../settings/settings-edit.php:232
1612
  msgid ""
1613
  "Content for the subscriber welcome email whenever a user's email is either "
1614
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1615
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1616
  msgstr ""
1617
- "Inhalt der Willkommensmail wenn ein Benutzer entweder erfolgreich bestätigt "
1618
- "(bei doppeltem Opt-In) oder eingetragen (bei einfachem Opt-In) wurde.<br "
1619
- "/>Verfügbare Schlüsselworte: {{NAME}}, {{GROUP}}, {{LINK}}"
1620
 
1621
- #: ../settings/settings-edit.php:240
1622
  msgid "Unsubscribe Link"
1623
  msgstr "Link zum Abmelden"
1624
 
1625
- #: ../settings/settings-edit.php:241
1626
  msgid ""
1627
  "This unsubscribe link is automatically added to all the emails that are sent "
1628
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1632,24 +1601,24 @@ msgstr ""
1632
  "Plugin verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empfohlen "
1633
  "es nicht zu ändern."
1634
 
1635
- #: ../settings/settings-edit.php:247
1636
  msgid "Unsubscribe Text in Email"
1637
- msgstr "Inhalt der Abmeldeemail"
1638
 
1639
- #: ../settings/settings-edit.php:248
1640
  msgid ""
1641
  "The text for the unsubscribe link. This text is automatically added with "
1642
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1643
  msgstr ""
1644
  "Der Text für den Abmeldelink. Dieser Text wird automatisch mit dem "
1645
- "Abmeldelink zu den Emails hinzugefügt.<br />Verfügbare Schlüsselworte: "
1646
  "{{LINK}}"
1647
 
1648
- #: ../settings/settings-edit.php:254
1649
  msgid "Text to display after an email address is unsubscribed"
1650
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
1651
 
1652
- #: ../settings/settings-edit.php:255
1653
  msgid ""
1654
  "This text will be displayed once user clicks on unsubscribe link from the "
1655
  "email."
@@ -1657,23 +1626,23 @@ msgstr ""
1657
  "Dieser Text wird angezeigt nachdem ein Benutzer auf den Abmeldelink geklickt "
1658
  "hat."
1659
 
1660
- #: ../settings/settings-edit.php:262
1661
  msgid "Error in the Subscribe / Confirmation Link"
1662
  msgstr "Fehler im Anmelde- / Abmeldelink"
1663
 
1664
- #: ../settings/settings-edit.php:263
1665
  msgid ""
1666
  "Default message to display if there is any issue while clicking on subscribe "
1667
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1668
  msgstr ""
1669
  "Standardnachricht bei Fehlern bei der Verwendung des Anmelde- / "
1670
- "Bestätigungslinks der Bestätigungsemail bei doppeltem Opt-In."
1671
 
1672
- #: ../settings/settings-edit.php:269
1673
  msgid "Error in the Unsubscribe Link"
1674
  msgstr "Fehler im Abmeldelink"
1675
 
1676
- #: ../settings/settings-edit.php:270
1677
  msgid ""
1678
  "Default message to display if there is any issue while clicking on "
1679
  "unsubscribe link from the emails."
@@ -1681,87 +1650,87 @@ msgstr ""
1681
  "Standardnachricht bei Fehlern bei der Verwendung des Abmeldelinks aus den "
1682
  "Emails."
1683
 
1684
- #: ../settings/settings-edit.php:282
1685
  msgid "Select user roles who can access following menus. Only Admin can change this."
1686
  msgstr ""
1687
  "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur "
1688
  "ein Admin kann das ändern."
1689
 
1690
- #: ../settings/settings-edit.php:288
1691
  msgid "Subscribers Menu"
1692
  msgstr "Menü Abonnenten"
1693
 
1694
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1695
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1696
- #: settings/settings-edit.php:340
1697
- msgid "Administrator Only"
1698
- msgstr "Nur für Administratoren"
1699
-
1700
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1701
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1702
  #: settings/settings-edit.php:341
1703
- msgid "Administrator/Editor"
1704
- msgstr "Für Administratoren / Editoren"
1705
 
1706
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1707
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1708
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1709
  msgid "Administrator/Editor/Author/Contributor"
1710
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
1711
 
1712
- #: ../settings/settings-edit.php:300
1713
  msgid "Templates Menu"
1714
  msgstr "Vorlagen Menü"
1715
 
1716
- #: ../settings/settings-edit.php:312
1717
  msgid "Post Notifications Menu"
1718
  msgstr "Menü Benachrichtigungen"
1719
 
1720
- #: ../settings/settings-edit.php:336
1721
  msgid "Reports Menu"
1722
  msgstr "Menü Berichte"
1723
 
1724
- #: ../settings/settings-edit.php:353
1725
  msgid "Cron job URL"
1726
  msgstr "Cron Job URL"
1727
 
1728
- #: ../settings/settings-edit.php:354
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 "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1733
 
1734
- #: ../settings/settings-edit.php:363
1735
  msgid "Email Count"
1736
- msgstr "Anzahl Emails"
1737
 
1738
- #: ../settings/settings-edit.php:364
1739
  msgid "Number of emails that you want to trigger per hour."
1740
- msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
1741
 
1742
- #: ../settings/settings-edit.php:369
1743
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1744
  msgstr ""
1745
- "(Dein Hoster hat Limitierungen. Wir empfehlen 50 Emails pro Stunde um auf "
1746
  "der sicheren Seite zu sein.)"
1747
 
1748
- #: ../settings/settings-edit.php:374
1749
  msgid "Cron Report"
1750
  msgstr "Cron Bericht"
1751
 
1752
- #: ../settings/settings-edit.php:375
1753
  msgid ""
1754
  "Email to admin whenever a cron URL is triggered from your server.<br "
1755
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1756
  msgstr ""
1757
- "Email an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
1758
  "/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1759
 
1760
- #: ../settings/settings-edit.php:385
1761
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1762
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1763
 
1764
- #: ../settings/settings-edit.php:386
1765
  msgid ""
1766
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1767
  "schedule-cron-emails/?"
@@ -1773,7 +1742,7 @@ msgstr ""
1773
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
1774
  "Cron?</a>"
1775
 
1776
- #: ../settings/settings-edit.php:387
1777
  msgid ""
1778
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1779
  "schedule-cron-emails-in-cpanel/?"
@@ -1785,7 +1754,7 @@ msgstr ""
1785
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1786
  "in cPanel konfigurieren</a>"
1787
 
1788
- #: ../settings/settings-edit.php:388
1789
  msgid ""
1790
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1791
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1797,7 +1766,7 @@ msgstr ""
1797
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1798
  "in Plesk konfigurieren</a>"
1799
 
1800
- #: ../settings/settings-edit.php:389
1801
  msgid ""
1802
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1803
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1809,30 +1778,26 @@ msgstr ""
1809
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
1810
  "Hoster unterstützt keine Cron Jobs?</a>"
1811
 
1812
- #: ../settings/settings-edit.php:504
1813
  msgid "Please enter sender of notifications from name."
1814
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
1815
 
1816
- #: ../settings/settings-edit.php:509
1817
  msgid "Please enter sender of notifications from email."
1818
- msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
1819
-
1820
- #: ../settings/settings-edit.php:553
1821
- msgid "Please enter valid mail count."
1822
- msgstr "Bitte gib eine gültige Mailanzahl ein."
1823
 
1824
- #: ../settings/settings-edit.php:566
1825
  msgid "Settings Saved."
1826
  msgstr "Einstellungen gesichert."
1827
 
1828
- #: ../settings/settings-edit.php:569
1829
  msgid "Oops, unable to update."
1830
  msgstr "Oops.. Update nicht möglich."
1831
 
1832
  #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1833
  #: php:54
1834
  msgid "Please enter subscriber email address."
1835
- msgstr "Bitte gib die Emailadresse des Abonnenten ein."
1836
 
1837
  #: ../subscribers/view-subscriber-add.php:52
1838
  msgid "Please select or create your group for this email."
@@ -1856,7 +1821,7 @@ msgstr "Abonnent existiert bereits."
1856
 
1857
  #: ../subscribers/view-subscriber-add.php:74
1858
  msgid "Invalid Email."
1859
- msgstr "Ungültige Emailadresse."
1860
 
1861
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1862
  #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
@@ -1891,7 +1856,7 @@ msgstr "Gib den Namen des Abonnenten ein"
1891
 
1892
  #: ../subscribers/view-subscriber-add.php:137
1893
  msgid "Enter Subscriber's Email Address"
1894
- msgstr "Gib die Emailadresse des Abonnenten ein"
1895
 
1896
  #: ../subscribers/view-subscriber-add.php:147
1897
  msgid "Select Subscriber's Status"
@@ -1950,7 +1915,7 @@ msgstr "Name des Abonnenten"
1950
 
1951
  #: ../subscribers/view-subscriber-edit.php:132
1952
  msgid "Subscriber's Email Address"
1953
- msgstr "Email des Abonnenten"
1954
 
1955
  #: ../subscribers/view-subscriber-edit.php:142
1956
  msgid "Update Subscriber's Status"
@@ -1974,7 +1939,7 @@ msgstr "Zurück zum Dashboard der Abonnenten"
1974
 
1975
  #: ../subscribers/view-subscriber-export.php:47
1976
  msgid "Export Email Addresses"
1977
- msgstr "Emailadressen exportieren"
1978
 
1979
  #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1980
  #: export.php:67
@@ -2042,11 +2007,11 @@ msgstr ""
2042
 
2043
  #: ../subscribers/view-subscriber-import.php:95
2044
  msgid "email imported."
2045
- msgstr "Email(s) importiert."
2046
 
2047
  #: ../subscribers/view-subscriber-import.php:96
2048
  msgid "email already exists."
2049
- msgstr "Email existiert bereits."
2050
 
2051
  #: ../subscribers/view-subscriber-import.php:97
2052
  msgid "email are invalid."
@@ -2068,7 +2033,7 @@ msgstr "Dateiupload fehlgeschlagen."
2068
 
2069
  #: ../subscribers/view-subscriber-import.php:145
2070
  msgid "Import Email Addresses"
2071
- msgstr "Emailadressen importieren"
2072
 
2073
  #: ../subscribers/view-subscriber-import.php:158
2074
  msgid "Select CSV file"
@@ -2149,7 +2114,7 @@ msgstr "Abonnenten aktiv: %s"
2149
 
2150
  #: ../subscribers/view-subscriber-show.php:288
2151
  msgid "Email Address"
2152
- msgstr "Emailadresse"
2153
 
2154
  #: ../subscribers/view-subscriber-show.php:291
2155
  msgid "Group"
@@ -2234,7 +2199,7 @@ msgstr "Emails erfolgreich synchronisiert."
2234
 
2235
  #: ../subscribers/view-subscriber-sync.php:88
2236
  msgid "Sync Email"
2237
- msgstr "Email synchronisieren"
2238
 
2239
  #: ../subscribers/view-subscriber-sync.php:101
2240
  msgid "Sync newly registered users to subscribers list"
@@ -2250,7 +2215,7 @@ msgstr "Vorlage Vorschau"
2250
 
2251
  #: ../templates/template-preview.php:40
2252
  msgid "This is how your email may look."
2253
- msgstr "So könnte die Email aussehen."
2254
 
2255
  #: ../templates/template-preview.php:42
2256
  msgid ""
@@ -2266,9 +2231,9 @@ msgid ""
2266
  "content differently. So there could be a slight variation on how your "
2267
  "customer will view the email content."
2268
  msgstr ""
2269
- "<br><br>Hinweis: Diverse Emailanbieter (wie GMail, Yahoo, usw.) zeigen den "
2270
  "Inhalt von Emails unterschiedlich an. Von daher kann es zu kleineren "
2271
- "Abweichungen kommen wie die Abonnenten den Inhalt der Email sehen."
2272
 
2273
  #. Plugin Name of the plugin/theme
2274
  msgid "Email Subscribers & Newsletters"
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"
22
  "X-Loco-Target-Locale: de_DE\n"
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}}, "
61
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
69
+
70
  #: ../help/help.php:197
71
  msgid ""
72
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
82
  msgid "Privacy Policy"
83
  msgstr ""
84
 
 
 
 
 
85
  #: ../help/help.php:416 ../help/help.php:434
86
  msgid "How to enable consent checkbox in the subscribe form?"
87
  msgstr ""
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
+
112
  #: ../classes/es-common.php:13
113
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
114
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
153
  msgid "<span style=\"color:#993399;\">Immediately</span>"
154
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
157
  #: subscribers/view-subscriber-show.php:242
158
  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
  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
 
194
  #: ../classes/es-register.php:195
195
  msgctxt "view-subscriber-enhanced-select"
196
  msgid "Please enter subscriber email address."
197
+ msgstr "Bitte E-Mail-Adresse des Abonnenten eingeben."
198
 
199
  #: ../classes/es-register.php:196
200
  msgctxt "view-subscriber-enhanced-select"
201
  msgid "Please select subscriber email status."
202
+ msgstr "Wähle den E-Mail-Status des Abonnenten."
203
 
204
  #: ../classes/es-register.php:197
205
  msgctxt "view-subscriber-enhanced-select"
227
  "Do you want to resend confirmation email? Also please note, this will update "
228
  "subscriber current status to 'Unconfirmed'."
229
  msgstr ""
230
+ "Möchtest Du die Bestätigungs-E-Mail erneut versenden? Beachte, dies wird den "
231
  "Status des Abonnenten auf 'unbestätigt' setzen."
232
 
233
  #: ../classes/es-register.php:202
266
  msgctxt "notification-enhanced-select"
267
  msgid "Please select notification mail subject. Use templates menu to create new."
268
  msgstr ""
269
+ "Bitte wähle den Betreff für die Benachrichtigung. Verwende das Menü Vorlagen "
270
  "um ein neues zu erstellen."
271
 
272
  #: ../classes/es-register.php:216
319
  msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
320
 
321
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  msgctxt "widget-page-enhanced-select"
323
  msgid "Please enter email address"
324
+ msgstr "Bitte gib die E-Mail-Adresse ein"
325
 
326
+ #: ../classes/es-register.php:259
327
  msgctxt "widget-page-enhanced-select"
328
  msgid "Successfully Subscribed."
329
  msgstr "Erfolgreich angemeldet."
330
 
331
+ #: ../classes/es-register.php:260
332
  msgctxt "widget-page-enhanced-select"
333
  msgid ""
334
  "Your subscription was successful! Kindly check your mailbox and confirm your "
339
  "Anmeldung. Wenn Du nach einigen Minuten noch keine Email erhalten hast prüfe "
340
  "bitte Deinen Spam-Ordner."
341
 
342
+ #: ../classes/es-register.php:261
343
  msgctxt "widget-page-enhanced-select"
344
  msgid "Email Address already exists!"
345
  msgstr "Diese Adresse existiert bereits!"
346
 
347
+ #: ../classes/es-register.php:262
348
  msgctxt "widget-page-enhanced-select"
349
  msgid "Oops.. Unexpected error occurred."
350
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
351
 
352
+ #: ../classes/es-register.php:263
353
  msgctxt "widget-page-enhanced-select"
354
  msgid "Invalid email address"
355
+ msgstr "Ungültige E-Mail-Adresse"
356
 
357
+ #: ../classes/es-register.php:264
358
  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."
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
  "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
 
582
  "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
583
  "Code)."
584
  msgstr ""
585
+ "Sammeln von KundenE-Mail-Adressen durch hinzufügen einer Anmeldebox "
586
  "(Widget/Shortcode/PHP Code)."
587
 
588
  #: ../help/help.php:268
715
  " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
716
  "Roles"
717
  msgstr ""
718
+ " (wie Bestätigungs-, Willkommens-, Admin-Emails), Cron Einstellungen und "
719
  "zuweisen von Benutzerrollen"
720
 
721
  #: ../help/help.php:336
724
 
725
  #: ../help/help.php:339
726
  msgid "How to Import or Export Email Addresses?"
727
+ msgstr "Wie importiere oder exportiere ich E-Mail-Adressen?"
728
 
729
  #: ../help/help.php:342
730
  msgid "How to Add/Update Existing Subscribers Group & Status?"
774
 
775
  #: ../help/help.php:390
776
  msgid "Schedule Cron Emails in cPanel"
777
+ msgstr "Planen von Cron-E-Mails in cPanel"
778
 
779
  #: ../help/help.php:393
780
  msgid "Schedule Cron Emails in Parallels Plesk"
781
+ msgstr "Planen von Cron-E-Mails in Paralles Plesk"
782
 
783
  #: ../help/help.php:396
784
  msgid "Hosting doesn’t support Cron Jobs?"
790
 
791
  #: ../help/help.php:402
792
  msgid "Subscribers are not receiving Emails?"
793
+ msgstr "Abonnenten erhalten keine E-Mails?"
794
 
795
  #: ../help/help.php:405
796
  msgid "CSS Help"
800
  msgid "FAQ's"
801
  msgstr "FAQ's"
802
 
803
+ #: ../help/help.php:413
804
+ msgid "[GDPR] Email Subscribers"
805
+ msgstr "[DSGVO] Email Subscribers"
806
+
807
  #: ../help/help.php:446
808
  msgid "Want to do more? Here's how.."
809
  msgstr "Du möchtest mehr machen? Hier steht wie..."
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
 
929
  #: ../notification/notification-add.php:33
930
  msgid "Please select subscribers group."
937
  #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
938
  msgid "Please select notification mail subject. Use templates menu to create new."
939
  msgstr ""
940
+ "Bitte wähle den Betreff für die Benachrichtigung. Verwende das Menü Vorlagen "
941
  "um ein neues zu erstellen."
942
 
943
  #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
979
  #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
980
  #: 163
981
  msgid "Select Notification Email Subject"
982
+ msgstr "Wähle den Betreff der "
983
 
984
  #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
985
  #: 164
1024
  #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1025
  #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1026
  msgid "Send email immediately"
1027
+ msgstr "Sende E-Mail sofort"
1028
 
1029
  #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1030
  #: 281 ../notification/notification-show.php:132
1031
  msgid "Add to cron and send email via cron job"
1032
+ msgstr "Zu Cron hinzufügen und E-Mail via Cron Job verschicken"
1033
 
1034
  #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1035
  #: 282
1036
  msgid "Disable email notification"
1037
+ msgstr "E-Mail-Benachrichtigungen deaktivieren"
1038
 
1039
  #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1040
  #: 291 ../subscribers/view-subscriber-edit.php:191
1088
  #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1089
  #: 76
1090
  msgid "Email Subject"
1091
+ msgstr "E-Mail-Betreff"
1092
 
1093
  #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1094
  #: 77
1127
 
1128
  #: ../sendmail/sendmail.php:40
1129
  msgid "Please select your mail subject."
1130
+ msgstr "Bitte wähle den Betreff der Mail."
1131
 
1132
  #: ../sendmail/sendmail.php:46
1133
  msgid "Please select your mail type."
1139
 
1140
  #: ../sendmail/sendmail.php:59
1141
  msgid "Email sent successfully. "
1142
+ msgstr "E-Mail erfolgreich gesendet. "
1143
 
1144
  #: ../sendmail/sendmail.php:63
1145
  msgid "Click here to check Statistics"
1155
 
1156
  #: ../sendmail/sendmail.php:106
1157
  msgid "Select Email Subject from available list"
1158
+ msgstr "Wähle den Betreff der E-Mail aus"
1159
 
1160
  #: ../sendmail/sendmail.php:133
1161
  msgid "Select Email Type"
1162
+ msgstr "Wähle den E-Mail-Typ"
1163
 
1164
  #: ../sendmail/sendmail.php:140
1165
  msgid "Send email via cron job"
1166
+ msgstr "Sende E-Mail via Cron Job"
1167
 
1168
  #: ../sendmail/sendmail.php:147
1169
  msgid "Select Subscribers group to Send Email"
1170
+ msgstr "Wähle die Abonnentengruppe aus die diese E-Mail erhalten soll"
1171
 
1172
  #: ../sendmail/sendmail.php:179
1173
  msgid "Recipients : 0 "
1185
  "</strong><br>Click on Help for more information."
1186
  msgstr ""
1187
  "<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den "
1188
+ "E-Mail-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1189
  "</strong><br>Klicke auf Hilfe für weitere Informationen."
1190
 
1191
  #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1192
  msgid "Send Email"
1193
+ msgstr "E-Mail senden"
1194
 
1195
  #: ../sendmail/sendmail.php:201
1196
  msgid "Reset"
1220
 
1221
  #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1222
  msgid "Email"
1223
+ msgstr "E-Mail"
1224
 
1225
  #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1226
  #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1247
 
1248
  #: ../sentmail/sentmail-preview.php:27
1249
  msgid "Preview Email"
1250
+ msgstr "E-Mail-Vorschau"
1251
 
1252
  #: ../sentmail/sentmail-preview.php:31
1253
  msgid ""
1255
  "(like gmail, yahoo etc) display email content differently. So there could be "
1256
  "a slight variation on how your customer will view the email content."
1257
  msgstr ""
1258
+ "So könnte die E-Mail ausehen die Du gesendet hast. <br>Hinweis: Die E-Mail "
1259
+ "kann bei unterschiedlichen E-Mail-Anbietern (z. Bsp. GMail, Yahoo, usw.) "
1260
  "unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
1261
+ "darin kommen wie der Kunde den Inhalt der E-Mail sieht."
1262
 
1263
  #: ../sentmail/sentmail-preview.php:53
1264
  msgid "Back"
1351
  "Choose a FROM name and FROM email address for all the emails to be sent from "
1352
  "this plugin."
1353
  msgstr ""
1354
+ "Gib einen Absendernamen und eine Absender-E-Mail ein für alle E-Mail die von "
1355
  "diesem Plugin verschickt werden."
1356
 
1357
  #: ../settings/settings-edit.php:89
1358
  msgid "Email Type"
1359
+ msgstr "E-Mail-Typ"
1360
 
1361
  #: ../settings/settings-edit.php:90
1362
  msgid ""
1363
  "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1364
  "Option 3 & 4 is to send emails with PHP method mail()."
1365
  msgstr ""
1366
+ "Optionen 1 & 2 um E-Mails über die Standard-Wordpress-Methode wp_mail() zu "
1367
+ "senden, Optionen 3 & 4 um E-Mails über die PHP-Methode mail() zu senden."
1368
 
1369
  #: ../settings/settings-edit.php:94
1370
  msgid "1. WP HTML MAIL"
1411
  msgid "Single Opt In"
1412
  msgstr "Einfaches Opt In"
1413
 
1414
+ #: ../settings/settings-edit.php:117
1415
  msgid "Image Size"
1416
  msgstr "Bildgröße"
1417
 
1418
+ #: ../settings/settings-edit.php:118
1419
  msgid ""
1420
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1421
  "Emails."
1423
  "Wähle die Bildgröße für {{POSTIMAGE}} die in den Benachrichtigungsmails "
1424
  "angezeigt wird."
1425
 
1426
+ #: ../settings/settings-edit.php:122
1427
  msgid "Full Size"
1428
  msgstr "Volle Größe"
1429
 
1430
+ #: ../settings/settings-edit.php:123
1431
  msgid "Medium Size"
1432
  msgstr "Mittlere Größe"
1433
 
1434
+ #: ../settings/settings-edit.php:130
1435
  msgid "Admin Email Addresses"
1436
+ msgstr "Admin E-Mail-Adresse"
1437
 
1438
+ #: ../settings/settings-edit.php:131
1439
  msgid ""
1440
  "Enter the admin email addresses that should receive notifications (separated "
1441
  "by comma)."
1442
  msgstr ""
1443
+ "Gib die E-Mail-Adressen der Admins ein die Benachrichtigungen bekommen "
1444
+ "sollen (durch Kommas getrennt)."
1445
 
1446
+ #: ../settings/settings-edit.php:137
1447
  msgid "Notify Admin when a new subscriber signs up"
1448
  msgstr "Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1449
 
1450
+ #: ../settings/settings-edit.php:138
1451
  msgid ""
1452
  "To send admin email notifications for the new subscriber. This option must "
1453
  "be set to YES."
1455
  "Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent "
1456
  "dazugekommen ist. Diese Option muss auf JA stehen."
1457
 
1458
+ #: ../settings/settings-edit.php:150
1459
  msgid "Admin Email Subject on new subscriber sign up"
1460
  msgstr "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1461
 
1462
+ #: ../settings/settings-edit.php:151
1463
  msgid ""
1464
  "Subject for the admin email whenever a new subscriber signs up and is "
1465
  "confirmed."
1467
  "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet und "
1468
  "bestätigt ist."
1469
 
1470
+ #: ../settings/settings-edit.php:157
1471
  msgid "Admin Email Content on new subscriber signs up"
1472
  msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1473
 
1474
+ #: ../settings/settings-edit.php:158
1475
  msgid ""
1476
  "Content for the admin email whenever a new subscriber signs up and is "
1477
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1478
  msgstr ""
1479
+ "Inhalt der E-Mail an den Admin wenn ein neuer Abonnent angemeldet und "
1480
  "bestätigt ist.<br />Verfügbare Schlüsselworte: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1481
 
1482
+ #: ../settings/settings-edit.php:165
1483
  msgid "Sent Report Subject"
1484
  msgstr "Subjekt des Sendeberichts"
1485
 
1486
+ #: ../settings/settings-edit.php:166
1487
  msgid "Subject for the email report which will be sent to admin."
1488
+ msgstr "Subjekt des E-Mail-Berichtes der an den Admin geschickt wird."
1489
 
1490
+ #: ../settings/settings-edit.php:172
1491
  msgid "Sent Report Content"
1492
  msgstr "Inhalt des Sendeberichts"
1493
 
1494
+ #: ../settings/settings-edit.php:173
1495
  msgid ""
1496
  "Content for the email report which will be sent to admin.<br />Available "
1497
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1498
  msgstr ""
1499
+ "Inhalt des E-Mail-Berichts, der an den Admin geschickt wird.<br />Verfügbare "
1500
  "Schlüsselworte: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1501
 
1502
+ #: ../settings/settings-edit.php:184
1503
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1504
+ msgstr "Betreff der Bestätigungsmail (Doppeltes Opt-In)"
1505
 
1506
+ #: ../settings/settings-edit.php:185
1507
  msgid ""
1508
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1509
  "subscriber signs up."
1511
  "Subjekt der Bestätigungsmail bei doppeltem Opt-In wenn ein Abonnent sich "
1512
  "einträgt."
1513
 
1514
+ #: ../settings/settings-edit.php:191
1515
  msgid "Double Opt-In Email Content (Confirmation Email)"
1516
  msgstr "Inhalt der Bestätigungsmail bei doppeltem Opt-In"
1517
 
1518
+ #: ../settings/settings-edit.php:192
1519
  msgid ""
1520
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1521
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1523
  "Inhalt der Bestätigungsmail bei Doppeltem Opt-In wenn ein neuer Benutzer "
1524
  "sich angemeldet hat.<br />Verfügbare Schlüsselworte: {{NAME}}, {{LINK}}"
1525
 
1526
+ #: ../settings/settings-edit.php:198
1527
  msgid "Double Opt-In Confirmation Link"
1528
  msgstr "Bestätigungslink bei doppeltem Opt-In"
1529
 
1530
+ #: ../settings/settings-edit.php:199
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"
1538
  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
  "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."
1558
  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 "
1570
  "Opt-In) successfully."
1571
  msgstr ""
1572
+ "Subjekt der Willkommens-E-Mail für den Abonnenten. Diese E-Mail wird "
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."
1584
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1585
  msgstr ""
1586
+ "Inhalt der Willkommens-E-Mail wenn ein Benutzer entweder erfolgreich "
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
  "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}}"
1612
  msgstr ""
1613
  "Der Text für den Abmeldelink. Dieser Text wird automatisch mit dem "
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
  "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."
1637
  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
  "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}}"
1725
  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
  "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
  "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
  "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
  "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
 
1797
  #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1798
  #: php:54
1799
  msgid "Please enter subscriber email address."
1800
+ msgstr "Bitte gib die E-Mail-Adresse des Abonnenten ein."
1801
 
1802
  #: ../subscribers/view-subscriber-add.php:52
1803
  msgid "Please select or create your group for this email."
1821
 
1822
  #: ../subscribers/view-subscriber-add.php:74
1823
  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-
1856
 
1857
  #: ../subscribers/view-subscriber-add.php:137
1858
  msgid "Enter Subscriber's Email Address"
1859
+ msgstr "Gib die E-Mail-Adresse des Abonnenten ein"
1860
 
1861
  #: ../subscribers/view-subscriber-add.php:147
1862
  msgid "Select Subscriber's Status"
1915
 
1916
  #: ../subscribers/view-subscriber-edit.php:132
1917
  msgid "Subscriber's Email Address"
1918
+ msgstr "E-Mail des Abonnenten"
1919
 
1920
  #: ../subscribers/view-subscriber-edit.php:142
1921
  msgid "Update Subscriber's Status"
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
2007
 
2008
  #: ../subscribers/view-subscriber-import.php:95
2009
  msgid "email imported."
2010
+ msgstr "E-Mail(s) importiert."
2011
 
2012
  #: ../subscribers/view-subscriber-import.php:96
2013
  msgid "email already exists."
2014
+ msgstr "E-Mail existiert bereits."
2015
 
2016
  #: ../subscribers/view-subscriber-import.php:97
2017
  msgid "email are invalid."
2033
 
2034
  #: ../subscribers/view-subscriber-import.php:145
2035
  msgid "Import Email Addresses"
2036
+ msgstr "E-Mail-Adressen importieren"
2037
 
2038
  #: ../subscribers/view-subscriber-import.php:158
2039
  msgid "Select CSV file"
2114
 
2115
  #: ../subscribers/view-subscriber-show.php:288
2116
  msgid "Email Address"
2117
+ msgstr "E-Mail-Adresse"
2118
 
2119
  #: ../subscribers/view-subscriber-show.php:291
2120
  msgid "Group"
2199
 
2200
  #: ../subscribers/view-subscriber-sync.php:88
2201
  msgid "Sync Email"
2202
+ msgstr "E-Mail synchronisieren"
2203
 
2204
  #: ../subscribers/view-subscriber-sync.php:101
2205
  msgid "Sync newly registered users to subscribers list"
2215
 
2216
  #: ../templates/template-preview.php:40
2217
  msgid "This is how your email may look."
2218
+ msgstr "So könnte die E-Mail aussehen."
2219
 
2220
  #: ../templates/template-preview.php:42
2221
  msgid ""
2231
  "content differently. So there could be a slight variation on how your "
2232
  "customer will view the email content."
2233
  msgstr ""
2234
+ "<br><br>Hinweis: Diverse E-Mail-Anbieter (wie GMail, Yahoo, usw.) zeigen den "
2235
  "Inhalt von Emails unterschiedlich an. Von daher kann es zu kleineren "
2236
+ "Abweichungen kommen wie die Abonnenten den Inhalt der E-Mail sehen."
2237
 
2238
  #. Plugin Name of the plugin/theme
2239
  msgid "Email Subscribers & Newsletters"
languages/email-subscribers-es_ES.mo CHANGED
Binary file
languages/email-subscribers-es_ES.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Wed May 23 2018 11:03:55 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"
@@ -23,24 +23,46 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
- #: ../classes/es-register.php:740
27
  msgid "Check Pro plan"
28
  msgstr ""
29
 
30
- #: ../classes/es-register.php:778
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:779
37
  msgid "Steps to enable"
38
  msgstr ""
39
 
40
- #: ../classes/es-register.php:779
41
  msgid "Ok, got it"
42
  msgstr ""
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  #: ../help/help.php:197
45
  msgid ""
46
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
@@ -83,6 +105,10 @@ msgid ""
83
  "deleted too and email will not be sent."
84
  msgstr ""
85
 
 
 
 
 
86
  #: ../classes/es-common.php:13
87
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
88
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
@@ -127,22 +153,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">por tarea CRON</span>"
127
  msgid "<span style=\"color:#993399;\">Immediately</span>"
128
  msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
129
 
130
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
131
- #: subscribers/view-subscriber-show.php:289
132
- msgid "Name"
133
- msgstr "Nombre"
134
-
135
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
136
- msgid "Email *"
137
- msgstr "Email *"
138
-
139
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
140
- #: php:202
141
- msgid "Subscribe"
142
- msgstr "Suscribirse"
143
-
144
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
145
- #: register.php:839
146
  msgid "Email Subscribers"
147
  msgstr "Email Subscribers"
148
 
@@ -152,7 +164,7 @@ msgid "Subscribers"
152
  msgstr "Suscriptores"
153
 
154
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
155
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
156
  msgid "Templates"
157
  msgstr "Plantillas"
158
 
@@ -162,7 +174,7 @@ msgid "Post Notifications"
162
  msgstr "Notificar Entrada"
163
 
164
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
165
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
166
  msgid "Newsletters"
167
  msgstr "Boletín Informativo"
168
 
@@ -318,57 +330,16 @@ msgid "Please enter the mail count, only number."
318
  msgstr "Por favor, introduce el máximo de correos, sólo numérico."
319
 
320
  #: ../classes/es-register.php:258
321
- msgctxt "widget-enhanced-select"
322
- msgid "Please enter email address"
323
- msgstr "Por favor inserta dirección de correo"
324
-
325
- #: ../classes/es-register.php:259
326
- msgctxt "widget-enhanced-select"
327
- msgid "Successfully Subscribed."
328
- msgstr "Suscripción correcta."
329
-
330
- #: ../classes/es-register.php:260
331
- msgctxt "widget-enhanced-select"
332
- msgid ""
333
- "Your subscription was successful! Kindly check your mailbox and confirm your "
334
- "subscription. If you don't see the email within a few minutes, check the "
335
- "spam/junk folder."
336
- msgstr ""
337
- "¡Suscripción correcta! Consulta tu bandeja de entrada y confirma tu "
338
- "suscripción. Si no ves el correo en unos minutos, consulta la carpeta "
339
- "spam/correo no deseado."
340
-
341
- #: ../classes/es-register.php:261
342
- msgctxt "widget-enhanced-select"
343
- msgid "Email Address already exists!"
344
- msgstr "¡Esa dirección de Correo ya existe!"
345
-
346
- #: ../classes/es-register.php:262
347
- msgctxt "widget-enhanced-select"
348
- msgid "Oops.. Unexpected error occurred."
349
- msgstr "Ups. Ha sucedido un error inesperado."
350
-
351
- #: ../classes/es-register.php:263
352
- msgctxt "widget-enhanced-select"
353
- msgid "Invalid email address"
354
- msgstr "Dirección de correo electrónico no válida"
355
-
356
- #: ../classes/es-register.php:264
357
- msgctxt "widget-enhanced-select"
358
- msgid "Please try after some time"
359
- msgstr "Por favor, inténtalo transcurridos unos minutos"
360
-
361
- #: ../classes/es-register.php:272
362
  msgctxt "widget-page-enhanced-select"
363
  msgid "Please enter email address"
364
  msgstr "Por favor introduce dirección de correo electrónico"
365
 
366
- #: ../classes/es-register.php:273
367
  msgctxt "widget-page-enhanced-select"
368
  msgid "Successfully Subscribed."
369
  msgstr "Suscripción correcta."
370
 
371
- #: ../classes/es-register.php:274
372
  msgctxt "widget-page-enhanced-select"
373
  msgid ""
374
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -379,27 +350,27 @@ msgstr ""
379
  "suscripción. Si no ves el correo en unos minutos, consulta la carpeta "
380
  "spam/correo no deseado."
381
 
382
- #: ../classes/es-register.php:275
383
  msgctxt "widget-page-enhanced-select"
384
  msgid "Email Address already exists!"
385
  msgstr "¡Esa dirección de correo electrónico ya existe!"
386
 
387
- #: ../classes/es-register.php:276
388
  msgctxt "widget-page-enhanced-select"
389
  msgid "Oops.. Unexpected error occurred."
390
  msgstr "Ups. Ha sucedido un error inesperado."
391
 
392
- #: ../classes/es-register.php:277
393
  msgctxt "widget-page-enhanced-select"
394
  msgid "Invalid email address"
395
  msgstr "Dirección de correo electrónico no válida"
396
 
397
- #: ../classes/es-register.php:278
398
  msgctxt "widget-page-enhanced-select"
399
  msgid "Please try after some time"
400
  msgstr "Por favor, inténtalo transcurridos unos minutos"
401
 
402
- #: ../classes/es-register.php:739
403
  msgid ""
404
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
405
  "subscribers list?</b> Come check our Pro plan."
@@ -407,11 +378,11 @@ msgstr ""
407
  "<b>¿Quieres plantillas de correo listas para usar?</b> ¿También quieres "
408
  "<b>limpiar tu lista de suscriptores?</b> Comprueba nuestro plan Pro."
409
 
410
- #: ../classes/es-register.php:740
411
  msgid "Not interested."
412
  msgstr "No me interesa."
413
 
414
- #: ../classes/es-register.php:804
415
  msgid ""
416
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
417
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -424,123 +395,121 @@ msgstr ""
424
  "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
425
  "Icegram!"
426
 
427
- #: ../classes/es-register.php:818
428
  #, php-format
429
  msgid "Email Subscribers version: <strong>%s</strong>"
430
  msgstr "Email Subscribers versión: <strong>%s</strong>"
431
 
432
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
433
  msgid "Add new Template"
434
  msgstr "Añadir nueva Plantilla"
435
 
436
- #: ../classes/es-register.php:831
437
  msgid "Edit Templates"
438
  msgstr "Editar Plantillas"
439
 
440
- #: ../classes/es-register.php:832
441
  msgid "New Templates"
442
  msgstr "Nuevas Plantillas"
443
 
444
- #: ../classes/es-register.php:834
445
  msgid "View Templates"
446
  msgstr "Ver Plantillas"
447
 
448
- #: ../classes/es-register.php:835
449
  msgid "Search Templates"
450
  msgstr "Buscar Plantillas"
451
 
452
- #: ../classes/es-register.php:836
453
  msgid "No Templates found"
454
  msgstr "No se han encontrado Plantillas"
455
 
456
- #: ../classes/es-register.php:837
457
  msgid "No Templates found in Trash"
458
  msgstr "No se han encontrado Plantillas en la papelera"
459
 
460
- #: ../classes/es-register.php:840
461
  msgid "Thumbnail (For Visual Representation only)"
462
  msgstr "Miniatura (Para representación visual solo)"
463
 
464
- #: ../classes/es-register.php:841
465
  msgid "Set thumbnail"
466
  msgstr "Establecer miniatura"
467
 
468
- #: ../classes/es-register.php:878
469
  msgid "Template Type"
470
  msgstr "Tipo Plantilla"
471
 
472
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
473
  msgid "Thumbnail"
474
  msgstr "Pequeña"
475
 
476
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
477
  #: sentmail/sentmail-show.php:121
478
  msgid "Preview"
479
  msgstr "Vista previa"
480
 
481
- #: ../classes/es-register.php:944
482
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
483
- msgstr "Palabra clave disponible para Notificación de Entradas: {{POSTTITLE}}"
484
-
485
- #: ../classes/es-register.php:947
486
  msgid "Select your Email Template Type"
487
  msgstr "Selecciona tu tipo de Plantilla de Correo"
488
 
489
- #: ../classes/es-register.php:949
490
  msgid "Newsletter"
491
  msgstr "Boletín informativo"
492
 
493
- #: ../classes/es-register.php:950
494
  msgid "Post Notification"
495
  msgstr "Notificación de nueva Entrada"
496
 
497
- #: ../classes/es-register.php:997
498
  msgid "Preview Template"
499
  msgstr "Previsualizar Plantilla"
500
 
501
- #: ../classes/es-register.php:1011
502
- #, php-format
503
- msgid ""
504
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
505
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
506
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
507
- msgstr ""
508
- "%s para Notificación de Entrada: {{NAME}}, {{EMAIL}}, {{DATE}}, "
509
- "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
510
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
511
-
512
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
513
  msgid "Available Keywords"
514
  msgstr "Campos disponibles"
515
 
516
- #: ../classes/es-register.php:1012
517
  #, php-format
518
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
519
  msgstr "<br/><br/>%s para Lista de Correo: {{NAME}}, {{EMAIL}}"
520
 
521
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgid "Widget Title"
523
  msgstr "Título Widget"
524
 
525
- #: ../classes/es-register.php:1153
526
  msgid "Short description about subscription form"
527
  msgstr "Descripción corta sobre el formulario de suscripción"
528
 
529
- #: ../classes/es-register.php:1157
530
  msgid "Display Name Field"
531
  msgstr "Mostrar el campo Nombre"
532
 
533
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
534
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
535
  msgid "YES"
536
  msgstr "SÍ"
537
 
538
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
539
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
540
  msgid "NO"
541
  msgstr "NO"
542
 
543
- #: ../classes/es-register.php:1164
544
  msgid "Subscriber Group"
545
  msgstr "Grupos de suscriptores"
546
 
@@ -1464,11 +1433,11 @@ msgstr "Verificación doble"
1464
  msgid "Single Opt In"
1465
  msgstr "Sin verificación"
1466
 
1467
- #: ../settings/settings-edit.php:116
1468
  msgid "Image Size"
1469
  msgstr "Tamaño de imagen"
1470
 
1471
- #: ../settings/settings-edit.php:117
1472
  msgid ""
1473
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1474
  "Emails."
@@ -1476,19 +1445,19 @@ msgstr ""
1476
  "Selecciona el tamaño de imagen para {{POSTIMAGE}} que se mostrará en los "
1477
  "Correos de Notificación de Entradas."
1478
 
1479
- #: ../settings/settings-edit.php:121
1480
  msgid "Full Size"
1481
  msgstr "Tamaño Completo"
1482
 
1483
- #: ../settings/settings-edit.php:122
1484
  msgid "Medium Size"
1485
  msgstr "Mediana"
1486
 
1487
- #: ../settings/settings-edit.php:129
1488
  msgid "Admin Email Addresses"
1489
  msgstr "Direcciones de Correo del Administrador"
1490
 
1491
- #: ../settings/settings-edit.php:130
1492
  msgid ""
1493
  "Enter the admin email addresses that should receive notifications (separated "
1494
  "by comma)."
@@ -1496,11 +1465,11 @@ msgstr ""
1496
  "Introduce la dirección de correo del administrador que recibirá las "
1497
  "notificaciones del sistema. Si necesitas más de una, sepáralas con comas."
1498
 
1499
- #: ../settings/settings-edit.php:136
1500
  msgid "Notify Admin when a new subscriber signs up"
1501
  msgstr "Notificar al administrador alta de suscriptor"
1502
 
1503
- #: ../settings/settings-edit.php:137
1504
  msgid ""
1505
  "To send admin email notifications for the new subscriber. This option must "
1506
  "be set to YES."
@@ -1508,11 +1477,11 @@ msgstr ""
1508
  "Si deseas que el Administrador reciba un correo al producirse cada nueva "
1509
  "suscripción, esta opción debe estar en SÍ."
1510
 
1511
- #: ../settings/settings-edit.php:149
1512
  msgid "Admin Email Subject on new subscriber sign up"
1513
  msgstr "ASUNTO: alta suscriptor"
1514
 
1515
- #: ../settings/settings-edit.php:150
1516
  msgid ""
1517
  "Subject for the admin email whenever a new subscriber signs up and is "
1518
  "confirmed."
@@ -1520,11 +1489,11 @@ msgstr ""
1520
  "Asunto del correo que se enviará al Administrador cuando un nuevo suscriptor "
1521
  "confirme su correo."
1522
 
1523
- #: ../settings/settings-edit.php:156
1524
  msgid "Admin Email Content on new subscriber signs up"
1525
  msgstr "TEXTO: alta suscriptor"
1526
 
1527
- #: ../settings/settings-edit.php:157
1528
  msgid ""
1529
  "Content for the admin email whenever a new subscriber signs up and is "
1530
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
@@ -1533,19 +1502,19 @@ msgstr ""
1533
  "registre y confirme su registro.<br />Palabras clave disponibles: {{NAME}}, "
1534
  "{{EMAIL}}, {{GROUP}}"
1535
 
1536
- #: ../settings/settings-edit.php:164
1537
  msgid "Sent Report Subject"
1538
  msgstr "ASUNTO: Informes"
1539
 
1540
- #: ../settings/settings-edit.php:165
1541
  msgid "Subject for the email report which will be sent to admin."
1542
  msgstr "Asunto del correo que se enviará al administrador con los informes."
1543
 
1544
- #: ../settings/settings-edit.php:171
1545
  msgid "Sent Report Content"
1546
  msgstr "TEXTO: Informes"
1547
 
1548
- #: ../settings/settings-edit.php:172
1549
  msgid ""
1550
  "Content for the email report which will be sent to admin.<br />Available "
1551
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
@@ -1554,11 +1523,11 @@ msgstr ""
1554
  "/>Palabras clave disponibles: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1555
  "{{ENDTIME}}"
1556
 
1557
- #: ../settings/settings-edit.php:183
1558
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1559
  msgstr "ASUNTO: Confirmar cuenta correo"
1560
 
1561
- #: ../settings/settings-edit.php:184
1562
  msgid ""
1563
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1564
  "subscriber signs up."
@@ -1567,11 +1536,11 @@ msgstr ""
1567
  "el enlace de confirmación de su cuenta de correo. Solo lo recibirá si tienes "
1568
  "activada la opcíon [Verificación doble]."
1569
 
1570
- #: ../settings/settings-edit.php:190
1571
  msgid "Double Opt-In Email Content (Confirmation Email)"
1572
  msgstr "TEXTO: Confirmar cuenta correo"
1573
 
1574
- #: ../settings/settings-edit.php:191
1575
  msgid ""
1576
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1577
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
@@ -1580,21 +1549,21 @@ msgstr ""
1580
  "confirmación cuando un nuevo suscriptor se registre.<br />Palabras clave "
1581
  "disponibles: {{NAME}}, {{LINK}}"
1582
 
1583
- #: ../settings/settings-edit.php:197
1584
  msgid "Double Opt-In Confirmation Link"
1585
  msgstr "Enlace para confirmar correo [Verificación doble]"
1586
 
1587
- #: ../settings/settings-edit.php:198
1588
  msgid "It is a readonly field and you are advised not to modify it."
1589
  msgstr "Este es un campo de sólo lectura. Te aconsejo no lo modifiques."
1590
 
1591
- #: ../settings/settings-edit.php:204
1592
  msgid ""
1593
  "Text to display after an email address is successfully subscribed from "
1594
  "Double Opt-In (Confirmation) Email"
1595
  msgstr "MENSAJE: Cuenta correo confirmada"
1596
 
1597
- #: ../settings/settings-edit.php:205
1598
  msgid ""
1599
  "This text will be displayed once user clicks on email confirmation link from "
1600
  "the Double Opt In (confirmation) Email."
@@ -1603,11 +1572,11 @@ msgstr ""
1603
  "cuenta de correo y esta sea correcta.<br>Opción [Verificación doble] "
1604
  "activada."
1605
 
1606
- #: ../settings/settings-edit.php:212
1607
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1608
  msgstr "¿Enviar Correo de Bienvenida a los Nuevos Suscriptores tras Registro?"
1609
 
1610
- #: ../settings/settings-edit.php:213
1611
  msgid ""
1612
  "To send welcome email to subscriber after successful signup. This option "
1613
  "must be set to YES."
@@ -1618,11 +1587,11 @@ msgstr ""
1618
  "despues de completar satisfactoriamente la comprobación de válidez de la "
1619
  "cuenta de correo que ha proporcionado."
1620
 
1621
- #: ../settings/settings-edit.php:224
1622
  msgid "Subject for Welcome Email"
1623
  msgstr "ASUNTO: correo de Bienvenida"
1624
 
1625
- #: ../settings/settings-edit.php:225
1626
  msgid ""
1627
  "Subject for the subscriber welcome email. This will be sent whenever a "
1628
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1631,11 +1600,11 @@ msgstr ""
1631
  "Asunto del correo que se enviará a cada nuevo suscriptor una vez haya sido "
1632
  "dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
1633
 
1634
- #: ../settings/settings-edit.php:231
1635
  msgid "Email Content for Welcome Email"
1636
  msgstr "Contenido del correo para Correo de Bienvenida"
1637
 
1638
- #: ../settings/settings-edit.php:232
1639
  msgid ""
1640
  "Content for the subscriber welcome email whenever a user's email is either "
1641
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1646,11 +1615,11 @@ msgstr ""
1646
  "confirmación simple).<br />Palabras clave disponibles: {{NAME}}, {{GROUP}}, "
1647
  "{{LINK}}"
1648
 
1649
- #: ../settings/settings-edit.php:240
1650
  msgid "Unsubscribe Link"
1651
  msgstr "Enlace para cancelar la suscripción"
1652
 
1653
- #: ../settings/settings-edit.php:241
1654
  msgid ""
1655
  "This unsubscribe link is automatically added to all the emails that are sent "
1656
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1660,11 +1629,11 @@ msgstr ""
1660
  "electrónicos que se envían desde este plugin. Es un campo de sólo lectura y "
1661
  "se recomienda no modificarlo."
1662
 
1663
- #: ../settings/settings-edit.php:247
1664
  msgid "Unsubscribe Text in Email"
1665
  msgstr "TEXTO: enlace cancelación"
1666
 
1667
- #: ../settings/settings-edit.php:248
1668
  msgid ""
1669
  "The text for the unsubscribe link. This text is automatically added with "
1670
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1673,11 +1642,11 @@ msgstr ""
1673
  "automáticamente con un enlace de cancelación en los correos.<br />Palabras "
1674
  "clave disponibles: {{LINK}}"
1675
 
1676
- #: ../settings/settings-edit.php:254
1677
  msgid "Text to display after an email address is unsubscribed"
1678
  msgstr "MENSAJE: suscripción cancelada"
1679
 
1680
- #: ../settings/settings-edit.php:255
1681
  msgid ""
1682
  "This text will be displayed once user clicks on unsubscribe link from the "
1683
  "email."
@@ -1686,11 +1655,11 @@ msgstr ""
1686
  "pulsado en el enlace para darse de baja que figura en todos los correos que "
1687
  "le enviamos."
1688
 
1689
- #: ../settings/settings-edit.php:262
1690
  msgid "Error in the Subscribe / Confirmation Link"
1691
  msgstr "Error en la suscripción o en lace de confirmación"
1692
 
1693
- #: ../settings/settings-edit.php:263
1694
  msgid ""
1695
  "Default message to display if there is any issue while clicking on subscribe "
1696
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1699,11 +1668,11 @@ msgstr ""
1699
  "el enlace de suscripción / confirmación de los correos electrónicos de doble "
1700
  "verificación."
1701
 
1702
- #: ../settings/settings-edit.php:269
1703
  msgid "Error in the Unsubscribe Link"
1704
  msgstr "Error en el enlace de Cancelación de suscripción"
1705
 
1706
- #: ../settings/settings-edit.php:270
1707
  msgid ""
1708
  "Default message to display if there is any issue while clicking on "
1709
  "unsubscribe link from the emails."
@@ -1712,75 +1681,75 @@ msgstr ""
1712
  "el enlace de cancelación de suscripción que aparece en nuestros correos "
1713
  "electrónicos."
1714
 
1715
- #: ../settings/settings-edit.php:282
1716
  msgid "Select user roles who can access following menus. Only Admin can change this."
1717
  msgstr ""
1718
  "Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
1719
  "menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
1720
 
1721
- #: ../settings/settings-edit.php:288
1722
  msgid "Subscribers Menu"
1723
  msgstr "Menú Suscriptores"
1724
 
1725
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1726
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1727
- #: settings/settings-edit.php:340
1728
- msgid "Administrator Only"
1729
- msgstr "Sólo Administradores"
1730
-
1731
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1732
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1733
  #: settings/settings-edit.php:341
1734
- msgid "Administrator/Editor"
1735
- msgstr "Administrador/Editor"
1736
 
1737
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1738
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1739
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1740
  msgid "Administrator/Editor/Author/Contributor"
1741
  msgstr "Administrador/Editor/Autor/Colaborador"
1742
 
1743
- #: ../settings/settings-edit.php:300
1744
  msgid "Templates Menu"
1745
  msgstr "Menú Plantillas"
1746
 
1747
- #: ../settings/settings-edit.php:312
1748
  msgid "Post Notifications Menu"
1749
  msgstr "Menú Notificar Entrada"
1750
 
1751
- #: ../settings/settings-edit.php:336
1752
  msgid "Reports Menu"
1753
  msgstr "Menú Informes"
1754
 
1755
- #: ../settings/settings-edit.php:353
1756
  msgid "Cron job URL"
1757
  msgstr "URL de las tareas CRON programadas"
1758
 
1759
- #: ../settings/settings-edit.php:354
1760
  msgid ""
1761
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1762
  "modify it."
1763
  msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
1764
 
1765
- #: ../settings/settings-edit.php:363
1766
  msgid "Email Count"
1767
  msgstr "Número Correos"
1768
 
1769
- #: ../settings/settings-edit.php:364
1770
  msgid "Number of emails that you want to trigger per hour."
1771
  msgstr "Número de correos que quieres que se envíen por hora."
1772
 
1773
- #: ../settings/settings-edit.php:369
1774
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1775
  msgstr ""
1776
  "(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
1777
  "hora para mayor seguridad)"
1778
 
1779
- #: ../settings/settings-edit.php:374
1780
  msgid "Cron Report"
1781
  msgstr "Informes de CRON"
1782
 
1783
- #: ../settings/settings-edit.php:375
1784
  msgid ""
1785
  "Email to admin whenever a cron URL is triggered from your server.<br "
1786
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1788,13 +1757,13 @@ msgstr ""
1788
  "Correo al administrador cuando una URL cron sea activada desde tu servidor."
1789
  "<br />Palabras clave disponibles: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1790
 
1791
- #: ../settings/settings-edit.php:385
1792
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1793
  msgstr ""
1794
  "¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
1795
  "automáticamente? ¿Y cómo se configura una tarea Cron?"
1796
 
1797
- #: ../settings/settings-edit.php:386
1798
  msgid ""
1799
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1800
  "schedule-cron-emails/?"
@@ -1806,7 +1775,7 @@ msgstr ""
1806
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
1807
  "CRON?</a>"
1808
 
1809
- #: ../settings/settings-edit.php:387
1810
  msgid ""
1811
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1812
  "schedule-cron-emails-in-cpanel/?"
@@ -1818,7 +1787,7 @@ msgstr ""
1818
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1819
  "tareas CRON desde cPanel</a>"
1820
 
1821
- #: ../settings/settings-edit.php:388
1822
  msgid ""
1823
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1824
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1830,7 +1799,7 @@ msgstr ""
1830
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1831
  "tareas CRON desde Plesk</a>"
1832
 
1833
- #: ../settings/settings-edit.php:389
1834
  msgid ""
1835
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1836
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1842,23 +1811,19 @@ msgstr ""
1842
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
1843
  "Hosting no soporta tareas de CRON?</a>"
1844
 
1845
- #: ../settings/settings-edit.php:504
1846
  msgid "Please enter sender of notifications from name."
1847
  msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
1848
 
1849
- #: ../settings/settings-edit.php:509
1850
  msgid "Please enter sender of notifications from email."
1851
  msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
1852
 
1853
- #: ../settings/settings-edit.php:553
1854
- msgid "Please enter valid mail count."
1855
- msgstr "Por favor, introduzca una cuenta de correo válida."
1856
-
1857
- #: ../settings/settings-edit.php:566
1858
  msgid "Settings Saved."
1859
  msgstr "Configuración guardada."
1860
 
1861
- #: ../settings/settings-edit.php:569
1862
  msgid "Oops, unable to update."
1863
  msgstr "Vaya, no se ha podido actualizar."
1864
 
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"
23
  "X-Poedit-SearchPath-0: .\n"
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}}, "
57
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
65
+
66
  #: ../help/help.php:197
67
  msgid ""
68
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
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
+
112
  #: ../classes/es-common.php:13
113
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
114
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
153
  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
  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
  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
 
330
  msgstr "Por favor, introduce el máximo de correos, sólo numérico."
331
 
332
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  msgctxt "widget-page-enhanced-select"
334
  msgid "Please enter email address"
335
  msgstr "Por favor introduce dirección de correo electrónico"
336
 
337
+ #: ../classes/es-register.php:259
338
  msgctxt "widget-page-enhanced-select"
339
  msgid "Successfully Subscribed."
340
  msgstr "Suscripción correcta."
341
 
342
+ #: ../classes/es-register.php:260
343
  msgctxt "widget-page-enhanced-select"
344
  msgid ""
345
  "Your subscription was successful! Kindly check your mailbox and confirm your "
350
  "suscripción. Si no ves el correo en unos minutos, consulta la carpeta "
351
  "spam/correo no deseado."
352
 
353
+ #: ../classes/es-register.php:261
354
  msgctxt "widget-page-enhanced-select"
355
  msgid "Email Address already exists!"
356
  msgstr "¡Esa dirección de correo electrónico ya existe!"
357
 
358
+ #: ../classes/es-register.php:262
359
  msgctxt "widget-page-enhanced-select"
360
  msgid "Oops.. Unexpected error occurred."
361
  msgstr "Ups. Ha sucedido un error inesperado."
362
 
363
+ #: ../classes/es-register.php:263
364
  msgctxt "widget-page-enhanced-select"
365
  msgid "Invalid email address"
366
  msgstr "Dirección de correo electrónico no válida"
367
 
368
+ #: ../classes/es-register.php:264
369
  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."
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
  "&#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
 
1433
  msgid "Single Opt In"
1434
  msgstr "Sin verificación"
1435
 
1436
+ #: ../settings/settings-edit.php:117
1437
  msgid "Image Size"
1438
  msgstr "Tamaño de imagen"
1439
 
1440
+ #: ../settings/settings-edit.php:118
1441
  msgid ""
1442
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1443
  "Emails."
1445
  "Selecciona el tamaño de imagen para {{POSTIMAGE}} que se mostrará en los "
1446
  "Correos de Notificación de Entradas."
1447
 
1448
+ #: ../settings/settings-edit.php:122
1449
  msgid "Full Size"
1450
  msgstr "Tamaño Completo"
1451
 
1452
+ #: ../settings/settings-edit.php:123
1453
  msgid "Medium Size"
1454
  msgstr "Mediana"
1455
 
1456
+ #: ../settings/settings-edit.php:130
1457
  msgid "Admin Email Addresses"
1458
  msgstr "Direcciones de Correo del Administrador"
1459
 
1460
+ #: ../settings/settings-edit.php:131
1461
  msgid ""
1462
  "Enter the admin email addresses that should receive notifications (separated "
1463
  "by comma)."
1465
  "Introduce la dirección de correo del administrador que recibirá las "
1466
  "notificaciones del sistema. Si necesitas más de una, sepáralas con comas."
1467
 
1468
+ #: ../settings/settings-edit.php:137
1469
  msgid "Notify Admin when a new subscriber signs up"
1470
  msgstr "Notificar al administrador alta de suscriptor"
1471
 
1472
+ #: ../settings/settings-edit.php:138
1473
  msgid ""
1474
  "To send admin email notifications for the new subscriber. This option must "
1475
  "be set to YES."
1477
  "Si deseas que el Administrador reciba un correo al producirse cada nueva "
1478
  "suscripción, esta opción debe estar en SÍ."
1479
 
1480
+ #: ../settings/settings-edit.php:150
1481
  msgid "Admin Email Subject on new subscriber sign up"
1482
  msgstr "ASUNTO: alta suscriptor"
1483
 
1484
+ #: ../settings/settings-edit.php:151
1485
  msgid ""
1486
  "Subject for the admin email whenever a new subscriber signs up and is "
1487
  "confirmed."
1489
  "Asunto del correo que se enviará al Administrador cuando un nuevo suscriptor "
1490
  "confirme su correo."
1491
 
1492
+ #: ../settings/settings-edit.php:157
1493
  msgid "Admin Email Content on new subscriber signs up"
1494
  msgstr "TEXTO: alta suscriptor"
1495
 
1496
+ #: ../settings/settings-edit.php:158
1497
  msgid ""
1498
  "Content for the admin email whenever a new subscriber signs up and is "
1499
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1502
  "registre y confirme su registro.<br />Palabras clave disponibles: {{NAME}}, "
1503
  "{{EMAIL}}, {{GROUP}}"
1504
 
1505
+ #: ../settings/settings-edit.php:165
1506
  msgid "Sent Report Subject"
1507
  msgstr "ASUNTO: Informes"
1508
 
1509
+ #: ../settings/settings-edit.php:166
1510
  msgid "Subject for the email report which will be sent to admin."
1511
  msgstr "Asunto del correo que se enviará al administrador con los informes."
1512
 
1513
+ #: ../settings/settings-edit.php:172
1514
  msgid "Sent Report Content"
1515
  msgstr "TEXTO: Informes"
1516
 
1517
+ #: ../settings/settings-edit.php:173
1518
  msgid ""
1519
  "Content for the email report which will be sent to admin.<br />Available "
1520
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1523
  "/>Palabras clave disponibles: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1524
  "{{ENDTIME}}"
1525
 
1526
+ #: ../settings/settings-edit.php:184
1527
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1528
  msgstr "ASUNTO: Confirmar cuenta correo"
1529
 
1530
+ #: ../settings/settings-edit.php:185
1531
  msgid ""
1532
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1533
  "subscriber signs up."
1536
  "el enlace de confirmación de su cuenta de correo. Solo lo recibirá si tienes "
1537
  "activada la opcíon [Verificación doble]."
1538
 
1539
+ #: ../settings/settings-edit.php:191
1540
  msgid "Double Opt-In Email Content (Confirmation Email)"
1541
  msgstr "TEXTO: Confirmar cuenta correo"
1542
 
1543
+ #: ../settings/settings-edit.php:192
1544
  msgid ""
1545
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1546
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1549
  "confirmación cuando un nuevo suscriptor se registre.<br />Palabras clave "
1550
  "disponibles: {{NAME}}, {{LINK}}"
1551
 
1552
+ #: ../settings/settings-edit.php:198
1553
  msgid "Double Opt-In Confirmation Link"
1554
  msgstr "Enlace para confirmar correo [Verificación doble]"
1555
 
1556
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
 
languages/email-subscribers-fr_FR.mo CHANGED
Binary file
languages/email-subscribers-fr_FR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Wed May 23 2018 11:03:27 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"
@@ -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:827 ../classes/es-register.php:828 ../classes/es-register.php:833
27
  msgid "Templates"
28
  msgstr ""
29
 
@@ -40,14 +40,6 @@ msgid "Please select notification mail subject. Use templates menu to create new
40
  msgstr ""
41
 
42
  #: ../classes/es-register.php:260
43
- msgctxt "widget-enhanced-select"
44
- msgid ""
45
- "Your subscription was successful! Kindly check your mailbox and confirm your "
46
- "subscription. If you don't see the email within a few minutes, check the "
47
- "spam/junk folder."
48
- msgstr ""
49
-
50
- #: ../classes/es-register.php:274
51
  msgctxt "widget-page-enhanced-select"
52
  msgid ""
53
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -55,104 +47,114 @@ msgid ""
55
  "spam/junk folder."
56
  msgstr ""
57
 
58
- #: ../classes/es-register.php:739
59
  msgid ""
60
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
61
  "subscribers list?</b> Come check our Pro plan."
62
  msgstr ""
63
 
64
- #: ../classes/es-register.php:740
65
  msgid "Check Pro plan"
66
  msgstr ""
67
 
68
- #: ../classes/es-register.php:740
69
  msgid "Not interested."
70
  msgstr ""
71
 
72
- #: ../classes/es-register.php:778
73
  msgid ""
74
  "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
75
  "Checkbox' in the subscription form.</b>"
76
  msgstr ""
77
 
78
- #: ../classes/es-register.php:779
79
  msgid "Steps to enable"
80
  msgstr ""
81
 
82
- #: ../classes/es-register.php:779
83
  msgid "Ok, got it"
84
  msgstr ""
85
 
86
- #: ../classes/es-register.php:818
87
  #, php-format
88
  msgid "Email Subscribers version: <strong>%s</strong>"
89
  msgstr ""
90
 
91
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
92
  msgid "Add new Template"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:831
96
  msgid "Edit Templates"
97
  msgstr ""
98
 
99
- #: ../classes/es-register.php:832
100
  msgid "New Templates"
101
  msgstr ""
102
 
103
- #: ../classes/es-register.php:834
104
  msgid "View Templates"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:835
108
  msgid "Search Templates"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:836
112
  msgid "No Templates found"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:837
116
  msgid "No Templates found in Trash"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:840
120
  msgid "Thumbnail (For Visual Representation only)"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:841
124
  msgid "Set thumbnail"
125
  msgstr ""
126
 
127
- #: ../classes/es-register.php:878
128
  msgid "Template Type"
129
  msgstr ""
130
 
131
- #: ../classes/es-register.php:944
132
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
 
 
 
133
  msgstr ""
134
 
135
- #: ../classes/es-register.php:947
136
  msgid "Select your Email Template Type"
137
  msgstr ""
138
 
139
- #: ../classes/es-register.php:997
140
  msgid "Preview Template"
141
  msgstr ""
142
 
143
- #: ../classes/es-register.php:1011
144
  #, php-format
145
  msgid ""
146
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
147
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
148
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
149
  msgstr ""
150
 
151
- #: ../classes/es-register.php:1012
152
  #, php-format
153
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
154
  msgstr ""
155
 
 
 
 
 
 
156
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
157
  msgid "Unexpected url submit has been detected!"
158
  msgstr ""
@@ -288,53 +290,57 @@ msgid ""
288
  "deleted too and email will not be sent."
289
  msgstr ""
290
 
291
- #: ../settings/settings-edit.php:117
292
  msgid ""
293
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
294
  "Emails."
295
  msgstr ""
296
 
297
- #: ../settings/settings-edit.php:157
298
  msgid ""
299
  "Content for the admin email whenever a new subscriber signs up and is "
300
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
301
  msgstr ""
302
 
303
- #: ../settings/settings-edit.php:172
304
  msgid ""
305
  "Content for the email report which will be sent to admin.<br />Available "
306
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
307
  msgstr ""
308
 
309
- #: ../settings/settings-edit.php:191
310
  msgid ""
311
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
312
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
313
  msgstr ""
314
 
315
- #: ../settings/settings-edit.php:232
316
  msgid ""
317
  "Content for the subscriber welcome email whenever a user's email is either "
318
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
319
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
320
  msgstr ""
321
 
322
- #: ../settings/settings-edit.php:248
323
  msgid ""
324
  "The text for the unsubscribe link. This text is automatically added with "
325
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
326
  msgstr ""
327
 
328
- #: ../settings/settings-edit.php:300
329
  msgid "Templates Menu"
330
  msgstr ""
331
 
332
- #: ../settings/settings-edit.php:375
333
  msgid ""
334
  "Email to admin whenever a cron URL is triggered from your server.<br "
335
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
336
  msgstr ""
337
 
 
 
 
 
338
  #: ../subscribers/view-subscriber-export.php:12
339
  msgid ""
340
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
@@ -419,22 +425,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
419
  msgid "<span style=\"color:#993399;\">Immediately</span>"
420
  msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
421
 
422
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
423
- #: subscribers/view-subscriber-show.php:289
424
- msgid "Name"
425
- msgstr "Nom"
426
-
427
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
428
- msgid "Email *"
429
- msgstr "E-mail *"
430
-
431
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
432
- #: php:202
433
- msgid "Subscribe"
434
- msgstr "S'abonner"
435
-
436
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
437
- #: register.php:839
438
  msgid "Email Subscribers"
439
  msgstr "Email Subscribers & Newsletters"
440
 
@@ -449,7 +441,7 @@ msgid "Post Notifications"
449
  msgstr "Notifications d'article"
450
 
451
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
452
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
453
  msgid "Newsletters"
454
  msgstr "Newsletters"
455
 
@@ -587,66 +579,36 @@ msgid "Please enter the mail count, only number."
587
  msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
588
 
589
  #: ../classes/es-register.php:258
590
- msgctxt "widget-enhanced-select"
591
- msgid "Please enter email address"
592
- msgstr "Veuillez saisir une adresse e-mail"
593
-
594
- #: ../classes/es-register.php:259
595
- msgctxt "widget-enhanced-select"
596
- msgid "Successfully Subscribed."
597
- msgstr "Mise à jour réussie."
598
-
599
- #: ../classes/es-register.php:261
600
- msgctxt "widget-enhanced-select"
601
- msgid "Email Address already exists!"
602
- msgstr "Cet adresse e-mail existe déjà !"
603
-
604
- #: ../classes/es-register.php:262
605
- msgctxt "widget-enhanced-select"
606
- msgid "Oops.. Unexpected error occurred."
607
- msgstr "Oups.. une erreur inattendue s'est produite."
608
-
609
- #: ../classes/es-register.php:263
610
- msgctxt "widget-enhanced-select"
611
- msgid "Invalid email address"
612
- msgstr "Adresse e-mail non valide"
613
-
614
- #: ../classes/es-register.php:264
615
- msgctxt "widget-enhanced-select"
616
- msgid "Please try after some time"
617
- msgstr "Veuillez réessayer dans quelques instants"
618
-
619
- #: ../classes/es-register.php:272
620
  msgctxt "widget-page-enhanced-select"
621
  msgid "Please enter email address"
622
  msgstr "Veuillez saisir une adresse e-mail"
623
 
624
- #: ../classes/es-register.php:273
625
  msgctxt "widget-page-enhanced-select"
626
  msgid "Successfully Subscribed."
627
  msgstr "Abonnement réussi."
628
 
629
- #: ../classes/es-register.php:275
630
  msgctxt "widget-page-enhanced-select"
631
  msgid "Email Address already exists!"
632
  msgstr "Cette adresse existe déjà !"
633
 
634
- #: ../classes/es-register.php:276
635
  msgctxt "widget-page-enhanced-select"
636
  msgid "Oops.. Unexpected error occurred."
637
  msgstr "Oups... Une erreur inattendue s'est produite."
638
 
639
- #: ../classes/es-register.php:277
640
  msgctxt "widget-page-enhanced-select"
641
  msgid "Invalid email address"
642
  msgstr "Adresse e-mail non valide"
643
 
644
- #: ../classes/es-register.php:278
645
  msgctxt "widget-page-enhanced-select"
646
  msgid "Please try after some time"
647
  msgstr "Veuillez réessayer plus tard"
648
 
649
- #: ../classes/es-register.php:804
650
  msgid ""
651
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
652
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -658,50 +620,63 @@ msgstr ""
658
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
659
  "</a>. Un grand merci d'Icegram d'avance!"
660
 
661
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
662
  msgid "Thumbnail"
663
  msgstr "Miniature"
664
 
665
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
666
  #: sentmail/sentmail-show.php:121
667
  msgid "Preview"
668
  msgstr "Aperçu"
669
 
670
- #: ../classes/es-register.php:949
671
  msgid "Newsletter"
672
  msgstr "Newsletters"
673
 
674
- #: ../classes/es-register.php:950
675
  msgid "Post Notification"
676
  msgstr "Notification d'article"
677
 
678
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
 
679
  msgid "Available Keywords"
680
  msgstr "Mots clés autorisés"
681
 
682
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
683
  msgid "Widget Title"
684
  msgstr "Titre du widget"
685
 
686
- #: ../classes/es-register.php:1153
687
  msgid "Short description about subscription form"
688
  msgstr "Courte description de votre formulaire d'abonnement"
689
 
690
- #: ../classes/es-register.php:1157
691
  msgid "Display Name Field"
692
  msgstr "Afficher le champ Nom"
693
 
694
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
695
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
696
  msgid "YES"
697
  msgstr "OUI"
698
 
699
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
700
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
701
  msgid "NO"
702
  msgstr "NON"
703
 
704
- #: ../classes/es-register.php:1164
705
  msgid "Subscriber Group"
706
  msgstr "Groupe d'abonnés"
707
 
@@ -1495,23 +1470,23 @@ msgstr "Doube validation"
1495
  msgid "Single Opt In"
1496
  msgstr "Simple validation"
1497
 
1498
- #: ../settings/settings-edit.php:116
1499
  msgid "Image Size"
1500
  msgstr "Taille d'image"
1501
 
1502
- #: ../settings/settings-edit.php:121
1503
  msgid "Full Size"
1504
  msgstr "Grande taille"
1505
 
1506
- #: ../settings/settings-edit.php:122
1507
  msgid "Medium Size"
1508
  msgstr "Taille moyenne"
1509
 
1510
- #: ../settings/settings-edit.php:129
1511
  msgid "Admin Email Addresses"
1512
  msgstr "Adresses e-mail des administrateurs"
1513
 
1514
- #: ../settings/settings-edit.php:130
1515
  msgid ""
1516
  "Enter the admin email addresses that should receive notifications (separated "
1517
  "by comma)."
@@ -1519,11 +1494,11 @@ msgstr ""
1519
  "Entrer les adresses des administrateurs qui recevront les notifications "
1520
  "(séparés par une virgule)."
1521
 
1522
- #: ../settings/settings-edit.php:136
1523
  msgid "Notify Admin when a new subscriber signs up"
1524
  msgstr "Informer l'administrateur lorsqu'un abonné s'inscrit"
1525
 
1526
- #: ../settings/settings-edit.php:137
1527
  msgid ""
1528
  "To send admin email notifications for the new subscriber. This option must "
1529
  "be set to YES."
@@ -1531,11 +1506,11 @@ msgstr ""
1531
  "Pour envoyer une notification aux administrateurs lors d'une nouvelle "
1532
  "inscription, cette option doit être sur OUI."
1533
 
1534
- #: ../settings/settings-edit.php:149
1535
  msgid "Admin Email Subject on new subscriber sign up"
1536
  msgstr "Sujet de l'email à l'administrateur pour un nouvel abonné"
1537
 
1538
- #: ../settings/settings-edit.php:150
1539
  msgid ""
1540
  "Subject for the admin email whenever a new subscriber signs up and is "
1541
  "confirmed."
@@ -1543,27 +1518,27 @@ msgstr ""
1543
  "C'est le sujet de l'e-mail envoyé à l'administrateur lorsqu'un abonné "
1544
  "s'inscrit et confirme son abonnement."
1545
 
1546
- #: ../settings/settings-edit.php:156
1547
  msgid "Admin Email Content on new subscriber signs up"
1548
  msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
1549
 
1550
- #: ../settings/settings-edit.php:164
1551
  msgid "Sent Report Subject"
1552
  msgstr "Sujet pour le rapport d'envoi"
1553
 
1554
- #: ../settings/settings-edit.php:165
1555
  msgid "Subject for the email report which will be sent to admin."
1556
  msgstr "C'est le sujet de l'e-mail de rapport d'envoi envoyé à l'administrateur."
1557
 
1558
- #: ../settings/settings-edit.php:171
1559
  msgid "Sent Report Content"
1560
  msgstr "Contenu du rapport d'envoi"
1561
 
1562
- #: ../settings/settings-edit.php:183
1563
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1564
  msgstr "Sujet de l'e-mail de confirmation d'abonnement"
1565
 
1566
- #: ../settings/settings-edit.php:184
1567
  msgid ""
1568
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1569
  "subscriber signs up."
@@ -1571,25 +1546,25 @@ msgstr ""
1571
  "C'est le sujet de l'e-mail de confirmation d'abonnement envoyé à "
1572
  "l'utilisateur lorsqu'il s'inscrit si l'option double validation est active."
1573
 
1574
- #: ../settings/settings-edit.php:190
1575
  msgid "Double Opt-In Email Content (Confirmation Email)"
1576
  msgstr "Contenu de l'e-mail de confirmation d'abonnement"
1577
 
1578
- #: ../settings/settings-edit.php:197
1579
  msgid "Double Opt-In Confirmation Link"
1580
  msgstr "Lien de confirmation"
1581
 
1582
- #: ../settings/settings-edit.php:198
1583
  msgid "It is a readonly field and you are advised not to modify it."
1584
  msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
1585
 
1586
- #: ../settings/settings-edit.php:204
1587
  msgid ""
1588
  "Text to display after an email address is successfully subscribed from "
1589
  "Double Opt-In (Confirmation) Email"
1590
  msgstr "Texte affiché après confirmation"
1591
 
1592
- #: ../settings/settings-edit.php:205
1593
  msgid ""
1594
  "This text will be displayed once user clicks on email confirmation link from "
1595
  "the Double Opt In (confirmation) Email."
@@ -1597,11 +1572,11 @@ msgstr ""
1597
  "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
1598
  "confirmation dans le courriel de confirmation."
1599
 
1600
- #: ../settings/settings-edit.php:212
1601
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1602
  msgstr "Envoyer un e-mail de bienvenue aux nouveaux abonnés après leur inscription?"
1603
 
1604
- #: ../settings/settings-edit.php:213
1605
  msgid ""
1606
  "To send welcome email to subscriber after successful signup. This option "
1607
  "must be set to YES."
@@ -1609,11 +1584,11 @@ msgstr ""
1609
  "Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
1610
  "option doit être sur OUI."
1611
 
1612
- #: ../settings/settings-edit.php:224
1613
  msgid "Subject for Welcome Email"
1614
  msgstr "Sujet de l'e-mail de bienvenue"
1615
 
1616
- #: ../settings/settings-edit.php:225
1617
  msgid ""
1618
  "Subject for the subscriber welcome email. This will be sent whenever a "
1619
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1623,15 +1598,15 @@ msgstr ""
1623
  "l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
1624
  "lorsqu'il s'inscrit (simple validation)."
1625
 
1626
- #: ../settings/settings-edit.php:231
1627
  msgid "Email Content for Welcome Email"
1628
  msgstr "Contenu de l'e-mail de bienvenue"
1629
 
1630
- #: ../settings/settings-edit.php:240
1631
  msgid "Unsubscribe Link"
1632
  msgstr "Lien de désabonnement"
1633
 
1634
- #: ../settings/settings-edit.php:241
1635
  msgid ""
1636
  "This unsubscribe link is automatically added to all the emails that are sent "
1637
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1640,15 +1615,15 @@ msgstr ""
1640
  "Ce lien de désabonnement est automatiquement ajouté dans les e-mails envoyés "
1641
  "par cette extension. C'est un champ non modifiable."
1642
 
1643
- #: ../settings/settings-edit.php:247
1644
  msgid "Unsubscribe Text in Email"
1645
  msgstr "Texte de désabonnement dans les courriels"
1646
 
1647
- #: ../settings/settings-edit.php:254
1648
  msgid "Text to display after an email address is unsubscribed"
1649
  msgstr "Texte à afficher lors d'un désabonnement"
1650
 
1651
- #: ../settings/settings-edit.php:255
1652
  msgid ""
1653
  "This text will be displayed once user clicks on unsubscribe link from the "
1654
  "email."
@@ -1656,11 +1631,11 @@ msgstr ""
1656
  "Ce teste est affiché lorsqu'un abonné clique sur le lien de désabonnement "
1657
  "dans un e-mail qu'il a reçu."
1658
 
1659
- #: ../settings/settings-edit.php:262
1660
  msgid "Error in the Subscribe / Confirmation Link"
1661
  msgstr "Erreur sur lien de confirmation"
1662
 
1663
- #: ../settings/settings-edit.php:263
1664
  msgid ""
1665
  "Default message to display if there is any issue while clicking on subscribe "
1666
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1668,83 +1643,83 @@ msgstr ""
1668
  "Message à afficher si une erreur se produit lors de la confirmation "
1669
  "d'abonnement."
1670
 
1671
- #: ../settings/settings-edit.php:269
1672
  msgid "Error in the Unsubscribe Link"
1673
  msgstr "Erreur sur le lien de désabonnement"
1674
 
1675
- #: ../settings/settings-edit.php:270
1676
  msgid ""
1677
  "Default message to display if there is any issue while clicking on "
1678
  "unsubscribe link from the emails."
1679
  msgstr "Message à afficher si une erreur se produit lors d'un désabonnement."
1680
 
1681
- #: ../settings/settings-edit.php:282
1682
  msgid "Select user roles who can access following menus. Only Admin can change this."
1683
  msgstr ""
1684
  "Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
1685
  "administrateurs peuvent changer cette option."
1686
 
1687
- #: ../settings/settings-edit.php:288
1688
  msgid "Subscribers Menu"
1689
  msgstr "Menu Abonnés"
1690
 
1691
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1692
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1693
- #: settings/settings-edit.php:340
1694
- msgid "Administrator Only"
1695
- msgstr "Que les administrateurs"
1696
-
1697
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1698
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1699
  #: settings/settings-edit.php:341
1700
- msgid "Administrator/Editor"
1701
- msgstr "Administrateur/Editeur"
1702
 
1703
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1704
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1705
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1706
  msgid "Administrator/Editor/Author/Contributor"
1707
  msgstr "Administrateur/Editeur/Auteur/Contributeur"
1708
 
1709
- #: ../settings/settings-edit.php:312
1710
  msgid "Post Notifications Menu"
1711
  msgstr "Menu Notifications d'article"
1712
 
1713
- #: ../settings/settings-edit.php:336
1714
  msgid "Reports Menu"
1715
  msgstr "Menu Rapports"
1716
 
1717
- #: ../settings/settings-edit.php:353
1718
  msgid "Cron job URL"
1719
  msgstr "URL de la tâche CRON"
1720
 
1721
- #: ../settings/settings-edit.php:354
1722
  msgid ""
1723
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1724
  "modify it."
1725
  msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
1726
 
1727
- #: ../settings/settings-edit.php:363
1728
  msgid "Email Count"
1729
  msgstr "Nombre de courriels"
1730
 
1731
- #: ../settings/settings-edit.php:364
1732
  msgid "Number of emails that you want to trigger per hour."
1733
  msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
1734
 
1735
- #: ../settings/settings-edit.php:369
1736
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1737
  msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
1738
 
1739
- #: ../settings/settings-edit.php:374
1740
  msgid "Cron Report"
1741
  msgstr "Rapport de têche CRON"
1742
 
1743
- #: ../settings/settings-edit.php:385
1744
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1745
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1746
 
1747
- #: ../settings/settings-edit.php:386
1748
  msgid ""
1749
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1750
  "schedule-cron-emails/?"
@@ -1756,7 +1731,7 @@ msgstr ""
1756
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
1757
  "qu'une tâche Cron?</a>"
1758
 
1759
- #: ../settings/settings-edit.php:387
1760
  msgid ""
1761
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1762
  "schedule-cron-emails-in-cpanel/?"
@@ -1768,7 +1743,7 @@ msgstr ""
1768
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1769
  "une tâche Cron dans cPanel</a>"
1770
 
1771
- #: ../settings/settings-edit.php:388
1772
  msgid ""
1773
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1774
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1780,7 +1755,7 @@ msgstr ""
1780
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1781
  "une tâche Cron dans Plesk</a>"
1782
 
1783
- #: ../settings/settings-edit.php:389
1784
  msgid ""
1785
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1786
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1792,23 +1767,19 @@ msgstr ""
1792
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
1793
  "hébergeur ne gère pas les tâches Cron?</a>"
1794
 
1795
- #: ../settings/settings-edit.php:504
1796
  msgid "Please enter sender of notifications from name."
1797
  msgstr "Veuillez saisir le nom de l'expéditeur"
1798
 
1799
- #: ../settings/settings-edit.php:509
1800
  msgid "Please enter sender of notifications from email."
1801
  msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1802
 
1803
- #: ../settings/settings-edit.php:553
1804
- msgid "Please enter valid mail count."
1805
- msgstr "Veuillez saisir un nombre de courriel valide."
1806
-
1807
- #: ../settings/settings-edit.php:566
1808
  msgid "Settings Saved."
1809
  msgstr "Options enregistrées."
1810
 
1811
- #: ../settings/settings-edit.php:569
1812
  msgid "Oops, unable to update."
1813
  msgstr "Oups, impossible de mettre à jour."
1814
 
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"
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
 
40
  msgstr ""
41
 
42
  #: ../classes/es-register.php:260
 
 
 
 
 
 
 
 
43
  msgctxt "widget-page-enhanced-select"
44
  msgid ""
45
  "Your subscription was successful! Kindly check your mailbox and confirm your "
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}}, "
144
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
290
  "deleted too and email will not be sent."
291
  msgstr ""
292
 
293
+ #: ../settings/settings-edit.php:118
294
  msgid ""
295
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
296
  "Emails."
297
  msgstr ""
298
 
299
+ #: ../settings/settings-edit.php:158
300
  msgid ""
301
  "Content for the admin email whenever a new subscriber signs up and is "
302
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
303
  msgstr ""
304
 
305
+ #: ../settings/settings-edit.php:173
306
  msgid ""
307
  "Content for the email report which will be sent to admin.<br />Available "
308
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
309
  msgstr ""
310
 
311
+ #: ../settings/settings-edit.php:192
312
  msgid ""
313
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
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
+
344
  #: ../subscribers/view-subscriber-export.php:12
345
  msgid ""
346
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
425
  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
  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
 
579
  msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
580
 
581
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  msgctxt "widget-page-enhanced-select"
583
  msgid "Please enter email address"
584
  msgstr "Veuillez saisir une adresse e-mail"
585
 
586
+ #: ../classes/es-register.php:259
587
  msgctxt "widget-page-enhanced-select"
588
  msgid "Successfully Subscribed."
589
  msgstr "Abonnement réussi."
590
 
591
+ #: ../classes/es-register.php:261
592
  msgctxt "widget-page-enhanced-select"
593
  msgid "Email Address already exists!"
594
  msgstr "Cette adresse existe déjà !"
595
 
596
+ #: ../classes/es-register.php:262
597
  msgctxt "widget-page-enhanced-select"
598
  msgid "Oops.. Unexpected error occurred."
599
  msgstr "Oups... Une erreur inattendue s'est produite."
600
 
601
+ #: ../classes/es-register.php:263
602
  msgctxt "widget-page-enhanced-select"
603
  msgid "Invalid email address"
604
  msgstr "Adresse e-mail non valide"
605
 
606
+ #: ../classes/es-register.php:264
607
  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
  "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
 
1470
  msgid "Single Opt In"
1471
  msgstr "Simple validation"
1472
 
1473
+ #: ../settings/settings-edit.php:117
1474
  msgid "Image Size"
1475
  msgstr "Taille d'image"
1476
 
1477
+ #: ../settings/settings-edit.php:122
1478
  msgid "Full Size"
1479
  msgstr "Grande taille"
1480
 
1481
+ #: ../settings/settings-edit.php:123
1482
  msgid "Medium Size"
1483
  msgstr "Taille moyenne"
1484
 
1485
+ #: ../settings/settings-edit.php:130
1486
  msgid "Admin Email Addresses"
1487
  msgstr "Adresses e-mail des administrateurs"
1488
 
1489
+ #: ../settings/settings-edit.php:131
1490
  msgid ""
1491
  "Enter the admin email addresses that should receive notifications (separated "
1492
  "by comma)."
1494
  "Entrer les adresses des administrateurs qui recevront les notifications "
1495
  "(séparés par une virgule)."
1496
 
1497
+ #: ../settings/settings-edit.php:137
1498
  msgid "Notify Admin when a new subscriber signs up"
1499
  msgstr "Informer l'administrateur lorsqu'un abonné s'inscrit"
1500
 
1501
+ #: ../settings/settings-edit.php:138
1502
  msgid ""
1503
  "To send admin email notifications for the new subscriber. This option must "
1504
  "be set to YES."
1506
  "Pour envoyer une notification aux administrateurs lors d'une nouvelle "
1507
  "inscription, cette option doit être sur OUI."
1508
 
1509
+ #: ../settings/settings-edit.php:150
1510
  msgid "Admin Email Subject on new subscriber sign up"
1511
  msgstr "Sujet de l'email à l'administrateur pour un nouvel abonné"
1512
 
1513
+ #: ../settings/settings-edit.php:151
1514
  msgid ""
1515
  "Subject for the admin email whenever a new subscriber signs up and is "
1516
  "confirmed."
1518
  "C'est le sujet de l'e-mail envoyé à l'administrateur lorsqu'un abonné "
1519
  "s'inscrit et confirme son abonnement."
1520
 
1521
+ #: ../settings/settings-edit.php:157
1522
  msgid "Admin Email Content on new subscriber signs up"
1523
  msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
1524
 
1525
+ #: ../settings/settings-edit.php:165
1526
  msgid "Sent Report Subject"
1527
  msgstr "Sujet pour le rapport d'envoi"
1528
 
1529
+ #: ../settings/settings-edit.php:166
1530
  msgid "Subject for the email report which will be sent to admin."
1531
  msgstr "C'est le sujet de l'e-mail de rapport d'envoi envoyé à l'administrateur."
1532
 
1533
+ #: ../settings/settings-edit.php:172
1534
  msgid "Sent Report Content"
1535
  msgstr "Contenu du rapport d'envoi"
1536
 
1537
+ #: ../settings/settings-edit.php:184
1538
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1539
  msgstr "Sujet de l'e-mail de confirmation d'abonnement"
1540
 
1541
+ #: ../settings/settings-edit.php:185
1542
  msgid ""
1543
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1544
  "subscriber signs up."
1546
  "C'est le sujet de l'e-mail de confirmation d'abonnement envoyé à "
1547
  "l'utilisateur lorsqu'il s'inscrit si l'option double validation est active."
1548
 
1549
+ #: ../settings/settings-edit.php:191
1550
  msgid "Double Opt-In Email Content (Confirmation Email)"
1551
  msgstr "Contenu de l'e-mail de confirmation d'abonnement"
1552
 
1553
+ #: ../settings/settings-edit.php:198
1554
  msgid "Double Opt-In Confirmation Link"
1555
  msgstr "Lien de confirmation"
1556
 
1557
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
 
languages/email-subscribers-hu_HU.mo CHANGED
Binary file
languages/email-subscribers-hu_HU.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Wed May 23 2018 11:03:31 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"
@@ -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:827 ../classes/es-register.php:828 ../classes/es-register.php:833
27
  msgid "Templates"
28
  msgstr ""
29
 
@@ -44,14 +44,6 @@ msgid "Please select notification mail subject. Use templates menu to create new
44
  msgstr ""
45
 
46
  #: ../classes/es-register.php:260
47
- msgctxt "widget-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:274
55
  msgctxt "widget-page-enhanced-select"
56
  msgid ""
57
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -59,104 +51,114 @@ msgid ""
59
  "spam/junk folder."
60
  msgstr ""
61
 
62
- #: ../classes/es-register.php:739
63
  msgid ""
64
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
65
  "subscribers list?</b> Come check our Pro plan."
66
  msgstr ""
67
 
68
- #: ../classes/es-register.php:740
69
  msgid "Check Pro plan"
70
  msgstr ""
71
 
72
- #: ../classes/es-register.php:740
73
  msgid "Not interested."
74
  msgstr ""
75
 
76
- #: ../classes/es-register.php:778
77
  msgid ""
78
  "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
79
  "Checkbox' in the subscription form.</b>"
80
  msgstr ""
81
 
82
- #: ../classes/es-register.php:779
83
  msgid "Steps to enable"
84
  msgstr ""
85
 
86
- #: ../classes/es-register.php:779
87
  msgid "Ok, got it"
88
  msgstr ""
89
 
90
- #: ../classes/es-register.php:818
91
  #, php-format
92
  msgid "Email Subscribers version: <strong>%s</strong>"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
96
  msgid "Add new Template"
97
  msgstr ""
98
 
99
- #: ../classes/es-register.php:831
100
  msgid "Edit Templates"
101
  msgstr ""
102
 
103
- #: ../classes/es-register.php:832
104
  msgid "New Templates"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:834
108
  msgid "View Templates"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:835
112
  msgid "Search Templates"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:836
116
  msgid "No Templates found"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:837
120
  msgid "No Templates found in Trash"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:840
124
  msgid "Thumbnail (For Visual Representation only)"
125
  msgstr ""
126
 
127
- #: ../classes/es-register.php:841
128
  msgid "Set thumbnail"
129
  msgstr ""
130
 
131
- #: ../classes/es-register.php:878
132
  msgid "Template Type"
133
  msgstr ""
134
 
135
- #: ../classes/es-register.php:944
136
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
 
 
 
137
  msgstr ""
138
 
139
- #: ../classes/es-register.php:947
140
  msgid "Select your Email Template Type"
141
  msgstr ""
142
 
143
- #: ../classes/es-register.php:997
144
  msgid "Preview Template"
145
  msgstr ""
146
 
147
- #: ../classes/es-register.php:1011
148
  #, php-format
149
  msgid ""
150
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
151
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
152
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
153
  msgstr ""
154
 
155
- #: ../classes/es-register.php:1012
156
  #, php-format
157
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
158
  msgstr ""
159
 
 
 
 
 
 
160
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
161
  msgid "Unexpected url submit has been detected!"
162
  msgstr ""
@@ -557,156 +559,156 @@ msgid ""
557
  "directly in the list."
558
  msgstr ""
559
 
560
- #: ../settings/settings-edit.php:117
561
  msgid ""
562
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
563
  "Emails."
564
  msgstr ""
565
 
566
- #: ../settings/settings-edit.php:136
567
  msgid "Notify Admin when a new subscriber signs up"
568
  msgstr ""
569
 
570
- #: ../settings/settings-edit.php:149
571
  msgid "Admin Email Subject on new subscriber sign up"
572
  msgstr ""
573
 
574
- #: ../settings/settings-edit.php:150
575
  msgid ""
576
  "Subject for the admin email whenever a new subscriber signs up and is "
577
  "confirmed."
578
  msgstr ""
579
 
580
- #: ../settings/settings-edit.php:156
581
  msgid "Admin Email Content on new subscriber signs up"
582
  msgstr ""
583
 
584
- #: ../settings/settings-edit.php:157
585
  msgid ""
586
  "Content for the admin email whenever a new subscriber signs up and is "
587
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
588
  msgstr ""
589
 
590
- #: ../settings/settings-edit.php:165
591
  msgid "Subject for the email report which will be sent to admin."
592
  msgstr ""
593
 
594
- #: ../settings/settings-edit.php:172
595
  msgid ""
596
  "Content for the email report which will be sent to admin.<br />Available "
597
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
598
  msgstr ""
599
 
600
- #: ../settings/settings-edit.php:183
601
  msgid "Double Opt-In Email Subject (Confirmation Email)"
602
  msgstr ""
603
 
604
- #: ../settings/settings-edit.php:184
605
  msgid ""
606
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
607
  "subscriber signs up."
608
  msgstr ""
609
 
610
- #: ../settings/settings-edit.php:190
611
  msgid "Double Opt-In Email Content (Confirmation Email)"
612
  msgstr ""
613
 
614
- #: ../settings/settings-edit.php:191
615
  msgid ""
616
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
617
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
618
  msgstr ""
619
 
620
- #: ../settings/settings-edit.php:197
621
  msgid "Double Opt-In Confirmation Link"
622
  msgstr ""
623
 
624
- #: ../settings/settings-edit.php:204
625
  msgid ""
626
  "Text to display after an email address is successfully subscribed from "
627
  "Double Opt-In (Confirmation) Email"
628
  msgstr ""
629
 
630
- #: ../settings/settings-edit.php:212
631
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
632
  msgstr ""
633
 
634
- #: ../settings/settings-edit.php:224
635
  msgid "Subject for Welcome Email"
636
  msgstr ""
637
 
638
- #: ../settings/settings-edit.php:225
639
  msgid ""
640
  "Subject for the subscriber welcome email. This will be sent whenever a "
641
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
642
  "Opt-In) successfully."
643
  msgstr ""
644
 
645
- #: ../settings/settings-edit.php:231
646
  msgid "Email Content for Welcome Email"
647
  msgstr ""
648
 
649
- #: ../settings/settings-edit.php:232
650
  msgid ""
651
  "Content for the subscriber welcome email whenever a user's email is either "
652
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
653
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
654
  msgstr ""
655
 
656
- #: ../settings/settings-edit.php:241
657
  msgid ""
658
  "This unsubscribe link is automatically added to all the emails that are sent "
659
  "from this plugin. It is a readonly field and you are advised not to modify "
660
  "it."
661
  msgstr ""
662
 
663
- #: ../settings/settings-edit.php:248
664
  msgid ""
665
  "The text for the unsubscribe link. This text is automatically added with "
666
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
667
  msgstr ""
668
 
669
- #: ../settings/settings-edit.php:255
670
  msgid ""
671
  "This text will be displayed once user clicks on unsubscribe link from the "
672
  "email."
673
  msgstr ""
674
 
675
- #: ../settings/settings-edit.php:262
676
  msgid "Error in the Subscribe / Confirmation Link"
677
  msgstr ""
678
 
679
- #: ../settings/settings-edit.php:263
680
  msgid ""
681
  "Default message to display if there is any issue while clicking on subscribe "
682
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
683
  msgstr ""
684
 
685
- #: ../settings/settings-edit.php:270
686
  msgid ""
687
  "Default message to display if there is any issue while clicking on "
688
  "unsubscribe link from the emails."
689
  msgstr ""
690
 
691
- #: ../settings/settings-edit.php:300
692
  msgid "Templates Menu"
693
  msgstr ""
694
 
695
- #: ../settings/settings-edit.php:369
696
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
697
  msgstr ""
698
 
699
- #: ../settings/settings-edit.php:374
700
  msgid "Cron Report"
701
  msgstr ""
702
 
703
- #: ../settings/settings-edit.php:375
704
  msgid ""
705
  "Email to admin whenever a cron URL is triggered from your server.<br "
706
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
707
  msgstr ""
708
 
709
- #: ../settings/settings-edit.php:386
710
  msgid ""
711
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
712
  "schedule-cron-emails/?"
@@ -714,7 +716,7 @@ msgid ""
714
  "Cron?</a>"
715
  msgstr ""
716
 
717
- #: ../settings/settings-edit.php:387
718
  msgid ""
719
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
720
  "schedule-cron-emails-in-cpanel/?"
@@ -722,7 +724,7 @@ msgid ""
722
  "job in cPanel</a>"
723
  msgstr ""
724
 
725
- #: ../settings/settings-edit.php:388
726
  msgid ""
727
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
728
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -730,7 +732,7 @@ msgid ""
730
  "job in Plesk</a>"
731
  msgstr ""
732
 
733
- #: ../settings/settings-edit.php:389
734
  msgid ""
735
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
736
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -738,6 +740,10 @@ msgid ""
738
  "does not support cron jobs?</a>"
739
  msgstr ""
740
 
 
 
 
 
741
  #: ../subscribers/view-subscriber-export.php:12
742
  msgid ""
743
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
@@ -831,22 +837,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
831
  msgid "<span style=\"color:#993399;\">Immediately</span>"
832
  msgstr "<span style=\"color:#993399;\">Azonnal</span>"
833
 
834
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
835
- #: subscribers/view-subscriber-show.php:289
836
- msgid "Name"
837
- msgstr "Név"
838
-
839
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
840
- msgid "Email *"
841
- msgstr "E-mail*"
842
-
843
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
844
- #: php:202
845
- msgid "Subscribe"
846
- msgstr "Feliratkozás"
847
-
848
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
849
- #: register.php:839
850
  msgid "Email Subscribers"
851
  msgstr "Email Subscribers"
852
 
@@ -861,7 +853,7 @@ msgid "Post Notifications"
861
  msgstr "Új bejegyzés értesítés"
862
 
863
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
864
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
865
  msgid "Newsletters"
866
  msgstr "Hírlevél"
867
 
@@ -993,66 +985,36 @@ msgid "Please enter the mail count, only number."
993
  msgstr "Kérem egy számot adjon meg, hány e-mail? "
994
 
995
  #: ../classes/es-register.php:258
996
- msgctxt "widget-enhanced-select"
997
- msgid "Please enter email address"
998
- msgstr "Kérjük adja meg az e-mail címét"
999
-
1000
- #: ../classes/es-register.php:259
1001
- msgctxt "widget-enhanced-select"
1002
- msgid "Successfully Subscribed."
1003
- msgstr "Sikeres feliratkozás"
1004
-
1005
- #: ../classes/es-register.php:261
1006
- msgctxt "widget-enhanced-select"
1007
- msgid "Email Address already exists!"
1008
- msgstr "Ez az e-mail cím már létezik"
1009
-
1010
- #: ../classes/es-register.php:262
1011
- msgctxt "widget-enhanced-select"
1012
- msgid "Oops.. Unexpected error occurred."
1013
- msgstr "Váratlan hiba"
1014
-
1015
- #: ../classes/es-register.php:263
1016
- msgctxt "widget-enhanced-select"
1017
- msgid "Invalid email address"
1018
- msgstr "Hibás e-mail cím"
1019
-
1020
- #: ../classes/es-register.php:264
1021
- msgctxt "widget-enhanced-select"
1022
- msgid "Please try after some time"
1023
- msgstr "Kérem próbálja meg kicsit később!"
1024
-
1025
- #: ../classes/es-register.php:272
1026
  msgctxt "widget-page-enhanced-select"
1027
  msgid "Please enter email address"
1028
  msgstr "KÉrem adja meg az e-mail címét!"
1029
 
1030
- #: ../classes/es-register.php:273
1031
  msgctxt "widget-page-enhanced-select"
1032
  msgid "Successfully Subscribed."
1033
  msgstr "Sikeres feliratkozás."
1034
 
1035
- #: ../classes/es-register.php:275
1036
  msgctxt "widget-page-enhanced-select"
1037
  msgid "Email Address already exists!"
1038
  msgstr "Ilyen e-mail cím már létezik. "
1039
 
1040
- #: ../classes/es-register.php:276
1041
  msgctxt "widget-page-enhanced-select"
1042
  msgid "Oops.. Unexpected error occurred."
1043
  msgstr "Váratlan hiba lépett fel"
1044
 
1045
- #: ../classes/es-register.php:277
1046
  msgctxt "widget-page-enhanced-select"
1047
  msgid "Invalid email address"
1048
  msgstr "Hibás e-mail cím."
1049
 
1050
- #: ../classes/es-register.php:278
1051
  msgctxt "widget-page-enhanced-select"
1052
  msgid "Please try after some time"
1053
  msgstr "Kérem próbálja meg később. "
1054
 
1055
- #: ../classes/es-register.php:804
1056
  msgid ""
1057
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1058
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -1064,50 +1026,63 @@ msgstr ""
1064
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1065
  "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
1066
 
1067
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
1068
  msgid "Thumbnail"
1069
  msgstr "Bélyegkép"
1070
 
1071
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
1072
  #: sentmail/sentmail-show.php:121
1073
  msgid "Preview"
1074
  msgstr "Előnézet"
1075
 
1076
- #: ../classes/es-register.php:949
1077
  msgid "Newsletter"
1078
  msgstr "Hírlevél"
1079
 
1080
- #: ../classes/es-register.php:950
1081
  msgid "Post Notification"
1082
  msgstr "Értesítés az új bejegyzésről"
1083
 
1084
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
 
1085
  msgid "Available Keywords"
1086
  msgstr "Választható kulcsszavak"
1087
 
1088
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
1089
  msgid "Widget Title"
1090
  msgstr "Widget Cím"
1091
 
1092
- #: ../classes/es-register.php:1153
1093
  msgid "Short description about subscription form"
1094
  msgstr "A feliratkozó űrlap rövid leírása"
1095
 
1096
- #: ../classes/es-register.php:1157
1097
  msgid "Display Name Field"
1098
  msgstr "Feliratkozásnál kérjük a nevet is? "
1099
 
1100
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
1101
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
1102
  msgid "YES"
1103
  msgstr "Igen"
1104
 
1105
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
1106
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
1107
  msgid "NO"
1108
  msgstr "Nem"
1109
 
1110
- #: ../classes/es-register.php:1164
1111
  msgid "Subscriber Group"
1112
  msgstr "Előfizetői csoport"
1113
 
@@ -1594,23 +1569,23 @@ msgstr "Kettős opt-in"
1594
  msgid "Single Opt In"
1595
  msgstr "Visszaigazolás nélkül"
1596
 
1597
- #: ../settings/settings-edit.php:116
1598
  msgid "Image Size"
1599
  msgstr "Képméret"
1600
 
1601
- #: ../settings/settings-edit.php:121
1602
  msgid "Full Size"
1603
  msgstr "Teljes méretű kép"
1604
 
1605
- #: ../settings/settings-edit.php:122
1606
  msgid "Medium Size"
1607
  msgstr "Közepes méretű kép"
1608
 
1609
- #: ../settings/settings-edit.php:129
1610
  msgid "Admin Email Addresses"
1611
  msgstr "Az adminisztrátor e-mail címei"
1612
 
1613
- #: ../settings/settings-edit.php:130
1614
  msgid ""
1615
  "Enter the admin email addresses that should receive notifications (separated "
1616
  "by comma)."
@@ -1618,7 +1593,7 @@ msgstr ""
1618
  "Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a "
1619
  "levelek küldéséről"
1620
 
1621
- #: ../settings/settings-edit.php:137
1622
  msgid ""
1623
  "To send admin email notifications for the new subscriber. This option must "
1624
  "be set to YES."
@@ -1626,19 +1601,19 @@ msgstr ""
1626
  "Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
1627
  "állítsuk \"IGEN\"-re. "
1628
 
1629
- #: ../settings/settings-edit.php:164
1630
  msgid "Sent Report Subject"
1631
  msgstr "A levél kiküldés értesítőlevelének tárgya"
1632
 
1633
- #: ../settings/settings-edit.php:171
1634
  msgid "Sent Report Content"
1635
  msgstr "Az elküldött levelek értesítőlevelének tartalma"
1636
 
1637
- #: ../settings/settings-edit.php:198
1638
  msgid "It is a readonly field and you are advised not to modify it."
1639
  msgstr "Csak olvasható mező"
1640
 
1641
- #: ../settings/settings-edit.php:205
1642
  msgid ""
1643
  "This text will be displayed once user clicks on email confirmation link from "
1644
  "the Double Opt In (confirmation) Email."
@@ -1646,103 +1621,99 @@ msgstr ""
1646
  "Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
1647
  "linkre kattint"
1648
 
1649
- #: ../settings/settings-edit.php:213
1650
  msgid ""
1651
  "To send welcome email to subscriber after successful signup. This option "
1652
  "must be set to YES."
1653
  msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
1654
 
1655
- #: ../settings/settings-edit.php:240
1656
  msgid "Unsubscribe Link"
1657
  msgstr "Leiratkozó link"
1658
 
1659
- #: ../settings/settings-edit.php:247
1660
  msgid "Unsubscribe Text in Email"
1661
  msgstr "A leiratkozó link szövete"
1662
 
1663
- #: ../settings/settings-edit.php:254
1664
  msgid "Text to display after an email address is unsubscribed"
1665
  msgstr "A leiratkozás után megjelenő szöveg."
1666
 
1667
- #: ../settings/settings-edit.php:269
1668
  msgid "Error in the Unsubscribe Link"
1669
  msgstr "A leriratkozó link hibás."
1670
 
1671
- #: ../settings/settings-edit.php:282
1672
  msgid "Select user roles who can access following menus. Only Admin can change this."
1673
  msgstr ""
1674
  "Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
1675
  "menük kezelésére."
1676
 
1677
- #: ../settings/settings-edit.php:288
1678
  msgid "Subscribers Menu"
1679
  msgstr "Előfizetők"
1680
 
1681
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1682
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1683
- #: settings/settings-edit.php:340
1684
- msgid "Administrator Only"
1685
- msgstr "Csak adminisztrátor"
1686
-
1687
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1688
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1689
  #: settings/settings-edit.php:341
1690
- msgid "Administrator/Editor"
1691
- msgstr "Adminisztrátor/Szerkesztő"
1692
 
1693
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1694
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1695
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1696
  msgid "Administrator/Editor/Author/Contributor"
1697
  msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1698
 
1699
- #: ../settings/settings-edit.php:312
1700
  msgid "Post Notifications Menu"
1701
  msgstr "Új bejegyzésről értesítés"
1702
 
1703
- #: ../settings/settings-edit.php:336
1704
  msgid "Reports Menu"
1705
  msgstr "Jelentések"
1706
 
1707
- #: ../settings/settings-edit.php:353
1708
  msgid "Cron job URL"
1709
  msgstr "Időzítés URL-je"
1710
 
1711
- #: ../settings/settings-edit.php:354
1712
  msgid ""
1713
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1714
  "modify it."
1715
  msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1716
 
1717
- #: ../settings/settings-edit.php:363
1718
  msgid "Email Count"
1719
  msgstr "E-mail számláló."
1720
 
1721
- #: ../settings/settings-edit.php:364
1722
  msgid "Number of emails that you want to trigger per hour."
1723
  msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
1724
 
1725
- #: ../settings/settings-edit.php:385
1726
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1727
  msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1728
 
1729
- #: ../settings/settings-edit.php:504
1730
  msgid "Please enter sender of notifications from name."
1731
  msgstr "Az értesítőlevél feladójának neve"
1732
 
1733
- #: ../settings/settings-edit.php:509
1734
  msgid "Please enter sender of notifications from email."
1735
  msgstr "Az értesítőlevél levél feladójának e-mail címe"
1736
 
1737
- #: ../settings/settings-edit.php:553
1738
- msgid "Please enter valid mail count."
1739
- msgstr "Kérem, hogy egy számot írjon be!"
1740
-
1741
- #: ../settings/settings-edit.php:566
1742
  msgid "Settings Saved."
1743
  msgstr "Sikeres mentés"
1744
 
1745
- #: ../settings/settings-edit.php:569
1746
  msgid "Oops, unable to update."
1747
  msgstr "Nem sikerült menteni. "
1748
 
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"
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
 
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 "
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 ""
559
  "directly in the list."
560
  msgstr ""
561
 
562
+ #: ../settings/settings-edit.php:118
563
  msgid ""
564
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
565
  "Emails."
566
  msgstr ""
567
 
568
+ #: ../settings/settings-edit.php:137
569
  msgid "Notify Admin when a new subscriber signs up"
570
  msgstr ""
571
 
572
+ #: ../settings/settings-edit.php:150
573
  msgid "Admin Email Subject on new subscriber sign up"
574
  msgstr ""
575
 
576
+ #: ../settings/settings-edit.php:151
577
  msgid ""
578
  "Subject for the admin email whenever a new subscriber signs up and is "
579
  "confirmed."
580
  msgstr ""
581
 
582
+ #: ../settings/settings-edit.php:157
583
  msgid "Admin Email Content on new subscriber signs up"
584
  msgstr ""
585
 
586
+ #: ../settings/settings-edit.php:158
587
  msgid ""
588
  "Content for the admin email whenever a new subscriber signs up and is "
589
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
590
  msgstr ""
591
 
592
+ #: ../settings/settings-edit.php:166
593
  msgid "Subject for the email report which will be sent to admin."
594
  msgstr ""
595
 
596
+ #: ../settings/settings-edit.php:173
597
  msgid ""
598
  "Content for the email report which will be sent to admin.<br />Available "
599
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
600
  msgstr ""
601
 
602
+ #: ../settings/settings-edit.php:184
603
  msgid "Double Opt-In Email Subject (Confirmation Email)"
604
  msgstr ""
605
 
606
+ #: ../settings/settings-edit.php:185
607
  msgid ""
608
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
609
  "subscriber signs up."
610
  msgstr ""
611
 
612
+ #: ../settings/settings-edit.php:191
613
  msgid "Double Opt-In Email Content (Confirmation Email)"
614
  msgstr ""
615
 
616
+ #: ../settings/settings-edit.php:192
617
  msgid ""
618
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
619
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
620
  msgstr ""
621
 
622
+ #: ../settings/settings-edit.php:198
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
  "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
  "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
  "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
  "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
+
747
  #: ../subscribers/view-subscriber-export.php:12
748
  msgid ""
749
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
837
  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
  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
 
985
  msgstr "Kérem egy számot adjon meg, hány e-mail? "
986
 
987
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
988
  msgctxt "widget-page-enhanced-select"
989
  msgid "Please enter email address"
990
  msgstr "KÉrem adja meg az e-mail címét!"
991
 
992
+ #: ../classes/es-register.php:259
993
  msgctxt "widget-page-enhanced-select"
994
  msgid "Successfully Subscribed."
995
  msgstr "Sikeres feliratkozás."
996
 
997
+ #: ../classes/es-register.php:261
998
  msgctxt "widget-page-enhanced-select"
999
  msgid "Email Address already exists!"
1000
  msgstr "Ilyen e-mail cím már létezik. "
1001
 
1002
+ #: ../classes/es-register.php:262
1003
  msgctxt "widget-page-enhanced-select"
1004
  msgid "Oops.. Unexpected error occurred."
1005
  msgstr "Váratlan hiba lépett fel"
1006
 
1007
+ #: ../classes/es-register.php:263
1008
  msgctxt "widget-page-enhanced-select"
1009
  msgid "Invalid email address"
1010
  msgstr "Hibás e-mail cím."
1011
 
1012
+ #: ../classes/es-register.php:264
1013
  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
  "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
 
1569
  msgid "Single Opt In"
1570
  msgstr "Visszaigazolás nélkül"
1571
 
1572
+ #: ../settings/settings-edit.php:117
1573
  msgid "Image Size"
1574
  msgstr "Képméret"
1575
 
1576
+ #: ../settings/settings-edit.php:122
1577
  msgid "Full Size"
1578
  msgstr "Teljes méretű kép"
1579
 
1580
+ #: ../settings/settings-edit.php:123
1581
  msgid "Medium Size"
1582
  msgstr "Közepes méretű kép"
1583
 
1584
+ #: ../settings/settings-edit.php:130
1585
  msgid "Admin Email Addresses"
1586
  msgstr "Az adminisztrátor e-mail címei"
1587
 
1588
+ #: ../settings/settings-edit.php:131
1589
  msgid ""
1590
  "Enter the admin email addresses that should receive notifications (separated "
1591
  "by comma)."
1593
  "Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a "
1594
  "levelek küldéséről"
1595
 
1596
+ #: ../settings/settings-edit.php:138
1597
  msgid ""
1598
  "To send admin email notifications for the new subscriber. This option must "
1599
  "be set to YES."
1601
  "Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
1602
  "állítsuk \"IGEN\"-re. "
1603
 
1604
+ #: ../settings/settings-edit.php:165
1605
  msgid "Sent Report Subject"
1606
  msgstr "A levél kiküldés értesítőlevelének tárgya"
1607
 
1608
+ #: ../settings/settings-edit.php:172
1609
  msgid "Sent Report Content"
1610
  msgstr "Az elküldött levelek értesítőlevelének tartalma"
1611
 
1612
+ #: ../settings/settings-edit.php:199
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
  "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
 
languages/email-subscribers-it_IT.mo CHANGED
Binary file
languages/email-subscribers-it_IT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\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: Wed May 23 2018 11:03:50 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"
@@ -22,24 +22,46 @@ msgstr ""
22
  "X-Generator: Loco - https://localise.biz/\n"
23
  "X-Loco-Target-Locale: it_IT"
24
 
25
- #: ../classes/es-register.php:740
26
  msgid "Check Pro plan"
27
  msgstr ""
28
 
29
- #: ../classes/es-register.php:778
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:779
36
  msgid "Steps to enable"
37
  msgstr ""
38
 
39
- #: ../classes/es-register.php:779
40
  msgid "Ok, got it"
41
  msgstr ""
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  #: ../help/help.php:197
44
  msgid ""
45
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
@@ -96,6 +118,10 @@ msgid ""
96
  "deleted too and email will not be sent."
97
  msgstr ""
98
 
 
 
 
 
99
  #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
100
  #: import.php:129
101
  msgid " to view details."
@@ -145,22 +171,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
145
  msgid "<span style=\"color:#993399;\">Immediately</span>"
146
  msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
147
 
148
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
149
- #: subscribers/view-subscriber-show.php:289
150
- msgid "Name"
151
- msgstr "Nome"
152
-
153
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
154
- msgid "Email *"
155
- msgstr "Email *"
156
-
157
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
158
- #: php:202
159
- msgid "Subscribe"
160
- msgstr "Iscriviti"
161
-
162
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
163
- #: register.php:839
164
  msgid "Email Subscribers"
165
  msgstr "Email Iscritti"
166
 
@@ -170,7 +182,7 @@ msgid "Subscribers"
170
  msgstr "Iscritti"
171
 
172
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
173
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
174
  msgid "Templates"
175
  msgstr "Modelli"
176
 
@@ -180,7 +192,7 @@ msgid "Post Notifications"
180
  msgstr "Notifiche Post"
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:324
184
  msgid "Newsletters"
185
  msgstr "Newsletter"
186
 
@@ -330,57 +342,16 @@ msgid "Please enter the mail count, only number."
330
  msgstr "Inserisci il numero di email, solo numeri."
331
 
332
  #: ../classes/es-register.php:258
333
- msgctxt "widget-enhanced-select"
334
- msgid "Please enter email address"
335
- msgstr "Inserisci l'indirizzo email"
336
-
337
- #: ../classes/es-register.php:259
338
- msgctxt "widget-enhanced-select"
339
- msgid "Successfully Subscribed."
340
- msgstr "Iscritto con successo"
341
-
342
- #: ../classes/es-register.php:260
343
- msgctxt "widget-enhanced-select"
344
- msgid ""
345
- "Your subscription was successful! Kindly check your mailbox and confirm your "
346
- "subscription. If you don't see the email within a few minutes, check the "
347
- "spam/junk folder."
348
- msgstr ""
349
- "La tua iscrizione ha avuto successo! Si prega di controllare la tua casella "
350
- "di posta e confermare l'abbonamento. Se non vedi l'email entro pochi minuti, "
351
- "controlla la cartella spam / junk."
352
-
353
- #: ../classes/es-register.php:261
354
- msgctxt "widget-enhanced-select"
355
- msgid "Email Address already exists!"
356
- msgstr "Questo indirizzo email è già presente !"
357
-
358
- #: ../classes/es-register.php:262
359
- msgctxt "widget-enhanced-select"
360
- msgid "Oops.. Unexpected error occurred."
361
- msgstr "Oops... Si è verificato un errore inatteso."
362
-
363
- #: ../classes/es-register.php:263
364
- msgctxt "widget-enhanced-select"
365
- msgid "Invalid email address"
366
- msgstr "Indirizzo email non valido"
367
-
368
- #: ../classes/es-register.php:264
369
- msgctxt "widget-enhanced-select"
370
- msgid "Please try after some time"
371
- msgstr "Per favore riprova tra qualche minuto"
372
-
373
- #: ../classes/es-register.php:272
374
  msgctxt "widget-page-enhanced-select"
375
  msgid "Please enter email address"
376
  msgstr "Inserisci l'indirizzo email"
377
 
378
- #: ../classes/es-register.php:273
379
  msgctxt "widget-page-enhanced-select"
380
  msgid "Successfully Subscribed."
381
  msgstr "Iscritto con successo."
382
 
383
- #: ../classes/es-register.php:274
384
  msgctxt "widget-page-enhanced-select"
385
  msgid ""
386
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -391,27 +362,27 @@ msgstr ""
391
  "di posta e confermare l'abbonamento. Se non vedi l'email entro pochi minuti, "
392
  "controlla la cartella spam / junk."
393
 
394
- #: ../classes/es-register.php:275
395
  msgctxt "widget-page-enhanced-select"
396
  msgid "Email Address already exists!"
397
  msgstr "Questo indirizzo email è già presente !"
398
 
399
- #: ../classes/es-register.php:276
400
  msgctxt "widget-page-enhanced-select"
401
  msgid "Oops.. Unexpected error occurred."
402
  msgstr "Oops... Si è verificato un errore inatteso."
403
 
404
- #: ../classes/es-register.php:277
405
  msgctxt "widget-page-enhanced-select"
406
  msgid "Invalid email address"
407
  msgstr "Indirizzo email non valido"
408
 
409
- #: ../classes/es-register.php:278
410
  msgctxt "widget-page-enhanced-select"
411
  msgid "Please try after some time"
412
  msgstr "Per favore riprova tra qualche minuto"
413
 
414
- #: ../classes/es-register.php:739
415
  msgid ""
416
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
417
  "subscribers list?</b> Come check our Pro plan."
@@ -420,11 +391,11 @@ msgstr ""
420
  "<b>mantenere pulita la tua lista degli iscritti ?</b> Guarda i nostri piani "
421
  "Pro."
422
 
423
- #: ../classes/es-register.php:740
424
  msgid "Not interested."
425
  msgstr "Non sono interessato."
426
 
427
- #: ../classes/es-register.php:804
428
  msgid ""
429
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
430
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -436,123 +407,121 @@ msgstr ""
436
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
437
  "&#9733;&#9733;&#9733;&#9733;</a>. Molte grazie in anticipo da Icegram !"
438
 
439
- #: ../classes/es-register.php:818
440
  #, php-format
441
  msgid "Email Subscribers version: <strong>%s</strong>"
442
  msgstr "Email Subscribers versione: <strong>%s</strong>"
443
 
444
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
445
  msgid "Add new Template"
446
  msgstr "Aggiungi nuovo Modello"
447
 
448
- #: ../classes/es-register.php:831
449
  msgid "Edit Templates"
450
  msgstr "Modifica Modello"
451
 
452
- #: ../classes/es-register.php:832
453
  msgid "New Templates"
454
  msgstr "Nuovo Modello"
455
 
456
- #: ../classes/es-register.php:834
457
  msgid "View Templates"
458
  msgstr "Visualizza Modelli"
459
 
460
- #: ../classes/es-register.php:835
461
  msgid "Search Templates"
462
  msgstr "Ricerca Modelli"
463
 
464
- #: ../classes/es-register.php:836
465
  msgid "No Templates found"
466
  msgstr "Nessun Modello trovato"
467
 
468
- #: ../classes/es-register.php:837
469
  msgid "No Templates found in Trash"
470
  msgstr "Nessun Modello trovato nel Cestino"
471
 
472
- #: ../classes/es-register.php:840
473
  msgid "Thumbnail (For Visual Representation only)"
474
  msgstr "Miniature (solo per rappresentazione visuale)"
475
 
476
- #: ../classes/es-register.php:841
477
  msgid "Set thumbnail"
478
  msgstr "Configura minuature"
479
 
480
- #: ../classes/es-register.php:878
481
  msgid "Template Type"
482
  msgstr "Tipo Modello"
483
 
484
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
485
  msgid "Thumbnail"
486
  msgstr "Miniatura"
487
 
488
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
489
  #: sentmail/sentmail-show.php:121
490
  msgid "Preview"
491
  msgstr "Anteprima"
492
 
493
- #: ../classes/es-register.php:944
494
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
495
- msgstr "Parole Chiave disponibili per la Notifica dei Post: {{POSTTITLE}}"
496
-
497
- #: ../classes/es-register.php:947
498
  msgid "Select your Email Template Type"
499
  msgstr "Seleziona il tipo di Modello Email"
500
 
501
- #: ../classes/es-register.php:949
502
  msgid "Newsletter"
503
  msgstr "Newsletter"
504
 
505
- #: ../classes/es-register.php:950
506
  msgid "Post Notification"
507
  msgstr "Notifica Post"
508
 
509
- #: ../classes/es-register.php:997
510
  msgid "Preview Template"
511
  msgstr "Anteprima Modello"
512
 
513
- #: ../classes/es-register.php:1011
514
- #, php-format
515
- msgid ""
516
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
517
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
518
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
519
- msgstr ""
520
- "%s per Notifiche Post: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
521
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
522
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
523
-
524
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
525
  msgid "Available Keywords"
526
  msgstr "Parole Chiave disponibili"
527
 
528
- #: ../classes/es-register.php:1012
529
  #, php-format
530
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
531
  msgstr "<br/><br/>%s per la Newsletter: {{NAME}}, {{EMAIL}}"
532
 
533
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
534
  msgid "Widget Title"
535
  msgstr "Titolo del Widget"
536
 
537
- #: ../classes/es-register.php:1153
538
  msgid "Short description about subscription form"
539
  msgstr "Breve descrizione per il modulo di iscrizione"
540
 
541
- #: ../classes/es-register.php:1157
542
  msgid "Display Name Field"
543
  msgstr "Campo Visualizza Nome"
544
 
545
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
546
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
547
  msgid "YES"
548
  msgstr "SI"
549
 
550
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
551
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
552
  msgid "NO"
553
  msgstr "NO"
554
 
555
- #: ../classes/es-register.php:1164
556
  msgid "Subscriber Group"
557
  msgstr "Gruppo Iscritti"
558
 
@@ -1443,11 +1412,11 @@ msgstr "Doppio Opt In"
1443
  msgid "Single Opt In"
1444
  msgstr "Singolo Opt In"
1445
 
1446
- #: ../settings/settings-edit.php:116
1447
  msgid "Image Size"
1448
  msgstr "Dimesioni immagine"
1449
 
1450
- #: ../settings/settings-edit.php:117
1451
  msgid ""
1452
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1453
  "Emails."
@@ -1455,19 +1424,19 @@ msgstr ""
1455
  "Seleziona la dimensione dell'immagine per {{POSTIMAGE}} che deve essere "
1456
  "visualizzatanelle email di notifica di pubblicazione articoli."
1457
 
1458
- #: ../settings/settings-edit.php:121
1459
  msgid "Full Size"
1460
  msgstr "Dimensione intera"
1461
 
1462
- #: ../settings/settings-edit.php:122
1463
  msgid "Medium Size"
1464
  msgstr "Dimensione media"
1465
 
1466
- #: ../settings/settings-edit.php:129
1467
  msgid "Admin Email Addresses"
1468
  msgstr "Indirizzo email amministratore"
1469
 
1470
- #: ../settings/settings-edit.php:130
1471
  msgid ""
1472
  "Enter the admin email addresses that should receive notifications (separated "
1473
  "by comma)."
@@ -1475,11 +1444,11 @@ msgstr ""
1475
  "Inserisci gli indirizzi email dell'amministratore che devono ricevere le "
1476
  "notifiche (separati da virgola)"
1477
 
1478
- #: ../settings/settings-edit.php:136
1479
  msgid "Notify Admin when a new subscriber signs up"
1480
  msgstr "Informa l'Amministratore quando si iscrive un nuovo utente"
1481
 
1482
- #: ../settings/settings-edit.php:137
1483
  msgid ""
1484
  "To send admin email notifications for the new subscriber. This option must "
1485
  "be set to YES."
@@ -1487,11 +1456,11 @@ msgstr ""
1487
  "Per inviare all'admin la notifica di un nuovo iscritto. Questa opzione deve "
1488
  "essere su SI."
1489
 
1490
- #: ../settings/settings-edit.php:149
1491
  msgid "Admin Email Subject on new subscriber sign up"
1492
  msgstr "Oggetto dell'email all'Amministratore quando c'è una nuova iscrizione"
1493
 
1494
- #: ../settings/settings-edit.php:150
1495
  msgid ""
1496
  "Subject for the admin email whenever a new subscriber signs up and is "
1497
  "confirmed."
@@ -1499,11 +1468,11 @@ msgstr ""
1499
  "Oggetto dell'email all'Amministrazione quanso un utente si iscrive e "
1500
  "conferma."
1501
 
1502
- #: ../settings/settings-edit.php:156
1503
  msgid "Admin Email Content on new subscriber signs up"
1504
  msgstr "Contenuto della mail all'Amministratore quando si iscrive un utente."
1505
 
1506
- #: ../settings/settings-edit.php:157
1507
  msgid ""
1508
  "Content for the admin email whenever a new subscriber signs up and is "
1509
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
@@ -1511,19 +1480,19 @@ msgstr ""
1511
  "Contenuto della mail all'Amministratore quando un utente si iscrive e "
1512
  "conferma. <br />Parole chiave disponibili: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1513
 
1514
- #: ../settings/settings-edit.php:164
1515
  msgid "Sent Report Subject"
1516
  msgstr "Oggetto del report inviato"
1517
 
1518
- #: ../settings/settings-edit.php:165
1519
  msgid "Subject for the email report which will be sent to admin."
1520
  msgstr "Oggetto dell'email di report che viene inviata all'Amministratore."
1521
 
1522
- #: ../settings/settings-edit.php:171
1523
  msgid "Sent Report Content"
1524
  msgstr "Contenuto del Report"
1525
 
1526
- #: ../settings/settings-edit.php:172
1527
  msgid ""
1528
  "Content for the email report which will be sent to admin.<br />Available "
1529
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
@@ -1532,11 +1501,11 @@ msgstr ""
1532
  "/>Parole chiave disponibili: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1533
  "{{ENDTIME}}"
1534
 
1535
- #: ../settings/settings-edit.php:183
1536
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1537
  msgstr "Oggetto email per il Doppio Opt-In (email di conferma)"
1538
 
1539
- #: ../settings/settings-edit.php:184
1540
  msgid ""
1541
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1542
  "subscriber signs up."
@@ -1544,11 +1513,11 @@ msgstr ""
1544
  "Oggetto dell'email di conferma che viene inviata all'iscritto in caso di "
1545
  "Doppio Opt-In."
1546
 
1547
- #: ../settings/settings-edit.php:190
1548
  msgid "Double Opt-In Email Content (Confirmation Email)"
1549
  msgstr "Contenuto dell'email Doppio Opt-In (email di conferma)"
1550
 
1551
- #: ../settings/settings-edit.php:191
1552
  msgid ""
1553
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1554
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
@@ -1556,15 +1525,15 @@ msgstr ""
1556
  "Contenuto dell'email di conferma che viene inviato all'iscritto in caso di "
1557
  "Doppio Opt-In.<br />Parole chiave disponibili: {{NAME}}, {{LINK}}"
1558
 
1559
- #: ../settings/settings-edit.php:197
1560
  msgid "Double Opt-In Confirmation Link"
1561
  msgstr "Link di conferma per Doppio Opt-In"
1562
 
1563
- #: ../settings/settings-edit.php:198
1564
  msgid "It is a readonly field and you are advised not to modify it."
1565
  msgstr "E' un campo a sola lettura e non lo puoi modificare."
1566
 
1567
- #: ../settings/settings-edit.php:204
1568
  msgid ""
1569
  "Text to display after an email address is successfully subscribed from "
1570
  "Double Opt-In (Confirmation) Email"
@@ -1572,7 +1541,7 @@ msgstr ""
1572
  "Testo da visualizzare dopo che un indirizzo email iscritto con Doppio Opt-In "
1573
  "(Conferma) è stato confermato"
1574
 
1575
- #: ../settings/settings-edit.php:205
1576
  msgid ""
1577
  "This text will be displayed once user clicks on email confirmation link from "
1578
  "the Double Opt In (confirmation) Email."
@@ -1580,11 +1549,11 @@ msgstr ""
1580
  "Questo testo viene visualizzato dopo che l'utente ha clicca sul link della "
1581
  "email ricevuta per il Doppio Opt-In."
1582
 
1583
- #: ../settings/settings-edit.php:212
1584
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1585
  msgstr "Invia messaggio di benvenuto dopo che l'utente si è iscritto ?"
1586
 
1587
- #: ../settings/settings-edit.php:213
1588
  msgid ""
1589
  "To send welcome email to subscriber after successful signup. This option "
1590
  "must be set to YES."
@@ -1592,11 +1561,11 @@ msgstr ""
1592
  "Per inviare una mail di benventuo dopo che l'utente si è iscritto. Questa "
1593
  "opzione deve essere su SI."
1594
 
1595
- #: ../settings/settings-edit.php:224
1596
  msgid "Subject for Welcome Email"
1597
  msgstr "Oggetto per l'email di benvenuto"
1598
 
1599
- #: ../settings/settings-edit.php:225
1600
  msgid ""
1601
  "Subject for the subscriber welcome email. This will be sent whenever a "
1602
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1606,11 +1575,11 @@ msgstr ""
1606
  "l'utente ha confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto "
1607
  "(Singolo Opt-In)."
1608
 
1609
- #: ../settings/settings-edit.php:231
1610
  msgid "Email Content for Welcome Email"
1611
  msgstr "Contenuto dell'email di benvenuto"
1612
 
1613
- #: ../settings/settings-edit.php:232
1614
  msgid ""
1615
  "Content for the subscriber welcome email whenever a user's email is either "
1616
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1620,11 +1589,11 @@ msgstr ""
1620
  "confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto (se Singolo "
1621
  "Opt-In)."
1622
 
1623
- #: ../settings/settings-edit.php:240
1624
  msgid "Unsubscribe Link"
1625
  msgstr "Link di cancellazione"
1626
 
1627
- #: ../settings/settings-edit.php:241
1628
  msgid ""
1629
  "This unsubscribe link is automatically added to all the emails that are sent "
1630
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1634,11 +1603,11 @@ msgstr ""
1634
  "inviate con questo plugin. E' un campo a sola lettura e non può essere "
1635
  "modificato."
1636
 
1637
- #: ../settings/settings-edit.php:247
1638
  msgid "Unsubscribe Text in Email"
1639
  msgstr "Testo Cancellazione nella mail"
1640
 
1641
- #: ../settings/settings-edit.php:248
1642
  msgid ""
1643
  "The text for the unsubscribe link. This text is automatically added with "
1644
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1646,11 +1615,11 @@ msgstr ""
1646
  "Il testo per il link di cancellazione. Questo testo viene aggiunto "
1647
  "automaticamente alle email.<br />Parole Chiave disponibili: {{LINK}}"
1648
 
1649
- #: ../settings/settings-edit.php:254
1650
  msgid "Text to display after an email address is unsubscribed"
1651
  msgstr "Testo da visualizzare dopo che l'indirizzo email è stato disiscritto"
1652
 
1653
- #: ../settings/settings-edit.php:255
1654
  msgid ""
1655
  "This text will be displayed once user clicks on unsubscribe link from the "
1656
  "email."
@@ -1658,11 +1627,11 @@ msgstr ""
1658
  "Questo testo viene visualizzato quando l'utente clicca sul link di "
1659
  "cancellazione."
1660
 
1661
- #: ../settings/settings-edit.php:262
1662
  msgid "Error in the Subscribe / Confirmation Link"
1663
  msgstr "Errore nel link di Cancellazione/Conferma"
1664
 
1665
- #: ../settings/settings-edit.php:263
1666
  msgid ""
1667
  "Default message to display if there is any issue while clicking on subscribe "
1668
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1670,11 +1639,11 @@ msgstr ""
1670
  "Messaggio standard da visualizzare se si verifica un problema nel link di "
1671
  "Conferma / Cancellazione presente nella email in caso di Doppio Opt-In."
1672
 
1673
- #: ../settings/settings-edit.php:269
1674
  msgid "Error in the Unsubscribe Link"
1675
  msgstr "Errore nel link di Cancellazione"
1676
 
1677
- #: ../settings/settings-edit.php:270
1678
  msgid ""
1679
  "Default message to display if there is any issue while clicking on "
1680
  "unsubscribe link from the emails."
@@ -1682,51 +1651,51 @@ msgstr ""
1682
  "Messaggio standard da visualizzare se si verifica un problema nel link di "
1683
  "cancellazione presente nelle email. "
1684
 
1685
- #: ../settings/settings-edit.php:282
1686
  msgid "Select user roles who can access following menus. Only Admin can change this."
1687
  msgstr ""
1688
  "Seleziona il ruolo degli utenti che hanno accesso ai menu. Solo "
1689
  "l'Amministratore può modificare questo."
1690
 
1691
- #: ../settings/settings-edit.php:288
1692
  msgid "Subscribers Menu"
1693
  msgstr "Menu Iscritti"
1694
 
1695
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1696
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1697
- #: settings/settings-edit.php:340
1698
- msgid "Administrator Only"
1699
- msgstr "Solo Amministratore"
1700
-
1701
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1702
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1703
  #: settings/settings-edit.php:341
1704
- msgid "Administrator/Editor"
1705
- msgstr "Amministratore/Editor"
1706
 
1707
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1708
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1709
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1710
  msgid "Administrator/Editor/Author/Contributor"
1711
  msgstr "Amministratore/Editor/Autore/Contributore"
1712
 
1713
- #: ../settings/settings-edit.php:300
1714
  msgid "Templates Menu"
1715
  msgstr "Menu Modelli"
1716
 
1717
- #: ../settings/settings-edit.php:312
1718
  msgid "Post Notifications Menu"
1719
  msgstr "Menu Notifiche Post"
1720
 
1721
- #: ../settings/settings-edit.php:336
1722
  msgid "Reports Menu"
1723
  msgstr "Menu Rapporti"
1724
 
1725
- #: ../settings/settings-edit.php:353
1726
  msgid "Cron job URL"
1727
  msgstr "URL del Cron Job"
1728
 
1729
- #: ../settings/settings-edit.php:354
1730
  msgid ""
1731
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1732
  "modify it."
@@ -1734,23 +1703,23 @@ msgstr ""
1734
  "Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
1735
  "essere modificato."
1736
 
1737
- #: ../settings/settings-edit.php:363
1738
  msgid "Email Count"
1739
  msgstr "Numero di Email"
1740
 
1741
- #: ../settings/settings-edit.php:364
1742
  msgid "Number of emails that you want to trigger per hour."
1743
  msgstr "Nuomero di email che vuoi spedire all'ora."
1744
 
1745
- #: ../settings/settings-edit.php:369
1746
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1747
  msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
1748
 
1749
- #: ../settings/settings-edit.php:374
1750
  msgid "Cron Report"
1751
  msgstr "Rapporto del Cron"
1752
 
1753
- #: ../settings/settings-edit.php:375
1754
  msgid ""
1755
  "Email to admin whenever a cron URL is triggered from your server.<br "
1756
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1758,11 +1727,11 @@ msgstr ""
1758
  "Invia email all'Amministratore quando un cron viene gestito dal server<br />."
1759
  " Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1760
 
1761
- #: ../settings/settings-edit.php:385
1762
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1763
  msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
1764
 
1765
- #: ../settings/settings-edit.php:386
1766
  msgid ""
1767
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1768
  "schedule-cron-emails/?"
@@ -1774,7 +1743,7 @@ msgstr ""
1774
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
1775
  "Cron?</a>"
1776
 
1777
- #: ../settings/settings-edit.php:387
1778
  msgid ""
1779
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1780
  "schedule-cron-emails-in-cpanel/?"
@@ -1786,7 +1755,7 @@ msgstr ""
1786
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1787
  "un cron job in cPanel</a>"
1788
 
1789
- #: ../settings/settings-edit.php:388
1790
  msgid ""
1791
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1792
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1798,7 +1767,7 @@ msgstr ""
1798
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1799
  "un cron job in Plesk</a>"
1800
 
1801
- #: ../settings/settings-edit.php:389
1802
  msgid ""
1803
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1804
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1810,23 +1779,19 @@ msgstr ""
1810
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
1811
  "Hosting non supporta i cron job ?</a>"
1812
 
1813
- #: ../settings/settings-edit.php:504
1814
  msgid "Please enter sender of notifications from name."
1815
  msgstr "Inserisci il nome del mittente delle notifiche."
1816
 
1817
- #: ../settings/settings-edit.php:509
1818
  msgid "Please enter sender of notifications from email."
1819
  msgstr "Inserisci l'email del mittente delle notifiche."
1820
 
1821
- #: ../settings/settings-edit.php:553
1822
- msgid "Please enter valid mail count."
1823
- msgstr "Inserisci un numero valido di email."
1824
-
1825
- #: ../settings/settings-edit.php:566
1826
  msgid "Settings Saved."
1827
  msgstr "Configurazione salvata."
1828
 
1829
- #: ../settings/settings-edit.php:569
1830
  msgid "Oops, unable to update."
1831
  msgstr "Oops, impossibile aggiornare."
1832
 
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"
22
  "X-Generator: Loco - https://localise.biz/\n"
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}}, "
56
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
64
+
65
  #: ../help/help.php:197
66
  msgid ""
67
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
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
+
125
  #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
126
  #: import.php:129
127
  msgid " to view details."
171
  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
  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
  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
 
342
  msgstr "Inserisci il numero di email, solo numeri."
343
 
344
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  msgctxt "widget-page-enhanced-select"
346
  msgid "Please enter email address"
347
  msgstr "Inserisci l'indirizzo email"
348
 
349
+ #: ../classes/es-register.php:259
350
  msgctxt "widget-page-enhanced-select"
351
  msgid "Successfully Subscribed."
352
  msgstr "Iscritto con successo."
353
 
354
+ #: ../classes/es-register.php:260
355
  msgctxt "widget-page-enhanced-select"
356
  msgid ""
357
  "Your subscription was successful! Kindly check your mailbox and confirm your "
362
  "di posta e confermare l'abbonamento. Se non vedi l'email entro pochi minuti, "
363
  "controlla la cartella spam / junk."
364
 
365
+ #: ../classes/es-register.php:261
366
  msgctxt "widget-page-enhanced-select"
367
  msgid "Email Address already exists!"
368
  msgstr "Questo indirizzo email è già presente !"
369
 
370
+ #: ../classes/es-register.php:262
371
  msgctxt "widget-page-enhanced-select"
372
  msgid "Oops.. Unexpected error occurred."
373
  msgstr "Oops... Si è verificato un errore inatteso."
374
 
375
+ #: ../classes/es-register.php:263
376
  msgctxt "widget-page-enhanced-select"
377
  msgid "Invalid email address"
378
  msgstr "Indirizzo email non valido"
379
 
380
+ #: ../classes/es-register.php:264
381
  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."
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
  "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
 
1412
  msgid "Single Opt In"
1413
  msgstr "Singolo Opt In"
1414
 
1415
+ #: ../settings/settings-edit.php:117
1416
  msgid "Image Size"
1417
  msgstr "Dimesioni immagine"
1418
 
1419
+ #: ../settings/settings-edit.php:118
1420
  msgid ""
1421
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1422
  "Emails."
1424
  "Seleziona la dimensione dell'immagine per {{POSTIMAGE}} che deve essere "
1425
  "visualizzatanelle email di notifica di pubblicazione articoli."
1426
 
1427
+ #: ../settings/settings-edit.php:122
1428
  msgid "Full Size"
1429
  msgstr "Dimensione intera"
1430
 
1431
+ #: ../settings/settings-edit.php:123
1432
  msgid "Medium Size"
1433
  msgstr "Dimensione media"
1434
 
1435
+ #: ../settings/settings-edit.php:130
1436
  msgid "Admin Email Addresses"
1437
  msgstr "Indirizzo email amministratore"
1438
 
1439
+ #: ../settings/settings-edit.php:131
1440
  msgid ""
1441
  "Enter the admin email addresses that should receive notifications (separated "
1442
  "by comma)."
1444
  "Inserisci gli indirizzi email dell'amministratore che devono ricevere le "
1445
  "notifiche (separati da virgola)"
1446
 
1447
+ #: ../settings/settings-edit.php:137
1448
  msgid "Notify Admin when a new subscriber signs up"
1449
  msgstr "Informa l'Amministratore quando si iscrive un nuovo utente"
1450
 
1451
+ #: ../settings/settings-edit.php:138
1452
  msgid ""
1453
  "To send admin email notifications for the new subscriber. This option must "
1454
  "be set to YES."
1456
  "Per inviare all'admin la notifica di un nuovo iscritto. Questa opzione deve "
1457
  "essere su SI."
1458
 
1459
+ #: ../settings/settings-edit.php:150
1460
  msgid "Admin Email Subject on new subscriber sign up"
1461
  msgstr "Oggetto dell'email all'Amministratore quando c'è una nuova iscrizione"
1462
 
1463
+ #: ../settings/settings-edit.php:151
1464
  msgid ""
1465
  "Subject for the admin email whenever a new subscriber signs up and is "
1466
  "confirmed."
1468
  "Oggetto dell'email all'Amministrazione quanso un utente si iscrive e "
1469
  "conferma."
1470
 
1471
+ #: ../settings/settings-edit.php:157
1472
  msgid "Admin Email Content on new subscriber signs up"
1473
  msgstr "Contenuto della mail all'Amministratore quando si iscrive un utente."
1474
 
1475
+ #: ../settings/settings-edit.php:158
1476
  msgid ""
1477
  "Content for the admin email whenever a new subscriber signs up and is "
1478
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1480
  "Contenuto della mail all'Amministratore quando un utente si iscrive e "
1481
  "conferma. <br />Parole chiave disponibili: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1482
 
1483
+ #: ../settings/settings-edit.php:165
1484
  msgid "Sent Report Subject"
1485
  msgstr "Oggetto del report inviato"
1486
 
1487
+ #: ../settings/settings-edit.php:166
1488
  msgid "Subject for the email report which will be sent to admin."
1489
  msgstr "Oggetto dell'email di report che viene inviata all'Amministratore."
1490
 
1491
+ #: ../settings/settings-edit.php:172
1492
  msgid "Sent Report Content"
1493
  msgstr "Contenuto del Report"
1494
 
1495
+ #: ../settings/settings-edit.php:173
1496
  msgid ""
1497
  "Content for the email report which will be sent to admin.<br />Available "
1498
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1501
  "/>Parole chiave disponibili: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1502
  "{{ENDTIME}}"
1503
 
1504
+ #: ../settings/settings-edit.php:184
1505
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1506
  msgstr "Oggetto email per il Doppio Opt-In (email di conferma)"
1507
 
1508
+ #: ../settings/settings-edit.php:185
1509
  msgid ""
1510
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1511
  "subscriber signs up."
1513
  "Oggetto dell'email di conferma che viene inviata all'iscritto in caso di "
1514
  "Doppio Opt-In."
1515
 
1516
+ #: ../settings/settings-edit.php:191
1517
  msgid "Double Opt-In Email Content (Confirmation Email)"
1518
  msgstr "Contenuto dell'email Doppio Opt-In (email di conferma)"
1519
 
1520
+ #: ../settings/settings-edit.php:192
1521
  msgid ""
1522
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1523
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1525
  "Contenuto dell'email di conferma che viene inviato all'iscritto in caso di "
1526
  "Doppio Opt-In.<br />Parole chiave disponibili: {{NAME}}, {{LINK}}"
1527
 
1528
+ #: ../settings/settings-edit.php:198
1529
  msgid "Double Opt-In Confirmation Link"
1530
  msgstr "Link di conferma per Doppio Opt-In"
1531
 
1532
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
 
languages/email-subscribers-nb_NO.mo CHANGED
Binary file
languages/email-subscribers-nb_NO.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\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: Wed May 23 2018 11:03:37 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"
@@ -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:827 ../classes/es-register.php:828 ../classes/es-register.php:833
27
  msgid "Templates"
28
  msgstr ""
29
 
@@ -40,14 +40,6 @@ msgid "Please select notification mail subject. Use templates menu to create new
40
  msgstr ""
41
 
42
  #: ../classes/es-register.php:260
43
- msgctxt "widget-enhanced-select"
44
- msgid ""
45
- "Your subscription was successful! Kindly check your mailbox and confirm your "
46
- "subscription. If you don't see the email within a few minutes, check the "
47
- "spam/junk folder."
48
- msgstr ""
49
-
50
- #: ../classes/es-register.php:274
51
  msgctxt "widget-page-enhanced-select"
52
  msgid ""
53
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -55,104 +47,114 @@ msgid ""
55
  "spam/junk folder."
56
  msgstr ""
57
 
58
- #: ../classes/es-register.php:739
59
  msgid ""
60
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
61
  "subscribers list?</b> Come check our Pro plan."
62
  msgstr ""
63
 
64
- #: ../classes/es-register.php:740
65
  msgid "Check Pro plan"
66
  msgstr ""
67
 
68
- #: ../classes/es-register.php:740
69
  msgid "Not interested."
70
  msgstr ""
71
 
72
- #: ../classes/es-register.php:778
73
  msgid ""
74
  "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
75
  "Checkbox' in the subscription form.</b>"
76
  msgstr ""
77
 
78
- #: ../classes/es-register.php:779
79
  msgid "Steps to enable"
80
  msgstr ""
81
 
82
- #: ../classes/es-register.php:779
83
  msgid "Ok, got it"
84
  msgstr ""
85
 
86
- #: ../classes/es-register.php:818
87
  #, php-format
88
  msgid "Email Subscribers version: <strong>%s</strong>"
89
  msgstr ""
90
 
91
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
92
  msgid "Add new Template"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:831
96
  msgid "Edit Templates"
97
  msgstr ""
98
 
99
- #: ../classes/es-register.php:832
100
  msgid "New Templates"
101
  msgstr ""
102
 
103
- #: ../classes/es-register.php:834
104
  msgid "View Templates"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:835
108
  msgid "Search Templates"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:836
112
  msgid "No Templates found"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:837
116
  msgid "No Templates found in Trash"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:840
120
  msgid "Thumbnail (For Visual Representation only)"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:841
124
  msgid "Set thumbnail"
125
  msgstr ""
126
 
127
- #: ../classes/es-register.php:878
128
  msgid "Template Type"
129
  msgstr ""
130
 
131
- #: ../classes/es-register.php:944
132
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
 
 
 
133
  msgstr ""
134
 
135
- #: ../classes/es-register.php:947
136
  msgid "Select your Email Template Type"
137
  msgstr ""
138
 
139
- #: ../classes/es-register.php:997
140
  msgid "Preview Template"
141
  msgstr ""
142
 
143
- #: ../classes/es-register.php:1011
144
  #, php-format
145
  msgid ""
146
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
147
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
148
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
149
  msgstr ""
150
 
151
- #: ../classes/es-register.php:1012
152
  #, php-format
153
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
154
  msgstr ""
155
 
 
 
 
 
 
156
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
157
  msgid "Unexpected url submit has been detected!"
158
  msgstr ""
@@ -288,53 +290,57 @@ msgid ""
288
  "deleted too and email will not be sent."
289
  msgstr ""
290
 
291
- #: ../settings/settings-edit.php:117
292
  msgid ""
293
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
294
  "Emails."
295
  msgstr ""
296
 
297
- #: ../settings/settings-edit.php:157
298
  msgid ""
299
  "Content for the admin email whenever a new subscriber signs up and is "
300
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
301
  msgstr ""
302
 
303
- #: ../settings/settings-edit.php:172
304
  msgid ""
305
  "Content for the email report which will be sent to admin.<br />Available "
306
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
307
  msgstr ""
308
 
309
- #: ../settings/settings-edit.php:191
310
  msgid ""
311
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
312
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
313
  msgstr ""
314
 
315
- #: ../settings/settings-edit.php:232
316
  msgid ""
317
  "Content for the subscriber welcome email whenever a user's email is either "
318
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
319
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
320
  msgstr ""
321
 
322
- #: ../settings/settings-edit.php:248
323
  msgid ""
324
  "The text for the unsubscribe link. This text is automatically added with "
325
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
326
  msgstr ""
327
 
328
- #: ../settings/settings-edit.php:300
329
  msgid "Templates Menu"
330
  msgstr ""
331
 
332
- #: ../settings/settings-edit.php:375
333
  msgid ""
334
  "Email to admin whenever a cron URL is triggered from your server.<br "
335
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
336
  msgstr ""
337
 
 
 
 
 
338
  #: ../subscribers/view-subscriber-export.php:12
339
  msgid ""
340
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
@@ -419,22 +425,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
419
  msgid "<span style=\"color:#993399;\">Immediately</span>"
420
  msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
421
 
422
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
423
- #: subscribers/view-subscriber-show.php:289
424
- msgid "Name"
425
- msgstr "Navn"
426
-
427
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
428
- msgid "Email *"
429
- msgstr "E-post *"
430
-
431
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
432
- #: php:202
433
- msgid "Subscribe"
434
- msgstr "Abonner"
435
-
436
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
437
- #: register.php:839
438
  msgid "Email Subscribers"
439
  msgstr "Email Subscribers"
440
 
@@ -449,7 +441,7 @@ msgid "Post Notifications"
449
  msgstr "Varsler"
450
 
451
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
452
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
453
  msgid "Newsletters"
454
  msgstr "Nyhetsbrev"
455
 
@@ -583,66 +575,36 @@ msgid "Please enter the mail count, only number."
583
  msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
584
 
585
  #: ../classes/es-register.php:258
586
- msgctxt "widget-enhanced-select"
587
- msgid "Please enter email address"
588
- msgstr "Vennligst skriv e-postadresse"
589
-
590
- #: ../classes/es-register.php:259
591
- msgctxt "widget-enhanced-select"
592
- msgid "Successfully Subscribed."
593
- msgstr "Du er nå abonnent."
594
-
595
- #: ../classes/es-register.php:261
596
- msgctxt "widget-enhanced-select"
597
- msgid "Email Address already exists!"
598
- msgstr "E-postadressen finnes allerede!"
599
-
600
- #: ../classes/es-register.php:262
601
- msgctxt "widget-enhanced-select"
602
- msgid "Oops.. Unexpected error occurred."
603
- msgstr "Oops... Det oppstod en uventet feil."
604
-
605
- #: ../classes/es-register.php:263
606
- msgctxt "widget-enhanced-select"
607
- msgid "Invalid email address"
608
- msgstr "Ugyldig e-postadresse"
609
-
610
- #: ../classes/es-register.php:264
611
- msgctxt "widget-enhanced-select"
612
- msgid "Please try after some time"
613
- msgstr "Prøv på nytt senere"
614
-
615
- #: ../classes/es-register.php:272
616
  msgctxt "widget-page-enhanced-select"
617
  msgid "Please enter email address"
618
  msgstr "Vennligst skriv e-postadresse"
619
 
620
- #: ../classes/es-register.php:273
621
  msgctxt "widget-page-enhanced-select"
622
  msgid "Successfully Subscribed."
623
  msgstr "Du er nå abonnent."
624
 
625
- #: ../classes/es-register.php:275
626
  msgctxt "widget-page-enhanced-select"
627
  msgid "Email Address already exists!"
628
  msgstr "Epostadressen finnes allerede!"
629
 
630
- #: ../classes/es-register.php:276
631
  msgctxt "widget-page-enhanced-select"
632
  msgid "Oops.. Unexpected error occurred."
633
  msgstr "Oops... Det oppstod en uventet feil."
634
 
635
- #: ../classes/es-register.php:277
636
  msgctxt "widget-page-enhanced-select"
637
  msgid "Invalid email address"
638
  msgstr "Ugyldig e-postadresse"
639
 
640
- #: ../classes/es-register.php:278
641
  msgctxt "widget-page-enhanced-select"
642
  msgid "Please try after some time"
643
  msgstr "Prøv på nytt senere"
644
 
645
- #: ../classes/es-register.php:804
646
  msgid ""
647
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
648
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -654,50 +616,63 @@ msgstr ""
654
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
655
  "fra Icegram!"
656
 
657
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
658
  msgid "Thumbnail"
659
  msgstr "Miniatyrbilde"
660
 
661
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
662
  #: sentmail/sentmail-show.php:121
663
  msgid "Preview"
664
  msgstr "Forhåndsvis"
665
 
666
- #: ../classes/es-register.php:949
667
  msgid "Newsletter"
668
  msgstr "Nyhetsbrev"
669
 
670
- #: ../classes/es-register.php:950
671
  msgid "Post Notification"
672
  msgstr "Varsel"
673
 
674
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
 
675
  msgid "Available Keywords"
676
  msgstr "Tilgjengelige søkeord"
677
 
678
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
679
  msgid "Widget Title"
680
  msgstr "Widget tittel"
681
 
682
- #: ../classes/es-register.php:1153
683
  msgid "Short description about subscription form"
684
  msgstr "Kort beskrivelse av ditt abonnement skjema"
685
 
686
- #: ../classes/es-register.php:1157
687
  msgid "Display Name Field"
688
  msgstr "Vis Navnefelt"
689
 
690
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
691
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
692
  msgid "YES"
693
  msgstr "JA"
694
 
695
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
696
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
697
  msgid "NO"
698
  msgstr "NEI"
699
 
700
- #: ../classes/es-register.php:1164
701
  msgid "Subscriber Group"
702
  msgstr "Abonnent gruppe"
703
 
@@ -1481,33 +1456,33 @@ msgstr "Dobbel Opt in"
1481
  msgid "Single Opt In"
1482
  msgstr "Enkel Opt in"
1483
 
1484
- #: ../settings/settings-edit.php:116
1485
  msgid "Image Size"
1486
  msgstr "Bildestørrelse"
1487
 
1488
- #: ../settings/settings-edit.php:121
1489
  msgid "Full Size"
1490
  msgstr "Full størrelse"
1491
 
1492
- #: ../settings/settings-edit.php:122
1493
  msgid "Medium Size"
1494
  msgstr "Middel størrelse"
1495
 
1496
- #: ../settings/settings-edit.php:129
1497
  msgid "Admin Email Addresses"
1498
  msgstr "Admin e-postadresser"
1499
 
1500
- #: ../settings/settings-edit.php:130
1501
  msgid ""
1502
  "Enter the admin email addresses that should receive notifications (separated "
1503
  "by comma)."
1504
  msgstr "Angi admin e-postadressene som skal motta varsler (atskilt med komma)."
1505
 
1506
- #: ../settings/settings-edit.php:136
1507
  msgid "Notify Admin when a new subscriber signs up"
1508
  msgstr "Varsle admin når en ny abonnent registreres"
1509
 
1510
- #: ../settings/settings-edit.php:137
1511
  msgid ""
1512
  "To send admin email notifications for the new subscriber. This option must "
1513
  "be set to YES."
@@ -1515,11 +1490,11 @@ msgstr ""
1515
  "Sende admin beskjeder for nye abonnenten. Dette alternativet må være satt "
1516
  "til JA."
1517
 
1518
- #: ../settings/settings-edit.php:149
1519
  msgid "Admin Email Subject on new subscriber sign up"
1520
  msgstr "Admin e-innhold når en ny abonnent registreres"
1521
 
1522
- #: ../settings/settings-edit.php:150
1523
  msgid ""
1524
  "Subject for the admin email whenever a new subscriber signs up and is "
1525
  "confirmed."
@@ -1527,27 +1502,27 @@ msgstr ""
1527
  "Angi emnet for admin e-post. Dette vil bli sendt når en ny email er lagt til "
1528
  "og bekreftet."
1529
 
1530
- #: ../settings/settings-edit.php:156
1531
  msgid "Admin Email Content on new subscriber signs up"
1532
  msgstr "Admin e-innhold når en ny abonnent registreres"
1533
 
1534
- #: ../settings/settings-edit.php:164
1535
  msgid "Sent Report Subject"
1536
  msgstr "Sendt rapport emne"
1537
 
1538
- #: ../settings/settings-edit.php:165
1539
  msgid "Subject for the email report which will be sent to admin."
1540
  msgstr "Angi emnet for sendte e-poster rapporten. Det vil bli sendt til Admin."
1541
 
1542
- #: ../settings/settings-edit.php:171
1543
  msgid "Sent Report Content"
1544
  msgstr "Sendte rapport innhold"
1545
 
1546
- #: ../settings/settings-edit.php:183
1547
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1548
  msgstr "Double Opt i e-post emne (bekreftelses e-post)"
1549
 
1550
- #: ../settings/settings-edit.php:184
1551
  msgid ""
1552
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1553
  "subscriber signs up."
@@ -1555,19 +1530,19 @@ msgstr ""
1555
  "Angi emnet for e-postbekreftelse sendes Double Opt In når en bruker "
1556
  "registrerer seg."
1557
 
1558
- #: ../settings/settings-edit.php:190
1559
  msgid "Double Opt-In Email Content (Confirmation Email)"
1560
  msgstr "Double Opt i e-post innhold (bekreftelses e-post)"
1561
 
1562
- #: ../settings/settings-edit.php:197
1563
  msgid "Double Opt-In Confirmation Link"
1564
  msgstr "Double Opt i bekreftelses link"
1565
 
1566
- #: ../settings/settings-edit.php:198
1567
  msgid "It is a readonly field and you are advised not to modify it."
1568
  msgstr "Det er et skrivebeskyttet felt du anbefales ikke å endre den."
1569
 
1570
- #: ../settings/settings-edit.php:204
1571
  msgid ""
1572
  "Text to display after an email address is successfully subscribed from "
1573
  "Double Opt-In (Confirmation) Email"
@@ -1575,7 +1550,7 @@ msgstr ""
1575
  "Teksten som skal vises når en e-postadresse er vellykket registrert fra "
1576
  "Double Opt In (bekreftelse) e-post"
1577
 
1578
- #: ../settings/settings-edit.php:205
1579
  msgid ""
1580
  "This text will be displayed once user clicks on email confirmation link from "
1581
  "the Double Opt In (confirmation) Email."
@@ -1583,13 +1558,13 @@ msgstr ""
1583
  "Denne teksten vises når brukeren klikker på e-post bekreftelseslink fra "
1584
  "Double Opt i (bekreftelse) e-post."
1585
 
1586
- #: ../settings/settings-edit.php:212
1587
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1588
  msgstr ""
1589
  "Sende velkomst e -post til abonnenten etter vellykket registrering. Dette "
1590
  "alternativet må være satt til Ja."
1591
 
1592
- #: ../settings/settings-edit.php:213
1593
  msgid ""
1594
  "To send welcome email to subscriber after successful signup. This option "
1595
  "must be set to YES."
@@ -1597,11 +1572,11 @@ msgstr ""
1597
  "Sende velkomst e -post til abonnenten etter vellykket registrering. Dette "
1598
  "alternativet må være satt til Ja."
1599
 
1600
- #: ../settings/settings-edit.php:224
1601
  msgid "Subject for Welcome Email"
1602
  msgstr "Abonnent vellkomst E-post"
1603
 
1604
- #: ../settings/settings-edit.php:225
1605
  msgid ""
1606
  "Subject for the subscriber welcome email. This will be sent whenever a "
1607
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1611,15 +1586,15 @@ msgstr ""
1611
  "post er enten bekreftet (hvis dobbelt Opt In) / abonnert (Hvis én Opt In) "
1612
  "vellykket."
1613
 
1614
- #: ../settings/settings-edit.php:231
1615
  msgid "Email Content for Welcome Email"
1616
  msgstr "Innhold i e-posten (Velkommen e-post)"
1617
 
1618
- #: ../settings/settings-edit.php:240
1619
  msgid "Unsubscribe Link"
1620
  msgstr "Link for avmelding"
1621
 
1622
- #: ../settings/settings-edit.php:241
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,25 +1604,25 @@ msgstr ""
1629
  "fra denne plugin. Det er et skrivebeskyttet felt og du anbefales ikke å "
1630
  "endre dette."
1631
 
1632
- #: ../settings/settings-edit.php:247
1633
  msgid "Unsubscribe Text in Email"
1634
  msgstr "Avmeldings tekst i e-post"
1635
 
1636
- #: ../settings/settings-edit.php:254
1637
  msgid "Text to display after an email address is unsubscribed"
1638
  msgstr "Teksten som skal vises etter avmeldings e-posten"
1639
 
1640
- #: ../settings/settings-edit.php:255
1641
  msgid ""
1642
  "This text will be displayed once user clicks on unsubscribe link from the "
1643
  "email."
1644
  msgstr "Denne teksten vises når brukeren klikker på avmeldings linken."
1645
 
1646
- #: ../settings/settings-edit.php:262
1647
  msgid "Error in the Subscribe / Confirmation Link"
1648
  msgstr "Feil i Abonner / bekreftelse Link"
1649
 
1650
- #: ../settings/settings-edit.php:263
1651
  msgid ""
1652
  "Default message to display if there is any issue while clicking on subscribe "
1653
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1655,11 +1630,11 @@ msgstr ""
1655
  "Standardmelding som vises hvis det er alle problem mens du klikker på "
1656
  "bekreftelses link fra Double Opt In (bekreftelse) e-post."
1657
 
1658
- #: ../settings/settings-edit.php:269
1659
  msgid "Error in the Unsubscribe Link"
1660
  msgstr "Feil i avmeldings linken"
1661
 
1662
- #: ../settings/settings-edit.php:270
1663
  msgid ""
1664
  "Default message to display if there is any issue while clicking on "
1665
  "unsubscribe link from the emails."
@@ -1667,47 +1642,47 @@ msgstr ""
1667
  "Standardmelding som vises hvis det er noe problem mens du klikker på "
1668
  "avmeldings linken fra e-post."
1669
 
1670
- #: ../settings/settings-edit.php:282
1671
  msgid "Select user roles who can access following menus. Only Admin can change this."
1672
  msgstr ""
1673
  "Velg roller som kan få tilgang til følgende menyer. Bare Admin kan endre "
1674
  "dette."
1675
 
1676
- #: ../settings/settings-edit.php:288
1677
  msgid "Subscribers Menu"
1678
  msgstr "Abonnent Meny"
1679
 
1680
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1681
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1682
- #: settings/settings-edit.php:340
1683
- msgid "Administrator Only"
1684
- msgstr "Bare for administrator"
1685
-
1686
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1687
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1688
  #: settings/settings-edit.php:341
1689
- msgid "Administrator/Editor"
1690
- msgstr "Administrator/redaktør"
1691
 
1692
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1693
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1694
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1695
  msgid "Administrator/Editor/Author/Contributor"
1696
  msgstr "Administrator/redaktør/forfatter/bidragsyter"
1697
 
1698
- #: ../settings/settings-edit.php:312
1699
  msgid "Post Notifications Menu"
1700
  msgstr "Postvarsler Meny"
1701
 
1702
- #: ../settings/settings-edit.php:336
1703
  msgid "Reports Menu"
1704
  msgstr "Rapport Meny"
1705
 
1706
- #: ../settings/settings-edit.php:353
1707
  msgid "Cron job URL"
1708
  msgstr "Cron jobb URL"
1709
 
1710
- #: ../settings/settings-edit.php:354
1711
  msgid ""
1712
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1713
  "modify it."
@@ -1715,27 +1690,27 @@ msgstr ""
1715
  "Dette er din Cron jobb URL. Det er et skrivebeskyttet felt du anbefales ikke "
1716
  "å endre den."
1717
 
1718
- #: ../settings/settings-edit.php:363
1719
  msgid "Email Count"
1720
  msgstr "Antall e-poster"
1721
 
1722
- #: ../settings/settings-edit.php:364
1723
  msgid "Number of emails that you want to trigger per hour."
1724
  msgstr "Antall e-postmeldinger som skal utløses per time."
1725
 
1726
- #: ../settings/settings-edit.php:369
1727
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1728
  msgstr "(Web verten har begrensninger. Vi foreslår 50 e-poster per time sikre)"
1729
 
1730
- #: ../settings/settings-edit.php:374
1731
  msgid "Cron Report"
1732
  msgstr "Cronlogg"
1733
 
1734
- #: ../settings/settings-edit.php:385
1735
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1736
  msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
1737
 
1738
- #: ../settings/settings-edit.php:386
1739
  msgid ""
1740
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1741
  "schedule-cron-emails/?"
@@ -1745,7 +1720,7 @@ msgstr ""
1745
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1746
  "schedule-cron-emails/\">Hva er Cron?</a>"
1747
 
1748
- #: ../settings/settings-edit.php:387
1749
  msgid ""
1750
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1751
  "schedule-cron-emails-in-cpanel/?"
@@ -1757,7 +1732,7 @@ msgstr ""
1757
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Oppsett "
1758
  "cron jobb i cPanel</a>"
1759
 
1760
- #: ../settings/settings-edit.php:388
1761
  msgid ""
1762
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1763
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1767,7 +1742,7 @@ msgstr ""
1767
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1768
  "schedule-cron-emails-in-parallels-plesk/\">ISetup cron jobb i Plesk</a>"
1769
 
1770
- #: ../settings/settings-edit.php:389
1771
  msgid ""
1772
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1773
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1777,23 +1752,19 @@ msgstr ""
1777
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
1778
  "if-hosting-doesnt-support-cron-jobs/\">Host støtter ikke cron jobber?</a>"
1779
 
1780
- #: ../settings/settings-edit.php:504
1781
  msgid "Please enter sender of notifications from name."
1782
  msgstr "Angi avsenderen av meldinger fra navn."
1783
 
1784
- #: ../settings/settings-edit.php:509
1785
  msgid "Please enter sender of notifications from email."
1786
  msgstr "Angi avsenderen av meldinger fra e-post."
1787
 
1788
- #: ../settings/settings-edit.php:553
1789
- msgid "Please enter valid mail count."
1790
- msgstr "Angi gyldig e-post antall."
1791
-
1792
- #: ../settings/settings-edit.php:566
1793
  msgid "Settings Saved."
1794
  msgstr "Innstillinger Lagret."
1795
 
1796
- #: ../settings/settings-edit.php:569
1797
  msgid "Oops, unable to update."
1798
  msgstr "Oops, kan ikke oppdatere."
1799
 
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"
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
 
40
  msgstr ""
41
 
42
  #: ../classes/es-register.php:260
 
 
 
 
 
 
 
 
43
  msgctxt "widget-page-enhanced-select"
44
  msgid ""
45
  "Your subscription was successful! Kindly check your mailbox and confirm your "
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}}, "
144
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
290
  "deleted too and email will not be sent."
291
  msgstr ""
292
 
293
+ #: ../settings/settings-edit.php:118
294
  msgid ""
295
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
296
  "Emails."
297
  msgstr ""
298
 
299
+ #: ../settings/settings-edit.php:158
300
  msgid ""
301
  "Content for the admin email whenever a new subscriber signs up and is "
302
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
303
  msgstr ""
304
 
305
+ #: ../settings/settings-edit.php:173
306
  msgid ""
307
  "Content for the email report which will be sent to admin.<br />Available "
308
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
309
  msgstr ""
310
 
311
+ #: ../settings/settings-edit.php:192
312
  msgid ""
313
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
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
+
344
  #: ../subscribers/view-subscriber-export.php:12
345
  msgid ""
346
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
425
  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
  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
 
575
  msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
576
 
577
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  msgctxt "widget-page-enhanced-select"
579
  msgid "Please enter email address"
580
  msgstr "Vennligst skriv e-postadresse"
581
 
582
+ #: ../classes/es-register.php:259
583
  msgctxt "widget-page-enhanced-select"
584
  msgid "Successfully Subscribed."
585
  msgstr "Du er nå abonnent."
586
 
587
+ #: ../classes/es-register.php:261
588
  msgctxt "widget-page-enhanced-select"
589
  msgid "Email Address already exists!"
590
  msgstr "Epostadressen finnes allerede!"
591
 
592
+ #: ../classes/es-register.php:262
593
  msgctxt "widget-page-enhanced-select"
594
  msgid "Oops.. Unexpected error occurred."
595
  msgstr "Oops... Det oppstod en uventet feil."
596
 
597
+ #: ../classes/es-register.php:263
598
  msgctxt "widget-page-enhanced-select"
599
  msgid "Invalid email address"
600
  msgstr "Ugyldig e-postadresse"
601
 
602
+ #: ../classes/es-register.php:264
603
  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
  "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
 
1456
  msgid "Single Opt In"
1457
  msgstr "Enkel Opt in"
1458
 
1459
+ #: ../settings/settings-edit.php:117
1460
  msgid "Image Size"
1461
  msgstr "Bildestørrelse"
1462
 
1463
+ #: ../settings/settings-edit.php:122
1464
  msgid "Full Size"
1465
  msgstr "Full størrelse"
1466
 
1467
+ #: ../settings/settings-edit.php:123
1468
  msgid "Medium Size"
1469
  msgstr "Middel størrelse"
1470
 
1471
+ #: ../settings/settings-edit.php:130
1472
  msgid "Admin Email Addresses"
1473
  msgstr "Admin e-postadresser"
1474
 
1475
+ #: ../settings/settings-edit.php:131
1476
  msgid ""
1477
  "Enter the admin email addresses that should receive notifications (separated "
1478
  "by comma)."
1479
  msgstr "Angi admin e-postadressene som skal motta varsler (atskilt med komma)."
1480
 
1481
+ #: ../settings/settings-edit.php:137
1482
  msgid "Notify Admin when a new subscriber signs up"
1483
  msgstr "Varsle admin når en ny abonnent registreres"
1484
 
1485
+ #: ../settings/settings-edit.php:138
1486
  msgid ""
1487
  "To send admin email notifications for the new subscriber. This option must "
1488
  "be set to YES."
1490
  "Sende admin beskjeder for nye abonnenten. Dette alternativet må være satt "
1491
  "til JA."
1492
 
1493
+ #: ../settings/settings-edit.php:150
1494
  msgid "Admin Email Subject on new subscriber sign up"
1495
  msgstr "Admin e-innhold når en ny abonnent registreres"
1496
 
1497
+ #: ../settings/settings-edit.php:151
1498
  msgid ""
1499
  "Subject for the admin email whenever a new subscriber signs up and is "
1500
  "confirmed."
1502
  "Angi emnet for admin e-post. Dette vil bli sendt når en ny email er lagt til "
1503
  "og bekreftet."
1504
 
1505
+ #: ../settings/settings-edit.php:157
1506
  msgid "Admin Email Content on new subscriber signs up"
1507
  msgstr "Admin e-innhold når en ny abonnent registreres"
1508
 
1509
+ #: ../settings/settings-edit.php:165
1510
  msgid "Sent Report Subject"
1511
  msgstr "Sendt rapport emne"
1512
 
1513
+ #: ../settings/settings-edit.php:166
1514
  msgid "Subject for the email report which will be sent to admin."
1515
  msgstr "Angi emnet for sendte e-poster rapporten. Det vil bli sendt til Admin."
1516
 
1517
+ #: ../settings/settings-edit.php:172
1518
  msgid "Sent Report Content"
1519
  msgstr "Sendte rapport innhold"
1520
 
1521
+ #: ../settings/settings-edit.php:184
1522
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1523
  msgstr "Double Opt i e-post emne (bekreftelses e-post)"
1524
 
1525
+ #: ../settings/settings-edit.php:185
1526
  msgid ""
1527
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1528
  "subscriber signs up."
1530
  "Angi emnet for e-postbekreftelse sendes Double Opt In når en bruker "
1531
  "registrerer seg."
1532
 
1533
+ #: ../settings/settings-edit.php:191
1534
  msgid "Double Opt-In Email Content (Confirmation Email)"
1535
  msgstr "Double Opt i e-post innhold (bekreftelses e-post)"
1536
 
1537
+ #: ../settings/settings-edit.php:198
1538
  msgid "Double Opt-In Confirmation Link"
1539
  msgstr "Double Opt i bekreftelses link"
1540
 
1541
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "<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
  "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
  "<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
  "<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
 
languages/email-subscribers-pl_PL.mo CHANGED
Binary file
languages/email-subscribers-pl_PL.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Wed May 23 2018 11:04: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: Polish\n"
@@ -23,64 +23,30 @@ msgstr ""
23
  "X-Loco-Target-Locale: pl_PL\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
- #: ../classes/es-register.php:740
27
- msgid "Check Pro plan"
28
- msgstr ""
29
-
30
- #: ../classes/es-register.php:778
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:779
37
- msgid "Steps to enable"
38
  msgstr ""
39
 
40
- #: ../classes/es-register.php:779
41
- msgid "Ok, got it"
42
  msgstr ""
43
 
44
- #: ../help/help.php:197
 
45
  msgid ""
46
- "Stay in touch with us. We send out plugin help, tips, periodic updates and "
47
- "even the occasional discounts."
 
48
  msgstr ""
49
 
50
- #: ../help/help.php:205
51
  #, php-format
52
- msgid "I have read and agreed to your %s."
53
- msgstr ""
54
-
55
- #: ../help/help.php:205
56
- msgid "Privacy Policy"
57
  msgstr ""
58
 
59
- #: ../help/help.php:413
60
- msgid "[GDPR] Email Subscribers"
61
- msgstr ""
62
-
63
- #: ../help/help.php:416 ../help/help.php:434
64
- msgid "How to enable consent checkbox in the subscribe form?"
65
- msgstr ""
66
-
67
- #: ../help/help.php:419
68
- msgid "What data Email Subscribers stores on your end?"
69
- msgstr ""
70
-
71
- #: ../help/help.php:431
72
- msgid "[GDPR] Email Subscribers - Group Selector"
73
- msgstr ""
74
-
75
- #: ../help/help.php:437
76
- msgid "What data Email Subscribers - Group Selector stores on your end?"
77
- msgstr ""
78
-
79
- #: ../sentmail/sentmail-show.php:212
80
- msgid ""
81
- "<strong>Note:</strong> If you delete record for the emails with Status = "
82
- "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
83
- "deleted too and email will not be sent."
84
  msgstr ""
85
 
86
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
@@ -135,23 +101,9 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">przez Cron</span>"
135
  msgid "<span style=\"color:#993399;\">Immediately</span>"
136
  msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
137
 
138
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
139
- #: subscribers/view-subscriber-show.php:289
140
- msgid "Name"
141
- msgstr "Nazwa"
142
-
143
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
144
- msgid "Email *"
145
- msgstr "E-mail *"
146
-
147
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
148
- #: php:202
149
- msgid "Subscribe"
150
- msgstr "Subskrypcja"
151
-
152
  #. Name of the plugin
153
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
154
- #: register.php:839
155
  msgid "Email Subscribers"
156
  msgstr "Email Subscribers"
157
 
@@ -161,7 +113,7 @@ msgid "Subscribers"
161
  msgstr "Subskrybujący"
162
 
163
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
164
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
165
  msgid "Templates"
166
  msgstr "Szablony"
167
 
@@ -171,7 +123,7 @@ msgid "Post Notifications"
171
  msgstr "Powiadomienia pocztowe"
172
 
173
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
174
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
175
  msgid "Newsletters"
176
  msgstr "Biuletyny"
177
 
@@ -321,57 +273,16 @@ msgid "Please enter the mail count, only number."
321
  msgstr "Proszę podać liczbę maili, tylko numer."
322
 
323
  #: ../classes/es-register.php:258
324
- msgctxt "widget-enhanced-select"
325
- msgid "Please enter email address"
326
- msgstr "Proszę wprowadź adres mailowy"
327
-
328
- #: ../classes/es-register.php:259
329
- msgctxt "widget-enhanced-select"
330
- msgid "Successfully Subscribed."
331
- msgstr "Zarejestrowano subskrypcję."
332
-
333
- #: ../classes/es-register.php:260
334
- msgctxt "widget-enhanced-select"
335
- msgid ""
336
- "Your subscription was successful! Kindly check your mailbox and confirm your "
337
- "subscription. If you don't see the email within a few minutes, check the "
338
- "spam/junk folder."
339
- msgstr ""
340
- "Twoja subskrypcja zakończyła się sukcesem! Prosimy sprawdzić swoją skrzynkę "
341
- "pocztową i potwierdzić subskrypcję. Jeśli wiadomość nie pojawi się w ciągu "
342
- "kilku minut, sprawdź folder spam/kosz."
343
-
344
- #: ../classes/es-register.php:261
345
- msgctxt "widget-enhanced-select"
346
- msgid "Email Address already exists!"
347
- msgstr "Adres email już istnieje!"
348
-
349
- #: ../classes/es-register.php:262
350
- msgctxt "widget-enhanced-select"
351
- msgid "Oops.. Unexpected error occurred."
352
- msgstr "Ups… Wystąpił nieoczekiwany błąd."
353
-
354
- #: ../classes/es-register.php:263
355
- msgctxt "widget-enhanced-select"
356
- msgid "Invalid email address"
357
- msgstr "Niepoprawny adres email"
358
-
359
- #: ../classes/es-register.php:264
360
- msgctxt "widget-enhanced-select"
361
- msgid "Please try after some time"
362
- msgstr "Spróbuj po pewnym czasie"
363
-
364
- #: ../classes/es-register.php:272
365
  msgctxt "widget-page-enhanced-select"
366
  msgid "Please enter email address"
367
  msgstr "Proszę wprowadź adres mailowy"
368
 
369
- #: ../classes/es-register.php:273
370
  msgctxt "widget-page-enhanced-select"
371
  msgid "Successfully Subscribed."
372
  msgstr "Zarejestrowano subskrypcję."
373
 
374
- #: ../classes/es-register.php:274
375
  msgctxt "widget-page-enhanced-select"
376
  msgid ""
377
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -382,27 +293,27 @@ msgstr ""
382
  "pocztową i potwierdzić subskrypcję. Jeśli wiadomość nie pojawi się w ciągu "
383
  "kilku minut, sprawdź folder spam/kosz."
384
 
385
- #: ../classes/es-register.php:275
386
  msgctxt "widget-page-enhanced-select"
387
  msgid "Email Address already exists!"
388
  msgstr "Adres email już istnieje!"
389
 
390
- #: ../classes/es-register.php:276
391
  msgctxt "widget-page-enhanced-select"
392
  msgid "Oops.. Unexpected error occurred."
393
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
394
 
395
- #: ../classes/es-register.php:277
396
  msgctxt "widget-page-enhanced-select"
397
  msgid "Invalid email address"
398
  msgstr "Niepoprawny adres email"
399
 
400
- #: ../classes/es-register.php:278
401
  msgctxt "widget-page-enhanced-select"
402
  msgid "Please try after some time"
403
  msgstr "Spróbuj po pewnym czasie"
404
 
405
- #: ../classes/es-register.php:739
406
  msgid ""
407
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
408
  "subscribers list?</b> Come check our Pro plan."
@@ -410,11 +321,31 @@ msgstr ""
410
  "<b>Chcesz mieć gotowe szablony e-maili?</b> Chcesz też <b>wyczyścić listę "
411
  "subskrybentów?</b>Przejdź do naszego planu Pro."
412
 
413
- #: ../classes/es-register.php:740
 
 
 
 
414
  msgid "Not interested."
415
  msgstr "Nie zainteresowany."
416
 
417
- #: ../classes/es-register.php:804
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid ""
419
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
420
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -426,123 +357,121 @@ msgstr ""
426
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
427
  "</a>. Z góry dziękujemy, Icegram!"
428
 
429
- #: ../classes/es-register.php:818
430
  #, php-format
431
  msgid "Email Subscribers version: <strong>%s</strong>"
432
  msgstr "Wersja Email Subscribers: <strong>%s</strong>"
433
 
434
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
435
  msgid "Add new Template"
436
  msgstr "Dodaj nowy szablon"
437
 
438
- #: ../classes/es-register.php:831
439
  msgid "Edit Templates"
440
  msgstr "Edytuj szablony"
441
 
442
- #: ../classes/es-register.php:832
443
  msgid "New Templates"
444
  msgstr "Nowe szablony"
445
 
446
- #: ../classes/es-register.php:834
447
  msgid "View Templates"
448
  msgstr "Pokaż szablony"
449
 
450
- #: ../classes/es-register.php:835
451
  msgid "Search Templates"
452
  msgstr "Szukaj szablonów"
453
 
454
- #: ../classes/es-register.php:836
455
  msgid "No Templates found"
456
  msgstr "Brak szablonów"
457
 
458
- #: ../classes/es-register.php:837
459
  msgid "No Templates found in Trash"
460
  msgstr "Brak szablonów w koszu"
461
 
462
- #: ../classes/es-register.php:840
463
  msgid "Thumbnail (For Visual Representation only)"
464
  msgstr "Miniatura (jedynie dla wizualizacji)"
465
 
466
- #: ../classes/es-register.php:841
467
  msgid "Set thumbnail"
468
  msgstr "Ustaw miniaturę"
469
 
470
- #: ../classes/es-register.php:878
471
  msgid "Template Type"
472
  msgstr "Typ szablonu"
473
 
474
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
475
  msgid "Thumbnail"
476
  msgstr "Miniatura"
477
 
478
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
479
  #: sentmail/sentmail-show.php:121
480
  msgid "Preview"
481
  msgstr "Podgląd"
482
 
483
- #: ../classes/es-register.php:944
484
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
485
- msgstr "Słowa kluczowe możliwe dla powiadomienia pocztowego: {{POSTTITLE}}"
486
-
487
- #: ../classes/es-register.php:947
488
  msgid "Select your Email Template Type"
489
  msgstr "Wybierz typ szablonu e-maila"
490
 
491
- #: ../classes/es-register.php:949
492
  msgid "Newsletter"
493
  msgstr "Biuletyn"
494
 
495
- #: ../classes/es-register.php:950
496
  msgid "Post Notification"
497
  msgstr "Wpis"
498
 
499
- #: ../classes/es-register.php:997
500
  msgid "Preview Template"
501
  msgstr "Podgląd szablonu"
502
 
503
- #: ../classes/es-register.php:1011
504
- #, php-format
505
- msgid ""
506
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
507
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
508
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
509
- msgstr ""
510
- "%s dla powiadomienia pocztowego: {{NAME}}, {{EMAIL}}, {{DATE}}, "
511
- "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
512
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
513
-
514
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
515
  msgid "Available Keywords"
516
  msgstr "Dostępne słowa kluczowe"
517
 
518
- #: ../classes/es-register.php:1012
519
  #, php-format
520
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
521
  msgstr "<br/><br/>%s do Biuletynu: {{NAME}}, {{EMAIL}}"
522
 
523
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
524
  msgid "Widget Title"
525
  msgstr "Tytuł wtyczki"
526
 
527
- #: ../classes/es-register.php:1153
528
  msgid "Short description about subscription form"
529
  msgstr "Krótki opis formularza subskrypcji"
530
 
531
- #: ../classes/es-register.php:1157
532
  msgid "Display Name Field"
533
  msgstr "Wyświetl nazwę pola"
534
 
535
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
536
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
537
  msgid "YES"
538
  msgstr "TAK"
539
 
540
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
541
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
542
  msgid "NO"
543
  msgstr "NIE"
544
 
545
- #: ../classes/es-register.php:1164
546
  msgid "Subscriber Group"
547
  msgstr "Grupa subskrybenta"
548
 
@@ -575,6 +504,23 @@ msgstr ""
575
  "Email Subscribers -> Powiadomienia pocztą -> Edytuj -> Wybierz Status "
576
  "powiadomienia po opublikowaniu nowego postu -> Wyłącz -> Zapisz."
577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  #: ../help/help.php:214
579
  #, php-format
580
  msgid "Version: %s"
@@ -838,6 +784,26 @@ msgstr "Pomoc CSS"
838
  msgid "FAQ's"
839
  msgstr "FAQ"
840
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841
  #: ../help/help.php:446
842
  msgid "Want to do more? Here's how.."
843
  msgstr "Chcesz zrobić coś więcej? Oto jak.."
@@ -1342,6 +1308,16 @@ msgstr ""
1342
  "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1343
  "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
1344
 
 
 
 
 
 
 
 
 
 
 
1345
  #: ../settings/setting-sync.php:16
1346
  msgid "Table sync completed successfully."
1347
  msgstr "Synchronizacja tabeli zakończona pomyślnie."
@@ -1443,11 +1419,11 @@ msgstr "Podwójne Opt-In"
1443
  msgid "Single Opt In"
1444
  msgstr "Pojedyncze Ot-In"
1445
 
1446
- #: ../settings/settings-edit.php:116
1447
  msgid "Image Size"
1448
  msgstr "Rozmiar obrazu"
1449
 
1450
- #: ../settings/settings-edit.php:117
1451
  msgid ""
1452
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1453
  "Emails."
@@ -1455,19 +1431,19 @@ msgstr ""
1455
  "Wybierz rozmiar obrazu dla {{POSTIMAGE}}, który ma być wyświetlany w E-mailu "
1456
  "Powiadamiającym."
1457
 
1458
- #: ../settings/settings-edit.php:121
1459
  msgid "Full Size"
1460
  msgstr "Pełny rozmiar"
1461
 
1462
- #: ../settings/settings-edit.php:122
1463
  msgid "Medium Size"
1464
  msgstr "Średni rozmiar"
1465
 
1466
- #: ../settings/settings-edit.php:129
1467
  msgid "Admin Email Addresses"
1468
  msgstr "Adresy e-mail administratora"
1469
 
1470
- #: ../settings/settings-edit.php:130
1471
  msgid ""
1472
  "Enter the admin email addresses that should receive notifications (separated "
1473
  "by comma)."
@@ -1475,11 +1451,11 @@ msgstr ""
1475
  "Wprowadź adresy e-mail administratora na które powinny przychodzić "
1476
  "powiadomienia (adresy oddzielaj przecinkami)."
1477
 
1478
- #: ../settings/settings-edit.php:136
1479
  msgid "Notify Admin when a new subscriber signs up"
1480
  msgstr "Powiadom Administratora gdy nowy subskrybent się zarejestruje"
1481
 
1482
- #: ../settings/settings-edit.php:137
1483
  msgid ""
1484
  "To send admin email notifications for the new subscriber. This option must "
1485
  "be set to YES."
@@ -1487,11 +1463,11 @@ msgstr ""
1487
  "By wysłać e-mail powiadamiający administratora o nowym subskrybencie ta "
1488
  "opcja musi być ustawiona na YES (TAK)."
1489
 
1490
- #: ../settings/settings-edit.php:149
1491
  msgid "Admin Email Subject on new subscriber sign up"
1492
  msgstr "Temat wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
1493
 
1494
- #: ../settings/settings-edit.php:150
1495
  msgid ""
1496
  "Subject for the admin email whenever a new subscriber signs up and is "
1497
  "confirmed."
@@ -1499,11 +1475,11 @@ msgstr ""
1499
  "Temat wiadomości e-mail administratora, gdy nowy subskrybent zgłasza się i "
1500
  "zostanie potwierdzony."
1501
 
1502
- #: ../settings/settings-edit.php:156
1503
  msgid "Admin Email Content on new subscriber signs up"
1504
  msgstr "Treść wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
1505
 
1506
- #: ../settings/settings-edit.php:157
1507
  msgid ""
1508
  "Content for the admin email whenever a new subscriber signs up and is "
1509
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
@@ -1512,19 +1488,19 @@ msgstr ""
1512
  "się i zostanie potwierdzony.<br />Dostępne słowa kluczowe: {{NAME}}, "
1513
  "{{EMAIL}}, {{GROUP}}"
1514
 
1515
- #: ../settings/settings-edit.php:164
1516
  msgid "Sent Report Subject"
1517
  msgstr "Temat wysłanego raportu"
1518
 
1519
- #: ../settings/settings-edit.php:165
1520
  msgid "Subject for the email report which will be sent to admin."
1521
  msgstr "Temat raportu e-mail, wysyłanego do administratora."
1522
 
1523
- #: ../settings/settings-edit.php:171
1524
  msgid "Sent Report Content"
1525
  msgstr "Treść wysłanego raportu"
1526
 
1527
- #: ../settings/settings-edit.php:172
1528
  msgid ""
1529
  "Content for the email report which will be sent to admin.<br />Available "
1530
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
@@ -1532,11 +1508,11 @@ msgstr ""
1532
  "Treść raportu e-mailowego, który zostanie wysłany do administratora.<br "
1533
  "/>Dostępne słowa kluczowe: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1534
 
1535
- #: ../settings/settings-edit.php:183
1536
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1537
  msgstr "Temat e-maila Podwójnego Opt-In (E-mail potwierdzający)"
1538
 
1539
- #: ../settings/settings-edit.php:184
1540
  msgid ""
1541
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1542
  "subscriber signs up."
@@ -1544,11 +1520,11 @@ msgstr ""
1544
  "Temat e-maila potwierdzającego wysyłanego przy podwójnym Opt-In, gdy "
1545
  "subskrybent zostanie potwierdzony."
1546
 
1547
- #: ../settings/settings-edit.php:190
1548
  msgid "Double Opt-In Email Content (Confirmation Email)"
1549
  msgstr "Treść e-maila Podwójnego Opt-In (E-mail potwierdzający)"
1550
 
1551
- #: ../settings/settings-edit.php:191
1552
  msgid ""
1553
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1554
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
@@ -1557,15 +1533,15 @@ msgstr ""
1557
  "gdy subskrybent się zarejestruje.<br />Dostępne słowa kluczowe: {{NAME}}, "
1558
  "{{GROUP}}, {{LINK}}"
1559
 
1560
- #: ../settings/settings-edit.php:197
1561
  msgid "Double Opt-In Confirmation Link"
1562
  msgstr "Link potwierdzający podwójnego Opt-In"
1563
 
1564
- #: ../settings/settings-edit.php:198
1565
  msgid "It is a readonly field and you are advised not to modify it."
1566
  msgstr "Jest to pole tylko do odczytu i nie zaleca się go zmodyfikować."
1567
 
1568
- #: ../settings/settings-edit.php:204
1569
  msgid ""
1570
  "Text to display after an email address is successfully subscribed from "
1571
  "Double Opt-In (Confirmation) Email"
@@ -1573,7 +1549,7 @@ msgstr ""
1573
  "Tekst do wyświetlenia po pomyślnej subskrypcji z podwójnego Opt-In (e-mail "
1574
  "potwierdzenia)"
1575
 
1576
- #: ../settings/settings-edit.php:205
1577
  msgid ""
1578
  "This text will be displayed once user clicks on email confirmation link from "
1579
  "the Double Opt In (confirmation) Email."
@@ -1581,11 +1557,11 @@ msgstr ""
1581
  "Ten tekst będzie wyświetlany gdy użytkownik kliknie na link z e-maila "
1582
  "potwierdzającego w podwójnym Opt-In."
1583
 
1584
- #: ../settings/settings-edit.php:212
1585
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1586
  msgstr "Wysłać e-mail powitalny do nowego subskrybenta po potwierdzeniu?"
1587
 
1588
- #: ../settings/settings-edit.php:213
1589
  msgid ""
1590
  "To send welcome email to subscriber after successful signup. This option "
1591
  "must be set to YES."
@@ -1593,11 +1569,11 @@ msgstr ""
1593
  "By wysłać mail powitalny do subskrybenta po pomyślnej rejestracji ta opcja "
1594
  "musi być ustawiona na YES (TAK)."
1595
 
1596
- #: ../settings/settings-edit.php:224
1597
  msgid "Subject for Welcome Email"
1598
  msgstr "Temat e-maila powitalnego"
1599
 
1600
- #: ../settings/settings-edit.php:225
1601
  msgid ""
1602
  "Subject for the subscriber welcome email. This will be sent whenever a "
1603
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1607,11 +1583,11 @@ msgstr ""
1607
  "użytkownika zostanie potwierdzony (gdy podwójne Opt-In) / subskrybuje (jeśli "
1608
  "pojedynczy Opt-In)."
1609
 
1610
- #: ../settings/settings-edit.php:231
1611
  msgid "Email Content for Welcome Email"
1612
  msgstr "Treść e-maila powitalnego"
1613
 
1614
- #: ../settings/settings-edit.php:232
1615
  msgid ""
1616
  "Content for the subscriber welcome email whenever a user's email is either "
1617
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1622,11 +1598,11 @@ msgstr ""
1622
  "/ zasubskrybowania pomyślnie (przy opcji pojedynczego potwierdzenia).<br "
1623
  "/>Dostępne słowa kluczowe: {{NAME}}, {{GROUP}}, {{LINK}}"
1624
 
1625
- #: ../settings/settings-edit.php:240
1626
  msgid "Unsubscribe Link"
1627
  msgstr "Link anulujący subskrypcję"
1628
 
1629
- #: ../settings/settings-edit.php:241
1630
  msgid ""
1631
  "This unsubscribe link is automatically added to all the emails that are sent "
1632
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1636,11 +1612,11 @@ msgstr ""
1636
  "wiadomości e-mail wysyłanych z tej wtyczki. Jest to pole tylko do odczytu i "
1637
  "nie zaleca się jego modyfikowania."
1638
 
1639
- #: ../settings/settings-edit.php:247
1640
  msgid "Unsubscribe Text in Email"
1641
  msgstr "Tekst anulujący subskrypcję w Email Subscribers"
1642
 
1643
- #: ../settings/settings-edit.php:248
1644
  msgid ""
1645
  "The text for the unsubscribe link. This text is automatically added with "
1646
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1649,11 +1625,11 @@ msgstr ""
1649
  "dodawany do linku do anulowania subskrypcji w e-mailu.<br />Dostępne słowo "
1650
  "kluczowe: {{LINK}}"
1651
 
1652
- #: ../settings/settings-edit.php:254
1653
  msgid "Text to display after an email address is unsubscribed"
1654
  msgstr "Tekst do wyświetlenia po wyrejestrowaniu adresu e-mail"
1655
 
1656
- #: ../settings/settings-edit.php:255
1657
  msgid ""
1658
  "This text will be displayed once user clicks on unsubscribe link from the "
1659
  "email."
@@ -1661,11 +1637,11 @@ msgstr ""
1661
  "Ten tekst zostanie wyświetlony po kliknięciu przez użytkownika linku "
1662
  "anulującego subskrypcję."
1663
 
1664
- #: ../settings/settings-edit.php:262
1665
  msgid "Error in the Subscribe / Confirmation Link"
1666
  msgstr "Błąd w linku subskrypcji/potwierdzenia"
1667
 
1668
- #: ../settings/settings-edit.php:263
1669
  msgid ""
1670
  "Default message to display if there is any issue while clicking on subscribe "
1671
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1674,11 +1650,11 @@ msgstr ""
1674
  "jakiegokolwiek problemu przy kliknięciu linku subskrybuj / potwierdź z e-"
1675
  "maila potwierdzającego przy podwójnym Opt-In."
1676
 
1677
- #: ../settings/settings-edit.php:269
1678
  msgid "Error in the Unsubscribe Link"
1679
  msgstr "Błąd w linku wyrejestrującym"
1680
 
1681
- #: ../settings/settings-edit.php:270
1682
  msgid ""
1683
  "Default message to display if there is any issue while clicking on "
1684
  "unsubscribe link from the emails."
@@ -1687,51 +1663,51 @@ msgstr ""
1687
  "jakiegokolwiek problemu przy kliknięciu linku anulującego subskrypcję w e-"
1688
  "mailu."
1689
 
1690
- #: ../settings/settings-edit.php:282
1691
  msgid "Select user roles who can access following menus. Only Admin can change this."
1692
  msgstr ""
1693
  "Wybierz role użytkowników, którzy mają dostęp do następujących opcji. Tylko "
1694
  "Administrator może to zmienić."
1695
 
1696
- #: ../settings/settings-edit.php:288
1697
  msgid "Subscribers Menu"
1698
  msgstr "Menu subskrybentów"
1699
 
1700
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1701
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1702
- #: settings/settings-edit.php:340
1703
- msgid "Administrator Only"
1704
- msgstr "Tylko dla administratora"
1705
-
1706
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1707
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1708
  #: settings/settings-edit.php:341
1709
- msgid "Administrator/Editor"
1710
- msgstr "Administrator/Edytor"
1711
 
1712
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1713
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1714
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1715
  msgid "Administrator/Editor/Author/Contributor"
1716
  msgstr "Administrator/Edytor/Autor/Specjalista"
1717
 
1718
- #: ../settings/settings-edit.php:300
1719
  msgid "Templates Menu"
1720
  msgstr "Szablony Menu"
1721
 
1722
- #: ../settings/settings-edit.php:312
1723
  msgid "Post Notifications Menu"
1724
  msgstr "Menu Powiadomień"
1725
 
1726
- #: ../settings/settings-edit.php:336
1727
  msgid "Reports Menu"
1728
  msgstr "Menu raportów"
1729
 
1730
- #: ../settings/settings-edit.php:353
1731
  msgid "Cron job URL"
1732
  msgstr "URL zadania Cron"
1733
 
1734
- #: ../settings/settings-edit.php:354
1735
  msgid ""
1736
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1737
  "modify it."
@@ -1739,25 +1715,25 @@ msgstr ""
1739
  "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie "
1740
  "zaleca się go modyfikować."
1741
 
1742
- #: ../settings/settings-edit.php:363
1743
  msgid "Email Count"
1744
  msgstr "Ilość emaili"
1745
 
1746
- #: ../settings/settings-edit.php:364
1747
  msgid "Number of emails that you want to trigger per hour."
1748
  msgstr "Ilość e-maili, które mają być wyzwalane na godzinę."
1749
 
1750
- #: ../settings/settings-edit.php:369
1751
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1752
  msgstr ""
1753
  "(Twój host ma ograniczenia. Sugerujemy bezpieczny limit 50 e-maili na "
1754
  "godzinę.)"
1755
 
1756
- #: ../settings/settings-edit.php:374
1757
  msgid "Cron Report"
1758
  msgstr "Raport Crona"
1759
 
1760
- #: ../settings/settings-edit.php:375
1761
  msgid ""
1762
  "Email to admin whenever a cron URL is triggered from your server.<br "
1763
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1766,11 +1742,11 @@ msgstr ""
1766
  "twojego serwera.<br />Możliwe słowa kluczowe: {{DATE}}, {{SUBJECT}}, "
1767
  "{{COUNT}}"
1768
 
1769
- #: ../settings/settings-edit.php:385
1770
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1771
  msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
1772
 
1773
- #: ../settings/settings-edit.php:386
1774
  msgid ""
1775
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1776
  "schedule-cron-emails/?"
@@ -1782,7 +1758,7 @@ msgstr ""
1782
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Co to jest "
1783
  "Cron?</a>"
1784
 
1785
- #: ../settings/settings-edit.php:387
1786
  msgid ""
1787
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1788
  "schedule-cron-emails-in-cpanel/?"
@@ -1794,7 +1770,7 @@ msgstr ""
1794
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1795
  "proceduję cron w cPanel</a>"
1796
 
1797
- #: ../settings/settings-edit.php:388
1798
  msgid ""
1799
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1800
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1806,7 +1782,7 @@ msgstr ""
1806
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1807
  "proceduję cron w Plesk</a>"
1808
 
1809
- #: ../settings/settings-edit.php:389
1810
  msgid ""
1811
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1812
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1818,23 +1794,19 @@ msgstr ""
1818
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1819
  "nie obsługuje procedur cron?</a>"
1820
 
1821
- #: ../settings/settings-edit.php:504
1822
  msgid "Please enter sender of notifications from name."
1823
  msgstr "Proszę podać nadawcę powiadomień po nazwie."
1824
 
1825
- #: ../settings/settings-edit.php:509
1826
  msgid "Please enter sender of notifications from email."
1827
  msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
1828
 
1829
- #: ../settings/settings-edit.php:553
1830
- msgid "Please enter valid mail count."
1831
- msgstr "Proszę podać poprawną liczbę e-maili."
1832
-
1833
- #: ../settings/settings-edit.php:566
1834
  msgid "Settings Saved."
1835
  msgstr "Ustawienia zapisane."
1836
 
1837
- #: ../settings/settings-edit.php:569
1838
  msgid "Oops, unable to update."
1839
  msgstr "Ups, nie można zaktualizować."
1840
 
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"
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}}, "
39
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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.
101
  msgid "<span style=\"color:#993399;\">Immediately</span>"
102
  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
  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
  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
 
273
  msgstr "Proszę podać liczbę maili, tylko numer."
274
 
275
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  msgctxt "widget-page-enhanced-select"
277
  msgid "Please enter email address"
278
  msgstr "Proszę wprowadź adres mailowy"
279
 
280
+ #: ../classes/es-register.php:259
281
  msgctxt "widget-page-enhanced-select"
282
  msgid "Successfully Subscribed."
283
  msgstr "Zarejestrowano subskrypcję."
284
 
285
+ #: ../classes/es-register.php:260
286
  msgctxt "widget-page-enhanced-select"
287
  msgid ""
288
  "Your subscription was successful! Kindly check your mailbox and confirm your "
293
  "pocztową i potwierdzić subskrypcję. Jeśli wiadomość nie pojawi się w ciągu "
294
  "kilku minut, sprawdź folder spam/kosz."
295
 
296
+ #: ../classes/es-register.php:261
297
  msgctxt "widget-page-enhanced-select"
298
  msgid "Email Address already exists!"
299
  msgstr "Adres email już istnieje!"
300
 
301
+ #: ../classes/es-register.php:262
302
  msgctxt "widget-page-enhanced-select"
303
  msgid "Oops.. Unexpected error occurred."
304
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
305
 
306
+ #: ../classes/es-register.php:263
307
  msgctxt "widget-page-enhanced-select"
308
  msgid "Invalid email address"
309
  msgstr "Niepoprawny adres email"
310
 
311
+ #: ../classes/es-register.php:264
312
  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."
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
  "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
 
504
  "Email Subscribers -> Powiadomienia pocztą -> Edytuj -> Wybierz Status "
505
  "powiadomienia po opublikowaniu nowego postu -> Wyłącz -> Zapisz."
506
 
507
+ #: ../help/help.php:197
508
+ msgid ""
509
+ "Stay in touch with us. We send out plugin help, tips, periodic updates and "
510
+ "even the occasional discounts."
511
+ msgstr ""
512
+ "Pozostań z nami w kontakcie. Wysyłamy pomoc do wtyczek, wskazówki, okresowe "
513
+ "aktualizacje, a nawet sporadyczne rabaty."
514
+
515
+ #: ../help/help.php:205
516
+ #, php-format
517
+ msgid "I have read and agreed to your %s."
518
+ msgstr "Przeczytałem i zgodziłem się na twoje %s."
519
+
520
+ #: ../help/help.php:205
521
+ msgid "Privacy Policy"
522
+ msgstr "Polityka prywatności"
523
+
524
  #: ../help/help.php:214
525
  #, php-format
526
  msgid "Version: %s"
784
  msgid "FAQ's"
785
  msgstr "FAQ"
786
 
787
+ #: ../help/help.php:413
788
+ msgid "[GDPR] Email Subscribers"
789
+ msgstr "[RODO] Email Subscribers"
790
+
791
+ #: ../help/help.php:416 ../help/help.php:434
792
+ msgid "How to enable consent checkbox in the subscribe form?"
793
+ msgstr "Jak włączyć pole wyboru zgody w formularzu subskrypcji?"
794
+
795
+ #: ../help/help.php:419
796
+ msgid "What data Email Subscribers stores on your end?"
797
+ msgstr "Jakie dane Email Subscribers zapisuje z twojej strony?"
798
+
799
+ #: ../help/help.php:431
800
+ msgid "[GDPR] Email Subscribers - Group Selector"
801
+ msgstr "[RODO] Email Subscribers - Selector Grup"
802
+
803
+ #: ../help/help.php:437
804
+ msgid "What data Email Subscribers - Group Selector stores on your end?"
805
+ msgstr "Jakie dane Email Subscribers - Selector Grup zapisuje z twojej strony?"
806
+
807
  #: ../help/help.php:446
808
  msgid "Want to do more? Here's how.."
809
  msgstr "Chcesz zrobić coś więcej? Oto jak.."
1308
  "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1309
  "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
1310
 
1311
+ #: ../sentmail/sentmail-show.php:212
1312
+ msgid ""
1313
+ "<strong>Note:</strong> If you delete record for the emails with Status = "
1314
+ "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
1315
+ "deleted too and email will not be sent."
1316
+ msgstr ""
1317
+ "<strong>Uwaga:</strong> Jeśli usuniesz rekord dla e-maili o statusie = <span "
1318
+ "style=\"color:#FF0000;\">In Queue</span>, zadanie crona w kolejce zostanie "
1319
+ "usunięte, a poczta e-mail zostanie usunięta nie będąc wysyłana."
1320
+
1321
  #: ../settings/setting-sync.php:16
1322
  msgid "Table sync completed successfully."
1323
  msgstr "Synchronizacja tabeli zakończona pomyślnie."
1419
  msgid "Single Opt In"
1420
  msgstr "Pojedyncze Ot-In"
1421
 
1422
+ #: ../settings/settings-edit.php:117
1423
  msgid "Image Size"
1424
  msgstr "Rozmiar obrazu"
1425
 
1426
+ #: ../settings/settings-edit.php:118
1427
  msgid ""
1428
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1429
  "Emails."
1431
  "Wybierz rozmiar obrazu dla {{POSTIMAGE}}, który ma być wyświetlany w E-mailu "
1432
  "Powiadamiającym."
1433
 
1434
+ #: ../settings/settings-edit.php:122
1435
  msgid "Full Size"
1436
  msgstr "Pełny rozmiar"
1437
 
1438
+ #: ../settings/settings-edit.php:123
1439
  msgid "Medium Size"
1440
  msgstr "Średni rozmiar"
1441
 
1442
+ #: ../settings/settings-edit.php:130
1443
  msgid "Admin Email Addresses"
1444
  msgstr "Adresy e-mail administratora"
1445
 
1446
+ #: ../settings/settings-edit.php:131
1447
  msgid ""
1448
  "Enter the admin email addresses that should receive notifications (separated "
1449
  "by comma)."
1451
  "Wprowadź adresy e-mail administratora na które powinny przychodzić "
1452
  "powiadomienia (adresy oddzielaj przecinkami)."
1453
 
1454
+ #: ../settings/settings-edit.php:137
1455
  msgid "Notify Admin when a new subscriber signs up"
1456
  msgstr "Powiadom Administratora gdy nowy subskrybent się zarejestruje"
1457
 
1458
+ #: ../settings/settings-edit.php:138
1459
  msgid ""
1460
  "To send admin email notifications for the new subscriber. This option must "
1461
  "be set to YES."
1463
  "By wysłać e-mail powiadamiający administratora o nowym subskrybencie ta "
1464
  "opcja musi być ustawiona na YES (TAK)."
1465
 
1466
+ #: ../settings/settings-edit.php:150
1467
  msgid "Admin Email Subject on new subscriber sign up"
1468
  msgstr "Temat wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
1469
 
1470
+ #: ../settings/settings-edit.php:151
1471
  msgid ""
1472
  "Subject for the admin email whenever a new subscriber signs up and is "
1473
  "confirmed."
1475
  "Temat wiadomości e-mail administratora, gdy nowy subskrybent zgłasza się i "
1476
  "zostanie potwierdzony."
1477
 
1478
+ #: ../settings/settings-edit.php:157
1479
  msgid "Admin Email Content on new subscriber signs up"
1480
  msgstr "Treść wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
1481
 
1482
+ #: ../settings/settings-edit.php:158
1483
  msgid ""
1484
  "Content for the admin email whenever a new subscriber signs up and is "
1485
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1488
  "się i zostanie potwierdzony.<br />Dostępne słowa kluczowe: {{NAME}}, "
1489
  "{{EMAIL}}, {{GROUP}}"
1490
 
1491
+ #: ../settings/settings-edit.php:165
1492
  msgid "Sent Report Subject"
1493
  msgstr "Temat wysłanego raportu"
1494
 
1495
+ #: ../settings/settings-edit.php:166
1496
  msgid "Subject for the email report which will be sent to admin."
1497
  msgstr "Temat raportu e-mail, wysyłanego do administratora."
1498
 
1499
+ #: ../settings/settings-edit.php:172
1500
  msgid "Sent Report Content"
1501
  msgstr "Treść wysłanego raportu"
1502
 
1503
+ #: ../settings/settings-edit.php:173
1504
  msgid ""
1505
  "Content for the email report which will be sent to admin.<br />Available "
1506
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1508
  "Treść raportu e-mailowego, który zostanie wysłany do administratora.<br "
1509
  "/>Dostępne słowa kluczowe: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1510
 
1511
+ #: ../settings/settings-edit.php:184
1512
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1513
  msgstr "Temat e-maila Podwójnego Opt-In (E-mail potwierdzający)"
1514
 
1515
+ #: ../settings/settings-edit.php:185
1516
  msgid ""
1517
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1518
  "subscriber signs up."
1520
  "Temat e-maila potwierdzającego wysyłanego przy podwójnym Opt-In, gdy "
1521
  "subskrybent zostanie potwierdzony."
1522
 
1523
+ #: ../settings/settings-edit.php:191
1524
  msgid "Double Opt-In Email Content (Confirmation Email)"
1525
  msgstr "Treść e-maila Podwójnego Opt-In (E-mail potwierdzający)"
1526
 
1527
+ #: ../settings/settings-edit.php:192
1528
  msgid ""
1529
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1530
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1533
  "gdy subskrybent się zarejestruje.<br />Dostępne słowa kluczowe: {{NAME}}, "
1534
  "{{GROUP}}, {{LINK}}"
1535
 
1536
+ #: ../settings/settings-edit.php:198
1537
  msgid "Double Opt-In Confirmation Link"
1538
  msgstr "Link potwierdzający podwójnego Opt-In"
1539
 
1540
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
  "/ 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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
 
languages/email-subscribers-pt_BR.mo CHANGED
Binary file
languages/email-subscribers-pt_BR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\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: Wed May 23 2018 11:05:07 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"
@@ -35,14 +35,6 @@ msgid "Please select notification mail subject. Use templates menu to create new
35
  msgstr ""
36
 
37
  #: ../classes/es-register.php:260
38
- msgctxt "widget-enhanced-select"
39
- msgid ""
40
- "Your subscription was successful! Kindly check your mailbox and confirm your "
41
- "subscription. If you don't see the email within a few minutes, check the "
42
- "spam/junk folder."
43
- msgstr ""
44
-
45
- #: ../classes/es-register.php:274
46
  msgctxt "widget-page-enhanced-select"
47
  msgid ""
48
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -50,39 +42,61 @@ msgid ""
50
  "spam/junk folder."
51
  msgstr ""
52
 
53
- #: ../classes/es-register.php:739
54
  msgid ""
55
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
56
  "subscribers list?</b> Come check our Pro plan."
57
  msgstr ""
58
 
59
- #: ../classes/es-register.php:740
60
  msgid "Check Pro plan"
61
  msgstr ""
62
 
63
- #: ../classes/es-register.php:740
64
  msgid "Not interested."
65
  msgstr ""
66
 
67
- #: ../classes/es-register.php:778
68
  msgid ""
69
  "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
70
  "Checkbox' in the subscription form.</b>"
71
  msgstr ""
72
 
73
- #: ../classes/es-register.php:779
74
  msgid "Steps to enable"
75
  msgstr ""
76
 
77
- #: ../classes/es-register.php:779
78
  msgid "Ok, got it"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:1012
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  #, php-format
83
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
84
  msgstr ""
85
 
 
 
 
 
 
86
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
87
  msgid "Unexpected url submit has been detected!"
88
  msgstr ""
@@ -207,6 +221,10 @@ msgid ""
207
  "deleted too and email will not be sent."
208
  msgstr ""
209
 
 
 
 
 
210
  #: ../subscribers/view-subscriber-export.php:12
211
  msgid ""
212
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
@@ -270,22 +288,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron Job</span>"
270
  msgid "<span style=\"color:#993399;\">Immediately</span>"
271
  msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
272
 
273
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
274
- #: subscribers/view-subscriber-show.php:289
275
- msgid "Name"
276
- msgstr "Nome"
277
-
278
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
279
- msgid "Email *"
280
- msgstr "E-mail *"
281
-
282
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
283
- #: php:202
284
- msgid "Subscribe"
285
- msgstr "Inscrever"
286
-
287
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
288
- #: register.php:839
289
  msgid "Email Subscribers"
290
  msgstr "Email Subscribers"
291
 
@@ -295,7 +299,7 @@ msgid "Subscribers"
295
  msgstr "Assinantes"
296
 
297
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
298
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
299
  msgid "Templates"
300
  msgstr "Modelos"
301
 
@@ -305,7 +309,7 @@ msgid "Post Notifications"
305
  msgstr "Notificações de Postagens"
306
 
307
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
308
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
309
  msgid "Newsletters"
310
  msgstr "Newsletters"
311
 
@@ -441,66 +445,36 @@ msgid "Please enter the mail count, only number."
441
  msgstr "Por favor, digite a contagem de mensagens, apenas o números."
442
 
443
  #: ../classes/es-register.php:258
444
- msgctxt "widget-enhanced-select"
445
- msgid "Please enter email address"
446
- msgstr "Por favor, digite o endereço de e-mail"
447
-
448
- #: ../classes/es-register.php:259
449
- msgctxt "widget-enhanced-select"
450
- msgid "Successfully Subscribed."
451
- msgstr "Assinado com Sucesso."
452
-
453
- #: ../classes/es-register.php:261
454
- msgctxt "widget-enhanced-select"
455
- msgid "Email Address already exists!"
456
- msgstr "Este Endereço de E-mail já existe!"
457
-
458
- #: ../classes/es-register.php:262
459
- msgctxt "widget-enhanced-select"
460
- msgid "Oops.. Unexpected error occurred."
461
- msgstr "Oops. Ocorreu um erro inesperado."
462
-
463
- #: ../classes/es-register.php:263
464
- msgctxt "widget-enhanced-select"
465
- msgid "Invalid email address"
466
- msgstr "Endereço de e-mail inválido"
467
-
468
- #: ../classes/es-register.php:264
469
- msgctxt "widget-enhanced-select"
470
- msgid "Please try after some time"
471
- msgstr "Por favor, tente depois de algum tempo"
472
-
473
- #: ../classes/es-register.php:272
474
  msgctxt "widget-page-enhanced-select"
475
  msgid "Please enter email address"
476
  msgstr "Por favor, digite um endereço de e-mail"
477
 
478
- #: ../classes/es-register.php:273
479
  msgctxt "widget-page-enhanced-select"
480
  msgid "Successfully Subscribed."
481
  msgstr "Assinado com Sucesso."
482
 
483
- #: ../classes/es-register.php:275
484
  msgctxt "widget-page-enhanced-select"
485
  msgid "Email Address already exists!"
486
  msgstr "Este Endereço de E-mail já existe!"
487
 
488
- #: ../classes/es-register.php:276
489
  msgctxt "widget-page-enhanced-select"
490
  msgid "Oops.. Unexpected error occurred."
491
  msgstr "Oops. Ocorreu um erro inesperado."
492
 
493
- #: ../classes/es-register.php:277
494
  msgctxt "widget-page-enhanced-select"
495
  msgid "Invalid email address"
496
  msgstr "Endereço de e-mail inválido"
497
 
498
- #: ../classes/es-register.php:278
499
  msgctxt "widget-page-enhanced-select"
500
  msgid "Please try after some time"
501
  msgstr "Por favor, tente depois de algum tempo"
502
 
503
- #: ../classes/es-register.php:804
504
  msgid ""
505
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
506
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -512,118 +486,116 @@ msgstr ""
512
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
513
  "&#9733;&#9733;&#9733;&#9733;</a> avaliação. Um enorme obrigado do Icegram!"
514
 
515
- #: ../classes/es-register.php:818
516
  #, php-format
517
  msgid "Email Subscribers version: <strong>%s</strong>"
518
  msgstr "Email Subscribers versão: <strong>%s</strong>"
519
 
520
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
521
  msgid "Add new Template"
522
  msgstr "Adicionar Novo Modelo"
523
 
524
- #: ../classes/es-register.php:831
525
  msgid "Edit Templates"
526
  msgstr "Editar Modelos"
527
 
528
- #: ../classes/es-register.php:832
529
  msgid "New Templates"
530
  msgstr "Novos Modelos"
531
 
532
- #: ../classes/es-register.php:834
533
  msgid "View Templates"
534
  msgstr "Exibir Modelos"
535
 
536
- #: ../classes/es-register.php:835
537
  msgid "Search Templates"
538
  msgstr "Procurar Modelos"
539
 
540
- #: ../classes/es-register.php:836
541
  msgid "No Templates found"
542
  msgstr "Nenhum Modelo encontrado"
543
 
544
- #: ../classes/es-register.php:837
545
  msgid "No Templates found in Trash"
546
  msgstr "Nenhum Modelo encontrado na Lixeira"
547
 
548
- #: ../classes/es-register.php:840
549
  msgid "Thumbnail (For Visual Representation only)"
550
  msgstr "Miniaturas (Para Representação Visual apenas)"
551
 
552
- #: ../classes/es-register.php:841
553
  msgid "Set thumbnail"
554
  msgstr "Definir miniatura"
555
 
556
- #: ../classes/es-register.php:878
557
  msgid "Template Type"
558
  msgstr "Tipo de Modelo"
559
 
560
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
561
  msgid "Thumbnail"
562
  msgstr "Miniatura"
563
 
564
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
565
  #: sentmail/sentmail-show.php:121
566
  msgid "Preview"
567
  msgstr "Visualizar"
568
 
569
- #: ../classes/es-register.php:944
570
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
571
- msgstr "Palavra-chave disponível para Notificação de Postagem: {{POSTTITLE}}"
572
-
573
- #: ../classes/es-register.php:947
574
  msgid "Select your Email Template Type"
575
  msgstr "Selecione o seu Tipo de Modelo de E-mail"
576
 
577
- #: ../classes/es-register.php:949
578
  msgid "Newsletter"
579
  msgstr "Newsletter"
580
 
581
- #: ../classes/es-register.php:950
582
  msgid "Post Notification"
583
  msgstr "Notificação de Postagem"
584
 
585
- #: ../classes/es-register.php:997
586
  msgid "Preview Template"
587
  msgstr "Visualização do Modelo"
588
 
589
- #: ../classes/es-register.php:1011
590
- #, php-format
591
- msgid ""
592
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
593
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
594
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
595
- msgstr ""
596
- "%s para Notificação de Postagem: {{NAME}}, {{EMAIL}}, {{DATE}}, "
597
- "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
598
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
599
-
600
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
601
  msgid "Available Keywords"
602
  msgstr "Palavras-chave disponíveis"
603
 
604
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
605
  msgid "Widget Title"
606
  msgstr "Título do Widget"
607
 
608
- #: ../classes/es-register.php:1153
609
  msgid "Short description about subscription form"
610
  msgstr "Breve descrição sobre o formulário de inscrição"
611
 
612
- #: ../classes/es-register.php:1157
613
  msgid "Display Name Field"
614
  msgstr "Exibir Campo do Nome"
615
 
616
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
617
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
618
  msgid "YES"
619
  msgstr "SIM"
620
 
621
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
622
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
623
  msgid "NO"
624
  msgstr "NÃO"
625
 
626
- #: ../classes/es-register.php:1164
627
  msgid "Subscriber Group"
628
  msgstr "Grupo do Assinante"
629
 
@@ -1430,11 +1402,11 @@ msgstr "Opt-In Duplo"
1430
  msgid "Single Opt In"
1431
  msgstr "Opt-In Simples"
1432
 
1433
- #: ../settings/settings-edit.php:116
1434
  msgid "Image Size"
1435
  msgstr "Tamanho da Imagem"
1436
 
1437
- #: ../settings/settings-edit.php:117
1438
  msgid ""
1439
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1440
  "Emails."
@@ -1442,19 +1414,19 @@ msgstr ""
1442
  "Selecione o tamanho da imagem para {{POSTIMAGE}} para ser mostrado nas E-"
1443
  "mails de Notificação."
1444
 
1445
- #: ../settings/settings-edit.php:121
1446
  msgid "Full Size"
1447
  msgstr "Tamanho Completo"
1448
 
1449
- #: ../settings/settings-edit.php:122
1450
  msgid "Medium Size"
1451
  msgstr "Tamanho Médio"
1452
 
1453
- #: ../settings/settings-edit.php:129
1454
  msgid "Admin Email Addresses"
1455
  msgstr "Administração de Endereços de e-mails"
1456
 
1457
- #: ../settings/settings-edit.php:130
1458
  msgid ""
1459
  "Enter the admin email addresses that should receive notifications (separated "
1460
  "by comma)."
@@ -1462,11 +1434,11 @@ msgstr ""
1462
  "Digite os endereços de e-mails do Administrador que devem receber as "
1463
  "notificações (separadas por vírgulas)."
1464
 
1465
- #: ../settings/settings-edit.php:136
1466
  msgid "Notify Admin when a new subscriber signs up"
1467
  msgstr "Notificação do Administrador quando um novo assinante se inscrever"
1468
 
1469
- #: ../settings/settings-edit.php:137
1470
  msgid ""
1471
  "To send admin email notifications for the new subscriber. This option must "
1472
  "be set to YES."
@@ -1474,11 +1446,11 @@ msgstr ""
1474
  "Para enviar notificações de e-mail do Administrador para o novo assinante. "
1475
  "Esta opção deve ser definida como SIM."
1476
 
1477
- #: ../settings/settings-edit.php:149
1478
  msgid "Admin Email Subject on new subscriber sign up"
1479
  msgstr "Assunto do E-mail da Administração no novo cadastro de assinante"
1480
 
1481
- #: ../settings/settings-edit.php:150
1482
  msgid ""
1483
  "Subject for the admin email whenever a new subscriber signs up and is "
1484
  "confirmed."
@@ -1486,11 +1458,11 @@ msgstr ""
1486
  "Assunto para o e-mail do Administrador sempre que um novo assinante se "
1487
  "inscreva e está confirmado."
1488
 
1489
- #: ../settings/settings-edit.php:156
1490
  msgid "Admin Email Content on new subscriber signs up"
1491
  msgstr "Conteúdo do E-mail do Administrador quando um novo assinante se inscreve"
1492
 
1493
- #: ../settings/settings-edit.php:157
1494
  msgid ""
1495
  "Content for the admin email whenever a new subscriber signs up and is "
1496
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
@@ -1499,19 +1471,19 @@ msgstr ""
1499
  "inscreva e está confirmado.<br />Palavras-chave disponíveis: {{NAME}}, "
1500
  "{{EMAIL}}, {{GROUP}}"
1501
 
1502
- #: ../settings/settings-edit.php:164
1503
  msgid "Sent Report Subject"
1504
  msgstr "Assunto do Relatório Enviado"
1505
 
1506
- #: ../settings/settings-edit.php:165
1507
  msgid "Subject for the email report which will be sent to admin."
1508
  msgstr "Assunto para o e-mail de relatório que será enviado ao Administrador."
1509
 
1510
- #: ../settings/settings-edit.php:171
1511
  msgid "Sent Report Content"
1512
  msgstr "Conteúdo do Relatório Enviado"
1513
 
1514
- #: ../settings/settings-edit.php:172
1515
  msgid ""
1516
  "Content for the email report which will be sent to admin.<br />Available "
1517
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
@@ -1520,11 +1492,11 @@ msgstr ""
1520
  "/>Palavras-chave disponíveis: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1521
  "{{ENDTIME}}"
1522
 
1523
- #: ../settings/settings-edit.php:183
1524
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1525
  msgstr "Assunto do E-mail de Opt-In Duplo (E-mail de Confirmação)"
1526
 
1527
- #: ../settings/settings-edit.php:184
1528
  msgid ""
1529
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1530
  "subscriber signs up."
@@ -1532,11 +1504,11 @@ msgstr ""
1532
  "Assunto para o e-mail de confirmação a ser enviado para o Opt-In Duplo "
1533
  "sempre que um assinante se inscrever."
1534
 
1535
- #: ../settings/settings-edit.php:190
1536
  msgid "Double Opt-In Email Content (Confirmation Email)"
1537
  msgstr "Conteúdo do E-mail do Opt-In Duplo (E-mail de Confirmação)"
1538
 
1539
- #: ../settings/settings-edit.php:191
1540
  msgid ""
1541
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1542
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
@@ -1545,15 +1517,15 @@ msgstr ""
1545
  "sempre que um assinante se inscrever.<br />Palavras-chave disponíveis: "
1546
  "{{NAME}}, {{LINK}}"
1547
 
1548
- #: ../settings/settings-edit.php:197
1549
  msgid "Double Opt-In Confirmation Link"
1550
  msgstr "Link para Confirmação do Opt-In Duplo"
1551
 
1552
- #: ../settings/settings-edit.php:198
1553
  msgid "It is a readonly field and you are advised not to modify it."
1554
  msgstr "Este é um campo de leitura e é aconselhável não modificá-lo."
1555
 
1556
- #: ../settings/settings-edit.php:204
1557
  msgid ""
1558
  "Text to display after an email address is successfully subscribed from "
1559
  "Double Opt-In (Confirmation) Email"
@@ -1561,7 +1533,7 @@ msgstr ""
1561
  "Texto a ser exibido após um endereço de e-mail ser inscrito com sucesso no e-"
1562
  "mail Opt-In Duplo (E-mail de Confirmação)"
1563
 
1564
- #: ../settings/settings-edit.php:205
1565
  msgid ""
1566
  "This text will be displayed once user clicks on email confirmation link from "
1567
  "the Double Opt In (confirmation) Email."
@@ -1569,11 +1541,11 @@ msgstr ""
1569
  "Este texto será exibido uma vez que o usuário clicar no link de confirmação "
1570
  "de e-mail do Opt-In Duplo (E-mail de Confirmação)."
1571
 
1572
- #: ../settings/settings-edit.php:212
1573
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1574
  msgstr "Enviar o E-mail de Boas-Vindas aos Novos Assinantes após a Inscrição?"
1575
 
1576
- #: ../settings/settings-edit.php:213
1577
  msgid ""
1578
  "To send welcome email to subscriber after successful signup. This option "
1579
  "must be set to YES."
@@ -1581,11 +1553,11 @@ msgstr ""
1581
  "Para enviar um e-mail de boas-vindas ao assinante após a inscrição aprovada. "
1582
  "Esta opção deve ser definida como SIM."
1583
 
1584
- #: ../settings/settings-edit.php:224
1585
  msgid "Subject for Welcome Email"
1586
  msgstr "Assunto para o E-mail de Boas-Vindas"
1587
 
1588
- #: ../settings/settings-edit.php:225
1589
  msgid ""
1590
  "Subject for the subscriber welcome email. This will be sent whenever a "
1591
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1595,11 +1567,11 @@ msgstr ""
1595
  "que o e-mail de um usuário for confirmado (se Opt-In Duplo) / assinante (se "
1596
  "Opt-In Simples) com sucesso."
1597
 
1598
- #: ../settings/settings-edit.php:231
1599
  msgid "Email Content for Welcome Email"
1600
  msgstr "Conteúdo do e-mail para o E-mail de Boas-Vindas"
1601
 
1602
- #: ../settings/settings-edit.php:232
1603
  msgid ""
1604
  "Content for the subscriber welcome email whenever a user's email is either "
1605
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1609,11 +1581,11 @@ msgstr ""
1609
  "usuário for confirmado (se Opt-In Duplo) / assinante (se Opt-In Simples) com "
1610
  "êxito.<br />Palavras-chave disponíveis: {{NAME}}, {{GROUP}}, {{LINK}}"
1611
 
1612
- #: ../settings/settings-edit.php:240
1613
  msgid "Unsubscribe Link"
1614
  msgstr "Link para Cancelar a Inscrição"
1615
 
1616
- #: ../settings/settings-edit.php:241
1617
  msgid ""
1618
  "This unsubscribe link is automatically added to all the emails that are sent "
1619
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1623,11 +1595,11 @@ msgstr ""
1623
  "que são enviados deste plugin. É um campo de leitura e é aconselhável não "
1624
  "modificá-lo."
1625
 
1626
- #: ../settings/settings-edit.php:247
1627
  msgid "Unsubscribe Text in Email"
1628
  msgstr "Texto de Cancelamento de Inscrição no E-mail"
1629
 
1630
- #: ../settings/settings-edit.php:248
1631
  msgid ""
1632
  "The text for the unsubscribe link. This text is automatically added with "
1633
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1636,11 +1608,11 @@ msgstr ""
1636
  "automaticamente com o link de cancelamento nos e-mails.<br />Palavra-chave "
1637
  "disponível: {{LINK}}"
1638
 
1639
- #: ../settings/settings-edit.php:254
1640
  msgid "Text to display after an email address is unsubscribed"
1641
  msgstr "Texto a ser exibido após um endereço de e-mail ser cancelado"
1642
 
1643
- #: ../settings/settings-edit.php:255
1644
  msgid ""
1645
  "This text will be displayed once user clicks on unsubscribe link from the "
1646
  "email."
@@ -1648,11 +1620,11 @@ msgstr ""
1648
  "Este texto será exibido uma vez que o usuário clicar no link de cancelamento "
1649
  "do e-mail."
1650
 
1651
- #: ../settings/settings-edit.php:262
1652
  msgid "Error in the Subscribe / Confirmation Link"
1653
  msgstr "Erro no link de Inscrição / Confirmação"
1654
 
1655
- #: ../settings/settings-edit.php:263
1656
  msgid ""
1657
  "Default message to display if there is any issue while clicking on subscribe "
1658
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1660,11 +1632,11 @@ msgstr ""
1660
  "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
1661
  "inscrição / confirmação dos e-mails de Opt-In Duplo (E-mail de Confirmação)."
1662
 
1663
- #: ../settings/settings-edit.php:269
1664
  msgid "Error in the Unsubscribe Link"
1665
  msgstr "Erro no link de Cancelamento de Inscrição"
1666
 
1667
- #: ../settings/settings-edit.php:270
1668
  msgid ""
1669
  "Default message to display if there is any issue while clicking on "
1670
  "unsubscribe link from the emails."
@@ -1672,51 +1644,51 @@ msgstr ""
1672
  "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
1673
  "cancelar a inscrição nos e-mails."
1674
 
1675
- #: ../settings/settings-edit.php:282
1676
  msgid "Select user roles who can access following menus. Only Admin can change this."
1677
  msgstr ""
1678
  "Selecione as funções que os usuários podem acessar nos seguintes menus. "
1679
  "Somente o Administrador pode mudar isso."
1680
 
1681
- #: ../settings/settings-edit.php:288
1682
  msgid "Subscribers Menu"
1683
  msgstr "Menu de Assinantes"
1684
 
1685
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1686
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1687
- #: settings/settings-edit.php:340
1688
- msgid "Administrator Only"
1689
- msgstr "Apenas o Administrador"
1690
-
1691
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1692
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1693
  #: settings/settings-edit.php:341
1694
- msgid "Administrator/Editor"
1695
- msgstr "Administrador/Editor"
1696
 
1697
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1698
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1699
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1700
  msgid "Administrator/Editor/Author/Contributor"
1701
  msgstr "Administrador/Editor/Autor/Contribuinte"
1702
 
1703
- #: ../settings/settings-edit.php:300
1704
  msgid "Templates Menu"
1705
  msgstr "Menu de Modelos"
1706
 
1707
- #: ../settings/settings-edit.php:312
1708
  msgid "Post Notifications Menu"
1709
  msgstr "Menu de Notificação de Postagens"
1710
 
1711
- #: ../settings/settings-edit.php:336
1712
  msgid "Reports Menu"
1713
  msgstr "Menu de Relatórios"
1714
 
1715
- #: ../settings/settings-edit.php:353
1716
  msgid "Cron job URL"
1717
  msgstr "URL do Cron Job"
1718
 
1719
- #: ../settings/settings-edit.php:354
1720
  msgid ""
1721
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1722
  "modify it."
@@ -1724,23 +1696,23 @@ msgstr ""
1724
  "Este é o URL do seu Cron Job. É um campo de leitura e é aconselhável não "
1725
  "modificá-lo."
1726
 
1727
- #: ../settings/settings-edit.php:363
1728
  msgid "Email Count"
1729
  msgstr "Contagem de e-mail"
1730
 
1731
- #: ../settings/settings-edit.php:364
1732
  msgid "Number of emails that you want to trigger per hour."
1733
  msgstr "Número de e-mails que você deseja disparar por hora."
1734
 
1735
- #: ../settings/settings-edit.php:369
1736
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1737
  msgstr "(O seu host tem limites. Sugerimos 50 e-mails por hora para serem seguros.)"
1738
 
1739
- #: ../settings/settings-edit.php:374
1740
  msgid "Cron Report"
1741
  msgstr "Relatório do Cron Job"
1742
 
1743
- #: ../settings/settings-edit.php:375
1744
  msgid ""
1745
  "Email to admin whenever a cron URL is triggered from your server.<br "
1746
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1749,11 +1721,11 @@ msgstr ""
1749
  "seu servidor.<br />Palavras-chave disponíveis: {{DATE}}, {{SUBJECT}}, "
1750
  "{{COUNT}}"
1751
 
1752
- #: ../settings/settings-edit.php:385
1753
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1754
  msgstr "O que é Cron Job (e-mails automáticos) e como configurar o Cron Job?"
1755
 
1756
- #: ../settings/settings-edit.php:386
1757
  msgid ""
1758
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1759
  "schedule-cron-emails/?"
@@ -1765,7 +1737,7 @@ msgstr ""
1765
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">O que é o "
1766
  "Cron Job?</a>"
1767
 
1768
- #: ../settings/settings-edit.php:387
1769
  msgid ""
1770
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1771
  "schedule-cron-emails-in-cpanel/?"
@@ -1777,7 +1749,7 @@ msgstr ""
1777
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1778
  "o Cron Job no cPanel</a>"
1779
 
1780
- #: ../settings/settings-edit.php:388
1781
  msgid ""
1782
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1783
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1789,7 +1761,7 @@ msgstr ""
1789
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1790
  "o Cron Job no Plesk</a>"
1791
 
1792
- #: ../settings/settings-edit.php:389
1793
  msgid ""
1794
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1795
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1801,23 +1773,19 @@ msgstr ""
1801
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">A sua "
1802
  "hospedagem não suporta trabalhos do Cron Job?</a>"
1803
 
1804
- #: ../settings/settings-edit.php:504
1805
  msgid "Please enter sender of notifications from name."
1806
  msgstr "Por favor, digite o nome do remetente de notificações."
1807
 
1808
- #: ../settings/settings-edit.php:509
1809
  msgid "Please enter sender of notifications from email."
1810
  msgstr "Por favor, digite o e-mail do remetente de notificações."
1811
 
1812
- #: ../settings/settings-edit.php:553
1813
- msgid "Please enter valid mail count."
1814
- msgstr "Digite uma contagem válida de e-mail."
1815
-
1816
- #: ../settings/settings-edit.php:566
1817
  msgid "Settings Saved."
1818
  msgstr "Configurações Salvas."
1819
 
1820
- #: ../settings/settings-edit.php:569
1821
  msgid "Oops, unable to update."
1822
  msgstr "Oops, não foi possível de atualizar."
1823
 
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"
35
  msgstr ""
36
 
37
  #: ../classes/es-register.php:260
 
 
 
 
 
 
 
 
38
  msgctxt "widget-page-enhanced-select"
39
  msgid ""
40
  "Your subscription was successful! Kindly check your mailbox and confirm your "
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}}, "
86
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
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
+
228
  #: ../subscribers/view-subscriber-export.php:12
229
  msgid ""
230
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
288
  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
  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
  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
 
445
  msgstr "Por favor, digite a contagem de mensagens, apenas o números."
446
 
447
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
  msgctxt "widget-page-enhanced-select"
449
  msgid "Please enter email address"
450
  msgstr "Por favor, digite um endereço de e-mail"
451
 
452
+ #: ../classes/es-register.php:259
453
  msgctxt "widget-page-enhanced-select"
454
  msgid "Successfully Subscribed."
455
  msgstr "Assinado com Sucesso."
456
 
457
+ #: ../classes/es-register.php:261
458
  msgctxt "widget-page-enhanced-select"
459
  msgid "Email Address already exists!"
460
  msgstr "Este Endereço de E-mail já existe!"
461
 
462
+ #: ../classes/es-register.php:262
463
  msgctxt "widget-page-enhanced-select"
464
  msgid "Oops.. Unexpected error occurred."
465
  msgstr "Oops. Ocorreu um erro inesperado."
466
 
467
+ #: ../classes/es-register.php:263
468
  msgctxt "widget-page-enhanced-select"
469
  msgid "Invalid email address"
470
  msgstr "Endereço de e-mail inválido"
471
 
472
+ #: ../classes/es-register.php:264
473
  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
  "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
 
1402
  msgid "Single Opt In"
1403
  msgstr "Opt-In Simples"
1404
 
1405
+ #: ../settings/settings-edit.php:117
1406
  msgid "Image Size"
1407
  msgstr "Tamanho da Imagem"
1408
 
1409
+ #: ../settings/settings-edit.php:118
1410
  msgid ""
1411
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1412
  "Emails."
1414
  "Selecione o tamanho da imagem para {{POSTIMAGE}} para ser mostrado nas E-"
1415
  "mails de Notificação."
1416
 
1417
+ #: ../settings/settings-edit.php:122
1418
  msgid "Full Size"
1419
  msgstr "Tamanho Completo"
1420
 
1421
+ #: ../settings/settings-edit.php:123
1422
  msgid "Medium Size"
1423
  msgstr "Tamanho Médio"
1424
 
1425
+ #: ../settings/settings-edit.php:130
1426
  msgid "Admin Email Addresses"
1427
  msgstr "Administração de Endereços de e-mails"
1428
 
1429
+ #: ../settings/settings-edit.php:131
1430
  msgid ""
1431
  "Enter the admin email addresses that should receive notifications (separated "
1432
  "by comma)."
1434
  "Digite os endereços de e-mails do Administrador que devem receber as "
1435
  "notificações (separadas por vírgulas)."
1436
 
1437
+ #: ../settings/settings-edit.php:137
1438
  msgid "Notify Admin when a new subscriber signs up"
1439
  msgstr "Notificação do Administrador quando um novo assinante se inscrever"
1440
 
1441
+ #: ../settings/settings-edit.php:138
1442
  msgid ""
1443
  "To send admin email notifications for the new subscriber. This option must "
1444
  "be set to YES."
1446
  "Para enviar notificações de e-mail do Administrador para o novo assinante. "
1447
  "Esta opção deve ser definida como SIM."
1448
 
1449
+ #: ../settings/settings-edit.php:150
1450
  msgid "Admin Email Subject on new subscriber sign up"
1451
  msgstr "Assunto do E-mail da Administração no novo cadastro de assinante"
1452
 
1453
+ #: ../settings/settings-edit.php:151
1454
  msgid ""
1455
  "Subject for the admin email whenever a new subscriber signs up and is "
1456
  "confirmed."
1458
  "Assunto para o e-mail do Administrador sempre que um novo assinante se "
1459
  "inscreva e está confirmado."
1460
 
1461
+ #: ../settings/settings-edit.php:157
1462
  msgid "Admin Email Content on new subscriber signs up"
1463
  msgstr "Conteúdo do E-mail do Administrador quando um novo assinante se inscreve"
1464
 
1465
+ #: ../settings/settings-edit.php:158
1466
  msgid ""
1467
  "Content for the admin email whenever a new subscriber signs up and is "
1468
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1471
  "inscreva e está confirmado.<br />Palavras-chave disponíveis: {{NAME}}, "
1472
  "{{EMAIL}}, {{GROUP}}"
1473
 
1474
+ #: ../settings/settings-edit.php:165
1475
  msgid "Sent Report Subject"
1476
  msgstr "Assunto do Relatório Enviado"
1477
 
1478
+ #: ../settings/settings-edit.php:166
1479
  msgid "Subject for the email report which will be sent to admin."
1480
  msgstr "Assunto para o e-mail de relatório que será enviado ao Administrador."
1481
 
1482
+ #: ../settings/settings-edit.php:172
1483
  msgid "Sent Report Content"
1484
  msgstr "Conteúdo do Relatório Enviado"
1485
 
1486
+ #: ../settings/settings-edit.php:173
1487
  msgid ""
1488
  "Content for the email report which will be sent to admin.<br />Available "
1489
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1492
  "/>Palavras-chave disponíveis: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1493
  "{{ENDTIME}}"
1494
 
1495
+ #: ../settings/settings-edit.php:184
1496
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1497
  msgstr "Assunto do E-mail de Opt-In Duplo (E-mail de Confirmação)"
1498
 
1499
+ #: ../settings/settings-edit.php:185
1500
  msgid ""
1501
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1502
  "subscriber signs up."
1504
  "Assunto para o e-mail de confirmação a ser enviado para o Opt-In Duplo "
1505
  "sempre que um assinante se inscrever."
1506
 
1507
+ #: ../settings/settings-edit.php:191
1508
  msgid "Double Opt-In Email Content (Confirmation Email)"
1509
  msgstr "Conteúdo do E-mail do Opt-In Duplo (E-mail de Confirmação)"
1510
 
1511
+ #: ../settings/settings-edit.php:192
1512
  msgid ""
1513
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1514
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1517
  "sempre que um assinante se inscrever.<br />Palavras-chave disponíveis: "
1518
  "{{NAME}}, {{LINK}}"
1519
 
1520
+ #: ../settings/settings-edit.php:198
1521
  msgid "Double Opt-In Confirmation Link"
1522
  msgstr "Link para Confirmação do Opt-In Duplo"
1523
 
1524
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
 
languages/email-subscribers-sv_SE.mo CHANGED
Binary file
languages/email-subscribers-sv_SE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\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: Wed May 23 2018 11:03:41 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"
@@ -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:827 ../classes/es-register.php:828 ../classes/es-register.php:833
27
  msgid "Templates"
28
  msgstr ""
29
 
@@ -44,14 +44,6 @@ msgid "Please select notification mail subject. Use templates menu to create new
44
  msgstr ""
45
 
46
  #: ../classes/es-register.php:260
47
- msgctxt "widget-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:274
55
  msgctxt "widget-page-enhanced-select"
56
  msgid ""
57
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -59,104 +51,114 @@ msgid ""
59
  "spam/junk folder."
60
  msgstr ""
61
 
62
- #: ../classes/es-register.php:739
63
  msgid ""
64
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
65
  "subscribers list?</b> Come check our Pro plan."
66
  msgstr ""
67
 
68
- #: ../classes/es-register.php:740
69
  msgid "Check Pro plan"
70
  msgstr ""
71
 
72
- #: ../classes/es-register.php:740
73
  msgid "Not interested."
74
  msgstr ""
75
 
76
- #: ../classes/es-register.php:778
77
  msgid ""
78
  "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
79
  "Checkbox' in the subscription form.</b>"
80
  msgstr ""
81
 
82
- #: ../classes/es-register.php:779
83
  msgid "Steps to enable"
84
  msgstr ""
85
 
86
- #: ../classes/es-register.php:779
87
  msgid "Ok, got it"
88
  msgstr ""
89
 
90
- #: ../classes/es-register.php:818
91
  #, php-format
92
  msgid "Email Subscribers version: <strong>%s</strong>"
93
  msgstr ""
94
 
95
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
96
  msgid "Add new Template"
97
  msgstr ""
98
 
99
- #: ../classes/es-register.php:831
100
  msgid "Edit Templates"
101
  msgstr ""
102
 
103
- #: ../classes/es-register.php:832
104
  msgid "New Templates"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:834
108
  msgid "View Templates"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:835
112
  msgid "Search Templates"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:836
116
  msgid "No Templates found"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:837
120
  msgid "No Templates found in Trash"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:840
124
  msgid "Thumbnail (For Visual Representation only)"
125
  msgstr ""
126
 
127
- #: ../classes/es-register.php:841
128
  msgid "Set thumbnail"
129
  msgstr ""
130
 
131
- #: ../classes/es-register.php:878
132
  msgid "Template Type"
133
  msgstr ""
134
 
135
- #: ../classes/es-register.php:944
136
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
 
 
 
137
  msgstr ""
138
 
139
- #: ../classes/es-register.php:947
140
  msgid "Select your Email Template Type"
141
  msgstr ""
142
 
143
- #: ../classes/es-register.php:997
144
  msgid "Preview Template"
145
  msgstr ""
146
 
147
- #: ../classes/es-register.php:1011
148
  #, php-format
149
  msgid ""
150
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
151
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
152
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
153
  msgstr ""
154
 
155
- #: ../classes/es-register.php:1012
156
  #, php-format
157
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
158
  msgstr ""
159
 
 
 
 
 
 
160
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
161
  msgid "Unexpected url submit has been detected!"
162
  msgstr ""
@@ -545,156 +547,156 @@ msgid ""
545
  "directly in the list."
546
  msgstr ""
547
 
548
- #: ../settings/settings-edit.php:117
549
  msgid ""
550
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
551
  "Emails."
552
  msgstr ""
553
 
554
- #: ../settings/settings-edit.php:136
555
  msgid "Notify Admin when a new subscriber signs up"
556
  msgstr ""
557
 
558
- #: ../settings/settings-edit.php:149
559
  msgid "Admin Email Subject on new subscriber sign up"
560
  msgstr ""
561
 
562
- #: ../settings/settings-edit.php:150
563
  msgid ""
564
  "Subject for the admin email whenever a new subscriber signs up and is "
565
  "confirmed."
566
  msgstr ""
567
 
568
- #: ../settings/settings-edit.php:156
569
  msgid "Admin Email Content on new subscriber signs up"
570
  msgstr ""
571
 
572
- #: ../settings/settings-edit.php:157
573
  msgid ""
574
  "Content for the admin email whenever a new subscriber signs up and is "
575
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
576
  msgstr ""
577
 
578
- #: ../settings/settings-edit.php:165
579
  msgid "Subject for the email report which will be sent to admin."
580
  msgstr ""
581
 
582
- #: ../settings/settings-edit.php:172
583
  msgid ""
584
  "Content for the email report which will be sent to admin.<br />Available "
585
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
586
  msgstr ""
587
 
588
- #: ../settings/settings-edit.php:183
589
  msgid "Double Opt-In Email Subject (Confirmation Email)"
590
  msgstr ""
591
 
592
- #: ../settings/settings-edit.php:184
593
  msgid ""
594
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
595
  "subscriber signs up."
596
  msgstr ""
597
 
598
- #: ../settings/settings-edit.php:190
599
  msgid "Double Opt-In Email Content (Confirmation Email)"
600
  msgstr ""
601
 
602
- #: ../settings/settings-edit.php:191
603
  msgid ""
604
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
605
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
606
  msgstr ""
607
 
608
- #: ../settings/settings-edit.php:197
609
  msgid "Double Opt-In Confirmation Link"
610
  msgstr ""
611
 
612
- #: ../settings/settings-edit.php:204
613
  msgid ""
614
  "Text to display after an email address is successfully subscribed from "
615
  "Double Opt-In (Confirmation) Email"
616
  msgstr ""
617
 
618
- #: ../settings/settings-edit.php:212
619
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
620
  msgstr ""
621
 
622
- #: ../settings/settings-edit.php:224
623
  msgid "Subject for Welcome Email"
624
  msgstr ""
625
 
626
- #: ../settings/settings-edit.php:225
627
  msgid ""
628
  "Subject for the subscriber welcome email. This will be sent whenever a "
629
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
630
  "Opt-In) successfully."
631
  msgstr ""
632
 
633
- #: ../settings/settings-edit.php:231
634
  msgid "Email Content for Welcome Email"
635
  msgstr ""
636
 
637
- #: ../settings/settings-edit.php:232
638
  msgid ""
639
  "Content for the subscriber welcome email whenever a user's email is either "
640
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
641
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
642
  msgstr ""
643
 
644
- #: ../settings/settings-edit.php:241
645
  msgid ""
646
  "This unsubscribe link is automatically added to all the emails that are sent "
647
  "from this plugin. It is a readonly field and you are advised not to modify "
648
  "it."
649
  msgstr ""
650
 
651
- #: ../settings/settings-edit.php:248
652
  msgid ""
653
  "The text for the unsubscribe link. This text is automatically added with "
654
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
655
  msgstr ""
656
 
657
- #: ../settings/settings-edit.php:255
658
  msgid ""
659
  "This text will be displayed once user clicks on unsubscribe link from the "
660
  "email."
661
  msgstr ""
662
 
663
- #: ../settings/settings-edit.php:262
664
  msgid "Error in the Subscribe / Confirmation Link"
665
  msgstr ""
666
 
667
- #: ../settings/settings-edit.php:263
668
  msgid ""
669
  "Default message to display if there is any issue while clicking on subscribe "
670
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
671
  msgstr ""
672
 
673
- #: ../settings/settings-edit.php:270
674
  msgid ""
675
  "Default message to display if there is any issue while clicking on "
676
  "unsubscribe link from the emails."
677
  msgstr ""
678
 
679
- #: ../settings/settings-edit.php:300
680
  msgid "Templates Menu"
681
  msgstr ""
682
 
683
- #: ../settings/settings-edit.php:369
684
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
685
  msgstr ""
686
 
687
- #: ../settings/settings-edit.php:374
688
  msgid "Cron Report"
689
  msgstr ""
690
 
691
- #: ../settings/settings-edit.php:375
692
  msgid ""
693
  "Email to admin whenever a cron URL is triggered from your server.<br "
694
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
695
  msgstr ""
696
 
697
- #: ../settings/settings-edit.php:386
698
  msgid ""
699
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
700
  "schedule-cron-emails/?"
@@ -702,7 +704,7 @@ msgid ""
702
  "Cron?</a>"
703
  msgstr ""
704
 
705
- #: ../settings/settings-edit.php:387
706
  msgid ""
707
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
708
  "schedule-cron-emails-in-cpanel/?"
@@ -710,7 +712,7 @@ msgid ""
710
  "job in cPanel</a>"
711
  msgstr ""
712
 
713
- #: ../settings/settings-edit.php:388
714
  msgid ""
715
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
716
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -718,7 +720,7 @@ msgid ""
718
  "job in Plesk</a>"
719
  msgstr ""
720
 
721
- #: ../settings/settings-edit.php:389
722
  msgid ""
723
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
724
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -726,6 +728,10 @@ msgid ""
726
  "does not support cron jobs?</a>"
727
  msgstr ""
728
 
 
 
 
 
729
  #: ../subscribers/view-subscriber-export.php:12
730
  msgid ""
731
  "Oops! Looks like you are not the site administrator.<br><br>Only the site "
@@ -825,22 +831,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
825
  msgid "<span style=\"color:#993399;\">Immediately</span>"
826
  msgstr "<span style=\"color:#993399;\">Omgående</span>"
827
 
828
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
829
- #: subscribers/view-subscriber-show.php:289
830
- msgid "Name"
831
- msgstr "Namn"
832
-
833
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
834
- msgid "Email *"
835
- msgstr "E-post *"
836
-
837
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
838
- #: php:202
839
- msgid "Subscribe"
840
- msgstr "Prenumerera"
841
-
842
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
843
- #: register.php:839
844
  msgid "Email Subscribers"
845
  msgstr "Email Subscribers"
846
 
@@ -855,7 +847,7 @@ msgid "Post Notifications"
855
  msgstr "Meddelande"
856
 
857
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
858
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
859
  msgid "Newsletters"
860
  msgstr "Nyhetsbrev"
861
 
@@ -980,66 +972,36 @@ msgid "Please enter the mail count, only number."
980
  msgstr "Ange antalet mail. endast siffror"
981
 
982
  #: ../classes/es-register.php:258
983
- msgctxt "widget-enhanced-select"
984
- msgid "Please enter email address"
985
- msgstr "Ange e-postadress"
986
-
987
- #: ../classes/es-register.php:259
988
- msgctxt "widget-enhanced-select"
989
- msgid "Successfully Subscribed."
990
- msgstr "Prenumeration lyckades"
991
-
992
- #: ../classes/es-register.php:261
993
- msgctxt "widget-enhanced-select"
994
- msgid "Email Address already exists!"
995
- msgstr "E-postadressen finns redan"
996
-
997
- #: ../classes/es-register.php:262
998
- msgctxt "widget-enhanced-select"
999
- msgid "Oops.. Unexpected error occurred."
1000
- msgstr "Oups. Ett oväntat fel inträffade."
1001
-
1002
- #: ../classes/es-register.php:263
1003
- msgctxt "widget-enhanced-select"
1004
- msgid "Invalid email address"
1005
- msgstr "Ogiltig e-postadress"
1006
-
1007
- #: ../classes/es-register.php:264
1008
- msgctxt "widget-enhanced-select"
1009
- msgid "Please try after some time"
1010
- msgstr "Försök igen om en stund."
1011
-
1012
- #: ../classes/es-register.php:272
1013
  msgctxt "widget-page-enhanced-select"
1014
  msgid "Please enter email address"
1015
  msgstr "Ange e-postadress"
1016
 
1017
- #: ../classes/es-register.php:273
1018
  msgctxt "widget-page-enhanced-select"
1019
  msgid "Successfully Subscribed."
1020
  msgstr "Prenumeration lyckades"
1021
 
1022
- #: ../classes/es-register.php:275
1023
  msgctxt "widget-page-enhanced-select"
1024
  msgid "Email Address already exists!"
1025
  msgstr "E-postadressen finns redan"
1026
 
1027
- #: ../classes/es-register.php:276
1028
  msgctxt "widget-page-enhanced-select"
1029
  msgid "Oops.. Unexpected error occurred."
1030
  msgstr "Oups. Ett oväntat fel inträffade."
1031
 
1032
- #: ../classes/es-register.php:277
1033
  msgctxt "widget-page-enhanced-select"
1034
  msgid "Invalid email address"
1035
  msgstr "Ogiltig e-postadress"
1036
 
1037
- #: ../classes/es-register.php:278
1038
  msgctxt "widget-page-enhanced-select"
1039
  msgid "Please try after some time"
1040
  msgstr "Försök igen om en stund."
1041
 
1042
- #: ../classes/es-register.php:804
1043
  msgid ""
1044
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1045
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -1051,50 +1013,63 @@ msgstr ""
1051
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
1052
  "Icegram i förväg!"
1053
 
1054
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
1055
  msgid "Thumbnail"
1056
  msgstr "Thumbnail"
1057
 
1058
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
1059
  #: sentmail/sentmail-show.php:121
1060
  msgid "Preview"
1061
  msgstr "Granska"
1062
 
1063
- #: ../classes/es-register.php:949
1064
  msgid "Newsletter"
1065
  msgstr "Nyhetsbrev"
1066
 
1067
- #: ../classes/es-register.php:950
1068
  msgid "Post Notification"
1069
  msgstr "Post notiifiering"
1070
 
1071
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
 
1072
  msgid "Available Keywords"
1073
  msgstr "Tillgängliga nyckelord"
1074
 
1075
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
1076
  msgid "Widget Title"
1077
  msgstr "Widget titel"
1078
 
1079
- #: ../classes/es-register.php:1153
1080
  msgid "Short description about subscription form"
1081
  msgstr "Kort beskrivning av prenumerationsformulär"
1082
 
1083
- #: ../classes/es-register.php:1157
1084
  msgid "Display Name Field"
1085
  msgstr "Visa Namnfältet"
1086
 
1087
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
1088
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
1089
  msgid "YES"
1090
  msgstr "JA"
1091
 
1092
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
1093
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
1094
  msgid "NO"
1095
  msgstr "NEJ"
1096
 
1097
- #: ../classes/es-register.php:1164
1098
  msgid "Subscriber Group"
1099
  msgstr "Prenumerantgrupp"
1100
 
@@ -1595,23 +1570,23 @@ msgstr "Double Opt In"
1595
  msgid "Single Opt In"
1596
  msgstr "Single Opt In"
1597
 
1598
- #: ../settings/settings-edit.php:116
1599
  msgid "Image Size"
1600
  msgstr "Bildstorlek"
1601
 
1602
- #: ../settings/settings-edit.php:121
1603
  msgid "Full Size"
1604
  msgstr "Full storlek"
1605
 
1606
- #: ../settings/settings-edit.php:122
1607
  msgid "Medium Size"
1608
  msgstr "Mediumstorlek"
1609
 
1610
- #: ../settings/settings-edit.php:129
1611
  msgid "Admin Email Addresses"
1612
  msgstr "Admins epostadresser"
1613
 
1614
- #: ../settings/settings-edit.php:130
1615
  msgid ""
1616
  "Enter the admin email addresses that should receive notifications (separated "
1617
  "by comma)."
@@ -1619,25 +1594,25 @@ msgstr ""
1619
  "Ange Admins mailadresser dit notifieringar ska skickas. (separera dem med "
1620
  "komma (,)"
1621
 
1622
- #: ../settings/settings-edit.php:137
1623
  msgid ""
1624
  "To send admin email notifications for the new subscriber. This option must "
1625
  "be set to YES."
1626
  msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
1627
 
1628
- #: ../settings/settings-edit.php:164
1629
  msgid "Sent Report Subject"
1630
  msgstr "Sändrapport Ämne"
1631
 
1632
- #: ../settings/settings-edit.php:171
1633
  msgid "Sent Report Content"
1634
  msgstr "Sändrapport - Innehåll"
1635
 
1636
- #: ../settings/settings-edit.php:198
1637
  msgid "It is a readonly field and you are advised not to modify it."
1638
  msgstr "Det är readonly och du bör inte ändra det."
1639
 
1640
- #: ../settings/settings-edit.php:205
1641
  msgid ""
1642
  "This text will be displayed once user clicks on email confirmation link from "
1643
  "the Double Opt In (confirmation) Email."
@@ -1645,103 +1620,99 @@ msgstr ""
1645
  "Denna text visas när en prenumerant klickar på bekräftelselänken för att "
1646
  "bekräfta sin prenumeration i double Opt In."
1647
 
1648
- #: ../settings/settings-edit.php:213
1649
  msgid ""
1650
  "To send welcome email to subscriber after successful signup. This option "
1651
  "must be set to YES."
1652
  msgstr "För att sända välkomstmail till nya prenumeranter, så måste detta val vara JA"
1653
 
1654
- #: ../settings/settings-edit.php:240
1655
  msgid "Unsubscribe Link"
1656
  msgstr "Länk för att avbeställa prenumerationen"
1657
 
1658
- #: ../settings/settings-edit.php:247
1659
  msgid "Unsubscribe Text in Email"
1660
  msgstr "Text i email vid avlutad prenumeration"
1661
 
1662
- #: ../settings/settings-edit.php:254
1663
  msgid "Text to display after an email address is unsubscribed"
1664
  msgstr "Text att visa när en prenumeration avbetsällts."
1665
 
1666
- #: ../settings/settings-edit.php:269
1667
  msgid "Error in the Unsubscribe Link"
1668
  msgstr "FEL i länken för avprenumeration"
1669
 
1670
- #: ../settings/settings-edit.php:282
1671
  msgid "Select user roles who can access following menus. Only Admin can change this."
1672
  msgstr ""
1673
  "Välj användarroll som kan få tillgång till följande menyer. Bara Admin kan "
1674
  "ändra detta."
1675
 
1676
- #: ../settings/settings-edit.php:288
1677
  msgid "Subscribers Menu"
1678
  msgstr "Prenumenrantmeny"
1679
 
1680
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1681
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1682
- #: settings/settings-edit.php:340
1683
- msgid "Administrator Only"
1684
- msgstr "Endast Adminstratör"
1685
-
1686
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1687
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1688
  #: settings/settings-edit.php:341
1689
- msgid "Administrator/Editor"
1690
- msgstr "Administratör/Redigerare"
1691
 
1692
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1693
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1694
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1695
  msgid "Administrator/Editor/Author/Contributor"
1696
  msgstr "Administratör/Redigerare/Författare/Bidragsgivare"
1697
 
1698
- #: ../settings/settings-edit.php:312
1699
  msgid "Post Notifications Menu"
1700
  msgstr "Meddelandemeny"
1701
 
1702
- #: ../settings/settings-edit.php:336
1703
  msgid "Reports Menu"
1704
  msgstr "Rapportmeny"
1705
 
1706
- #: ../settings/settings-edit.php:353
1707
  msgid "Cron job URL"
1708
  msgstr "Cron job URL"
1709
 
1710
- #: ../settings/settings-edit.php:354
1711
  msgid ""
1712
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1713
  "modify it."
1714
  msgstr "Detta är ditt Cron job URL. Det är readonly och du bör inte ändra det."
1715
 
1716
- #: ../settings/settings-edit.php:363
1717
  msgid "Email Count"
1718
  msgstr "Antal mail"
1719
 
1720
- #: ../settings/settings-edit.php:364
1721
  msgid "Number of emails that you want to trigger per hour."
1722
  msgstr "Antal mail du vill sända per timme"
1723
 
1724
- #: ../settings/settings-edit.php:385
1725
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1726
  msgstr "Vad är Cron och hur görs inställningarna."
1727
 
1728
- #: ../settings/settings-edit.php:504
1729
  msgid "Please enter sender of notifications from name."
1730
  msgstr "Ange namnet för notifieringens avsändare"
1731
 
1732
- #: ../settings/settings-edit.php:509
1733
  msgid "Please enter sender of notifications from email."
1734
  msgstr "Ange avsändarens mailadress på email för notifieringar"
1735
 
1736
- #: ../settings/settings-edit.php:553
1737
- msgid "Please enter valid mail count."
1738
- msgstr "Välj giltigt antal mailkonto"
1739
-
1740
- #: ../settings/settings-edit.php:566
1741
  msgid "Settings Saved."
1742
  msgstr "Inställningar sparade"
1743
 
1744
- #: ../settings/settings-edit.php:569
1745
  msgid "Oops, unable to update."
1746
  msgstr "Oups... Det går ej att uppdatera"
1747
 
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"
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
 
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 "
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 ""
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/?"
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/?"
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/?"
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/?"
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 "
831
  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
 
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
 
972
  msgstr "Ange antalet mail. endast siffror"
973
 
974
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
  msgctxt "widget-page-enhanced-select"
976
  msgid "Please enter email address"
977
  msgstr "Ange e-postadress"
978
 
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"
991
  msgid "Oops.. Unexpected error occurred."
992
  msgstr "Oups. Ett oväntat fel inträffade."
993
 
994
+ #: ../classes/es-register.php:263
995
  msgctxt "widget-page-enhanced-select"
996
  msgid "Invalid email address"
997
  msgstr "Ogiltig e-postadress"
998
 
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-"
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
 
1570
  msgid "Single Opt In"
1571
  msgstr "Single Opt In"
1572
 
1573
+ #: ../settings/settings-edit.php:117
1574
  msgid "Image Size"
1575
  msgstr "Bildstorlek"
1576
 
1577
+ #: ../settings/settings-edit.php:122
1578
  msgid "Full Size"
1579
  msgstr "Full storlek"
1580
 
1581
+ #: ../settings/settings-edit.php:123
1582
  msgid "Medium Size"
1583
  msgstr "Mediumstorlek"
1584
 
1585
+ #: ../settings/settings-edit.php:130
1586
  msgid "Admin Email Addresses"
1587
  msgstr "Admins epostadresser"
1588
 
1589
+ #: ../settings/settings-edit.php:131
1590
  msgid ""
1591
  "Enter the admin email addresses that should receive notifications (separated "
1592
  "by comma)."
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."
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
 
languages/email-subscribers-tr_TR.mo CHANGED
Binary file
languages/email-subscribers-tr_TR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Wed May 23 2018 11:04:11 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"
@@ -22,24 +22,46 @@ msgstr ""
22
  "X-Loco-Target-Locale: tr_TR\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:740
26
  msgid "Check Pro plan"
27
  msgstr ""
28
 
29
- #: ../classes/es-register.php:778
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:779
36
  msgid "Steps to enable"
37
  msgstr ""
38
 
39
- #: ../classes/es-register.php:779
40
  msgid "Ok, got it"
41
  msgstr ""
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  #: ../help/help.php:197
44
  msgid ""
45
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
@@ -82,6 +104,10 @@ msgid ""
82
  "deleted too and email will not be sent."
83
  msgstr ""
84
 
 
 
 
 
85
  #: ../email-subscribers.php:95
86
  msgctxt "timezone date format"
87
  msgid "Y-m-d H:i:s"
@@ -131,23 +157,9 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Planlanmış Gönderiyle
131
  msgid "<span style=\"color:#993399;\">Immediately</span>"
132
  msgstr "<span style=\"color:#993399;\">Acilen</span>"
133
 
134
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
135
- #: subscribers/view-subscriber-show.php:289
136
- msgid "Name"
137
- msgstr "Adınız"
138
-
139
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
140
- msgid "Email *"
141
- msgstr "E-posta Adresiniz*"
142
-
143
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
144
- #: php:202
145
- msgid "Subscribe"
146
- msgstr "Üye Ol"
147
-
148
  #. Name of the plugin
149
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
150
- #: register.php:839
151
  msgid "Email Subscribers"
152
  msgstr "Email Subscribers"
153
 
@@ -157,7 +169,7 @@ msgid "Subscribers"
157
  msgstr "Aboneler"
158
 
159
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
160
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
161
  msgid "Templates"
162
  msgstr "Şablonlar"
163
 
@@ -167,7 +179,7 @@ msgid "Post Notifications"
167
  msgstr "Gönderi Bildirimleri"
168
 
169
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
170
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
171
  msgid "Newsletters"
172
  msgstr "Bültenler"
173
 
@@ -319,57 +331,16 @@ msgid "Please enter the mail count, only number."
319
  msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
320
 
321
  #: ../classes/es-register.php:258
322
- msgctxt "widget-enhanced-select"
323
- msgid "Please enter email address"
324
- msgstr "Yeni e-posta adresini giriniz"
325
-
326
- #: ../classes/es-register.php:259
327
- msgctxt "widget-enhanced-select"
328
- msgid "Successfully Subscribed."
329
- msgstr "Başarıyla Abone Edildi."
330
-
331
- #: ../classes/es-register.php:260
332
- msgctxt "widget-enhanced-select"
333
- msgid ""
334
- "Your subscription was successful! Kindly check your mailbox and confirm your "
335
- "subscription. If you don't see the email within a few minutes, check the "
336
- "spam/junk folder."
337
- msgstr ""
338
- "Aboneliğiniz başarılı! Lütfen eposta kutunuzu kontrol ediniz ve aboneliği "
339
- "onaylayınız. Birkaç dakika içinde onay epostası gelmedi ise lütfen önemsiz "
340
- "epostalar kutusunu kontrol ediniz."
341
-
342
- #: ../classes/es-register.php:261
343
- msgctxt "widget-enhanced-select"
344
- msgid "Email Address already exists!"
345
- msgstr "E-posta adresi zaten mevcut!"
346
-
347
- #: ../classes/es-register.php:262
348
- msgctxt "widget-enhanced-select"
349
- msgid "Oops.. Unexpected error occurred."
350
- msgstr "Beklenmeyen bir hata oluştu."
351
-
352
- #: ../classes/es-register.php:263
353
- msgctxt "widget-enhanced-select"
354
- msgid "Invalid email address"
355
- msgstr "Geçersiz e-posta adresi"
356
-
357
- #: ../classes/es-register.php:264
358
- msgctxt "widget-enhanced-select"
359
- msgid "Please try after some time"
360
- msgstr "Biraz sonra tekrar deneyiniz"
361
-
362
- #: ../classes/es-register.php:272
363
  msgctxt "widget-page-enhanced-select"
364
  msgid "Please enter email address"
365
  msgstr "Lütfen e-posta adresi giriniz"
366
 
367
- #: ../classes/es-register.php:273
368
  msgctxt "widget-page-enhanced-select"
369
  msgid "Successfully Subscribed."
370
  msgstr "Başarıyla Abone Edildi."
371
 
372
- #: ../classes/es-register.php:274
373
  msgctxt "widget-page-enhanced-select"
374
  msgid ""
375
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -380,27 +351,27 @@ msgstr ""
380
  "onaylayınız. Birkaç dakika içinde onay epostası gelmedi ise lütfen önemsiz "
381
  "epostalar kutusunu kontrol ediniz."
382
 
383
- #: ../classes/es-register.php:275
384
  msgctxt "widget-page-enhanced-select"
385
  msgid "Email Address already exists!"
386
  msgstr "E-posta adresi zaten mevcut!"
387
 
388
- #: ../classes/es-register.php:276
389
  msgctxt "widget-page-enhanced-select"
390
  msgid "Oops.. Unexpected error occurred."
391
  msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
392
 
393
- #: ../classes/es-register.php:277
394
  msgctxt "widget-page-enhanced-select"
395
  msgid "Invalid email address"
396
  msgstr "Geçersiz e-posta adresi"
397
 
398
- #: ../classes/es-register.php:278
399
  msgctxt "widget-page-enhanced-select"
400
  msgid "Please try after some time"
401
  msgstr "Biraz sonra tekrar deneyiniz"
402
 
403
- #: ../classes/es-register.php:739
404
  msgid ""
405
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
406
  "subscribers list?</b> Come check our Pro plan."
@@ -408,11 +379,11 @@ msgstr ""
408
  "<b>Hazır eposta şablonu mu istiyorsunuz?</b> Veya, <b>abone listesini "
409
  "temizlemek mi?</b> Hadi o zaman Pro lisansa göz atın."
410
 
411
- #: ../classes/es-register.php:740
412
  msgid "Not interested."
413
  msgstr "İlgilenmiyor."
414
 
415
- #: ../classes/es-register.php:804
416
  msgid ""
417
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
418
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -424,123 +395,121 @@ msgstr ""
424
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
425
  "</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
426
 
427
- #: ../classes/es-register.php:818
428
  #, php-format
429
  msgid "Email Subscribers version: <strong>%s</strong>"
430
  msgstr "Eposta Abone versiyonu: <strong>%s</strong>"
431
 
432
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
433
  msgid "Add new Template"
434
  msgstr "Yeni Şablon Ekle"
435
 
436
- #: ../classes/es-register.php:831
437
  msgid "Edit Templates"
438
  msgstr "Şablon Düzenle"
439
 
440
- #: ../classes/es-register.php:832
441
  msgid "New Templates"
442
  msgstr "Yeni Şablon"
443
 
444
- #: ../classes/es-register.php:834
445
  msgid "View Templates"
446
  msgstr "Şablon Görüntüle"
447
 
448
- #: ../classes/es-register.php:835
449
  msgid "Search Templates"
450
  msgstr "Şablon Ara"
451
 
452
- #: ../classes/es-register.php:836
453
  msgid "No Templates found"
454
  msgstr "Şablon bulunamadı"
455
 
456
- #: ../classes/es-register.php:837
457
  msgid "No Templates found in Trash"
458
  msgstr "Çöp kutusunda şablon bulunamadı"
459
 
460
- #: ../classes/es-register.php:840
461
  msgid "Thumbnail (For Visual Representation only)"
462
  msgstr "Küçük resim(Sadece görseli sunum için)"
463
 
464
- #: ../classes/es-register.php:841
465
  msgid "Set thumbnail"
466
  msgstr "Küçük resim ayarla"
467
 
468
- #: ../classes/es-register.php:878
469
  msgid "Template Type"
470
  msgstr "ŞAblon Tipi"
471
 
472
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
473
  msgid "Thumbnail"
474
  msgstr "Küçük Boy"
475
 
476
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
477
  #: sentmail/sentmail-show.php:121
478
  msgid "Preview"
479
  msgstr "Önizleme"
480
 
481
- #: ../classes/es-register.php:944
482
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
483
- msgstr "Gönderim Bildirimi için Mevcut Anahtar Kelime : {{POSTTITLE}}"
484
-
485
- #: ../classes/es-register.php:947
486
  msgid "Select your Email Template Type"
487
  msgstr "Şablon Tipini Seçiniz"
488
 
489
- #: ../classes/es-register.php:949
490
  msgid "Newsletter"
491
  msgstr "Bülten"
492
 
493
- #: ../classes/es-register.php:950
494
  msgid "Post Notification"
495
  msgstr "Gönderi Bildirimi"
496
 
497
- #: ../classes/es-register.php:997
498
  msgid "Preview Template"
499
  msgstr "Şablon Önizleme"
500
 
501
- #: ../classes/es-register.php:1011
502
- #, php-format
503
- msgid ""
504
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
505
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
506
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
507
- msgstr ""
508
- "%s - Eposta Bildirimi İçin: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
509
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
510
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
511
-
512
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
513
  msgid "Available Keywords"
514
  msgstr "Mevcut Anahtar Kelimeler"
515
 
516
- #: ../classes/es-register.php:1012
517
  #, php-format
518
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
519
  msgstr "<br/><br/>%s - Bülten İçin: {{NAME}}, {{EMAIL}}"
520
 
521
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgid "Widget Title"
523
  msgstr "Bileşen Adı"
524
 
525
- #: ../classes/es-register.php:1153
526
  msgid "Short description about subscription form"
527
  msgstr "Abone formu hakkında kısa açıklama"
528
 
529
- #: ../classes/es-register.php:1157
530
  msgid "Display Name Field"
531
  msgstr "İsim Alanını Göster"
532
 
533
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
534
- #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
535
  msgid "YES"
536
  msgstr "EVET"
537
 
538
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
539
- #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
540
  msgid "NO"
541
  msgstr "HAYIR"
542
 
543
- #: ../classes/es-register.php:1164
544
  msgid "Subscriber Group"
545
  msgstr "Abone Grubu"
546
 
@@ -1447,11 +1416,11 @@ msgstr "Çift Onay"
1447
  msgid "Single Opt In"
1448
  msgstr "Tek Onay"
1449
 
1450
- #: ../settings/settings-edit.php:116
1451
  msgid "Image Size"
1452
  msgstr "Resim Ölçüsü"
1453
 
1454
- #: ../settings/settings-edit.php:117
1455
  msgid ""
1456
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1457
  "Emails."
@@ -1459,29 +1428,29 @@ msgstr ""
1459
  "Gönderi E-postaları'nda gösterilmek üzere {{POSTIMAGE}} için resim boyutunu "
1460
  "seçin."
1461
 
1462
- #: ../settings/settings-edit.php:121
1463
  msgid "Full Size"
1464
  msgstr "Tam Boy"
1465
 
1466
- #: ../settings/settings-edit.php:122
1467
  msgid "Medium Size"
1468
  msgstr "Orta Boy"
1469
 
1470
- #: ../settings/settings-edit.php:129
1471
  msgid "Admin Email Addresses"
1472
  msgstr "Yönetici E-posta Adresleri"
1473
 
1474
- #: ../settings/settings-edit.php:130
1475
  msgid ""
1476
  "Enter the admin email addresses that should receive notifications (separated "
1477
  "by comma)."
1478
  msgstr "Bildirimleri almak için Yönetici e-postalarını giriniz. (Virgülle ayırınız)."
1479
 
1480
- #: ../settings/settings-edit.php:136
1481
  msgid "Notify Admin when a new subscriber signs up"
1482
  msgstr "Yeni bir abone kaydolduğunda Yönetici'ye bildir"
1483
 
1484
- #: ../settings/settings-edit.php:137
1485
  msgid ""
1486
  "To send admin email notifications for the new subscriber. This option must "
1487
  "be set to YES."
@@ -1489,21 +1458,21 @@ msgstr ""
1489
  "Yöneticiye yeni aboneleri e-posta bildirimleri göndermek için bu seçenek "
1490
  "EVET olarak ayarlanmalı."
1491
 
1492
- #: ../settings/settings-edit.php:149
1493
  msgid "Admin Email Subject on new subscriber sign up"
1494
  msgstr "Yeni abonelikte Yönetici E-posta Konusu Kayıt et"
1495
 
1496
- #: ../settings/settings-edit.php:150
1497
  msgid ""
1498
  "Subject for the admin email whenever a new subscriber signs up and is "
1499
  "confirmed."
1500
  msgstr "Yeni bir abone kaydolduğunda ve onaylandığında yönetici e-postası konusu."
1501
 
1502
- #: ../settings/settings-edit.php:156
1503
  msgid "Admin Email Content on new subscriber signs up"
1504
  msgstr "Yeni abonelikte Yönetici E-postası İçeriği Kaydet"
1505
 
1506
- #: ../settings/settings-edit.php:157
1507
  msgid ""
1508
  "Content for the admin email whenever a new subscriber signs up and is "
1509
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
@@ -1512,19 +1481,19 @@ msgstr ""
1512
  "içerik. <br /> Kullanılabilir Anahtar Kelimeler: {{NAME}}, {{EMAIL}}, "
1513
  "{{GROUP}}"
1514
 
1515
- #: ../settings/settings-edit.php:164
1516
  msgid "Sent Report Subject"
1517
  msgstr "Gönderilen Rapor Konusu"
1518
 
1519
- #: ../settings/settings-edit.php:165
1520
  msgid "Subject for the email report which will be sent to admin."
1521
  msgstr "Yöneticiye gönderilecek e-posta raporu için konu."
1522
 
1523
- #: ../settings/settings-edit.php:171
1524
  msgid "Sent Report Content"
1525
  msgstr "Gönderilen Rapor İçeriği"
1526
 
1527
- #: ../settings/settings-edit.php:172
1528
  msgid ""
1529
  "Content for the email report which will be sent to admin.<br />Available "
1530
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
@@ -1532,11 +1501,11 @@ msgstr ""
1532
  "Yöneticiye gönderilecek e-posta raporunun içeriği. <br /> Kullanılabilir "
1533
  "Anahtar Kelimeler: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1534
 
1535
- #: ../settings/settings-edit.php:183
1536
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1537
  msgstr "Çift Onay Email Konusu (Onay E-postası)"
1538
 
1539
- #: ../settings/settings-edit.php:184
1540
  msgid ""
1541
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1542
  "subscriber signs up."
@@ -1544,11 +1513,11 @@ msgstr ""
1544
  "Bir abonenin kaydolduğu her defasında Çift Onay için onay e-postasının "
1545
  "gönderilmesi konusu."
1546
 
1547
- #: ../settings/settings-edit.php:190
1548
  msgid "Double Opt-In Email Content (Confirmation Email)"
1549
  msgstr "Çift Onayda E-posta İçeriği (Onay E-postası)"
1550
 
1551
- #: ../settings/settings-edit.php:191
1552
  msgid ""
1553
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1554
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
@@ -1556,15 +1525,15 @@ msgstr ""
1556
  "Abone kayıt olduğunda Çift Onay'ın gönderileceği onay e-postasının içeriği. "
1557
  "<br /> Kullanılabilir Anahtar Kelimeler: {{NAME}}, {{LINK}}"
1558
 
1559
- #: ../settings/settings-edit.php:197
1560
  msgid "Double Opt-In Confirmation Link"
1561
  msgstr "Çift Onay Doğrulama Bağlantısı"
1562
 
1563
- #: ../settings/settings-edit.php:198
1564
  msgid "It is a readonly field and you are advised not to modify it."
1565
  msgstr "Bu sadece okunabilir bir alandır ve düzenleme yapılmaması önerilir."
1566
 
1567
- #: ../settings/settings-edit.php:204
1568
  msgid ""
1569
  "Text to display after an email address is successfully subscribed from "
1570
  "Double Opt-In (Confirmation) Email"
@@ -1572,17 +1541,17 @@ msgstr ""
1572
  "E-posta adresinin Çift Onay E-postası'ndan başarıyla abone olduktan sonra "
1573
  "görüntülenecek metin"
1574
 
1575
- #: ../settings/settings-edit.php:205
1576
  msgid ""
1577
  "This text will be displayed once user clicks on email confirmation link from "
1578
  "the Double Opt In (confirmation) Email."
1579
  msgstr "Bu mesaj, ikinci onayda aboneler onay linkine tıkladığı zaman gösterilecek."
1580
 
1581
- #: ../settings/settings-edit.php:212
1582
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1583
  msgstr "Kayıt olduktan sonra Yeni Abonelere Hoş Geldiniz E-postası gönderilsin mi?"
1584
 
1585
- #: ../settings/settings-edit.php:213
1586
  msgid ""
1587
  "To send welcome email to subscriber after successful signup. This option "
1588
  "must be set to YES."
@@ -1590,11 +1559,11 @@ msgstr ""
1590
  "Başarılı bir kayıt yapıldıktan sonra Hoşgeldin Mesajı göndermek için bu "
1591
  "seçenek EVET olarak seçilmelidir."
1592
 
1593
- #: ../settings/settings-edit.php:224
1594
  msgid "Subject for Welcome Email"
1595
  msgstr "Hoş Geldiniz E-postası Konusu"
1596
 
1597
- #: ../settings/settings-edit.php:225
1598
  msgid ""
1599
  "Subject for the subscriber welcome email. This will be sent whenever a "
1600
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
@@ -1604,11 +1573,11 @@ msgstr ""
1604
  "onaylandığında (Çift Onay varsa) / abone olduğunda (Tek Onaylı ise) "
1605
  "başarıyla gönderildiğinde gönderilir."
1606
 
1607
- #: ../settings/settings-edit.php:231
1608
  msgid "Email Content for Welcome Email"
1609
  msgstr "Karşılama E-postası için E-posta İçeriği"
1610
 
1611
- #: ../settings/settings-edit.php:232
1612
  msgid ""
1613
  "Content for the subscriber welcome email whenever a user's email is either "
1614
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
@@ -1618,11 +1587,11 @@ msgstr ""
1618
  "(Tek Onaylı ise) başarıyla abone olduğunda abone karşılama e-postası içeriği."
1619
  " <br /> Kullanılabilir Anahtar Kelimeler: {{NAME}}, {{GROUP}}, {{ LİNK}}"
1620
 
1621
- #: ../settings/settings-edit.php:240
1622
  msgid "Unsubscribe Link"
1623
  msgstr "Üyelikten Ayrıl Linki"
1624
 
1625
- #: ../settings/settings-edit.php:241
1626
  msgid ""
1627
  "This unsubscribe link is automatically added to all the emails that are sent "
1628
  "from this plugin. It is a readonly field and you are advised not to modify "
@@ -1632,11 +1601,11 @@ msgstr ""
1632
  "otomatik olarak eklenir. Bu bir salt okunur alan ve onu değiştirmemeniz "
1633
  "tavsiye edilir."
1634
 
1635
- #: ../settings/settings-edit.php:247
1636
  msgid "Unsubscribe Text in Email"
1637
  msgstr "E-postada Üyelikten Ayrıl Yazısı"
1638
 
1639
- #: ../settings/settings-edit.php:248
1640
  msgid ""
1641
  "The text for the unsubscribe link. This text is automatically added with "
1642
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
@@ -1645,11 +1614,11 @@ msgstr ""
1645
  "bağlantısıyla otomatik olarak eklenir. <br /> Kullanılabilir Anahtar Kelime: "
1646
  "{{LINK}}"
1647
 
1648
- #: ../settings/settings-edit.php:254
1649
  msgid "Text to display after an email address is unsubscribed"
1650
  msgstr "Bir e-posta üyeliği sonlandırıldığında gösterilecek mesaj."
1651
 
1652
- #: ../settings/settings-edit.php:255
1653
  msgid ""
1654
  "This text will be displayed once user clicks on unsubscribe link from the "
1655
  "email."
@@ -1657,11 +1626,11 @@ msgstr ""
1657
  "Bu metin, kullanıcı e-postadan abonelikten çık bağlantısını tıklayarak bir "
1658
  "kez görüntülenir."
1659
 
1660
- #: ../settings/settings-edit.php:262
1661
  msgid "Error in the Subscribe / Confirmation Link"
1662
  msgstr "Abone / Onay Bağlantısında Hata"
1663
 
1664
- #: ../settings/settings-edit.php:263
1665
  msgid ""
1666
  "Default message to display if there is any issue while clicking on subscribe "
1667
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
@@ -1669,11 +1638,11 @@ msgstr ""
1669
  "Çift Onay e-postalarından abonelik veya onay bağlantısına tıklarken herhangi "
1670
  "bir sorun varsa, görüntülenecek varsayılan mesaj."
1671
 
1672
- #: ../settings/settings-edit.php:269
1673
  msgid "Error in the Unsubscribe Link"
1674
  msgstr "\"Üyelikten Ayrıl\" Linkinde Hata"
1675
 
1676
- #: ../settings/settings-edit.php:270
1677
  msgid ""
1678
  "Default message to display if there is any issue while clicking on "
1679
  "unsubscribe link from the emails."
@@ -1681,51 +1650,51 @@ msgstr ""
1681
  "E-postalardan aboneliğinizi iptal et bağlantısına tıklarken herhangi bir "
1682
  "sorun olduğunda görüntülenecek varsayılan mesaj."
1683
 
1684
- #: ../settings/settings-edit.php:282
1685
  msgid "Select user roles who can access following menus. Only Admin can change this."
1686
  msgstr ""
1687
  "Aşağıdaki menülere girebilecek kullanıcı yetkilerini seçiniz. Bunu sadece "
1688
  "yönetici değiştirebilir."
1689
 
1690
- #: ../settings/settings-edit.php:288
1691
  msgid "Subscribers Menu"
1692
  msgstr "Aboneler Menüsü"
1693
 
1694
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1695
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1696
- #: settings/settings-edit.php:340
1697
- msgid "Administrator Only"
1698
- msgstr "Sadece Yönetici"
1699
-
1700
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1701
  #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1702
  #: settings/settings-edit.php:341
1703
- msgid "Administrator/Editor"
1704
- msgstr "Yönetici/Editör"
1705
 
1706
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1707
  #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1708
  #: settings/settings-edit.php:342
 
 
 
 
 
 
1709
  msgid "Administrator/Editor/Author/Contributor"
1710
  msgstr "Yönetici/Editör/Yazar/Katılımcı"
1711
 
1712
- #: ../settings/settings-edit.php:300
1713
  msgid "Templates Menu"
1714
  msgstr "Şablon Menüsü"
1715
 
1716
- #: ../settings/settings-edit.php:312
1717
  msgid "Post Notifications Menu"
1718
  msgstr "Gönderi Bildirim Menüsü"
1719
 
1720
- #: ../settings/settings-edit.php:336
1721
  msgid "Reports Menu"
1722
  msgstr "Raporlar Menüsü"
1723
 
1724
- #: ../settings/settings-edit.php:353
1725
  msgid "Cron job URL"
1726
  msgstr "Planlanmış gönderim URL"
1727
 
1728
- #: ../settings/settings-edit.php:354
1729
  msgid ""
1730
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1731
  "modify it."
@@ -1733,25 +1702,25 @@ msgstr ""
1733
  "Bu sizin planlanmış gönderi URL adresinizdir. Bu alan okunabilir bir alandır "
1734
  "ve düzenleme yapılmaması önerilir."
1735
 
1736
- #: ../settings/settings-edit.php:363
1737
  msgid "Email Count"
1738
  msgstr "E-posta sayısı"
1739
 
1740
- #: ../settings/settings-edit.php:364
1741
  msgid "Number of emails that you want to trigger per hour."
1742
  msgstr "Her saat bildirim yapmak istediğiniz e-postaların adedi"
1743
 
1744
- #: ../settings/settings-edit.php:369
1745
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1746
  msgstr ""
1747
  "(Hosting panelinizin limitleri var. Her saat için 50 eposta gönderimini "
1748
  "öneriyoruz.)"
1749
 
1750
- #: ../settings/settings-edit.php:374
1751
  msgid "Cron Report"
1752
  msgstr "Planlanmış İş (CRON) Raporu"
1753
 
1754
- #: ../settings/settings-edit.php:375
1755
  msgid ""
1756
  "Email to admin whenever a cron URL is triggered from your server.<br "
1757
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1760,11 +1729,11 @@ msgstr ""
1760
  "eposta gönder. <br />Kullanılabilir Anahtar Kelimeler: {{DATE}}, {{SUBJECT}},"
1761
  " {{COUNT}}"
1762
 
1763
- #: ../settings/settings-edit.php:385
1764
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1765
  msgstr "Planlanmış gönderi (Cron / Otomatik e-postalar) nedir ve nasıl ayarlanır?"
1766
 
1767
- #: ../settings/settings-edit.php:386
1768
  msgid ""
1769
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1770
  "schedule-cron-emails/?"
@@ -1776,7 +1745,7 @@ msgstr ""
1776
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Planlanmış "
1777
  "iş (CRON) nedir?</a>"
1778
 
1779
- #: ../settings/settings-edit.php:387
1780
  msgid ""
1781
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1782
  "schedule-cron-emails-in-cpanel/?"
@@ -1788,7 +1757,7 @@ msgstr ""
1788
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cpanel "
1789
  "için planlanmış iş (CRON) ayarı.</a>"
1790
 
1791
- #: ../settings/settings-edit.php:388
1792
  msgid ""
1793
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1794
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1800,7 +1769,7 @@ msgstr ""
1800
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\"> Plesk "
1801
  "için planlanmış iş (CRON) ayarı.</a>"
1802
 
1803
- #: ../settings/settings-edit.php:389
1804
  msgid ""
1805
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1806
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1812,23 +1781,19 @@ msgstr ""
1812
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1813
  "firmanız planlanmış işlere (CRON) izin veriyor mu?</a>"
1814
 
1815
- #: ../settings/settings-edit.php:504
1816
  msgid "Please enter sender of notifications from name."
1817
  msgstr "Bildirimlerin hangi isimden gönderileceğini giriniz."
1818
 
1819
- #: ../settings/settings-edit.php:509
1820
  msgid "Please enter sender of notifications from email."
1821
  msgstr "Bildirimlerin hangi E-Posta adresinden gönderileceğini giriniz."
1822
 
1823
- #: ../settings/settings-edit.php:553
1824
- msgid "Please enter valid mail count."
1825
- msgstr "Lütfen geçerli E-posta sayısını giriniz."
1826
-
1827
- #: ../settings/settings-edit.php:566
1828
  msgid "Settings Saved."
1829
  msgstr "Ayarlar Kaydedildi."
1830
 
1831
- #: ../settings/settings-edit.php:569
1832
  msgid "Oops, unable to update."
1833
  msgstr "Bir dakika, güncelleme yapılamadı."
1834
 
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"
22
  "X-Loco-Target-Locale: tr_TR\n"
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}}, "
56
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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 ""
64
+
65
  #: ../help/help.php:197
66
  msgid ""
67
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
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
+
111
  #: ../email-subscribers.php:95
112
  msgctxt "timezone date format"
113
  msgid "Y-m-d H:i:s"
157
  msgid "<span style=\"color:#993399;\">Immediately</span>"
158
  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
  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
  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
 
331
  msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
332
 
333
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  msgctxt "widget-page-enhanced-select"
335
  msgid "Please enter email address"
336
  msgstr "Lütfen e-posta adresi giriniz"
337
 
338
+ #: ../classes/es-register.php:259
339
  msgctxt "widget-page-enhanced-select"
340
  msgid "Successfully Subscribed."
341
  msgstr "Başarıyla Abone Edildi."
342
 
343
+ #: ../classes/es-register.php:260
344
  msgctxt "widget-page-enhanced-select"
345
  msgid ""
346
  "Your subscription was successful! Kindly check your mailbox and confirm your "
351
  "onaylayınız. Birkaç dakika içinde onay epostası gelmedi ise lütfen önemsiz "
352
  "epostalar kutusunu kontrol ediniz."
353
 
354
+ #: ../classes/es-register.php:261
355
  msgctxt "widget-page-enhanced-select"
356
  msgid "Email Address already exists!"
357
  msgstr "E-posta adresi zaten mevcut!"
358
 
359
+ #: ../classes/es-register.php:262
360
  msgctxt "widget-page-enhanced-select"
361
  msgid "Oops.. Unexpected error occurred."
362
  msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
363
 
364
+ #: ../classes/es-register.php:263
365
  msgctxt "widget-page-enhanced-select"
366
  msgid "Invalid email address"
367
  msgstr "Geçersiz e-posta adresi"
368
 
369
+ #: ../classes/es-register.php:264
370
  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."
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
  "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
 
1416
  msgid "Single Opt In"
1417
  msgstr "Tek Onay"
1418
 
1419
+ #: ../settings/settings-edit.php:117
1420
  msgid "Image Size"
1421
  msgstr "Resim Ölçüsü"
1422
 
1423
+ #: ../settings/settings-edit.php:118
1424
  msgid ""
1425
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1426
  "Emails."
1428
  "Gönderi E-postaları'nda gösterilmek üzere {{POSTIMAGE}} için resim boyutunu "
1429
  "seçin."
1430
 
1431
+ #: ../settings/settings-edit.php:122
1432
  msgid "Full Size"
1433
  msgstr "Tam Boy"
1434
 
1435
+ #: ../settings/settings-edit.php:123
1436
  msgid "Medium Size"
1437
  msgstr "Orta Boy"
1438
 
1439
+ #: ../settings/settings-edit.php:130
1440
  msgid "Admin Email Addresses"
1441
  msgstr "Yönetici E-posta Adresleri"
1442
 
1443
+ #: ../settings/settings-edit.php:131
1444
  msgid ""
1445
  "Enter the admin email addresses that should receive notifications (separated "
1446
  "by comma)."
1447
  msgstr "Bildirimleri almak için Yönetici e-postalarını giriniz. (Virgülle ayırınız)."
1448
 
1449
+ #: ../settings/settings-edit.php:137
1450
  msgid "Notify Admin when a new subscriber signs up"
1451
  msgstr "Yeni bir abone kaydolduğunda Yönetici'ye bildir"
1452
 
1453
+ #: ../settings/settings-edit.php:138
1454
  msgid ""
1455
  "To send admin email notifications for the new subscriber. This option must "
1456
  "be set to YES."
1458
  "Yöneticiye yeni aboneleri e-posta bildirimleri göndermek için bu seçenek "
1459
  "EVET olarak ayarlanmalı."
1460
 
1461
+ #: ../settings/settings-edit.php:150
1462
  msgid "Admin Email Subject on new subscriber sign up"
1463
  msgstr "Yeni abonelikte Yönetici E-posta Konusu Kayıt et"
1464
 
1465
+ #: ../settings/settings-edit.php:151
1466
  msgid ""
1467
  "Subject for the admin email whenever a new subscriber signs up and is "
1468
  "confirmed."
1469
  msgstr "Yeni bir abone kaydolduğunda ve onaylandığında yönetici e-postası konusu."
1470
 
1471
+ #: ../settings/settings-edit.php:157
1472
  msgid "Admin Email Content on new subscriber signs up"
1473
  msgstr "Yeni abonelikte Yönetici E-postası İçeriği Kaydet"
1474
 
1475
+ #: ../settings/settings-edit.php:158
1476
  msgid ""
1477
  "Content for the admin email whenever a new subscriber signs up and is "
1478
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1481
  "içerik. <br /> Kullanılabilir Anahtar Kelimeler: {{NAME}}, {{EMAIL}}, "
1482
  "{{GROUP}}"
1483
 
1484
+ #: ../settings/settings-edit.php:165
1485
  msgid "Sent Report Subject"
1486
  msgstr "Gönderilen Rapor Konusu"
1487
 
1488
+ #: ../settings/settings-edit.php:166
1489
  msgid "Subject for the email report which will be sent to admin."
1490
  msgstr "Yöneticiye gönderilecek e-posta raporu için konu."
1491
 
1492
+ #: ../settings/settings-edit.php:172
1493
  msgid "Sent Report Content"
1494
  msgstr "Gönderilen Rapor İçeriği"
1495
 
1496
+ #: ../settings/settings-edit.php:173
1497
  msgid ""
1498
  "Content for the email report which will be sent to admin.<br />Available "
1499
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1501
  "Yöneticiye gönderilecek e-posta raporunun içeriği. <br /> Kullanılabilir "
1502
  "Anahtar Kelimeler: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1503
 
1504
+ #: ../settings/settings-edit.php:184
1505
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1506
  msgstr "Çift Onay Email Konusu (Onay E-postası)"
1507
 
1508
+ #: ../settings/settings-edit.php:185
1509
  msgid ""
1510
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1511
  "subscriber signs up."
1513
  "Bir abonenin kaydolduğu her defasında Çift Onay için onay e-postasının "
1514
  "gönderilmesi konusu."
1515
 
1516
+ #: ../settings/settings-edit.php:191
1517
  msgid "Double Opt-In Email Content (Confirmation Email)"
1518
  msgstr "Çift Onayda E-posta İçeriği (Onay E-postası)"
1519
 
1520
+ #: ../settings/settings-edit.php:192
1521
  msgid ""
1522
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1523
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1525
  "Abone kayıt olduğunda Çift Onay'ın gönderileceği onay e-postasının içeriği. "
1526
  "<br /> Kullanılabilir Anahtar Kelimeler: {{NAME}}, {{LINK}}"
1527
 
1528
+ #: ../settings/settings-edit.php:198
1529
  msgid "Double Opt-In Confirmation Link"
1530
  msgstr "Çift Onay Doğrulama Bağlantısı"
1531
 
1532
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "(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
  "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
  "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
  "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
  "Ç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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
 
languages/email-subscribers.pot CHANGED
@@ -2,10 +2,10 @@
2
  #, fuzzy
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.1\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: Wed May 23 2018 11:02:58 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"
@@ -68,22 +68,8 @@ msgstr ""
68
  msgid "<span style=\"color:#993399;\">Immediately</span>"
69
  msgstr ""
70
 
71
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:1096 ..
72
- #: /subscribers/view-subscriber-show.php:289
73
- msgid "Name"
74
- msgstr ""
75
-
76
- #: ../classes/es-loadwidget.php:39 ../classes/es-register.php:1101
77
- msgid "Email *"
78
- msgstr ""
79
-
80
- #: ../classes/es-loadwidget.php:47 ../classes/es-register.php:1109 ../help/help.
81
- #: php:202
82
- msgid "Subscribe"
83
- msgstr ""
84
-
85
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
86
- #: register.php:839
87
  msgid "Email Subscribers"
88
  msgstr ""
89
 
@@ -93,7 +79,7 @@ msgid "Subscribers"
93
  msgstr ""
94
 
95
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
96
- #: register.php:827 ../classes/es-register.php:828 ../classes/es-register.php:833
97
  msgid "Templates"
98
  msgstr ""
99
 
@@ -103,7 +89,7 @@ msgid "Post Notifications"
103
  msgstr ""
104
 
105
  #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
106
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
107
  msgid "Newsletters"
108
  msgstr ""
109
 
@@ -247,54 +233,16 @@ msgid "Please enter the mail count, only number."
247
  msgstr ""
248
 
249
  #: ../classes/es-register.php:258
250
- msgctxt "widget-enhanced-select"
251
- msgid "Please enter email address"
252
- msgstr ""
253
-
254
- #: ../classes/es-register.php:259
255
- msgctxt "widget-enhanced-select"
256
- msgid "Successfully Subscribed."
257
- msgstr ""
258
-
259
- #: ../classes/es-register.php:260
260
- msgctxt "widget-enhanced-select"
261
- msgid ""
262
- "Your subscription was successful! Kindly check your mailbox and confirm your "
263
- "subscription. If you don't see the email within a few minutes, check the "
264
- "spam/junk folder."
265
- msgstr ""
266
-
267
- #: ../classes/es-register.php:261
268
- msgctxt "widget-enhanced-select"
269
- msgid "Email Address already exists!"
270
- msgstr ""
271
-
272
- #: ../classes/es-register.php:262
273
- msgctxt "widget-enhanced-select"
274
- msgid "Oops.. Unexpected error occurred."
275
- msgstr ""
276
-
277
- #: ../classes/es-register.php:263
278
- msgctxt "widget-enhanced-select"
279
- msgid "Invalid email address"
280
- msgstr ""
281
-
282
- #: ../classes/es-register.php:264
283
- msgctxt "widget-enhanced-select"
284
- msgid "Please try after some time"
285
- msgstr ""
286
-
287
- #: ../classes/es-register.php:272
288
  msgctxt "widget-page-enhanced-select"
289
  msgid "Please enter email address"
290
  msgstr ""
291
 
292
- #: ../classes/es-register.php:273
293
  msgctxt "widget-page-enhanced-select"
294
  msgid "Successfully Subscribed."
295
  msgstr ""
296
 
297
- #: ../classes/es-register.php:274
298
  msgctxt "widget-page-enhanced-select"
299
  msgid ""
300
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -302,55 +250,55 @@ msgid ""
302
  "spam/junk folder."
303
  msgstr ""
304
 
305
- #: ../classes/es-register.php:275
306
  msgctxt "widget-page-enhanced-select"
307
  msgid "Email Address already exists!"
308
  msgstr ""
309
 
310
- #: ../classes/es-register.php:276
311
  msgctxt "widget-page-enhanced-select"
312
  msgid "Oops.. Unexpected error occurred."
313
  msgstr ""
314
 
315
- #: ../classes/es-register.php:277
316
  msgctxt "widget-page-enhanced-select"
317
  msgid "Invalid email address"
318
  msgstr ""
319
 
320
- #: ../classes/es-register.php:278
321
  msgctxt "widget-page-enhanced-select"
322
  msgid "Please try after some time"
323
  msgstr ""
324
 
325
- #: ../classes/es-register.php:739
326
  msgid ""
327
  "<b>Want readymade email templates?</b> Also want to <b>clean your "
328
  "subscribers list?</b> Come check our Pro plan."
329
  msgstr ""
330
 
331
- #: ../classes/es-register.php:740
332
  msgid "Check Pro plan"
333
  msgstr ""
334
 
335
- #: ../classes/es-register.php:740
336
  msgid "Not interested."
337
  msgstr ""
338
 
339
- #: ../classes/es-register.php:778
340
  msgid ""
341
  "<b style=\"letter-spacing:0.4px;\">To honour GDPR, kindly enable the 'Consent "
342
  "Checkbox' in the subscription form.</b>"
343
  msgstr ""
344
 
345
- #: ../classes/es-register.php:779
346
  msgid "Steps to enable"
347
  msgstr ""
348
 
349
- #: ../classes/es-register.php:779
350
  msgid "Ok, got it"
351
  msgstr ""
352
 
353
- #: ../classes/es-register.php:804
354
  msgid ""
355
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
356
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -358,120 +306,143 @@ msgid ""
358
  "</a> rating. A huge thank you from Icegram in advance!"
359
  msgstr ""
360
 
361
- #: ../classes/es-register.php:818
362
  #, php-format
363
  msgid "Email Subscribers version: <strong>%s</strong>"
364
  msgstr ""
365
 
366
- #: ../classes/es-register.php:829 ../classes/es-register.php:830
367
  msgid "Add new Template"
368
  msgstr ""
369
 
370
- #: ../classes/es-register.php:831
371
  msgid "Edit Templates"
372
  msgstr ""
373
 
374
- #: ../classes/es-register.php:832
375
  msgid "New Templates"
376
  msgstr ""
377
 
378
- #: ../classes/es-register.php:834
379
  msgid "View Templates"
380
  msgstr ""
381
 
382
- #: ../classes/es-register.php:835
383
  msgid "Search Templates"
384
  msgstr ""
385
 
386
- #: ../classes/es-register.php:836
387
  msgid "No Templates found"
388
  msgstr ""
389
 
390
- #: ../classes/es-register.php:837
391
  msgid "No Templates found in Trash"
392
  msgstr ""
393
 
394
- #: ../classes/es-register.php:840
395
  msgid "Thumbnail (For Visual Representation only)"
396
  msgstr ""
397
 
398
- #: ../classes/es-register.php:841
399
  msgid "Set thumbnail"
400
  msgstr ""
401
 
402
- #: ../classes/es-register.php:878
403
  msgid "Template Type"
404
  msgstr ""
405
 
406
- #: ../classes/es-register.php:879 ../settings/settings-edit.php:123
407
  msgid "Thumbnail"
408
  msgstr ""
409
 
410
- #: ../classes/es-register.php:927 ../sentmail/sentmail-show.php:108 ..
411
  #: /sentmail/sentmail-show.php:121
412
  msgid "Preview"
413
  msgstr ""
414
 
415
- #: ../classes/es-register.php:944
416
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
 
 
 
417
  msgstr ""
418
 
419
- #: ../classes/es-register.php:947
420
  msgid "Select your Email Template Type"
421
  msgstr ""
422
 
423
- #: ../classes/es-register.php:949
424
  msgid "Newsletter"
425
  msgstr ""
426
 
427
- #: ../classes/es-register.php:950
428
  msgid "Post Notification"
429
  msgstr ""
430
 
431
- #: ../classes/es-register.php:997
432
  msgid "Preview Template"
433
  msgstr ""
434
 
435
- #: ../classes/es-register.php:1011
436
  #, php-format
437
  msgid ""
438
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
439
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
440
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
441
  msgstr ""
442
 
443
- #: ../classes/es-register.php:1011 ../classes/es-register.php:1012
 
444
  msgid "Available Keywords"
445
  msgstr ""
446
 
447
- #: ../classes/es-register.php:1012
448
  #, php-format
449
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
450
  msgstr ""
451
 
452
- #: ../classes/es-register.php:1149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
453
  msgid "Widget Title"
454
  msgstr ""
455
 
456
- #: ../classes/es-register.php:1153
457
  msgid "Short description about subscription form"
458
  msgstr ""
459
 
460
- #: ../classes/es-register.php:1157
461
  msgid "Display Name Field"
462
  msgstr ""
463
 
464
- #: ../classes/es-register.php:1159 ../settings/settings-edit.php:142 ..
465
- #: /settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
466
  msgid "YES"
467
  msgstr ""
468
 
469
- #: ../classes/es-register.php:1160 ../settings/settings-edit.php:143 ..
470
- #: /settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
471
  msgid "NO"
472
  msgstr ""
473
 
474
- #: ../classes/es-register.php:1164
475
  msgid "Subscriber Group"
476
  msgstr ""
477
 
@@ -1347,280 +1318,280 @@ msgstr ""
1347
  msgid "Single Opt In"
1348
  msgstr ""
1349
 
1350
- #: ../settings/settings-edit.php:116
1351
  msgid "Image Size"
1352
  msgstr ""
1353
 
1354
- #: ../settings/settings-edit.php:117
1355
  msgid ""
1356
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1357
  "Emails."
1358
  msgstr ""
1359
 
1360
- #: ../settings/settings-edit.php:121
1361
  msgid "Full Size"
1362
  msgstr ""
1363
 
1364
- #: ../settings/settings-edit.php:122
1365
  msgid "Medium Size"
1366
  msgstr ""
1367
 
1368
- #: ../settings/settings-edit.php:129
1369
  msgid "Admin Email Addresses"
1370
  msgstr ""
1371
 
1372
- #: ../settings/settings-edit.php:130
1373
  msgid ""
1374
  "Enter the admin email addresses that should receive notifications (separated "
1375
  "by comma)."
1376
  msgstr ""
1377
 
1378
- #: ../settings/settings-edit.php:136
1379
  msgid "Notify Admin when a new subscriber signs up"
1380
  msgstr ""
1381
 
1382
- #: ../settings/settings-edit.php:137
1383
  msgid ""
1384
  "To send admin email notifications for the new subscriber. This option must "
1385
  "be set to YES."
1386
  msgstr ""
1387
 
1388
- #: ../settings/settings-edit.php:149
1389
  msgid "Admin Email Subject on new subscriber sign up"
1390
  msgstr ""
1391
 
1392
- #: ../settings/settings-edit.php:150
1393
  msgid ""
1394
  "Subject for the admin email whenever a new subscriber signs up and is "
1395
  "confirmed."
1396
  msgstr ""
1397
 
1398
- #: ../settings/settings-edit.php:156
1399
  msgid "Admin Email Content on new subscriber signs up"
1400
  msgstr ""
1401
 
1402
- #: ../settings/settings-edit.php:157
1403
  msgid ""
1404
  "Content for the admin email whenever a new subscriber signs up and is "
1405
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1406
  msgstr ""
1407
 
1408
- #: ../settings/settings-edit.php:164
1409
  msgid "Sent Report Subject"
1410
  msgstr ""
1411
 
1412
- #: ../settings/settings-edit.php:165
1413
  msgid "Subject for the email report which will be sent to admin."
1414
  msgstr ""
1415
 
1416
- #: ../settings/settings-edit.php:171
1417
  msgid "Sent Report Content"
1418
  msgstr ""
1419
 
1420
- #: ../settings/settings-edit.php:172
1421
  msgid ""
1422
  "Content for the email report which will be sent to admin.<br />Available "
1423
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1424
  msgstr ""
1425
 
1426
- #: ../settings/settings-edit.php:183
1427
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1428
  msgstr ""
1429
 
1430
- #: ../settings/settings-edit.php:184
1431
  msgid ""
1432
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1433
  "subscriber signs up."
1434
  msgstr ""
1435
 
1436
- #: ../settings/settings-edit.php:190
1437
  msgid "Double Opt-In Email Content (Confirmation Email)"
1438
  msgstr ""
1439
 
1440
- #: ../settings/settings-edit.php:191
1441
  msgid ""
1442
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1443
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1444
  msgstr ""
1445
 
1446
- #: ../settings/settings-edit.php:197
1447
  msgid "Double Opt-In Confirmation Link"
1448
  msgstr ""
1449
 
1450
- #: ../settings/settings-edit.php:198
1451
  msgid "It is a readonly field and you are advised not to modify it."
1452
  msgstr ""
1453
 
1454
- #: ../settings/settings-edit.php:204
1455
  msgid ""
1456
  "Text to display after an email address is successfully subscribed from "
1457
  "Double Opt-In (Confirmation) Email"
1458
  msgstr ""
1459
 
1460
- #: ../settings/settings-edit.php:205
1461
  msgid ""
1462
  "This text will be displayed once user clicks on email confirmation link from "
1463
  "the Double Opt In (confirmation) Email."
1464
  msgstr ""
1465
 
1466
- #: ../settings/settings-edit.php:212
1467
  msgid "Send Welcome Email to New Subscribers after Sign Up?"
1468
  msgstr ""
1469
 
1470
- #: ../settings/settings-edit.php:213
1471
  msgid ""
1472
  "To send welcome email to subscriber after successful signup. This option "
1473
  "must be set to YES."
1474
  msgstr ""
1475
 
1476
- #: ../settings/settings-edit.php:224
1477
  msgid "Subject for Welcome Email"
1478
  msgstr ""
1479
 
1480
- #: ../settings/settings-edit.php:225
1481
  msgid ""
1482
  "Subject for the subscriber welcome email. This will be sent whenever a "
1483
  "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1484
  "Opt-In) successfully."
1485
  msgstr ""
1486
 
1487
- #: ../settings/settings-edit.php:231
1488
  msgid "Email Content for Welcome Email"
1489
  msgstr ""
1490
 
1491
- #: ../settings/settings-edit.php:232
1492
  msgid ""
1493
  "Content for the subscriber welcome email whenever a user's email is either "
1494
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1495
  "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1496
  msgstr ""
1497
 
1498
- #: ../settings/settings-edit.php:240
1499
  msgid "Unsubscribe Link"
1500
  msgstr ""
1501
 
1502
- #: ../settings/settings-edit.php:241
1503
  msgid ""
1504
  "This unsubscribe link is automatically added to all the emails that are sent "
1505
  "from this plugin. It is a readonly field and you are advised not to modify "
1506
  "it."
1507
  msgstr ""
1508
 
1509
- #: ../settings/settings-edit.php:247
1510
  msgid "Unsubscribe Text in Email"
1511
  msgstr ""
1512
 
1513
- #: ../settings/settings-edit.php:248
1514
  msgid ""
1515
  "The text for the unsubscribe link. This text is automatically added with "
1516
  "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1517
  msgstr ""
1518
 
1519
- #: ../settings/settings-edit.php:254
1520
  msgid "Text to display after an email address is unsubscribed"
1521
  msgstr ""
1522
 
1523
- #: ../settings/settings-edit.php:255
1524
  msgid ""
1525
  "This text will be displayed once user clicks on unsubscribe link from the "
1526
  "email."
1527
  msgstr ""
1528
 
1529
- #: ../settings/settings-edit.php:262
1530
  msgid "Error in the Subscribe / Confirmation Link"
1531
  msgstr ""
1532
 
1533
- #: ../settings/settings-edit.php:263
1534
  msgid ""
1535
  "Default message to display if there is any issue while clicking on subscribe "
1536
  "/ confirmation link from the Double Opt-In (Confirmation) emails."
1537
  msgstr ""
1538
 
1539
- #: ../settings/settings-edit.php:269
1540
  msgid "Error in the Unsubscribe Link"
1541
  msgstr ""
1542
 
1543
- #: ../settings/settings-edit.php:270
1544
  msgid ""
1545
  "Default message to display if there is any issue while clicking on "
1546
  "unsubscribe link from the emails."
1547
  msgstr ""
1548
 
1549
- #: ../settings/settings-edit.php:282
1550
  msgid "Select user roles who can access following menus. Only Admin can change this."
1551
  msgstr ""
1552
 
1553
- #: ../settings/settings-edit.php:288
1554
  msgid "Subscribers Menu"
1555
  msgstr ""
1556
 
1557
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1558
- #: /settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1559
- #: /settings/settings-edit.php:340
1560
- msgid "Administrator Only"
1561
- msgstr ""
1562
-
1563
  #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1564
  #: /settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1565
  #: /settings/settings-edit.php:341
1566
- msgid "Administrator/Editor"
1567
  msgstr ""
1568
 
1569
  #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1570
  #: /settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1571
  #: /settings/settings-edit.php:342
 
 
 
 
 
 
1572
  msgid "Administrator/Editor/Author/Contributor"
1573
  msgstr ""
1574
 
1575
- #: ../settings/settings-edit.php:300
1576
  msgid "Templates Menu"
1577
  msgstr ""
1578
 
1579
- #: ../settings/settings-edit.php:312
1580
  msgid "Post Notifications Menu"
1581
  msgstr ""
1582
 
1583
- #: ../settings/settings-edit.php:336
1584
  msgid "Reports Menu"
1585
  msgstr ""
1586
 
1587
- #: ../settings/settings-edit.php:353
1588
  msgid "Cron job URL"
1589
  msgstr ""
1590
 
1591
- #: ../settings/settings-edit.php:354
1592
  msgid ""
1593
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1594
  "modify it."
1595
  msgstr ""
1596
 
1597
- #: ../settings/settings-edit.php:363
1598
  msgid "Email Count"
1599
  msgstr ""
1600
 
1601
- #: ../settings/settings-edit.php:364
1602
  msgid "Number of emails that you want to trigger per hour."
1603
  msgstr ""
1604
 
1605
- #: ../settings/settings-edit.php:369
1606
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1607
  msgstr ""
1608
 
1609
- #: ../settings/settings-edit.php:374
1610
  msgid "Cron Report"
1611
  msgstr ""
1612
 
1613
- #: ../settings/settings-edit.php:375
1614
  msgid ""
1615
  "Email to admin whenever a cron URL is triggered from your server.<br "
1616
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1617
  msgstr ""
1618
 
1619
- #: ../settings/settings-edit.php:385
1620
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1621
  msgstr ""
1622
 
1623
- #: ../settings/settings-edit.php:386
1624
  msgid ""
1625
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1626
  "schedule-cron-emails/?"
@@ -1628,7 +1599,7 @@ msgid ""
1628
  "Cron?</a>"
1629
  msgstr ""
1630
 
1631
- #: ../settings/settings-edit.php:387
1632
  msgid ""
1633
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1634
  "schedule-cron-emails-in-cpanel/?"
@@ -1636,7 +1607,7 @@ msgid ""
1636
  "job in cPanel</a>"
1637
  msgstr ""
1638
 
1639
- #: ../settings/settings-edit.php:388
1640
  msgid ""
1641
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1642
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1644,7 +1615,7 @@ msgid ""
1644
  "job in Plesk</a>"
1645
  msgstr ""
1646
 
1647
- #: ../settings/settings-edit.php:389
1648
  msgid ""
1649
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1650
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1652,23 +1623,23 @@ msgid ""
1652
  "does not support cron jobs?</a>"
1653
  msgstr ""
1654
 
1655
- #: ../settings/settings-edit.php:504
1656
  msgid "Please enter sender of notifications from name."
1657
  msgstr ""
1658
 
1659
- #: ../settings/settings-edit.php:509
1660
  msgid "Please enter sender of notifications from email."
1661
  msgstr ""
1662
 
1663
- #: ../settings/settings-edit.php:553
1664
- msgid "Please enter valid mail count."
1665
  msgstr ""
1666
 
1667
- #: ../settings/settings-edit.php:566
1668
  msgid "Settings Saved."
1669
  msgstr ""
1670
 
1671
- #: ../settings/settings-edit.php:569
1672
  msgid "Oops, unable to update."
1673
  msgstr ""
1674
 
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"
68
  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
  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
  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
 
233
  msgstr ""
234
 
235
  #: ../classes/es-register.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  msgctxt "widget-page-enhanced-select"
237
  msgid "Please enter email address"
238
  msgstr ""
239
 
240
+ #: ../classes/es-register.php:259
241
  msgctxt "widget-page-enhanced-select"
242
  msgid "Successfully Subscribed."
243
  msgstr ""
244
 
245
+ #: ../classes/es-register.php:260
246
  msgctxt "widget-page-enhanced-select"
247
  msgid ""
248
  "Your subscription was successful! Kindly check your mailbox and confirm your "
250
  "spam/junk folder."
251
  msgstr ""
252
 
253
+ #: ../classes/es-register.php:261
254
  msgctxt "widget-page-enhanced-select"
255
  msgid "Email Address already exists!"
256
  msgstr ""
257
 
258
+ #: ../classes/es-register.php:262
259
  msgctxt "widget-page-enhanced-select"
260
  msgid "Oops.. Unexpected error occurred."
261
  msgstr ""
262
 
263
+ #: ../classes/es-register.php:263
264
  msgctxt "widget-page-enhanced-select"
265
  msgid "Invalid email address"
266
  msgstr ""
267
 
268
+ #: ../classes/es-register.php:264
269
  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
  "</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}}, "
392
+ "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
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
 
1318
  msgid "Single Opt In"
1319
  msgstr ""
1320
 
1321
+ #: ../settings/settings-edit.php:117
1322
  msgid "Image Size"
1323
  msgstr ""
1324
 
1325
+ #: ../settings/settings-edit.php:118
1326
  msgid ""
1327
  "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1328
  "Emails."
1329
  msgstr ""
1330
 
1331
+ #: ../settings/settings-edit.php:122
1332
  msgid "Full Size"
1333
  msgstr ""
1334
 
1335
+ #: ../settings/settings-edit.php:123
1336
  msgid "Medium Size"
1337
  msgstr ""
1338
 
1339
+ #: ../settings/settings-edit.php:130
1340
  msgid "Admin Email Addresses"
1341
  msgstr ""
1342
 
1343
+ #: ../settings/settings-edit.php:131
1344
  msgid ""
1345
  "Enter the admin email addresses that should receive notifications (separated "
1346
  "by comma)."
1347
  msgstr ""
1348
 
1349
+ #: ../settings/settings-edit.php:137
1350
  msgid "Notify Admin when a new subscriber signs up"
1351
  msgstr ""
1352
 
1353
+ #: ../settings/settings-edit.php:138
1354
  msgid ""
1355
  "To send admin email notifications for the new subscriber. This option must "
1356
  "be set to YES."
1357
  msgstr ""
1358
 
1359
+ #: ../settings/settings-edit.php:150
1360
  msgid "Admin Email Subject on new subscriber sign up"
1361
  msgstr ""
1362
 
1363
+ #: ../settings/settings-edit.php:151
1364
  msgid ""
1365
  "Subject for the admin email whenever a new subscriber signs up and is "
1366
  "confirmed."
1367
  msgstr ""
1368
 
1369
+ #: ../settings/settings-edit.php:157
1370
  msgid "Admin Email Content on new subscriber signs up"
1371
  msgstr ""
1372
 
1373
+ #: ../settings/settings-edit.php:158
1374
  msgid ""
1375
  "Content for the admin email whenever a new subscriber signs up and is "
1376
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1377
  msgstr ""
1378
 
1379
+ #: ../settings/settings-edit.php:165
1380
  msgid "Sent Report Subject"
1381
  msgstr ""
1382
 
1383
+ #: ../settings/settings-edit.php:166
1384
  msgid "Subject for the email report which will be sent to admin."
1385
  msgstr ""
1386
 
1387
+ #: ../settings/settings-edit.php:172
1388
  msgid "Sent Report Content"
1389
  msgstr ""
1390
 
1391
+ #: ../settings/settings-edit.php:173
1392
  msgid ""
1393
  "Content for the email report which will be sent to admin.<br />Available "
1394
  "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1395
  msgstr ""
1396
 
1397
+ #: ../settings/settings-edit.php:184
1398
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1399
  msgstr ""
1400
 
1401
+ #: ../settings/settings-edit.php:185
1402
  msgid ""
1403
  "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1404
  "subscriber signs up."
1405
  msgstr ""
1406
 
1407
+ #: ../settings/settings-edit.php:191
1408
  msgid "Double Opt-In Email Content (Confirmation Email)"
1409
  msgstr ""
1410
 
1411
+ #: ../settings/settings-edit.php:192
1412
  msgid ""
1413
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
1414
  "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1415
  msgstr ""
1416
 
1417
+ #: ../settings/settings-edit.php:198
1418
  msgid "Double Opt-In Confirmation Link"
1419
  msgstr ""
1420
 
1421
+ #: ../settings/settings-edit.php:199
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
  "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
  "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
  "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
  "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
 
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.1
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -321,6 +321,17 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
321
 
322
  == Changelog ==
323
 
 
 
 
 
 
 
 
 
 
 
 
324
  = 3.5.1 (23.05.2018) =
325
 
326
  * Update: Privacy Policy page link on Help & Info page
@@ -787,6 +798,17 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
787
 
788
  == Upgrade Notice ==
789
 
 
 
 
 
 
 
 
 
 
 
 
790
  = 3.5.1 (23.05.2018) =
791
 
792
  * Update: Privacy Policy page link on Help & Info page
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
 
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
327
+ * Update: Increased 'maxlength' for name and email field in the subscription form
328
+ * Update: Single subscription form for widget, shortcode and php code
329
+ * Update: Added text domain for missing texts
330
+ * Update: POT file
331
+ * Localization: Translation for Polish (pl_PL) language updated (Thanks to Witold)
332
+ * Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Zero & Markus Buschmann)
333
+ * Localization: Made all translation files up-to-date with latest POT file
334
+
335
  = 3.5.1 (23.05.2018) =
336
 
337
  * Update: Privacy Policy page link on Help & Info page
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
804
+ * Update: Increased 'maxlength' for name and email field in the subscription form
805
+ * Update: Single subscription form for widget, shortcode and php code
806
+ * Update: Added text domain for missing texts
807
+ * Update: POT file
808
+ * Localization: Translation for Polish (pl_PL) language updated (Thanks to Witold)
809
+ * Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Zero & Markus Buschmann)
810
+ * Localization: Made all translation files up-to-date with latest POT file
811
+
812
  = 3.5.1 (23.05.2018) =
813
 
814
  * Update: Privacy Policy page link on Help & Info page
settings/settings-edit.php CHANGED
@@ -111,6 +111,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
111
  </select>
112
  </td>
113
  </tr>
 
114
  <tr class="es-admin active-settings">
115
  <th scope="row">
116
  <label for="elp"><?php echo __( 'Image Size', ES_TDOMAIN ); ?>
@@ -550,7 +551,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
550
  // Fetch submitted Cron Data
551
  $es_cron_mailcount = isset($_POST['es_cron_mailcount']) ? $_POST['es_cron_mailcount'] : '';
552
  if( $es_cron_mailcount == "0" && strlen ($es_cron_mailcount) > 0 ) {
553
- $es_errors[] = __('Please enter valid mail count.', 'email-subscribers');
554
  $es_error_found = TRUE;
555
  } else {
556
  $form['ig_es_cron_mailcount'] = $es_cron_mailcount;
@@ -558,10 +559,11 @@ if ( ! class_exists( 'ES_Settings' ) ) {
558
 
559
  $form['ig_es_cron_adminmail'] = isset($_POST['es_cron_adminmail']) ? $_POST['es_cron_adminmail'] : '';
560
 
561
- // No errors found, we can add the settings to tehe options
562
  if ($es_error_found == FALSE) {
563
  $action = "";
564
  $action = $this->es_settings_update( $form, $roles );
 
565
  if($action == "sus") {
566
  $es_success = __( 'Settings Saved.', ES_TDOMAIN );
567
  } else {
111
  </select>
112
  </td>
113
  </tr>
114
+ <?php do_action('es_after_optin_settings', $this->form); ?>
115
  <tr class="es-admin active-settings">
116
  <th scope="row">
117
  <label for="elp"><?php echo __( 'Image Size', ES_TDOMAIN ); ?>
551
  // Fetch submitted Cron Data
552
  $es_cron_mailcount = isset($_POST['es_cron_mailcount']) ? $_POST['es_cron_mailcount'] : '';
553
  if( $es_cron_mailcount == "0" && strlen ($es_cron_mailcount) > 0 ) {
554
+ $es_errors[] = __('Please enter valid email count.', ES_TDOMAIN);
555
  $es_error_found = TRUE;
556
  } else {
557
  $form['ig_es_cron_mailcount'] = $es_cron_mailcount;
559
 
560
  $form['ig_es_cron_adminmail'] = isset($_POST['es_cron_adminmail']) ? $_POST['es_cron_adminmail'] : '';
561
 
562
+ // No errors found, we can add the settings to the options
563
  if ($es_error_found == FALSE) {
564
  $action = "";
565
  $action = $this->es_settings_update( $form, $roles );
566
+ do_action('es_before_settings_update', $form);
567
  if($action == "sus") {
568
  $es_success = __( 'Settings Saved.', ES_TDOMAIN );
569
  } else {
widget/es-widget-page.js CHANGED
@@ -17,18 +17,18 @@ var ES = function() {}
17
  ES.prototype = {
18
 
19
  init : function(form){
20
- jQuery(form).bindFirst('submit', function(e){
21
- window.ES.addSubscriber(e, jQuery(e.target));
22
  }); // submit Event
23
  },
24
 
25
- addSubscriber : function(e, form){
26
  var form = form || undefined;
27
  e.preventDefault();
28
  if(typeof(form) !== 'undefined'){
29
  var fm_parent = form.closest('.es_shortcode_form');
30
  var formData = {};
31
- var formData = window.ES.prepareFormData(e, form, formData);
32
  formData['es'] = 'subscribe';
33
  formData['action'] = 'es_add_subscriber';
34
  var action_url = es_widget_page_notices.es_ajax_url;
@@ -57,7 +57,19 @@ ES.prototype = {
57
  es_msg_text = es_widget_page_notices.es_success_message;
58
  jQuery(form)[0].reset();
59
  }
 
 
 
 
 
 
 
 
 
 
 
60
  jQuery(form).find('.es_msg span').text(es_msg_text).show();
 
61
  },
62
  error: function(err) {
63
  console.log(err, 'error');
@@ -75,19 +87,25 @@ ES.prototype = {
75
 
76
  };
77
 
78
- jQuery(document).ready(function(){
 
 
 
 
79
  // TODO :: check this later incase of undefined
80
- window.ES = new ES();
81
  jQuery('.es_shortcode_form').each(function(i, v){
82
- window.ES.init(v);
 
 
 
83
  });
84
  });
85
 
86
  // Compatibility of ES with IG
87
  jQuery( window ).on( "init.icegram", function(e, ig) {
88
- if(typeof ig !== 'undefined' && typeof ig.messages !== 'undefined' ){
89
  jQuery('.es_shortcode_form').each(function(i, v){
90
- window.ES.init(v);
91
  });
92
  }
93
  });
17
  ES.prototype = {
18
 
19
  init : function(form){
20
+ jQuery(form).bindFirst('submit', function(e) {
21
+ window.es.addSubscriber(e, jQuery(e.target));
22
  }); // submit Event
23
  },
24
 
25
+ addSubscriber : function(e, form) {
26
  var form = form || undefined;
27
  e.preventDefault();
28
  if(typeof(form) !== 'undefined'){
29
  var fm_parent = form.closest('.es_shortcode_form');
30
  var formData = {};
31
+ var formData = window.es.prepareFormData(e, form, formData);
32
  formData['es'] = 'subscribe';
33
  formData['action'] = 'es_add_subscriber';
34
  var action_url = es_widget_page_notices.es_ajax_url;
57
  es_msg_text = es_widget_page_notices.es_success_message;
58
  jQuery(form)[0].reset();
59
  }
60
+ var esSuccessEvent = {
61
+ detail: {
62
+ es_response : "error",
63
+ msg: ''
64
+ },
65
+ bubbles: true,
66
+ cancelable: true
67
+ } ;
68
+
69
+ esSuccessEvent.detail.es_response = 'success';
70
+ esSuccessEvent.detail.msg = es_msg_text;
71
  jQuery(form).find('.es_msg span').text(es_msg_text).show();
72
+ jQuery(form).trigger('es_response', [ esSuccessEvent ]);
73
  },
74
  error: function(err) {
75
  console.log(err, 'error');
87
 
88
  };
89
 
90
+ if(typeof window.es === 'undefined') {
91
+ window.es = new ES();
92
+ }
93
+
94
+ jQuery(document).ready(function() {
95
  // TODO :: check this later incase of undefined
 
96
  jQuery('.es_shortcode_form').each(function(i, v){
97
+ window.es.init(v);
98
+ });
99
+ jQuery('.es_widget_form').each(function(i, v){
100
+ window.es.init(v);
101
  });
102
  });
103
 
104
  // Compatibility of ES with IG
105
  jQuery( window ).on( "init.icegram", function(e, ig) {
106
+ if(typeof ig !== 'undefined' && typeof ig.messages !== 'undefined' ) {
107
  jQuery('.es_shortcode_form').each(function(i, v){
108
+ window.es.init(v);
109
  });
110
  }
111
  });
widget/es-widget.js DELETED
@@ -1,84 +0,0 @@
1
- // For Widget
2
- jQuery.fn.bindFirst = function(name, fn) {
3
- // bind as you normally would
4
- // don't want to miss out on any jQuery magic
5
- this.bind(name, fn);
6
- var events = this.data('events') || jQuery._data(this[0], 'events');
7
- var handlers = events[name];
8
- // take out the handler we just inserted from the end
9
- var handler = handlers.splice(handlers.length - 1)[0];
10
- // move it at the beginning
11
- handlers.splice(0, 0, handler);
12
- };
13
-
14
- //ES
15
- var WES = function() {}
16
-
17
- WES.prototype = {
18
-
19
- init : function(form){
20
- jQuery(form).bindFirst('submit', function(e){
21
- window.WES.addSubscriber(e, jQuery(e.target));
22
- }); // submit Event
23
- },
24
-
25
- addSubscriber : function(e, form){
26
- var form = form || undefined;
27
- e.preventDefault();
28
- if(typeof(form) !== 'undefined'){
29
- var fm_parent = form.closest('.es_widget_form');
30
- var formData = {};
31
- var formData = window.ES.prepareFormData(e, form, formData);
32
- formData['es'] = 'subscribe';
33
- formData['action'] = 'es_add_subscriber';
34
- var action_url = es_widget_notices.es_ajax_url;
35
- jQuery(form).trigger( 'addSubscriber.es', [formData] );
36
- jQuery.ajax({
37
- type: 'POST',
38
- url: action_url,
39
- data: formData,
40
- dataType: 'json',
41
- success: function(response) {
42
- if( response && typeof response.error !== 'undefined' && response.error === "" ) {
43
- es_msg_text = es_widget_notices.es_try_later;
44
- console.log(response, 'response.error');
45
- } else if ( response && response.error === 'unexpected-error' ) {
46
- es_msg_text = es_widget_notices.es_error;
47
- } else if ( response && response.error === 'invalid-email' ) {
48
- es_msg_text = es_widget_notices.es_invalid_email;
49
- } else if ( response && response.success === 'already-exist' ) {
50
- es_msg_text = es_widget_notices.es_email_exists;
51
- } else if ( response && response.error === 'no-email-address' ) {
52
- es_msg_text = es_widget_notices.es_email_notice;
53
- } else if( response.success && response.success === 'subscribed-pending-doubleoptin' ) {
54
- es_msg_text = es_widget_notices.es_success_notice;
55
- jQuery(form)[0].reset();
56
- } else if( response && response.success === 'subscribed-successfully' ) {
57
- es_msg_text = es_widget_notices.es_success_message;
58
- jQuery(form)[0].reset();
59
- }
60
- jQuery(form).find('.es_msg span').text(es_msg_text).show();
61
- },
62
- error: function(err) {
63
- console.log(err, 'error');
64
- },
65
- });
66
- }
67
- },
68
-
69
- prepareFormData: function (e, form, formData){
70
- jQuery.each((jQuery(form).serializeArray() || {}), function(i, field){
71
- formData['esfpx_'+ field.name] = field.value;
72
- });
73
- return formData;
74
- },
75
-
76
- };
77
-
78
- jQuery(document).ready(function() {
79
- // TODO :: check this later incase of undefined
80
- window.WES = new WES();
81
- jQuery('.es_widget_form').each(function(i, v){
82
- window.WES.init(v);
83
- });
84
- });