Email Subscribers & Newsletters - Version 3.5.4

Version Description

(23.07.2018) =

  • New: Added option to disable cron email sent to Admin
  • Fix: 'Optimize Table & Delete Records' button not deleting any reports
  • Fix: 'In Queue' notice showing multiple times on Reports tab
  • Update: Sent Report email will be now sent only if sending email immediately
  • Update: POT file
  • Localization: Made all translation files up-to-date with latest POT file
Download this release

Release Info

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

Code changes from version 3.5.3 to 3.5.4

Files changed (41) hide show
  1. changelog.txt +9 -0
  2. classes/es-intermediate.php +4 -0
  3. classes/es-register.php +767 -389
  4. classes/es-sendmail.php +8 -4
  5. email-subscribers.php +3 -2
  6. images/andrea-avatar-300x300.jpg +0 -0
  7. images/signature.png +0 -0
  8. images/spinner-2x.gif +0 -0
  9. job/es-cron.php +4 -0
  10. languages/email-subscribers-ca.mo +0 -0
  11. languages/email-subscribers-ca.po +345 -124
  12. languages/email-subscribers-de_DE.mo +0 -0
  13. languages/email-subscribers-de_DE.po +345 -123
  14. languages/email-subscribers-es_ES.mo +0 -0
  15. languages/email-subscribers-es_ES.po +345 -124
  16. languages/email-subscribers-fr_FR.mo +0 -0
  17. languages/email-subscribers-fr_FR.po +340 -116
  18. languages/email-subscribers-hu_HU.mo +0 -0
  19. languages/email-subscribers-hu_HU.po +337 -113
  20. languages/email-subscribers-it_IT.mo +0 -0
  21. languages/email-subscribers-it_IT.po +345 -124
  22. languages/email-subscribers-nb_NO.mo +0 -0
  23. languages/email-subscribers-nb_NO.po +340 -116
  24. languages/email-subscribers-pl_PL.mo +0 -0
  25. languages/email-subscribers-pl_PL.po +345 -123
  26. languages/email-subscribers-pt_BR.mo +0 -0
  27. languages/email-subscribers-pt_BR.po +345 -124
  28. languages/email-subscribers-sv_SE.mo +0 -0
  29. languages/email-subscribers-sv_SE.po +345 -123
  30. languages/email-subscribers-tr_TR.mo +0 -0
  31. languages/email-subscribers-tr_TR.po +345 -123
  32. languages/email-subscribers.pot +340 -116
  33. notification/notification-add.php +1 -0
  34. notification/notification-edit.php +1 -0
  35. pricing/pricing.php +219 -0
  36. query/db_delivery.php +10 -1
  37. query/db_optimize.php +1 -1
  38. readme.txt +42 -4
  39. sendmail/sendmail.php +1 -0
  40. sentmail/sentmail-show.php +12 -9
  41. settings/settings-edit.php +7 -3
changelog.txt CHANGED
@@ -4,6 +4,15 @@ Author : Icegram
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
 
 
 
7
  ***********************************************************Version 3.5.3************************************************************
8
 
9
  * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ***********************************************************Version 3.5.4************************************************************
8
+
9
+ * New: Added option to disable cron email sent to Admin
10
+ * Fix: 'Optimize Table & Delete Records' button not deleting any reports
11
+ * Fix: 'In Queue' notice showing multiple times on Reports tab
12
+ * Update: Sent Report email will be now sent only if sending email immediately
13
+ * Update: POT file
14
+ * Localization: Made all translation files up-to-date with latest POT file
15
+
16
  ***********************************************************Version 3.5.3************************************************************
17
 
18
  * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
classes/es-intermediate.php CHANGED
@@ -88,4 +88,8 @@ class es_cls_intermediate {
88
  public static function es_information() {
89
  require_once(ES_DIR.'help'.DIRECTORY_SEPARATOR.'help.php');
90
  }
 
 
 
 
91
  }
88
  public static function es_information() {
89
  require_once(ES_DIR.'help'.DIRECTORY_SEPARATOR.'help.php');
90
  }
91
+
92
+ public static function es_pricing() {
93
+ require_once(ES_DIR.'pricing'.DIRECTORY_SEPARATOR.'pricing.php');
94
+ }
95
  }
classes/es-register.php CHANGED
@@ -9,7 +9,7 @@ class es_cls_registerhook {
9
  public static function es_activation() {
10
  global $wpdb;
11
 
12
- add_option('email-subscribers', "2.9");
13
 
14
  // Creating default tables
15
  global $wpdb;
@@ -69,28 +69,46 @@ class es_cls_registerhook {
69
 
70
  $es_default_table_names = array( 'es_emaillist', 'es_notification', 'es_sentdetails', 'es_deliverreport' );
71
 
72
- $es_has_errors = false;
73
  $es_missing_tables = array();
74
- foreach($es_default_table_names as $table_name) {
75
- if(strtoupper($wpdb->get_var("SHOW TABLES like '". $wpdb->prefix.$table_name . "'")) != strtoupper($wpdb->prefix.$table_name)) {
76
- $es_missing_tables[] = $wpdb->prefix.$table_name;
77
  }
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
91
  es_cls_default::es_pluginconfig_default();
92
  es_cls_default::es_template_default();
93
  es_cls_default::es_subscriber_default();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  }
95
 
96
  if ( ! is_network_admin() && ! isset( $_GET['activate-multi'] ) ) {
@@ -119,16 +137,16 @@ class es_cls_registerhook {
119
  public static function es_synctables() {
120
  $es_c_email_subscribers_ver = get_option( "email-subscribers" );
121
 
122
- if( $es_c_email_subscribers_ver != "2.9" ) {
123
 
124
- $guid = es_cls_common::es_generate_guid(60);
125
- $home_url = home_url('/');
126
- $blogname = get_option('blogname');
127
- $cronurl = $home_url . "?es=cron&guid=". $guid;
128
 
129
  add_option( "ig_es_cronurl", $cronurl );
130
  add_option( "ig_es_cron_mailcount", "50" );
131
- add_option( "ig_es_cron_adminmail", "Hi Admin,\r\n\r\nCron URL has been triggered successfully on {{DATE}} for the email '{{SUBJECT}}'. And it sent email to {{COUNT}} recipient(s).\r\n\r\nBest,\r\n".$blogname."" );
132
 
133
  update_option( "email-subscribers", "2.9" );
134
  }
@@ -143,67 +161,76 @@ class es_cls_registerhook {
143
  }
144
 
145
  public static function es_adminmenu() {
146
- $post = get_post_types();
147
- $es_c_rolesandcapabilities = get_option('ig_es_rolesandcapabilities', 'norecord');
148
- if($es_c_rolesandcapabilities == 'norecord' || $es_c_rolesandcapabilities == "") {
149
- $es_roles_subscriber = "manage_options";
150
- $es_roles_mail = "manage_options";
151
  $es_roles_notification = "manage_options";
152
- $es_roles_sendmail = "manage_options";
153
- $es_roles_sentmail = "manage_options";
154
  } else {
155
- $es_roles_subscriber = $es_c_rolesandcapabilities['es_roles_subscriber'];
156
- $es_roles_mail = $es_c_rolesandcapabilities['es_roles_mail'];
157
  $es_roles_notification = $es_c_rolesandcapabilities['es_roles_notification'];
158
- $es_roles_sendmail = $es_c_rolesandcapabilities['es_roles_sendmail'];
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' ));
167
 
168
- add_submenu_page('es-view-subscribers', __( 'Templates', ES_TDOMAIN ),
169
- __( 'Templates', ES_TDOMAIN ), $es_roles_mail, 'edit.php?post_type=es_template', NULL);
170
 
171
- add_submenu_page('es-view-subscribers', __( 'Post Notifications', ES_TDOMAIN ),
172
- __( 'Post Notifications', ES_TDOMAIN ), $es_roles_notification, 'es-notification', array( 'es_cls_intermediate', 'es_notification' ));
173
 
174
- add_submenu_page('es-view-subscribers', __( 'Newsletters', ES_TDOMAIN ),
175
- __( 'Newsletters', ES_TDOMAIN ), $es_roles_sendmail, 'es-sendemail', array( 'es_cls_intermediate', 'es_sendemail' ));
176
 
177
- add_submenu_page('es-view-subscribers', __( 'Settings', ES_TDOMAIN ),
178
- __( 'Settings', ES_TDOMAIN ), 'manage_options', 'es-settings', array( 'es_cls_intermediate', 'es_settings' ));
179
 
180
- add_submenu_page('es-view-subscribers', __( 'Reports', ES_TDOMAIN ),
181
- __( 'Reports', ES_TDOMAIN ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ));
182
 
183
- add_submenu_page('es-view-subscribers', __( 'Help & Info', ES_TDOMAIN ),
184
- __( '<span style="color:#f18500;font-weight:bolder;">Help & Info</span>', ES_TDOMAIN ), 'edit_posts', 'es-general-information', array( 'es_cls_intermediate', 'es_information' ));
 
 
 
 
 
185
  }
186
 
187
  public static function es_load_scripts() {
188
 
189
- if( !empty( $_GET['page'] ) ) {
190
  switch ( $_GET['page'] ) {
191
  case 'es-view-subscribers':
192
  wp_register_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js', '', '', true );
193
  wp_enqueue_script( 'es-view-subscribers' );
194
  $es_select_params = array(
195
- 'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
196
- 'es_subscriber_email_status' => _x( 'Please select subscriber email status.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
197
- 'es_subscriber_group' => _x( 'Please select or create group for this subscriber.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
198
- 'es_subscriber_delete_record' => _x( 'Do you want to delete this record?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
199
- 'es_subscriber_bulk_action' => _x( 'Please select the bulk action.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
200
- 'es_subscriber_confirm_delete' => _x( 'Are you sure you want to delete selected records?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
201
- 'es_subscriber_resend_email' => _x( 'Do you want to resend confirmation email? Also please note, this will update subscriber current status to \'Unconfirmed\'.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
202
- 'es_subscriber_new_group' => _x( 'Please select new subscriber group.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
203
- 'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
204
- 'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
205
- 'es_subscriber_status_update' => _x( 'Do you want to update subscribers status?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
206
- 'es_subscriber_csv_file' => _x( 'Please select only csv file. Please check official website for csv structure..', 'view-subscriber-enhanced-select', ES_TDOMAIN )
207
  );
208
  wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
209
  break;
@@ -222,9 +249,9 @@ class es_cls_registerhook {
222
  wp_register_script( 'sendmail', ES_URL . 'sendmail/sendmail.js', '', '', true );
223
  wp_enqueue_script( 'sendmail' );
224
  $es_select_params = array(
225
- 'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', ES_TDOMAIN ),
226
- 'es_sendmail_status' => _x( 'Please select your mail type.', 'sendmail-enhanced-select', ES_TDOMAIN ),
227
- 'es_sendmail_confirm' => _x( 'Have you double checked your selected group? If so, let\'s go ahead and send this.', 'sendmail-enhanced-select', ES_TDOMAIN )
228
  );
229
  wp_localize_script( 'sendmail', 'es_sendmail_notices', $es_select_params );
230
  break;
@@ -232,8 +259,8 @@ class es_cls_registerhook {
232
  wp_register_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js', '', '', true );
233
  wp_enqueue_script( 'es-sentmail' );
234
  $es_select_params = array(
235
- 'es_sentmail_delete' => _x( 'Do you want to delete this record?', 'sentmail-enhanced-select', ES_TDOMAIN ),
236
- 'es_sentmail_delete_all' => _x( 'Do you want to delete all records except latest 10?', 'sentmail-enhanced-select', ES_TDOMAIN )
237
  );
238
  wp_localize_script( 'es-sentmail', 'es_sentmail_notices', $es_select_params );
239
  break;
@@ -241,8 +268,8 @@ class es_cls_registerhook {
241
  wp_register_script( 'es-settings', ES_URL . 'settings/es-settings.js', '', '', true );
242
  wp_enqueue_script( 'es-settings' );
243
  $es_select_params = array(
244
- 'es_cron_number' => _x( 'Please select enter number of mails you want to send per hour/trigger.', 'cron-enhanced-select', ES_TDOMAIN ),
245
- 'es_cron_input_type' => _x( 'Please enter the mail count, only number.', 'cron-enhanced-select', ES_TDOMAIN )
246
  );
247
  wp_localize_script( 'es-settings', 'es_cron_notices', $es_select_params );
248
  break;
@@ -252,17 +279,17 @@ class es_cls_registerhook {
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(
258
- 'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
259
- 'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-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-page-enhanced-select', ES_TDOMAIN ),
261
- 'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
262
- 'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
263
- 'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
264
- 'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
265
- 'es_ajax_url' => admin_url( 'admin-ajax.php' ),
266
  );
267
  wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
268
 
@@ -279,26 +306,26 @@ class es_cls_registerhook {
279
  public static function klawoo_subscribe() {
280
  $url = 'http://app.klawoo.com/subscribe';
281
 
282
- if( !empty( $_POST ) ) {
283
  $params = $_POST;
284
  } else {
285
  exit();
286
  }
287
  $method = 'POST';
288
- $qs = http_build_query( $params );
289
 
290
  $options = array(
291
  'timeout' => 15,
292
- 'method' => $method
293
  );
294
 
295
  if ( $method == 'POST' ) {
296
  $options['body'] = $qs;
297
  } else {
298
  if ( strpos( $url, '?' ) !== false ) {
299
- $url .= '&'.$qs;
300
  } else {
301
- $url .= '?'.$qs;
302
  }
303
  }
304
 
@@ -308,10 +335,10 @@ class es_cls_registerhook {
308
  $data = $response['body'];
309
  if ( $data != 'error' ) {
310
 
311
- $message_start = substr( $data, strpos( $data,'<body>' ) + 6 );
312
- $remove = substr( $message_start, strpos( $message_start,'</body>' ) );
313
- $message = trim( str_replace( $remove, '', $message_start ) );
314
- echo ( $message );
315
  exit();
316
  }
317
  }
@@ -323,7 +350,7 @@ class es_cls_registerhook {
323
  */
324
  public static function sa_email_subscribers_db_update() {
325
 
326
- if ( get_option( 'current_sa_email_subscribers_db_version') === false ) {
327
  es_cls_registerhook::es_upgrade_database_for_3_2();
328
  }
329
 
@@ -352,11 +379,11 @@ class es_cls_registerhook {
352
 
353
  $sync_subscribers = get_option( 'ig_es_sync_wp_users' );
354
 
355
- $es_unserialized_data = maybe_unserialize($sync_subscribers);
356
- unset($es_unserialized_data['es_commented']);
357
- unset($es_unserialized_data['es_commented_group']);
358
 
359
- $es_serialized_data = serialize($es_unserialized_data);
360
  update_option( 'ig_es_sync_wp_users', $es_serialized_data );
361
 
362
  update_option( 'current_sa_email_subscribers_db_version', '3.2' );
@@ -417,38 +444,38 @@ class es_cls_registerhook {
417
  global $wpdb;
418
 
419
  $settings_to_rename = array(
420
- 'es_c_fromname' => 'ig_es_fromname',
421
- 'es_c_fromemail' => 'ig_es_fromemail',
422
- 'es_c_mailtype' => 'ig_es_emailtype',
423
- 'es_c_adminmailoption' => 'ig_es_notifyadmin',
424
- 'es_c_adminemail' => 'ig_es_adminemail',
425
- 'es_c_adminmailsubject' => 'ig_es_admin_new_sub_subject',
426
- 'es_c_adminmailcontant' => 'ig_es_admin_new_sub_content',
427
- 'es_c_usermailoption' => 'ig_es_welcomeemail',
428
- 'es_c_usermailsubject' => 'ig_es_welcomesubject',
429
- 'es_c_usermailcontant' => 'ig_es_welcomecontent',
430
- 'es_c_optinoption' => 'ig_es_optintype',
431
- 'es_c_optinsubject' => 'ig_es_confirmsubject',
432
- 'es_c_optincontent' => 'ig_es_confirmcontent',
433
- 'es_c_optinlink' => 'ig_es_optinlink',
434
- 'es_c_unsublink' => 'ig_es_unsublink',
435
- 'es_c_unsubtext' => 'ig_es_unsubcontent',
436
- 'es_c_unsubhtml' => 'ig_es_unsubtext',
437
- 'es_c_subhtml' => 'ig_es_successmsg',
438
- 'es_c_message1' => 'ig_es_suberror',
439
- 'es_c_message2' => 'ig_es_unsuberror',
440
- );
441
 
442
  $options_to_rename = array(
443
- 'es_c_post_image_size' => 'ig_es_post_image_size',
444
- 'es_c_sentreport' => 'ig_es_sentreport',
445
- 'es_c_sentreport_subject' => 'ig_es_sentreport_subject',
446
- 'es_c_rolesandcapabilities' => 'ig_es_rolesandcapabilities',
447
- 'es_c_cronurl' => 'ig_es_cronurl',
448
- 'es_cron_mailcount' => 'ig_es_cron_mailcount',
449
- 'es_cron_adminmail' => 'ig_es_cron_adminmail',
450
- 'es_c_emailsubscribers' => 'ig_es_sync_wp_users',
451
- );
452
 
453
  // Rename options that were previously stored
454
  foreach ( $options_to_rename as $old_option_name => $new_option_name ) {
@@ -464,10 +491,10 @@ class es_cls_registerhook {
464
 
465
  if ( $table_exists > 0 ) {
466
  // Pull out ES settings data of existing users and move them to options table
467
- $settings_data = es_cls_settings::es_setting_select(1);
468
  if ( ! empty( $settings_data ) ) {
469
  foreach ( $settings_data as $name => $value ) {
470
- if( array_key_exists( $name, $settings_to_rename ) ){
471
  update_option( $settings_to_rename[ $name ], $value );
472
  }
473
  }
@@ -481,7 +508,7 @@ class es_cls_registerhook {
481
  $remove_roles = array( 'es_roles_setting', 'es_roles_help' );
482
  foreach ( $es_c_rolesandcapabilities as $role_name => $role_value ) {
483
  if ( in_array( $role_name, $remove_roles ) ) {
484
- unset( $es_c_rolesandcapabilities[$role_name] );
485
  }
486
  }
487
  update_option( 'ig_es_rolesandcapabilities', $es_c_rolesandcapabilities );
@@ -502,9 +529,9 @@ class es_cls_registerhook {
502
  if ( $template_table_exists > 0 ) {
503
 
504
  // To check if column es_templ_slug exists or not
505
- $es_template_col = "SHOW COLUMNS FROM {$wpdb->prefix}es_templatetable LIKE 'es_templ_slug' ";
506
- $results_template_col = $wpdb->get_results($es_template_col, 'ARRAY_A');
507
- $template_num_rows = $wpdb->num_rows;
508
 
509
  // If column doesn't exists, then insert it
510
  if ( $template_num_rows != '1' ) {
@@ -532,40 +559,43 @@ class es_cls_registerhook {
532
  if ( $es_template_table_exists > 0 ) {
533
 
534
  $es_migration_success = get_option( 'es_template_migration_done', 'nodata' );
535
- if( $es_migration_success == 'yes' ) return;
 
 
536
 
537
- $sSql = "SELECT es_tt.*,
538
  IFNULL(es_not.es_note_id, '') as es_note_id
539
  FROM {$wpdb->prefix}es_templatetable AS es_tt
540
  LEFT JOIN {$wpdb->prefix}es_notification AS es_not
541
  ON(es_not.es_note_templ = es_tt.es_templ_id)";
542
  $arrRes = $wpdb->get_results( $sSql, ARRAY_A );
543
 
544
- if( !empty( $arrRes ) ){
545
 
546
  $es_note_ids = array();
547
 
548
  foreach ( $arrRes as $tmpl ) {
549
  // Create post object
550
  $es_post = array(
551
- 'post_title' => wp_strip_all_tags( $tmpl['es_templ_heading'] ),
552
- 'post_content' => $tmpl['es_templ_body'],
553
- 'post_status' => 'publish',
554
- 'post_type' => 'es_template',
555
- 'meta_input' => array( 'es_template_type' => $tmpl['es_email_type']
556
- )
 
557
  );
558
  // Insert the post into the database
559
  $last_inserted_id = wp_insert_post( $es_post );
560
 
561
- if($tmpl['es_email_type'] == 'Post Notification' && !empty($tmpl['es_note_id']) ) {
562
- $es_note_ids[] = 'WHEN es_note_id = '.$tmpl['es_note_id'].' THEN '. $last_inserted_id;
563
  }
564
  }
565
 
566
- if ( !empty( $es_note_ids ) ) {
567
  // To update the 'es_note_templ' ids
568
- $sSql = "UPDATE {$wpdb->prefix}es_notification SET es_note_templ = (CASE ". implode(" ", $es_note_ids)." END)";
569
  $wpdb->query( $sSql );
570
  }
571
 
@@ -577,34 +607,34 @@ class es_cls_registerhook {
577
 
578
  // Keywords in Compose table
579
  $keywords_to_rename_in_compose = array(
580
- '###NAME###' => '{{NAME}}',
581
- '###EMAIL###' => '{{EMAIL}}',
582
- '###DATE###' => '{{DATE}}',
583
- '###POSTTITLE###' => '{{POSTTITLE}}',
584
- '###POSTIMAGE###' => '{{POSTIMAGE}}',
585
- '###POSTDESC###' => '{{POSTDESC}}',
586
- '###POSTFULL###' => '{{POSTFULL}}',
587
- '###POSTAUTHOR###' => '{{POSTAUTHOR}}',
588
- '###POSTLINK###' => '{{POSTLINK}}',
589
- '###POSTLINK-ONLY###' => '{{POSTLINK-ONLY}}',
590
- '###POSTLINK-WITHTITLE###' => '{{POSTLINK-WITHTITLE}}',
591
- );
592
 
593
  // Keywords in Settings
594
  $keywords_in_settings_to_rename = array(
595
- '###NAME###' => '{{NAME}}',
596
- '###EMAIL###' => '{{EMAIL}}',
597
- '###GROUP###' => '{{GROUP}}',
598
- '###COUNT###' => '{{COUNT}}',
599
- '###UNIQUE###' => '{{UNIQUE}}',
600
- '###STARTTIME###' => '{{STARTTIME}}',
601
- '###ENDTIME###' => '{{ENDTIME}}',
602
- '###LINK###' => '{{LINK}}',
603
- '###DATE###' => '{{DATE}}',
604
- '###SUBJECT###' => '{{SUBJECT}}',
605
- '###DBID###' => '{{DBID}}',
606
- '###GUID###' => '{{GUID}}',
607
- );
608
 
609
  // Updating keywords in post_title column where `post_type` = 'es_template'
610
  $es_post_title_query = "UPDATE {$wpdb->prefix}posts SET post_title = REPLACE(post_title,'###POSTTITLE###','{{POSTTITLE}}') WHERE post_type = 'es_template'";
@@ -612,24 +642,24 @@ class es_cls_registerhook {
612
 
613
  // Updating keywords in post_content column where `post_type` = 'es_template'
614
  $compose_keywords = array();
615
- foreach ($keywords_to_rename_in_compose as $key => $value) {
616
- $compose_keywords[] = "post_content = REPLACE(post_content,'".$key."','".$value."')";
617
  }
618
 
619
- $es_post_content_query = "UPDATE {$wpdb->prefix}posts SET ".implode(", ",$compose_keywords)." WHERE post_type = 'es_template'";
620
  $wpdb->query( $es_post_content_query );
621
 
622
  // Updating keywords in options
623
- $es_admin_new_sub_content = get_option( 'ig_es_admin_new_sub_content', 'nodata' );
624
- $es_sent_report_content = get_option( 'ig_es_sentreport', 'nodata' );
625
- $es_confirm_content = get_option( 'ig_es_confirmcontent', 'nodata' );
626
- $es_welcome_content = get_option( 'ig_es_welcomecontent', 'nodata' );
627
- $es_unsub_content = get_option( 'ig_es_unsubcontent', 'nodata' );
628
- $es_cron_admin_mail = get_option( 'ig_es_cron_adminmail', 'nodata' );
629
- $es_optin_link = get_option( 'ig_es_optinlink', 'nodata' );
630
- $es_unsub_link = get_option( 'ig_es_unsublink', 'nodata' );
631
-
632
- foreach ($keywords_in_settings_to_rename as $key => $value) {
633
  if ( $es_admin_new_sub_content != 'nodata' ) {
634
  $es_admin_new_sub_content = str_replace( $key, $value, $es_admin_new_sub_content );
635
  update_option( 'ig_es_admin_new_sub_content', $es_admin_new_sub_content );
@@ -661,13 +691,13 @@ class es_cls_registerhook {
661
  }
662
 
663
  if ( $es_optin_link != 'nodata' ) {
664
- $es_optin_link = str_replace( $key, $value, $es_optin_link );
665
  update_option( 'ig_es_optinlink', $es_optin_link );
666
  }
667
 
668
  if ( $es_unsub_link != 'nodata' ) {
669
- $es_unsub_link = str_replace( $key, $value, $es_unsub_link );
670
- update_option( 'ig_es_unsublink', $es_unsub_link );
671
  }
672
  }
673
 
@@ -679,63 +709,389 @@ class es_cls_registerhook {
679
  public static function es_add_admin_notices() {
680
 
681
  $screen = get_current_screen();
682
- if ( !in_array( $screen->id, array( 'toplevel_page_es-view-subscribers', 'es_template', 'edit-es_template', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-sendemail', 'email-subscribers_page_es-settings', 'email-subscribers_page_es-sentmail', 'email-subscribers_page_es-general-information' ), true ) ) return;
 
 
 
 
 
 
 
 
 
 
 
683
 
684
- // Show Captcha blog recommendation
685
- $total_subscribers = es_cls_dbquery::es_view_subscriber_count(0);
686
- $es_captcha_blog_recommendation = get_option( 'es_captcha_blog_recommendation_email_subscribers' );
 
 
 
687
 
688
- // Show notice if number of subscribers is more than 10 & notice is not dismissed
689
- if( $total_subscribers >= 10 && $es_captcha_blog_recommendation != 'no' ) {
690
- ?>
691
- <style type="text/css">
692
- .notice-warning {
693
- border-left-color: #e0c5b1;
694
- border: 0.2em solid;
695
- }
696
- a.es-admin-btn {
697
- margin-left: 10px;
698
- padding: 4px 8px;
699
- position: relative;
700
- text-decoration: none;
701
- border: none;
702
- -webkit-border-radius: 2px;
703
- border-radius: 2px;
704
- background: #e0e0e0;
705
- text-shadow: none;
706
- font-weight: 600;
707
- font-size: 13px;
708
- color: white;
709
- background-color: green;
710
- display: inline-block;
711
- }
712
- a.es-admin-btn:hover {
713
- color: #FFF;
714
- background-color: #363b3f;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
  }
716
- a.es-admin-btn-secondary {
717
- margin-left: 1em;
718
- font-weight: 400;
719
- background-color: #e0c5b1;
720
- color: #000000;
721
- float: right;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  }
723
- </style>
724
- <?php
 
725
 
726
- $url = 'https://www.icegram.com/protect-your-email-list-using-email-subscribers-pro-captcha/?utm_source=es&utm_medium=in_app_banner&utm_campaign=view_banner_captcha_blog';
727
- $admin_notice_text_for_pro_plan_upsell = __( '<b style="text-color: #000000">Want to protect your email list using captcha?</b>', ES_TDOMAIN );
728
- echo '<div class="notice notice-warning" style="background-color: #e0c5b1;"><p style="letter-spacing: 0.6px;">'.$admin_notice_text_for_pro_plan_upsell.'<a target="_blank" class="es-admin-btn" href="'.$url.'">'.__( 'Here\'s how', ES_TDOMAIN ).'</a><a style="" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_captcha_blog_recommendation">'.__( 'Not interested. Dismiss this.', ES_TDOMAIN ).'</a></p></div>';
 
 
 
 
 
 
 
729
  }
730
 
 
 
731
  }
732
 
733
  // Function to dismiss any admin notice
734
  public static function dismiss_admin_notice() {
735
 
736
- if(isset($_GET['dismiss_admin_notice']) && $_GET['dismiss_admin_notice'] == '1' && isset($_GET['option_name'])) {
737
- $option_name = sanitize_text_field($_GET['option_name']);
738
- update_option( $option_name.'_email_subscribers', 'no' );
739
 
740
  $referer = wp_get_referer();
741
  wp_safe_redirect( $referer );
@@ -749,8 +1105,8 @@ class es_cls_registerhook {
749
 
750
  global $post;
751
 
752
- if ( ( isset($_GET['page']) && ( $_GET['page'] == 'es-view-subscribers' || $_GET['page'] == 'es-notification' || $_GET['page'] == 'es-sendemail' || $_GET['page'] == 'es-settings' || $_GET['page'] == 'es-sentmail' || $_GET['page'] == 'es-general-information' ) ) || (is_object($post) && $post->post_type == 'es_template') ) {
753
- $es_rating_text = __( 'If you like <strong>Email Subscribers</strong>, please consider leaving us a <a target="_blank" href="https://wordpress.org/support/plugin/email-subscribers/reviews/?filter=5#new-post">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A huge thank you from Icegram in advance!', ES_TDOMAIN );
754
  }
755
 
756
  return $es_rating_text;
@@ -760,10 +1116,10 @@ class es_cls_registerhook {
760
 
761
  global $post;
762
 
763
- $es_plugin_data = get_plugin_data( WP_PLUGIN_DIR.'/email-subscribers/email-subscribers.php' );
764
  $es_current_version = $es_plugin_data['Version'];
765
 
766
- if ( ( isset($_GET['page']) && ( $_GET['page'] == 'es-view-subscribers' || $_GET['page'] == 'es-notification' || $_GET['page'] == 'es-sendemail' || $_GET['page'] == 'es-settings' || $_GET['page'] == 'es-sentmail' || $_GET['page'] == 'es-general-information' ) ) || (is_object($post) && $post->post_type == 'es_template') ) {
767
  $es_text = sprintf( __( 'Email Subscribers version: <strong>%s</strong>', ES_TDOMAIN ), $es_current_version );
768
  }
769
 
@@ -803,7 +1159,7 @@ class es_cls_registerhook {
803
  'has_archive' => false,
804
  'hierarchical' => false,
805
  'menu_position' => null,
806
- 'supports' => array( 'title', 'editor', 'thumbnail')
807
  );
808
 
809
  register_post_type( 'es_template', $args );
@@ -812,40 +1168,40 @@ class es_cls_registerhook {
812
  public static function es_highlight( $parent_file ) {
813
  global $submenu_file, $current_screen;
814
 
815
- if($current_screen->post_type == 'es_template') {
816
  $parent_file = 'es-view-subscribers';
817
  }
818
 
819
  return $parent_file;
820
  }
821
 
822
- public static function es_custom_template_column($existing_columns) {
823
 
824
  $date = $existing_columns['date'];
825
  unset( $existing_columns['date'] );
826
 
827
- $existing_columns['es_templ_type'] = __( 'Template Type', ES_TDOMAIN );
828
- $existing_columns['es_templ_thumbnail'] = __( 'Thumbnail', ES_TDOMAIN );
829
- $existing_columns['date'] = $date;
830
 
831
  return $existing_columns;
832
  }
833
 
834
- public static function es_template_edit_columns($column) {
835
  global $post;
836
 
837
- $es_post_thumbnail = get_the_post_thumbnail( $post->ID );
838
- $es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail($post->ID, array('200','200') ) : '<img src="'.ES_URL.'images/envelope.png" />';
839
 
840
- switch ($column) {
841
  case 'es_templ_type':
842
- echo get_post_meta($post->ID, 'es_template_type', true);
843
- break;
844
  case 'es_templ_thumbnail' :
845
  echo $es_templ_thumbnail;
846
- break;
847
  default:
848
- break;
849
  }
850
 
851
  return $column;
@@ -855,27 +1211,29 @@ class es_cls_registerhook {
855
 
856
  global $current_screen;
857
 
858
- if( $current_screen->post_type != 'es_template' ) {
859
  return;
860
  }
861
 
862
  ?>
863
- <style type="text/css">
864
- .column-es_templ_thumbnail, #es_templ_thumbnail,
865
- .column-es_templ_type, #es_templ_type {
866
- text-align: center !important;
867
- }
868
- </style>
869
  <?php
870
  }
871
 
872
  public static function es_add_template_action( $actions, $post ) {
873
- if ($post->post_type != 'es_template') return $actions;
 
 
874
 
875
- $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
876
- $page = ( ($es_templ_type == 'Newsletter') ? 'es-sendemail' : 'es-notification' );
877
- $preview_url = ES_ADMINURL."?page=".$page."&amp;ac=preview&did=".$post->ID;
878
- $actions['preview_campaign'] = '<a class="es-preview-template" target="_blank" href="'.$preview_url.'" >'.__('Preview' , ES_TDOMAIN).'</a>';
879
 
880
  return $actions;
881
  }
@@ -890,73 +1248,90 @@ class es_cls_registerhook {
890
 
891
  $es_templ_type = '';
892
  if ( $pagenow != 'post-new.php' ) {
893
- $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
894
  }
895
 
896
  if ( $es_templ_type == 'Post Notification' || $pagenow == 'post-new.php' ) {
897
  ?>
898
- <p style="margin-top: 0em; !important;">
899
  <?php
900
- 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>' );
901
  ?>
902
- </p>
903
  <?php
904
  }
905
  ?>
906
- <p>
907
- <label for="tag-link"><?php echo __( 'Select your Email Template Type', ES_TDOMAIN ); ?></label><br/>
908
- <select name="es_template_type" id="es_template_type">
909
- <option value='Newsletter' <?php if( $es_templ_type == 'Newsletter' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
910
- <option value='Post Notification' <?php if( $es_templ_type == 'Post Notification' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
911
- </select>
912
- </p>
 
 
 
 
913
  <?php
914
  }
915
 
916
  public static function es_save_template_type( $post_id, $post ) {
917
- if (empty( $post_id ) || empty( $post ) || empty( $_POST )) return;
918
- if (defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE) return;
919
- if (is_int( wp_is_post_revision( $post ) )) return;
920
- if (is_int( wp_is_post_autosave( $post ) )) return;
921
- if (! current_user_can( 'edit_post', $post_id )) return;
922
- if ($post->post_type != 'es_template') return;
 
 
 
 
 
 
 
 
 
 
 
 
923
  if ( isset( $_POST['es_template_type'] ) ) {
924
  update_post_meta( $post_id, 'es_template_type', $_POST['es_template_type'] );
925
  }
926
  }
927
 
928
  public static function es_process_template_body( $content, $tmpl_id = 0 ) {
929
- $content = convert_chars(convert_smilies( wptexturize( $content )));
930
- if(isset($GLOBALS['wp_embed'])) {
931
  $content = $GLOBALS['wp_embed']->autoembed( $content );
932
  }
933
  $content = wpautop( $content );
934
  // $content = do_shortcode( shortcode_unautop( $content ) );
935
- $data['content'] = $content;
936
- $data['tmpl_id'] = $tmpl_id;
937
- $data = apply_filters('es_after_process_template_body',$data);
938
- $content = $data['content'];
 
939
  return $content;
940
  }
941
 
942
  public static function add_preview_button() {
943
 
944
  global $post;
945
- if ($post->post_type != 'es_template') {
946
  return;
947
  }
948
 
949
- $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
950
- $page = ($es_templ_type == 'Newsletter') ? 'es-sendemail' : 'es-notification';
951
- $preview_url = ES_ADMINURL."?page=".$page."&amp;ac=preview&did=".$post->ID;
952
 
953
  //Adding a preview button in side bar widget
954
- $script = "<script>
955
  var prvw_button = jQuery('.es_preview_button');
956
  jQuery('#submitdiv .submitbox #minor-publishing-actions').after(prvw_button)
957
  prvw_button.fadeIn('fast');</script>";
958
  $preview_button = '<style>.es_preview_button{display: none;padding: 10px 10px 0;}</style><div id="" class="es_preview_button">
959
- <a href="'.$preview_url.'" target="_blank" class="button button-primary es_preview">' . __( 'Preview Template', ES_TDOMAIN ) .'</a>
960
  <div class="clear"></div></div>';
961
  echo $preview_button;
962
  echo $script;
@@ -973,35 +1348,35 @@ class es_cls_registerhook {
973
 
974
  if ( $pagenow == 'post-new.php' ) {
975
  ?>
976
- <p>
977
  <?php
978
- 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>' );
979
- 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>' );
980
  ?>
981
- </p>
982
  <?php
983
  }
984
 
985
  $es_templ_type = '';
986
  if ( $pagenow != 'post-new.php' ) {
987
- $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
988
  }
989
 
990
  if ( $es_templ_type == 'Post Notification' ) {
991
  ?>
992
- <p>
993
  <?php
994
- 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>' );
995
  ?>
996
- </p>
997
  <?php
998
  } elseif ( $es_templ_type == 'Newsletter' ) {
999
  ?>
1000
- <p>
1001
  <?php
1002
- 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>' );
1003
  ?>
1004
- </p>
1005
  <?php
1006
  }
1007
  }
@@ -1011,59 +1386,59 @@ class es_cls_registerhook {
1011
  global $es_includes;
1012
 
1013
  // Compatibility for GDPR
1014
- $active_plugins = get_option( 'active_plugins', array() );
1015
- if (is_multisite()) {
1016
- $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
1017
  }
1018
 
1019
- if ( !isset($es_includes) || $es_includes !== true ) {
1020
  $es_includes = true;
1021
  }
1022
- $es_desc = $instance['es_desc'];
1023
- $es_name = $instance['es_name'];
1024
- $es_group = $instance['es_group'];
1025
- $es_pre = $instance['es_pre'];
1026
 
1027
  ob_start();
1028
  ?>
1029
 
1030
- <div class="es_form_container">
1031
- <form class="es_<?php echo $es_pre ?>_form" data-es_form_id="es_<?php echo $es_pre ?>_form">
1032
- <?php if( $es_desc != "" ) { ?>
1033
- <div class="es_caption"><?php echo $es_desc; ?></div>
1034
  <?php } ?>
1035
- <?php if( $es_name == "YES" ) { ?>
1036
- <div class="es_lablebox">
1037
- <label class="es_<?php echo $es_pre ?>_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label>
1038
- </div>
1039
- <div class="es_textbox">
1040
- <input type="text" id="es_txt_name" class="es_textbox_class" name="es_txt_name" value="" maxlength="60">
1041
- </div>
1042
  <?php } ?>
1043
- <div class="es_lablebox">
1044
- <label class="es_<?php echo $es_pre ?>_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label>
1045
- </div>
1046
- <div class="es_textbox">
1047
- <input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="60" required>
1048
- </div>
1049
- <?php if (( in_array('gdpr/gdpr.php', $active_plugins) || array_key_exists('gdpr/gdpr.php', $active_plugins) )) {
1050
  echo GDPR::consent_checkboxes();
1051
  } ?>
1052
- <div class="es_button">
1053
- <input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
1054
- </div>
1055
- <div class="es_msg" id="es_<?php echo $es_pre ?>_msg">
1056
- <span id="es_msg"></span>
1057
- </div>
1058
- <?php if( $es_name != "YES" ) { ?>
1059
- <input type="hidden" id="es_txt_name" name="es_txt_name" value="">
1060
  <?php } ?>
1061
- <input type="hidden" id="es_txt_group" name="es_txt_group" value="<?php echo $es_group; ?>">
1062
  <?php $nonce = wp_create_nonce( 'es-subscribe' ); ?>
1063
- <input type="hidden" name="es-subscribe" id="es-subscribe" value="<?php echo $nonce; ?>"/>
1064
- </form>
1065
- <?php do_action('es_after_form')?>
1066
- </div>
1067
 
1068
  <?php
1069
  return $es_form = ob_get_clean();
@@ -1074,36 +1449,36 @@ class es_cls_registerhook {
1074
 
1075
  function es_sync_registereduser( $user_id ) {
1076
 
1077
- $es_c_emailsubscribers = get_option('ig_es_sync_wp_users', 'norecord');
1078
 
1079
- if( $es_c_emailsubscribers == 'norecord' || $es_c_emailsubscribers == "" ) {
1080
  // No action is required
1081
  } else {
1082
- $es_sync_unserialized_data = maybe_unserialize($es_c_emailsubscribers);
1083
- if( ( $es_sync_unserialized_data['es_registered'] == "YES" ) && ( $user_id != "" ) ) {
1084
- $es_registered = $es_sync_unserialized_data['es_registered'];
1085
  $es_registered_group = $es_sync_unserialized_data['es_registered_group'];
1086
 
1087
- $user_info = get_userdata($user_id);
1088
  $user_firstname = $user_info->user_firstname;
1089
 
1090
- if( $user_firstname == "" ) {
1091
  $user_firstname = $user_info->user_login;
1092
  }
1093
  $user_mail = $user_info->user_email;
1094
 
1095
- $form['es_email_name'] = $user_firstname;
1096
- $form['es_email_mail'] = $user_mail;
1097
- $form['es_email_group'] = $es_registered_group;
1098
  $form['es_email_status'] = "Confirmed";
1099
- $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
1100
- $action = es_cls_dbquery::es_view_subscriber_ins($form, "insert");
1101
 
1102
- if($action == "sus") {
1103
  //Inserted successfully. Below 3 line of code will send WELCOME email to subscribers.
1104
  $subscribers = array();
1105
- $subscribers = es_cls_dbquery::es_view_subscriber_one($user_mail, $form['es_email_group']);
1106
- es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
1107
  }
1108
  }
1109
  }
@@ -1111,15 +1486,15 @@ function es_sync_registereduser( $user_id ) {
1111
 
1112
  class es_widget_register extends WP_Widget {
1113
  function __construct() {
1114
- $widget_ops = array('classname' => 'widget_text elp-widget', 'description' => __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ), ES_PLUGIN_NAME);
1115
- parent::__construct(ES_PLUGIN_NAME, __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ), $widget_ops);
1116
  }
1117
 
1118
  function widget( $args, $instance ) {
1119
  extract( $args, EXTR_SKIP );
1120
 
1121
  $es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
1122
-
1123
  echo $args['before_widget'];
1124
  if ( ! empty( $es_title ) ) {
1125
  echo $args['before_title'] . $es_title . $args['after_title'];
@@ -1127,71 +1502,74 @@ class es_widget_register extends WP_Widget {
1127
 
1128
  // display widget method
1129
  $instance['es_pre'] = 'widget';
1130
- echo es_cls_registerhook::es_get_form($instance);
1131
  echo $args['after_widget'];
1132
  }
1133
-
1134
  function update( $new_instance, $old_instance ) {
1135
- $instance = $old_instance;
1136
- $instance['es_title'] = ( ! empty( $new_instance['es_title'] ) ) ? strip_tags( $new_instance['es_title'] ) : '';
1137
- $instance['es_desc'] = ( ! empty( $new_instance['es_desc'] ) ) ? strip_tags( $new_instance['es_desc'] ) : '';
1138
- $instance['es_name'] = ( ! empty( $new_instance['es_name'] ) ) ? strip_tags( $new_instance['es_name'] ) : '';
1139
- $instance['es_group'] = ( ! empty( $new_instance['es_group'] ) ) ? strip_tags( $new_instance['es_group'] ) : '';
 
1140
  return $instance;
1141
  }
1142
 
1143
  function form( $instance ) {
1144
  $defaults = array(
1145
  'es_title' => '',
1146
- 'es_desc' => '',
1147
- 'es_name' => '',
1148
- 'es_group' => ''
1149
  );
1150
- $instance = wp_parse_args( (array) $instance, $defaults);
1151
  $es_title = $instance['es_title'];
1152
  $es_desc = $instance['es_desc'];
1153
  $es_name = $instance['es_name'];
1154
  $es_group = $instance['es_group'];
1155
  ?>
1156
- <p>
1157
- <label for="<?php echo $this->get_field_id('es_title'); ?>"><?php echo __( 'Widget Title', ES_TDOMAIN ); ?></label>
1158
- <input class="widefat" id="<?php echo $this->get_field_id('es_title'); ?>" name="<?php echo $this->get_field_name('es_title'); ?>" type="text" value="<?php echo $es_title; ?>" />
1159
- </p>
1160
- <p>
1161
- <label for="<?php echo $this->get_field_id('es_desc'); ?>"><?php echo __( 'Short description about subscription form', ES_TDOMAIN ); ?></label>
1162
- <input class="widefat" id="<?php echo $this->get_field_id('es_desc'); ?>" name="<?php echo $this->get_field_name('es_desc'); ?>" type="text" value="<?php echo $es_desc; ?>" />
1163
- </p>
1164
- <p>
1165
- <label for="<?php echo $this->get_field_id('es_name'); ?>"><?php echo __( 'Display Name Field', ES_TDOMAIN ); ?></label>
1166
- <select class="widefat" id="<?php echo $this->get_field_id('es_name'); ?>" name="<?php echo $this->get_field_name('es_name'); ?>">
1167
- <option value="YES" <?php $this->es_selected($es_name == 'YES'); ?>><?php echo __( 'YES', ES_TDOMAIN ); ?></option>
1168
- <option value="NO" <?php $this->es_selected($es_name == 'NO'); ?>><?php echo __( 'NO', ES_TDOMAIN ); ?></option>
1169
- </select>
1170
- </p>
1171
- <p>
1172
- <label for="<?php echo $this->get_field_id('es_group'); ?>"><?php echo __( 'Subscriber Group', ES_TDOMAIN ); ?></label>
1173
- <select class="widefat" name="<?php echo $this->get_field_name('es_group'); ?>" id="<?php echo $this->get_field_id('es_group'); ?>">
1174
  <?php
1175
- $groups = array();
1176
- $groups = es_cls_dbquery::es_view_subscriber_group();
1177
- if(count($groups) > 0) {
1178
- $i = 1;
1179
- foreach ($groups as $group) {
1180
- ?>
1181
- <option value="<?php echo esc_html(stripslashes($group["es_email_group"])); ?>" <?php if(stripslashes($es_group) == $group["es_email_group"]) { echo 'selected="selected"' ; } ?>>
1182
- <?php echo stripslashes($group["es_email_group"]); ?>
1183
- </option>
1184
- <?php
1185
- }
 
1186
  }
 
1187
  ?>
1188
- </select>
1189
- </p>
1190
  <?php
1191
  }
1192
 
1193
- function es_selected($var) {
1194
- if ($var==1 || $var==true) {
1195
  echo 'selected="selected"';
1196
  }
1197
  }
9
  public static function es_activation() {
10
  global $wpdb;
11
 
12
+ add_option( 'email-subscribers', "2.9" );
13
 
14
  // Creating default tables
15
  global $wpdb;
69
 
70
  $es_default_table_names = array( 'es_emaillist', 'es_notification', 'es_sentdetails', 'es_deliverreport' );
71
 
72
+ $es_has_errors = false;
73
  $es_missing_tables = array();
74
+ foreach ( $es_default_table_names as $table_name ) {
75
+ if ( strtoupper( $wpdb->get_var( "SHOW TABLES like '" . $wpdb->prefix . $table_name . "'" ) ) != strtoupper( $wpdb->prefix . $table_name ) ) {
76
+ $es_missing_tables[] = $wpdb->prefix . $table_name;
77
  }
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
+
89
  return false;
90
  } else {
91
  // Inserting dummy data on first activation
92
  es_cls_default::es_pluginconfig_default();
93
  es_cls_default::es_template_default();
94
  es_cls_default::es_subscriber_default();
95
+ //current version and date on activation
96
+ $es_plugin_meta_data = get_plugin_data( WP_PLUGIN_DIR . '/email-subscribers/email-subscribers.php' );
97
+ $es_current_version = $es_plugin_meta_data['Version'];
98
+
99
+ $timezone_format = _x( 'Y-m-d H:i:s', 'timezone date format' );
100
+ $es_current_date = date_i18n( $timezone_format );
101
+
102
+ $es_current_version_date_details = array(
103
+ 'es_current_version' => '',
104
+ 'es_current_date' => ''
105
+ );
106
+
107
+ $es_current_version_date_details['es_current_version'] = $es_current_version;
108
+ $es_current_version_date_details['es_current_date'] = $es_current_date;
109
+
110
+ update_option( 'ig_es_current_version_date_details', $es_current_version_date_details, 'no' );
111
+
112
  }
113
 
114
  if ( ! is_network_admin() && ! isset( $_GET['activate-multi'] ) ) {
137
  public static function es_synctables() {
138
  $es_c_email_subscribers_ver = get_option( "email-subscribers" );
139
 
140
+ if ( $es_c_email_subscribers_ver != "2.9" ) {
141
 
142
+ $guid = es_cls_common::es_generate_guid( 60 );
143
+ $home_url = home_url( '/' );
144
+ $blogname = get_option( 'blogname' );
145
+ $cronurl = $home_url . "?es=cron&guid=" . $guid;
146
 
147
  add_option( "ig_es_cronurl", $cronurl );
148
  add_option( "ig_es_cron_mailcount", "50" );
149
+ add_option( "ig_es_cron_adminmail", "Hi Admin,\r\n\r\nCron URL has been triggered successfully on {{DATE}} for the email '{{SUBJECT}}'. And it sent email to {{COUNT}} recipient(s).\r\n\r\nBest,\r\n" . $blogname . "" );
150
 
151
  update_option( "email-subscribers", "2.9" );
152
  }
161
  }
162
 
163
  public static function es_adminmenu() {
164
+ $post = get_post_types();
165
+ $es_c_rolesandcapabilities = get_option( 'ig_es_rolesandcapabilities', 'norecord' );
166
+ if ( $es_c_rolesandcapabilities == 'norecord' || $es_c_rolesandcapabilities == "" ) {
167
+ $es_roles_subscriber = "manage_options";
168
+ $es_roles_mail = "manage_options";
169
  $es_roles_notification = "manage_options";
170
+ $es_roles_sendmail = "manage_options";
171
+ $es_roles_sentmail = "manage_options";
172
  } else {
173
+ $es_roles_subscriber = $es_c_rolesandcapabilities['es_roles_subscriber'];
174
+ $es_roles_mail = $es_c_rolesandcapabilities['es_roles_mail'];
175
  $es_roles_notification = $es_c_rolesandcapabilities['es_roles_notification'];
176
+ $es_roles_sendmail = $es_c_rolesandcapabilities['es_roles_sendmail'];
177
+ $es_roles_sentmail = $es_c_rolesandcapabilities['es_roles_sentmail'];
178
+ }
179
+ $active_plugins = (array) get_option( 'active_plugins', array() );
180
+ if ( is_multisite() ) {
181
+ $active_plugins = array_merge( $active_plugins, get_site_option( 'active_sitewide_plugins', array() ) );
182
  }
183
 
184
  add_menu_page( __( 'Email Subscribers', ES_TDOMAIN ),
185
  __( 'Email Subscribers', ES_TDOMAIN ), 'edit_posts', 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ), 'dashicons-email', 51 );
186
 
187
+ add_submenu_page( 'es-view-subscribers', __( 'Subscribers', ES_TDOMAIN ),
188
+ __( 'Subscribers', ES_TDOMAIN ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ) );
189
 
190
+ add_submenu_page( 'es-view-subscribers', __( 'Templates', ES_TDOMAIN ),
191
+ __( 'Templates', ES_TDOMAIN ), $es_roles_mail, 'edit.php?post_type=es_template', null );
192
 
193
+ add_submenu_page( 'es-view-subscribers', __( 'Post Notifications', ES_TDOMAIN ),
194
+ __( 'Post Notifications', ES_TDOMAIN ), $es_roles_notification, 'es-notification', array( 'es_cls_intermediate', 'es_notification' ) );
195
 
196
+ add_submenu_page( 'es-view-subscribers', __( 'Newsletters', ES_TDOMAIN ),
197
+ __( 'Newsletters', ES_TDOMAIN ), $es_roles_sendmail, 'es-sendemail', array( 'es_cls_intermediate', 'es_sendemail' ) );
198
 
199
+ add_submenu_page( 'es-view-subscribers', __( 'Settings', ES_TDOMAIN ),
200
+ __( 'Settings', ES_TDOMAIN ), 'manage_options', 'es-settings', array( 'es_cls_intermediate', 'es_settings' ) );
201
 
202
+ add_submenu_page( 'es-view-subscribers', __( 'Reports', ES_TDOMAIN ),
203
+ __( 'Reports', ES_TDOMAIN ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ) );
204
 
205
+ add_submenu_page( 'es-view-subscribers', __( 'Help & Info', ES_TDOMAIN ),
206
+ __( '<span style="color:#f18500;font-weight:bolder;">Help & Info</span>', ES_TDOMAIN ), 'edit_posts', 'es-general-information', array( 'es_cls_intermediate', 'es_information' ) );
207
+
208
+ if ( ! ( in_array( 'email-subscribers-premium/email-subscribers-premium.php', $active_plugins ) || array_key_exists( 'email-subscribers-premium/email-subscribers-premium.php', $active_plugins ) ) ) {
209
+ add_submenu_page( 'es-view-subscribers', __( 'Go Pro', ES_TDOMAIN ),
210
+ __( '<span style="color:#03a025;font-weight:bolder;">Go Pro</span>', ES_TDOMAIN ), 'edit_posts', 'es-pricing', array( 'es_cls_intermediate', 'es_pricing' ) );
211
+ }
212
  }
213
 
214
  public static function es_load_scripts() {
215
 
216
+ if ( ! empty( $_GET['page'] ) ) {
217
  switch ( $_GET['page'] ) {
218
  case 'es-view-subscribers':
219
  wp_register_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js', '', '', true );
220
  wp_enqueue_script( 'es-view-subscribers' );
221
  $es_select_params = array(
222
+ 'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
223
+ 'es_subscriber_email_status' => _x( 'Please select subscriber email status.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
224
+ 'es_subscriber_group' => _x( 'Please select or create group for this subscriber.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
225
+ 'es_subscriber_delete_record' => _x( 'Do you want to delete this record?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
226
+ 'es_subscriber_bulk_action' => _x( 'Please select the bulk action.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
227
+ 'es_subscriber_confirm_delete' => _x( 'Are you sure you want to delete selected records?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
228
+ 'es_subscriber_resend_email' => _x( 'Do you want to resend confirmation email? Also please note, this will update subscriber current status to \'Unconfirmed\'.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
229
+ 'es_subscriber_new_group' => _x( 'Please select new subscriber group.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
230
+ 'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
231
+ 'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
232
+ 'es_subscriber_status_update' => _x( 'Do you want to update subscribers status?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
233
+ 'es_subscriber_csv_file' => _x( 'Please select only csv file. Please check official website for csv structure..', 'view-subscriber-enhanced-select', ES_TDOMAIN )
234
  );
235
  wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
236
  break;
249
  wp_register_script( 'sendmail', ES_URL . 'sendmail/sendmail.js', '', '', true );
250
  wp_enqueue_script( 'sendmail' );
251
  $es_select_params = array(
252
+ 'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', ES_TDOMAIN ),
253
+ 'es_sendmail_status' => _x( 'Please select your mail type.', 'sendmail-enhanced-select', ES_TDOMAIN ),
254
+ 'es_sendmail_confirm' => _x( 'Have you double checked your selected group? If so, let\'s go ahead and send this.', 'sendmail-enhanced-select', ES_TDOMAIN )
255
  );
256
  wp_localize_script( 'sendmail', 'es_sendmail_notices', $es_select_params );
257
  break;
259
  wp_register_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js', '', '', true );
260
  wp_enqueue_script( 'es-sentmail' );
261
  $es_select_params = array(
262
+ 'es_sentmail_delete' => _x( 'Do you want to delete this record?', 'sentmail-enhanced-select', ES_TDOMAIN ),
263
+ 'es_sentmail_delete_all' => _x( 'Do you want to delete all records except latest 10?', 'sentmail-enhanced-select', ES_TDOMAIN )
264
  );
265
  wp_localize_script( 'es-sentmail', 'es_sentmail_notices', $es_select_params );
266
  break;
268
  wp_register_script( 'es-settings', ES_URL . 'settings/es-settings.js', '', '', true );
269
  wp_enqueue_script( 'es-settings' );
270
  $es_select_params = array(
271
+ 'es_cron_number' => _x( 'Please select enter number of mails you want to send per hour/trigger.', 'cron-enhanced-select', ES_TDOMAIN ),
272
+ 'es_cron_input_type' => _x( 'Please enter the mail count, only number.', 'cron-enhanced-select', ES_TDOMAIN )
273
  );
274
  wp_localize_script( 'es-settings', 'es_cron_notices', $es_select_params );
275
  break;
279
 
280
  public static function es_load_widget_scripts_styles() {
281
 
282
+ wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', array( 'jquery' ), '', true );
283
  wp_enqueue_script( 'es-widget-page' );
284
  $es_select_params = array(
285
+ 'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
286
+ 'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
287
+ '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-page-enhanced-select', ES_TDOMAIN ),
288
+ 'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
289
+ 'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
290
+ 'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
291
+ 'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
292
+ 'es_ajax_url' => admin_url( 'admin-ajax.php' ),
293
  );
294
  wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
295
 
306
  public static function klawoo_subscribe() {
307
  $url = 'http://app.klawoo.com/subscribe';
308
 
309
+ if ( ! empty( $_POST ) ) {
310
  $params = $_POST;
311
  } else {
312
  exit();
313
  }
314
  $method = 'POST';
315
+ $qs = http_build_query( $params );
316
 
317
  $options = array(
318
  'timeout' => 15,
319
+ 'method' => $method
320
  );
321
 
322
  if ( $method == 'POST' ) {
323
  $options['body'] = $qs;
324
  } else {
325
  if ( strpos( $url, '?' ) !== false ) {
326
+ $url .= '&' . $qs;
327
  } else {
328
+ $url .= '?' . $qs;
329
  }
330
  }
331
 
335
  $data = $response['body'];
336
  if ( $data != 'error' ) {
337
 
338
+ $message_start = substr( $data, strpos( $data, '<body>' ) + 6 );
339
+ $remove = substr( $message_start, strpos( $message_start, '</body>' ) );
340
+ $message = trim( str_replace( $remove, '', $message_start ) );
341
+ echo( $message );
342
  exit();
343
  }
344
  }
350
  */
351
  public static function sa_email_subscribers_db_update() {
352
 
353
+ if ( get_option( 'current_sa_email_subscribers_db_version' ) === false ) {
354
  es_cls_registerhook::es_upgrade_database_for_3_2();
355
  }
356
 
379
 
380
  $sync_subscribers = get_option( 'ig_es_sync_wp_users' );
381
 
382
+ $es_unserialized_data = maybe_unserialize( $sync_subscribers );
383
+ unset( $es_unserialized_data['es_commented'] );
384
+ unset( $es_unserialized_data['es_commented_group'] );
385
 
386
+ $es_serialized_data = serialize( $es_unserialized_data );
387
  update_option( 'ig_es_sync_wp_users', $es_serialized_data );
388
 
389
  update_option( 'current_sa_email_subscribers_db_version', '3.2' );
444
  global $wpdb;
445
 
446
  $settings_to_rename = array(
447
+ 'es_c_fromname' => 'ig_es_fromname',
448
+ 'es_c_fromemail' => 'ig_es_fromemail',
449
+ 'es_c_mailtype' => 'ig_es_emailtype',
450
+ 'es_c_adminmailoption' => 'ig_es_notifyadmin',
451
+ 'es_c_adminemail' => 'ig_es_adminemail',
452
+ 'es_c_adminmailsubject' => 'ig_es_admin_new_sub_subject',
453
+ 'es_c_adminmailcontant' => 'ig_es_admin_new_sub_content',
454
+ 'es_c_usermailoption' => 'ig_es_welcomeemail',
455
+ 'es_c_usermailsubject' => 'ig_es_welcomesubject',
456
+ 'es_c_usermailcontant' => 'ig_es_welcomecontent',
457
+ 'es_c_optinoption' => 'ig_es_optintype',
458
+ 'es_c_optinsubject' => 'ig_es_confirmsubject',
459
+ 'es_c_optincontent' => 'ig_es_confirmcontent',
460
+ 'es_c_optinlink' => 'ig_es_optinlink',
461
+ 'es_c_unsublink' => 'ig_es_unsublink',
462
+ 'es_c_unsubtext' => 'ig_es_unsubcontent',
463
+ 'es_c_unsubhtml' => 'ig_es_unsubtext',
464
+ 'es_c_subhtml' => 'ig_es_successmsg',
465
+ 'es_c_message1' => 'ig_es_suberror',
466
+ 'es_c_message2' => 'ig_es_unsuberror',
467
+ );
468
 
469
  $options_to_rename = array(
470
+ 'es_c_post_image_size' => 'ig_es_post_image_size',
471
+ 'es_c_sentreport' => 'ig_es_sentreport',
472
+ 'es_c_sentreport_subject' => 'ig_es_sentreport_subject',
473
+ 'es_c_rolesandcapabilities' => 'ig_es_rolesandcapabilities',
474
+ 'es_c_cronurl' => 'ig_es_cronurl',
475
+ 'es_cron_mailcount' => 'ig_es_cron_mailcount',
476
+ 'es_cron_adminmail' => 'ig_es_cron_adminmail',
477
+ 'es_c_emailsubscribers' => 'ig_es_sync_wp_users',
478
+ );
479
 
480
  // Rename options that were previously stored
481
  foreach ( $options_to_rename as $old_option_name => $new_option_name ) {
491
 
492
  if ( $table_exists > 0 ) {
493
  // Pull out ES settings data of existing users and move them to options table
494
+ $settings_data = es_cls_settings::es_setting_select( 1 );
495
  if ( ! empty( $settings_data ) ) {
496
  foreach ( $settings_data as $name => $value ) {
497
+ if ( array_key_exists( $name, $settings_to_rename ) ) {
498
  update_option( $settings_to_rename[ $name ], $value );
499
  }
500
  }
508
  $remove_roles = array( 'es_roles_setting', 'es_roles_help' );
509
  foreach ( $es_c_rolesandcapabilities as $role_name => $role_value ) {
510
  if ( in_array( $role_name, $remove_roles ) ) {
511
+ unset( $es_c_rolesandcapabilities[ $role_name ] );
512
  }
513
  }
514
  update_option( 'ig_es_rolesandcapabilities', $es_c_rolesandcapabilities );
529
  if ( $template_table_exists > 0 ) {
530
 
531
  // To check if column es_templ_slug exists or not
532
+ $es_template_col = "SHOW COLUMNS FROM {$wpdb->prefix}es_templatetable LIKE 'es_templ_slug' ";
533
+ $results_template_col = $wpdb->get_results( $es_template_col, 'ARRAY_A' );
534
+ $template_num_rows = $wpdb->num_rows;
535
 
536
  // If column doesn't exists, then insert it
537
  if ( $template_num_rows != '1' ) {
559
  if ( $es_template_table_exists > 0 ) {
560
 
561
  $es_migration_success = get_option( 'es_template_migration_done', 'nodata' );
562
+ if ( $es_migration_success == 'yes' ) {
563
+ return;
564
+ }
565
 
566
+ $sSql = "SELECT es_tt.*,
567
  IFNULL(es_not.es_note_id, '') as es_note_id
568
  FROM {$wpdb->prefix}es_templatetable AS es_tt
569
  LEFT JOIN {$wpdb->prefix}es_notification AS es_not
570
  ON(es_not.es_note_templ = es_tt.es_templ_id)";
571
  $arrRes = $wpdb->get_results( $sSql, ARRAY_A );
572
 
573
+ if ( ! empty( $arrRes ) ) {
574
 
575
  $es_note_ids = array();
576
 
577
  foreach ( $arrRes as $tmpl ) {
578
  // Create post object
579
  $es_post = array(
580
+ 'post_title' => wp_strip_all_tags( $tmpl['es_templ_heading'] ),
581
+ 'post_content' => $tmpl['es_templ_body'],
582
+ 'post_status' => 'publish',
583
+ 'post_type' => 'es_template',
584
+ 'meta_input' => array(
585
+ 'es_template_type' => $tmpl['es_email_type']
586
+ )
587
  );
588
  // Insert the post into the database
589
  $last_inserted_id = wp_insert_post( $es_post );
590
 
591
+ if ( $tmpl['es_email_type'] == 'Post Notification' && ! empty( $tmpl['es_note_id'] ) ) {
592
+ $es_note_ids[] = 'WHEN es_note_id = ' . $tmpl['es_note_id'] . ' THEN ' . $last_inserted_id;
593
  }
594
  }
595
 
596
+ if ( ! empty( $es_note_ids ) ) {
597
  // To update the 'es_note_templ' ids
598
+ $sSql = "UPDATE {$wpdb->prefix}es_notification SET es_note_templ = (CASE " . implode( " ", $es_note_ids ) . " END)";
599
  $wpdb->query( $sSql );
600
  }
601
 
607
 
608
  // Keywords in Compose table
609
  $keywords_to_rename_in_compose = array(
610
+ '###NAME###' => '{{NAME}}',
611
+ '###EMAIL###' => '{{EMAIL}}',
612
+ '###DATE###' => '{{DATE}}',
613
+ '###POSTTITLE###' => '{{POSTTITLE}}',
614
+ '###POSTIMAGE###' => '{{POSTIMAGE}}',
615
+ '###POSTDESC###' => '{{POSTDESC}}',
616
+ '###POSTFULL###' => '{{POSTFULL}}',
617
+ '###POSTAUTHOR###' => '{{POSTAUTHOR}}',
618
+ '###POSTLINK###' => '{{POSTLINK}}',
619
+ '###POSTLINK-ONLY###' => '{{POSTLINK-ONLY}}',
620
+ '###POSTLINK-WITHTITLE###' => '{{POSTLINK-WITHTITLE}}',
621
+ );
622
 
623
  // Keywords in Settings
624
  $keywords_in_settings_to_rename = array(
625
+ '###NAME###' => '{{NAME}}',
626
+ '###EMAIL###' => '{{EMAIL}}',
627
+ '###GROUP###' => '{{GROUP}}',
628
+ '###COUNT###' => '{{COUNT}}',
629
+ '###UNIQUE###' => '{{UNIQUE}}',
630
+ '###STARTTIME###' => '{{STARTTIME}}',
631
+ '###ENDTIME###' => '{{ENDTIME}}',
632
+ '###LINK###' => '{{LINK}}',
633
+ '###DATE###' => '{{DATE}}',
634
+ '###SUBJECT###' => '{{SUBJECT}}',
635
+ '###DBID###' => '{{DBID}}',
636
+ '###GUID###' => '{{GUID}}',
637
+ );
638
 
639
  // Updating keywords in post_title column where `post_type` = 'es_template'
640
  $es_post_title_query = "UPDATE {$wpdb->prefix}posts SET post_title = REPLACE(post_title,'###POSTTITLE###','{{POSTTITLE}}') WHERE post_type = 'es_template'";
642
 
643
  // Updating keywords in post_content column where `post_type` = 'es_template'
644
  $compose_keywords = array();
645
+ foreach ( $keywords_to_rename_in_compose as $key => $value ) {
646
+ $compose_keywords[] = "post_content = REPLACE(post_content,'" . $key . "','" . $value . "')";
647
  }
648
 
649
+ $es_post_content_query = "UPDATE {$wpdb->prefix}posts SET " . implode( ", ", $compose_keywords ) . " WHERE post_type = 'es_template'";
650
  $wpdb->query( $es_post_content_query );
651
 
652
  // Updating keywords in options
653
+ $es_admin_new_sub_content = get_option( 'ig_es_admin_new_sub_content', 'nodata' );
654
+ $es_sent_report_content = get_option( 'ig_es_sentreport', 'nodata' );
655
+ $es_confirm_content = get_option( 'ig_es_confirmcontent', 'nodata' );
656
+ $es_welcome_content = get_option( 'ig_es_welcomecontent', 'nodata' );
657
+ $es_unsub_content = get_option( 'ig_es_unsubcontent', 'nodata' );
658
+ $es_cron_admin_mail = get_option( 'ig_es_cron_adminmail', 'nodata' );
659
+ $es_optin_link = get_option( 'ig_es_optinlink', 'nodata' );
660
+ $es_unsub_link = get_option( 'ig_es_unsublink', 'nodata' );
661
+
662
+ foreach ( $keywords_in_settings_to_rename as $key => $value ) {
663
  if ( $es_admin_new_sub_content != 'nodata' ) {
664
  $es_admin_new_sub_content = str_replace( $key, $value, $es_admin_new_sub_content );
665
  update_option( 'ig_es_admin_new_sub_content', $es_admin_new_sub_content );
691
  }
692
 
693
  if ( $es_optin_link != 'nodata' ) {
694
+ $es_optin_link = str_replace( $key, $value, $es_optin_link );
695
  update_option( 'ig_es_optinlink', $es_optin_link );
696
  }
697
 
698
  if ( $es_unsub_link != 'nodata' ) {
699
+ $es_unsub_link = str_replace( $key, $value, $es_unsub_link );
700
+ update_option( 'ig_es_unsublink', $es_unsub_link );
701
  }
702
  }
703
 
709
  public static function es_add_admin_notices() {
710
 
711
  $screen = get_current_screen();
712
+ if ( ! in_array( $screen->id, array( 'toplevel_page_es-view-subscribers', 'es_template', 'edit-es_template', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-sendemail', 'email-subscribers_page_es-settings', 'email-subscribers_page_es-sentmail', 'email-subscribers_page_es-general-information' ), true ) ) {
713
+ return;
714
+ }
715
+
716
+ // Show if - more than 2 post notifications or Newsletters sent OR more than 10 subscribers
717
+ $total_subscribers = es_cls_dbquery::es_view_subscriber_count( 0 );
718
+ $total_email_sent = es_cls_sentmail::es_sentmail_count( $id = 0 );
719
+ $es_star_review = get_option( 'es_star_review_email_subscribers' );
720
+ if ( ( $total_subscribers >= 10 || $total_email_sent > 2 ) && $es_star_review != 'no' ) {
721
+ $es_rating_text = __( 'If you like <strong>Email Subscribers</strong>, please consider leaving us a <a target="_blank" href="https://wordpress.org/support/plugin/email-subscribers/reviews/?filter=5#new-post">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A huge thank you from Icegram in advance!', ES_TDOMAIN );
722
+ echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $es_rating_text . ' <a style="float:right" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_star_review">' . __( 'No, I don\'t like it', ES_TDOMAIN ) . '</a></p></div>';
723
+ }
724
 
725
+ //Survey
726
+ $admin_email = get_option( 'admin_email' );
727
+ $ig_es_current_version_date_details = get_option( 'ig_es_current_version_date_details' );
728
+ $timezone_format = _x( 'Y-m-d', 'timezone date format' );
729
+ $es_current_date = date_i18n( $timezone_format );
730
+ $date_diff = floor( ( strtotime( $es_current_date ) - strtotime( $ig_es_current_version_date_details['es_current_date'] ) ) / ( 3600 * 24 ) );
731
 
732
+ // Don't show survey if it's just 5 days to install/update or already did survey or cancelled it
733
+ if ( ( ! empty( $date_diff ) && $date_diff < 5 ) || ( get_option( 'ig_es_survey_for_problems_done' ) == 1 ) || ( get_option( 'ig_es_survey_for_problems_cancelled' ) == 1 )) {
734
+ return;
735
+ }
736
+
737
+ ?>
738
+ <style>
739
+ .es_survey {
740
+ width: 65%;
741
+ background-color: #FFF !important;
742
+ margin-top: 1%;
743
+ padding: 1.5em;
744
+ box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
745
+ font-size: 1.1em;
746
+ border: 0.5em solid #fd714f;
747
+ height: 27em;
748
+ }
749
+
750
+ .es_question {
751
+ font-size: 1.5em;
752
+ color: #011627;
753
+ margin: 0.5em 0;
754
+ }
755
+
756
+ .es_survey_ans_text {
757
+ box-sizing: border-box;
758
+ resize: none;
759
+ overflow: auto;
760
+ height: auto;
761
+ padding: 8px;
762
+ box-shadow: 0px 4px 10px -8px black;
763
+ margin: 0.5em 0;
764
+ }
765
+
766
+ .es_survey_ans_text {
767
+ width: 90%;
768
+ }
769
+
770
+ .es_email_wrapper {
771
+ margin: 1.5em 0;
772
+ }
773
+
774
+ .es_email_wrapper input[type="email"] {
775
+ width: 25em;
776
+ height: 2.5em;
777
+ }
778
+
779
+ .es-loader-wrapper {
780
+ position: absolute;
781
+ display: none;
782
+ left: 50%;
783
+ margin-top: 0.4em;
784
+ margin-left: 4em;
785
+ }
786
+
787
+ .es-loader-wrapper img {
788
+ width: 60%;
789
+ }
790
+
791
+ .es-subheadline {
792
+ padding-bottom: 0.4em;
793
+ font-family: Georgia, Palatino, serif;
794
+ font-size: 1.2em;
795
+ color: #2d3e50;
796
+ line-height: 1.3em;
797
+ }
798
+
799
+ .es-main-headline {
800
+ font-size: 1.5em;
801
+ font-weight: bold;
802
+ padding-bottom: 0.6em;
803
+ color: #f2555b;
804
+ }
805
+
806
+ .es-survey-next, .es_button {
807
+ color: #FFFFFF !important;
808
+ padding: 0 3.6em;
809
+ height: 2em;
810
+ border-color: #03a025 !important;
811
+ background: #03a025 !important;
812
+ box-shadow: 0 1px 0 #03a025;
813
+ }
814
+
815
+ .es-container-2 .es-subheadline {
816
+ margin-top: 1em;
817
+ }
818
+
819
+ .es_button {
820
+ height: 2.7em !important;
821
+ width: 10em;
822
+ }
823
+
824
+ .es-logo-wrapper {
825
+ text-align: center;
826
+ }
827
+
828
+ #es-no, #es-cancel {
829
+ # margin-left: 40%;
830
+ cursor: pointer;
831
+ }
832
+
833
+ #es-no[type="submit"] {
834
+ background: #b9b9b9 !important;
835
+ border-color: #b9b9b9 !important;
836
+ }
837
+
838
+ .es-signature-wrapper {
839
+ margin-top: 8em;
840
+ font-size: 1.2em;
841
+ }
842
+
843
+ .es-avatar img {
844
+ border-radius: 50%;
845
+ width: 150px;
846
+ height: 150px;
847
+ }
848
+
849
+ .es-avatar {
850
+ text-align: center;
851
+ }
852
+
853
+ .es-left {
854
+ float: left;
855
+ width: 80%;
856
+ display: inline-block;
857
+ }
858
+
859
+ .es-right {
860
+ float: right;
861
+ width: 20%;
862
+ display: inline-block;
863
+ }
864
+
865
+ .es-no .es-main-headline {
866
+ font-size: 3em;
867
+ margin-top: 1em;
868
+ font-style: italic;
869
+ }
870
+
871
+ .es-yes .es-main-headline {
872
+ font-size: 2em;
873
+ line-height: 1em;
874
+ font-style: italic;
875
+ }
876
+
877
+ .es-container-1 #es-no {
878
+ margin-left: 1em;
879
+ vertical-align: -webkit-baseline-middle;
880
+ cursor: pointer;
881
+ }
882
+
883
+ .es-error {
884
+ margin-top: 0.5em;
885
+ color: #f2555b;
886
+ }
887
+
888
+ .es-send-problems-btn {
889
+ # float: left;
890
+ }
891
+
892
+ .es-do-not-problems-link {
893
+ line-height: 30px;
894
+ margin-left: 1em;
895
+ }
896
+
897
+
898
+ @media screen and (min-width: 70em) {
899
+ .es_survey {
900
+ width: 80%;
901
+ }
902
+
903
+ #es-no {
904
+ # margin-left: 51%;
905
+ }
906
+ }
907
+
908
+ </style>
909
+ <script type="text/javascript">
910
+ jQuery(function () {
911
+ jQuery('.es_survey').on('click', '.es-survey-next', function () {
912
+ var val1 = jQuery('.es_survey').find("textarea:first-child").val();
913
+ var val2 = jQuery('.es_survey').find("textarea:eq( 1 )").val();
914
+ if (val1 !== '' && val2 !== '') {
915
+ jQuery('.es-container-1').hide();
916
+ jQuery('.es-container-2').show();
917
+ } else {
918
+ jQuery('.es-error').show();
919
+ }
920
+ });
921
+
922
+ });
923
+ </script>
924
+ <div class="es_survey">
925
+ <div class="es_survey_form">
926
+ <form name='es-survey-form'>
927
+ <div class="es-container-1">
928
+ <div class="es-left">
929
+ <div class="es-main-headline"><?php _e( 'What do you hate about list building and email marketing?', ES_TDOMAIN ); ?></div>
930
+ <div class="es-subheadline"><?php _e( 'Hey, glad to see you!', ES_TDOMAIN ) ?></div>
931
+ <div class="es-subheadline"><?php _e( 'I am on a daring quest to solve your biggest problems around list building and email marketing. ', ES_TDOMAIN ) ?></div>
932
+ <div class="es-subheadline"><?php _e( 'So tell me, when it comes to list building and email marketing, what\'s your biggest challenge? What\'s blocking your progress? ', ES_TDOMAIN ) ?></div>
933
+ <div class="es-questions">
934
+ <div class="es-subheadline es-problems-2">
935
+ <textarea class="es_survey_ans_text" name="es_survey['es_ques_1']" placeholder=""></textarea>
936
+ </div>
937
+ <div class="es-subheadline es-problems-2"><?php _e( 'And what\'s another big challenge? ', ES_TDOMAIN ) ?></br>
938
+ <textarea class="es_survey_ans_text" name="es_survey['es_ques_2']" placeholder=""></textarea>
939
+ </div>
940
+ <div>
941
+ <span class="es-send-problems-btn"><a href="#" class="es-survey-next button primary"><?php echo __( 'Send my problems...', ES_TDOMAIN ); ?> </a></span>
942
+ <span class="es-do-not-problems-link"><a id="es-cancel" data-val="cancel" class="es-cancel"><?php echo __( 'No, I don\'t have problems', ES_TDOMAIN ); ?></a></span>
943
+ </div>
944
+ <div class="es-error" style="display:none"><?php echo __( 'Fill the above field first', ES_TDOMAIN ); ?></div>
945
+ </div>
946
+ </div>
947
+ <div class="es-right">
948
+ <div class="es-avatar"><img src="<?php echo ES_URL ?>images/andrea-avatar-300x300.jpg"></div>
949
+ </div>
950
+ </div>
951
+ <div class="es-container-2" style="display:none;">
952
+ <div class="es-left">
953
+ <div class="es-main-headline"><?php _e( 'Gosh... I hear you mate... ', ES_TDOMAIN ) ?></div>
954
+ <div class="es-subheadline"><?php _e( 'You will be the first to know when we solve those problems.', ES_TDOMAIN ) ?></div>
955
+ <div class="es-subheadline"><?php _e( 'We will inform you on below email', ES_TDOMAIN ) ?></div>
956
+ <div class="es_email_wrapper">
957
+ <input type="email" name="es_email" value="<?php echo $admin_email ?>"/>
958
+ <input data-val="yes" type="submit" id="es-yes" value="Notify me" class="es_button button primary">
959
+ <input data-val="no" type="submit" id="es-no" value="Don't Notify me" class="es_button button primary">
960
+ </div>
961
+ <div class="es-loader-wrapper"><img src="<?php echo ES_URL ?>images/spinner-2x.gif"></div>
962
+ </div>
963
+ <div class="es-right">
964
+ <div class="es-avatar"><img src="<?php echo ES_URL ?>images/andrea-avatar-300x300.jpg"></div>
965
+ </div>
966
+ </div>
967
+ </form>
968
+ </div>
969
+ <div class="es-msg-wrap" style="display:none;">
970
+ <div class="es-left">
971
+ <div class="es-yes">
972
+ <!-- <div class="es-logo-wrapper"><img src="<?php echo ES_URL ?>images/es-logo-128x128.png"></div> -->
973
+ <div class="es-main-headline"><?php _e( 'I got you.', ES_TDOMAIN ) ?></div>
974
+ <div class="es-main-headline"><?php _e( 'Will do everything I can to help you. ', ES_TDOMAIN ) ?></div>
975
+ <div class="es-signature-wrapper" style="font-family: Georgia, Palatino, serif;">
976
+ <span class="es-later"><?php echo __( 'Later. ', ES_TDOMAIN ); ?></span></br>
977
+ <span class="es-signature"><img src="<?php echo ES_URL ?>images/signature.png"></span></br>
978
+ <span class="es-name"><?php echo __( 'Andrea Juliao ', ES_TDOMAIN ); ?></span>
979
+ </div>
980
+ </div>
981
+ <div class="es-no">
982
+ <div class="es-main-headline"><?php echo __( 'No issues, have a nice day!', ES_TDOMAIN ); ?></div>
983
+ <div class="es-signature-wrapper" style="font-family: Georgia, Palatino, serif;">
984
+ <span class="es-later"><?php echo __( 'Later. ', ES_TDOMAIN ); ?></span></br>
985
+ <span class="es-signature"><img src="<?php echo ES_URL ?>images/signature.png"></span></br>
986
+ <span class="es-name"><?php echo __( 'Andrea Juliao ', ES_TDOMAIN ); ?></span>
987
+ </div>
988
+ </div>
989
+ </div>
990
+ <div class="es-right">
991
+ <div class="es-avatar"><img src="<?php echo ES_URL ?>images/andrea-avatar-300x300.jpg"></div>
992
+ </div>
993
+ </div>
994
+ </div>
995
+ <script type="text/javascript">
996
+ jQuery(function () {
997
+ jQuery("form[name=es-survey-form]").on('click', '.es_button, #es-no, #es-cancel', function (e) {
998
+ e.preventDefault();
999
+ jQuery("form[name=es-survey-form]").find('.es-loader-wrapper').show();
1000
+ var params = jQuery("form[name=es-survey-form]").serializeArray();
1001
+ var that = this;
1002
+ params.push({name: 'btn-val', value: jQuery(this).data('val')});
1003
+ params.push({name: 'action', value: 'es_submit_survey'});
1004
+ jQuery.ajax({
1005
+ method: 'POST',
1006
+ type: 'text',
1007
+ url: "<?php echo admin_url( 'admin-ajax.php' ); ?>",
1008
+ data: params,
1009
+ success: function (response) {
1010
+ jQuery("form[name=es-survey-form]").find('.es-loader-wrapper').hide();
1011
+ jQuery(".es-msg-wrap").show('slow');
1012
+ if (jQuery(that).attr('id') == 'es-no') {
1013
+ jQuery(".es-msg-wrap .es-no").hide();
1014
+ // jQuery(".es-container-1").hide();
1015
+ } else if (jQuery(that).attr('id') == 'es-cancel') {
1016
+ jQuery(".es-container-1").hide();
1017
+ jQuery(".es-msg-wrap .es-yes").hide();
1018
+ } else {
1019
+ jQuery(".es-msg-wrap .es-no").hide();
1020
+ }
1021
+
1022
+ jQuery(".es-container-2").hide();
1023
+ setTimeout(function () {
1024
+ jQuery(".es_survey").hide('slow');
1025
+ }, 5000);
1026
+ }
1027
+ });
1028
+ })
1029
+ });
1030
+ </script>
1031
+ <?php
1032
+ }
1033
+
1034
+ public static function es_submit_survey() {
1035
+
1036
+ $url = 'https://www.icegram.com/wp-admin/admin-ajax.php';
1037
+
1038
+ if ( ! empty( $_POST ) ) {
1039
+
1040
+ if ( ! empty( $_POST['btn-val'] ) ) {
1041
+
1042
+ if ( 'cancel' === $_POST['btn-val'] ) {
1043
+ update_option( 'ig_es_survey_for_problems_cancelled', true );
1044
+ exit();
1045
+ } elseif ( 'no' === $_POST['btn-val'] ) {
1046
+ unset( $_POST['es_email'] );
1047
  }
1048
+ }
1049
+
1050
+ $params = $_POST;
1051
+ $params['domain'] = home_url();
1052
+
1053
+ $method = 'POST';
1054
+ $qs = http_build_query( $params );
1055
+
1056
+ $options = array(
1057
+ 'timeout' => 15,
1058
+ 'method' => $method
1059
+ );
1060
+
1061
+ if ( $method == 'POST' ) {
1062
+ $options['body'] = $qs;
1063
+ } else {
1064
+ if ( strpos( $url, '?' ) !== false ) {
1065
+ $url .= '&' . $qs;
1066
+ } else {
1067
+ $url .= '?' . $qs;
1068
  }
1069
+ }
1070
+
1071
+ $response = wp_remote_request( $url, $options );
1072
 
1073
+ if ( wp_remote_retrieve_response_code( $response ) == 200 ) {
1074
+ $data = json_decode( $response['body'], true );
1075
+
1076
+ if ( empty( $data['error'] ) ) {
1077
+ if ( ! empty( $data ) && ! empty( $data['success'] ) ) {
1078
+ update_option( 'ig_es_survey_for_problems_done', true );
1079
+ }
1080
+ echo( json_encode( $data ) );
1081
+ }
1082
+ }
1083
  }
1084
 
1085
+ exit();
1086
+
1087
  }
1088
 
1089
  // Function to dismiss any admin notice
1090
  public static function dismiss_admin_notice() {
1091
 
1092
+ if ( isset( $_GET['dismiss_admin_notice'] ) && $_GET['dismiss_admin_notice'] == '1' && isset( $_GET['option_name'] ) ) {
1093
+ $option_name = sanitize_text_field( $_GET['option_name'] );
1094
+ update_option( $option_name . '_email_subscribers', 'no' );
1095
 
1096
  $referer = wp_get_referer();
1097
  wp_safe_redirect( $referer );
1105
 
1106
  global $post;
1107
 
1108
+ if ( ( isset( $_GET['page'] ) && ( $_GET['page'] == 'es-view-subscribers' || $_GET['page'] == 'es-notification' || $_GET['page'] == 'es-sendemail' || $_GET['page'] == 'es-settings' || $_GET['page'] == 'es-sentmail' || $_GET['page'] == 'es-general-information' || $_GET['page'] == 'es-pricing' ) ) || ( is_object( $post ) && $post->post_type == 'es_template' ) ) {
1109
+ $es_rating_text = __( 'Thank you for using Email Subscribers! A huge thank you from Icegram!', ES_TDOMAIN );
1110
  }
1111
 
1112
  return $es_rating_text;
1116
 
1117
  global $post;
1118
 
1119
+ $es_plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/email-subscribers/email-subscribers.php' );
1120
  $es_current_version = $es_plugin_data['Version'];
1121
 
1122
+ if ( ( isset( $_GET['page'] ) && ( $_GET['page'] == 'es-view-subscribers' || $_GET['page'] == 'es-notification' || $_GET['page'] == 'es-sendemail' || $_GET['page'] == 'es-settings' || $_GET['page'] == 'es-sentmail' || $_GET['page'] == 'es-general-information' || $_GET['page'] == 'es-pricing' ) ) || ( is_object( $post ) && $post->post_type == 'es_template' ) ) {
1123
  $es_text = sprintf( __( 'Email Subscribers version: <strong>%s</strong>', ES_TDOMAIN ), $es_current_version );
1124
  }
1125
 
1159
  'has_archive' => false,
1160
  'hierarchical' => false,
1161
  'menu_position' => null,
1162
+ 'supports' => array( 'title', 'editor', 'thumbnail' )
1163
  );
1164
 
1165
  register_post_type( 'es_template', $args );
1168
  public static function es_highlight( $parent_file ) {
1169
  global $submenu_file, $current_screen;
1170
 
1171
+ if ( $current_screen->post_type == 'es_template' ) {
1172
  $parent_file = 'es-view-subscribers';
1173
  }
1174
 
1175
  return $parent_file;
1176
  }
1177
 
1178
+ public static function es_custom_template_column( $existing_columns ) {
1179
 
1180
  $date = $existing_columns['date'];
1181
  unset( $existing_columns['date'] );
1182
 
1183
+ $existing_columns['es_templ_type'] = __( 'Template Type', ES_TDOMAIN );
1184
+ $existing_columns['es_templ_thumbnail'] = __( 'Thumbnail', ES_TDOMAIN );
1185
+ $existing_columns['date'] = $date;
1186
 
1187
  return $existing_columns;
1188
  }
1189
 
1190
+ public static function es_template_edit_columns( $column ) {
1191
  global $post;
1192
 
1193
+ $es_post_thumbnail = get_the_post_thumbnail( $post->ID );
1194
+ $es_templ_thumbnail = ( ! empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail( $post->ID, array( '200', '200' ) ) : '<img src="' . ES_URL . 'images/envelope.png" />';
1195
 
1196
+ switch ( $column ) {
1197
  case 'es_templ_type':
1198
+ echo get_post_meta( $post->ID, 'es_template_type', true );
1199
+ break;
1200
  case 'es_templ_thumbnail' :
1201
  echo $es_templ_thumbnail;
1202
+ break;
1203
  default:
1204
+ break;
1205
  }
1206
 
1207
  return $column;
1211
 
1212
  global $current_screen;
1213
 
1214
+ if ( $current_screen->post_type != 'es_template' ) {
1215
  return;
1216
  }
1217
 
1218
  ?>
1219
+ <style type="text/css">
1220
+ .column-es_templ_thumbnail, #es_templ_thumbnail,
1221
+ .column-es_templ_type, #es_templ_type {
1222
+ text-align: center !important;
1223
+ }
1224
+ </style>
1225
  <?php
1226
  }
1227
 
1228
  public static function es_add_template_action( $actions, $post ) {
1229
+ if ( $post->post_type != 'es_template' ) {
1230
+ return $actions;
1231
+ }
1232
 
1233
+ $es_templ_type = get_post_meta( $post->ID, 'es_template_type', true );
1234
+ $page = ( ( $es_templ_type == 'Newsletter' ) ? 'es-sendemail' : 'es-notification' );
1235
+ $preview_url = ES_ADMINURL . "?page=" . $page . "&amp;ac=preview&did=" . $post->ID;
1236
+ $actions['preview_campaign'] = '<a class="es-preview-template" target="_blank" href="' . $preview_url . '" >' . __( 'Preview', ES_TDOMAIN ) . '</a>';
1237
 
1238
  return $actions;
1239
  }
1248
 
1249
  $es_templ_type = '';
1250
  if ( $pagenow != 'post-new.php' ) {
1251
+ $es_templ_type = get_post_meta( $post->ID, 'es_template_type', true );
1252
  }
1253
 
1254
  if ( $es_templ_type == 'Post Notification' || $pagenow == 'post-new.php' ) {
1255
  ?>
1256
+ <p style="margin-top: 0em; !important;">
1257
  <?php
1258
+ 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>' );
1259
  ?>
1260
+ </p>
1261
  <?php
1262
  }
1263
  ?>
1264
+ <p>
1265
+ <label for="tag-link"><?php echo __( 'Select your Email Template Type', ES_TDOMAIN ); ?></label><br/>
1266
+ <select name="es_template_type" id="es_template_type">
1267
+ <option value='Newsletter' <?php if ( $es_templ_type == 'Newsletter' ) {
1268
+ echo 'selected="selected"';
1269
+ } ?>><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
1270
+ <option value='Post Notification' <?php if ( $es_templ_type == 'Post Notification' ) {
1271
+ echo 'selected="selected"';
1272
+ } ?>><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
1273
+ </select>
1274
+ </p>
1275
  <?php
1276
  }
1277
 
1278
  public static function es_save_template_type( $post_id, $post ) {
1279
+ if ( empty( $post_id ) || empty( $post ) || empty( $_POST ) ) {
1280
+ return;
1281
+ }
1282
+ if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
1283
+ return;
1284
+ }
1285
+ if ( is_int( wp_is_post_revision( $post ) ) ) {
1286
+ return;
1287
+ }
1288
+ if ( is_int( wp_is_post_autosave( $post ) ) ) {
1289
+ return;
1290
+ }
1291
+ if ( ! current_user_can( 'edit_post', $post_id ) ) {
1292
+ return;
1293
+ }
1294
+ if ( $post->post_type != 'es_template' ) {
1295
+ return;
1296
+ }
1297
  if ( isset( $_POST['es_template_type'] ) ) {
1298
  update_post_meta( $post_id, 'es_template_type', $_POST['es_template_type'] );
1299
  }
1300
  }
1301
 
1302
  public static function es_process_template_body( $content, $tmpl_id = 0 ) {
1303
+ $content = convert_chars( convert_smilies( wptexturize( $content ) ) );
1304
+ if ( isset( $GLOBALS['wp_embed'] ) ) {
1305
  $content = $GLOBALS['wp_embed']->autoembed( $content );
1306
  }
1307
  $content = wpautop( $content );
1308
  // $content = do_shortcode( shortcode_unautop( $content ) );
1309
+ $data['content'] = $content;
1310
+ $data['tmpl_id'] = $tmpl_id;
1311
+ $data = apply_filters( 'es_after_process_template_body', $data );
1312
+ $content = $data['content'];
1313
+
1314
  return $content;
1315
  }
1316
 
1317
  public static function add_preview_button() {
1318
 
1319
  global $post;
1320
+ if ( $post->post_type != 'es_template' ) {
1321
  return;
1322
  }
1323
 
1324
+ $es_templ_type = get_post_meta( $post->ID, 'es_template_type', true );
1325
+ $page = ( $es_templ_type == 'Newsletter' ) ? 'es-sendemail' : 'es-notification';
1326
+ $preview_url = ES_ADMINURL . "?page=" . $page . "&amp;ac=preview&did=" . $post->ID;
1327
 
1328
  //Adding a preview button in side bar widget
1329
+ $script = "<script>
1330
  var prvw_button = jQuery('.es_preview_button');
1331
  jQuery('#submitdiv .submitbox #minor-publishing-actions').after(prvw_button)
1332
  prvw_button.fadeIn('fast');</script>";
1333
  $preview_button = '<style>.es_preview_button{display: none;padding: 10px 10px 0;}</style><div id="" class="es_preview_button">
1334
+ <a href="' . $preview_url . '" target="_blank" class="button button-primary es_preview">' . __( 'Preview Template', ES_TDOMAIN ) . '</a>
1335
  <div class="clear"></div></div>';
1336
  echo $preview_button;
1337
  echo $script;
1348
 
1349
  if ( $pagenow == 'post-new.php' ) {
1350
  ?>
1351
+ <p>
1352
  <?php
1353
+ 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>' );
1354
+ 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>' );
1355
  ?>
1356
+ </p>
1357
  <?php
1358
  }
1359
 
1360
  $es_templ_type = '';
1361
  if ( $pagenow != 'post-new.php' ) {
1362
+ $es_templ_type = get_post_meta( $post->ID, 'es_template_type', true );
1363
  }
1364
 
1365
  if ( $es_templ_type == 'Post Notification' ) {
1366
  ?>
1367
+ <p>
1368
  <?php
1369
+ 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>' );
1370
  ?>
1371
+ </p>
1372
  <?php
1373
  } elseif ( $es_templ_type == 'Newsletter' ) {
1374
  ?>
1375
+ <p>
1376
  <?php
1377
+ 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>' );
1378
  ?>
1379
+ </p>
1380
  <?php
1381
  }
1382
  }
1386
  global $es_includes;
1387
 
1388
  // Compatibility for GDPR
1389
+ $active_plugins = get_option( 'active_plugins', array() );
1390
+ if ( is_multisite() ) {
1391
+ $active_plugins = array_merge( $active_plugins, get_site_option( 'active_sitewide_plugins', array() ) );
1392
  }
1393
 
1394
+ if ( ! isset( $es_includes ) || $es_includes !== true ) {
1395
  $es_includes = true;
1396
  }
1397
+ $es_desc = $instance['es_desc'];
1398
+ $es_name = $instance['es_name'];
1399
+ $es_group = $instance['es_group'];
1400
+ $es_pre = $instance['es_pre'];
1401
 
1402
  ob_start();
1403
  ?>
1404
 
1405
+ <div class="es_form_container">
1406
+ <form class="es_<?php echo $es_pre ?>_form" data-es_form_id="es_<?php echo $es_pre ?>_form">
1407
+ <?php if ( $es_desc != "" ) { ?>
1408
+ <div class="es_caption"><?php echo $es_desc; ?></div>
1409
  <?php } ?>
1410
+ <?php if ( $es_name == "YES" ) { ?>
1411
+ <div class="es_lablebox">
1412
+ <label class="es_<?php echo $es_pre ?>_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label>
1413
+ </div>
1414
+ <div class="es_textbox">
1415
+ <input type="text" id="es_txt_name" class="es_textbox_class" name="es_txt_name" value="" maxlength="60">
1416
+ </div>
1417
  <?php } ?>
1418
+ <div class="es_lablebox">
1419
+ <label class="es_<?php echo $es_pre ?>_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label>
1420
+ </div>
1421
+ <div class="es_textbox">
1422
+ <input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="60" required>
1423
+ </div>
1424
+ <?php if ( ( in_array( 'gdpr/gdpr.php', $active_plugins ) || array_key_exists( 'gdpr/gdpr.php', $active_plugins ) ) ) {
1425
  echo GDPR::consent_checkboxes();
1426
  } ?>
1427
+ <div class="es_button">
1428
+ <input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
1429
+ </div>
1430
+ <div class="es_msg" id="es_<?php echo $es_pre ?>_msg">
1431
+ <span id="es_msg"></span>
1432
+ </div>
1433
+ <?php if ( $es_name != "YES" ) { ?>
1434
+ <input type="hidden" id="es_txt_name" name="es_txt_name" value="">
1435
  <?php } ?>
1436
+ <input type="hidden" id="es_txt_group" name="es_txt_group" value="<?php echo $es_group; ?>">
1437
  <?php $nonce = wp_create_nonce( 'es-subscribe' ); ?>
1438
+ <input type="hidden" name="es-subscribe" id="es-subscribe" value="<?php echo $nonce; ?>"/>
1439
+ </form>
1440
+ <?php do_action( 'es_after_form' ) ?>
1441
+ </div>
1442
 
1443
  <?php
1444
  return $es_form = ob_get_clean();
1449
 
1450
  function es_sync_registereduser( $user_id ) {
1451
 
1452
+ $es_c_emailsubscribers = get_option( 'ig_es_sync_wp_users', 'norecord' );
1453
 
1454
+ if ( $es_c_emailsubscribers == 'norecord' || $es_c_emailsubscribers == "" ) {
1455
  // No action is required
1456
  } else {
1457
+ $es_sync_unserialized_data = maybe_unserialize( $es_c_emailsubscribers );
1458
+ if ( ( $es_sync_unserialized_data['es_registered'] == "YES" ) && ( $user_id != "" ) ) {
1459
+ $es_registered = $es_sync_unserialized_data['es_registered'];
1460
  $es_registered_group = $es_sync_unserialized_data['es_registered_group'];
1461
 
1462
+ $user_info = get_userdata( $user_id );
1463
  $user_firstname = $user_info->user_firstname;
1464
 
1465
+ if ( $user_firstname == "" ) {
1466
  $user_firstname = $user_info->user_login;
1467
  }
1468
  $user_mail = $user_info->user_email;
1469
 
1470
+ $form['es_email_name'] = $user_firstname;
1471
+ $form['es_email_mail'] = $user_mail;
1472
+ $form['es_email_group'] = $es_registered_group;
1473
  $form['es_email_status'] = "Confirmed";
1474
+ $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
1475
+ $action = es_cls_dbquery::es_view_subscriber_ins( $form, "insert" );
1476
 
1477
+ if ( $action == "sus" ) {
1478
  //Inserted successfully. Below 3 line of code will send WELCOME email to subscribers.
1479
  $subscribers = array();
1480
+ $subscribers = es_cls_dbquery::es_view_subscriber_one( $user_mail, $form['es_email_group'] );
1481
+ es_cls_sendmail::es_sendmail( "welcome", $template = 0, $subscribers, "welcome", 0 );
1482
  }
1483
  }
1484
  }
1486
 
1487
  class es_widget_register extends WP_Widget {
1488
  function __construct() {
1489
+ $widget_ops = array( 'classname' => 'widget_text elp-widget', 'description' => __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ), ES_PLUGIN_NAME );
1490
+ parent::__construct( ES_PLUGIN_NAME, __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ), $widget_ops );
1491
  }
1492
 
1493
  function widget( $args, $instance ) {
1494
  extract( $args, EXTR_SKIP );
1495
 
1496
  $es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
1497
+
1498
  echo $args['before_widget'];
1499
  if ( ! empty( $es_title ) ) {
1500
  echo $args['before_title'] . $es_title . $args['after_title'];
1502
 
1503
  // display widget method
1504
  $instance['es_pre'] = 'widget';
1505
+ echo es_cls_registerhook::es_get_form( $instance );
1506
  echo $args['after_widget'];
1507
  }
1508
+
1509
  function update( $new_instance, $old_instance ) {
1510
+ $instance = $old_instance;
1511
+ $instance['es_title'] = ( ! empty( $new_instance['es_title'] ) ) ? strip_tags( $new_instance['es_title'] ) : '';
1512
+ $instance['es_desc'] = ( ! empty( $new_instance['es_desc'] ) ) ? strip_tags( $new_instance['es_desc'] ) : '';
1513
+ $instance['es_name'] = ( ! empty( $new_instance['es_name'] ) ) ? strip_tags( $new_instance['es_name'] ) : '';
1514
+ $instance['es_group'] = ( ! empty( $new_instance['es_group'] ) ) ? strip_tags( $new_instance['es_group'] ) : '';
1515
+
1516
  return $instance;
1517
  }
1518
 
1519
  function form( $instance ) {
1520
  $defaults = array(
1521
  'es_title' => '',
1522
+ 'es_desc' => '',
1523
+ 'es_name' => '',
1524
+ 'es_group' => ''
1525
  );
1526
+ $instance = wp_parse_args( (array) $instance, $defaults );
1527
  $es_title = $instance['es_title'];
1528
  $es_desc = $instance['es_desc'];
1529
  $es_name = $instance['es_name'];
1530
  $es_group = $instance['es_group'];
1531
  ?>
1532
+ <p>
1533
+ <label for="<?php echo $this->get_field_id( 'es_title' ); ?>"><?php echo __( 'Widget Title', ES_TDOMAIN ); ?></label>
1534
+ <input class="widefat" id="<?php echo $this->get_field_id( 'es_title' ); ?>" name="<?php echo $this->get_field_name( 'es_title' ); ?>" type="text" value="<?php echo $es_title; ?>"/>
1535
+ </p>
1536
+ <p>
1537
+ <label for="<?php echo $this->get_field_id( 'es_desc' ); ?>"><?php echo __( 'Short description about subscription form', ES_TDOMAIN ); ?></label>
1538
+ <input class="widefat" id="<?php echo $this->get_field_id( 'es_desc' ); ?>" name="<?php echo $this->get_field_name( 'es_desc' ); ?>" type="text" value="<?php echo $es_desc; ?>"/>
1539
+ </p>
1540
+ <p>
1541
+ <label for="<?php echo $this->get_field_id( 'es_name' ); ?>"><?php echo __( 'Display Name Field', ES_TDOMAIN ); ?></label>
1542
+ <select class="widefat" id="<?php echo $this->get_field_id( 'es_name' ); ?>" name="<?php echo $this->get_field_name( 'es_name' ); ?>">
1543
+ <option value="YES" <?php $this->es_selected( $es_name == 'YES' ); ?>><?php echo __( 'YES', ES_TDOMAIN ); ?></option>
1544
+ <option value="NO" <?php $this->es_selected( $es_name == 'NO' ); ?>><?php echo __( 'NO', ES_TDOMAIN ); ?></option>
1545
+ </select>
1546
+ </p>
1547
+ <p>
1548
+ <label for="<?php echo $this->get_field_id( 'es_group' ); ?>"><?php echo __( 'Subscriber Group', ES_TDOMAIN ); ?></label>
1549
+ <select class="widefat" name="<?php echo $this->get_field_name( 'es_group' ); ?>" id="<?php echo $this->get_field_id( 'es_group' ); ?>">
1550
  <?php
1551
+ $groups = array();
1552
+ $groups = es_cls_dbquery::es_view_subscriber_group();
1553
+ if ( count( $groups ) > 0 ) {
1554
+ $i = 1;
1555
+ foreach ( $groups as $group ) {
1556
+ ?>
1557
+ <option value="<?php echo esc_html( stripslashes( $group["es_email_group"] ) ); ?>" <?php if ( stripslashes( $es_group ) == $group["es_email_group"] ) {
1558
+ echo 'selected="selected"';
1559
+ } ?>>
1560
+ <?php echo stripslashes( $group["es_email_group"] ); ?>
1561
+ </option>
1562
+ <?php
1563
  }
1564
+ }
1565
  ?>
1566
+ </select>
1567
+ </p>
1568
  <?php
1569
  }
1570
 
1571
+ function es_selected( $var ) {
1572
+ if ( $var == 1 || $var == true ) {
1573
  echo 'selected="selected"';
1574
  }
1575
  }
classes/es-sendmail.php CHANGED
@@ -175,7 +175,8 @@ class es_cls_sendmail {
175
  }
176
 
177
  $es_cron_adminmail = get_option('ig_es_cron_adminmail');
178
- if($es_cron_adminmail != "") {
 
179
  $adminmail = $settings['ig_es_adminemail'];
180
  $crondate = date('Y-m-d G:i:s');
181
  $count = $count - 1;
@@ -528,14 +529,17 @@ class es_cls_sendmail {
528
  es_cls_sentmail::es_sentmail_ups($sendguid, $subject);
529
  if( $adminmail != "" ) {
530
 
 
 
 
531
  $subject = get_option('ig_es_sentreport_subject', 'nosubjectexists');
532
  if ( $subject == "" || $subject == "nosubjectexists") {
533
  $subject = es_cls_common::es_sent_report_subject();
534
  }
535
 
536
- if( $mailsenttype == "Cron" ) {
537
- $subject = $subject . " - Cron Email scheduled";
538
- }
539
 
540
  if( $wp_mail ) {
541
  $reportmail = get_option('ig_es_sentreport', 'nooptionexists');
175
  }
176
 
177
  $es_cron_adminmail = get_option('ig_es_cron_adminmail');
178
+ $ig_es_enable_cron_adminmail = get_option('ig_es_enable_cron_adminmail', 'yes');
179
+ if("yes" === $ig_es_enable_cron_adminmail && $es_cron_adminmail !== "") {
180
  $adminmail = $settings['ig_es_adminemail'];
181
  $crondate = date('Y-m-d G:i:s');
182
  $count = $count - 1;
529
  es_cls_sentmail::es_sentmail_ups($sendguid, $subject);
530
  if( $adminmail != "" ) {
531
 
532
+ if( "Cron" === $mailsenttype ){
533
+ return;
534
+ }
535
  $subject = get_option('ig_es_sentreport_subject', 'nosubjectexists');
536
  if ( $subject == "" || $subject == "nosubjectexists") {
537
  $subject = es_cls_common::es_sent_report_subject();
538
  }
539
 
540
+ // if( $mailsenttype == "Cron" ) {
541
+ // $subject = $subject . " - Cron Email scheduled";
542
+ // }
543
 
544
  if( $wp_mail ) {
545
  $reportmail = get_option('ig_es_sentreport', 'nooptionexists');
email-subscribers.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 3.5.3
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
10
- * Tested up to: 4.9.6
11
  * Text Domain: email-subscribers
12
  * Domain Path: /languages/
13
  * License: GPLv3
@@ -38,6 +38,7 @@ add_action( 'admin_init', array( 'es_cls_registerhook', 'dismiss_admin_notice' )
38
  add_shortcode( 'email-subscribers', 'es_shortcode' );
39
 
40
  add_action( 'wp_ajax_es_klawoo_subscribe', array( 'es_cls_registerhook', 'klawoo_subscribe' ) );
 
41
 
42
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
43
 
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.4
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
10
+ * Tested up to: 4.9.7
11
  * Text Domain: email-subscribers
12
  * Domain Path: /languages/
13
  * License: GPLv3
38
  add_shortcode( 'email-subscribers', 'es_shortcode' );
39
 
40
  add_action( 'wp_ajax_es_klawoo_subscribe', array( 'es_cls_registerhook', 'klawoo_subscribe' ) );
41
+ add_action( 'wp_ajax_es_submit_survey', array( 'es_cls_registerhook', 'es_submit_survey' ) );
42
 
43
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
44
 
images/andrea-avatar-300x300.jpg ADDED
Binary file
images/signature.png ADDED
Binary file
images/spinner-2x.gif ADDED
Binary file
job/es-cron.php CHANGED
@@ -18,6 +18,7 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "cron") ) {
18
  if ( !preg_match('/[^a-z]/', $es_c_cronguid_noslash) ) {
19
  $es_c_cronurl = get_option('ig_es_cronurl');
20
  $es_c_croncount = get_option('ig_es_cron_mailcount');
 
21
  parse_str($es_c_cronurl, $output);
22
  if($es_c_cronguid == $output['guid']) {
23
  if( !is_numeric($es_c_croncount) ) { //if $es_c_croncount is coming empty, then set $es_c_croncount should be passed empty?
@@ -36,6 +37,9 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "cron") ) {
36
  es_cls_sentmail::es_sentmail_cronmail_ups($cronmailqueue[0]['es_sent_guid']);
37
  }
38
  }
 
 
 
39
  }
40
  }
41
  }
18
  if ( !preg_match('/[^a-z]/', $es_c_cronguid_noslash) ) {
19
  $es_c_cronurl = get_option('ig_es_cronurl');
20
  $es_c_croncount = get_option('ig_es_cron_mailcount');
21
+ $es_c_croncount = apply_filters('es_email_sending_limit', $es_c_croncount );
22
  parse_str($es_c_cronurl, $output);
23
  if($es_c_cronguid == $output['guid']) {
24
  if( !is_numeric($es_c_croncount) ) { //if $es_c_croncount is coming empty, then set $es_c_croncount should be passed empty?
37
  es_cls_sentmail::es_sentmail_cronmail_ups($cronmailqueue[0]['es_sent_guid']);
38
  }
39
  }
40
+ $cronmailqueuecnt = (!empty($cronmailqueuecnt)) ? $cronmailqueuecnt : 0;
41
+ $response = array('es_remaining_email_count' => $cronmailqueuecnt );
42
+ echo json_encode($response);
43
  }
44
  }
45
  }
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:22 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Catalan\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,19 +22,27 @@ msgstr ""
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ca_ES"
24
 
25
- #: ../classes/es-register.php:201
 
 
 
 
 
 
 
 
26
  msgctxt "view-subscriber-enhanced-select"
27
  msgid ""
28
  "Do you want to resend confirmation email? Also please note, this will update "
29
  "subscriber current status to 'Unconfirmed'."
30
  msgstr ""
31
 
32
- #: ../classes/es-register.php:215
33
  msgctxt "notification-enhanced-select"
34
  msgid "Please select notification mail subject. Use templates menu to create new."
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,30 +50,99 @@ msgid ""
42
  "spam/junk folder."
43
  msgstr ""
44
 
45
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  msgid ""
47
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
48
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  msgstr ""
50
 
51
- #: ../classes/es-register.php:728
52
- msgid "Here's how"
53
  msgstr ""
54
 
55
- #: ../classes/es-register.php:728
56
- msgid "Not interested. Dismiss this."
57
  msgstr ""
58
 
59
- #: ../classes/es-register.php:900
60
  #, php-format
61
  msgid "%s for Post Notification: {{POSTTITLE}}"
62
  msgstr ""
63
 
64
- #: ../classes/es-register.php:900
65
  msgid "Available Keyword"
66
  msgstr ""
67
 
68
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
69
  #, php-format
70
  msgid ""
71
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -73,12 +150,12 @@ msgid ""
73
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
74
  msgstr ""
75
 
76
- #: ../classes/es-register.php:979
77
  #, php-format
78
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:1002
82
  #, php-format
83
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
84
  msgstr ""
@@ -181,14 +258,31 @@ msgstr ""
181
  msgid "(Use templates menu to create new)"
182
  msgstr ""
183
 
184
- #: ../sentmail/sentmail-show.php:212
185
  msgid ""
186
  "<strong>Note:</strong> If you delete record for the emails with Status = "
187
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
188
  "deleted too and email will not be sent."
189
  msgstr ""
190
 
191
- #: ../settings/settings-edit.php:566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  msgid "Please enter valid email count."
193
  msgstr ""
194
 
@@ -211,6 +305,145 @@ msgstr ""
211
  msgid "Total Subscribers: "
212
  msgstr ""
213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  #: ../classes/es-common.php:13
215
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
216
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
@@ -255,100 +488,101 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
255
  msgid "<span style=\"color:#993399;\">Immediately</span>"
256
  msgstr "Immediatament"
257
 
258
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
259
- #: register.php:788
260
  msgid "Email Subscribers"
261
  msgstr "Email Subscribers"
262
 
263
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
264
  #: subscribers/view-subscriber-show.php:242
265
  msgid "Subscribers"
266
  msgstr "Subscriptors"
267
 
268
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
269
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
270
  msgid "Templates"
271
  msgstr "Plantilles"
272
 
273
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
274
  #: 370 ../notification/notification-show.php:52
275
  msgid "Post Notifications"
276
  msgstr "Notificacions de les entrades"
277
 
278
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
279
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
280
  msgid "Newsletters"
281
  msgstr "Butlletins"
282
 
283
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
284
  #: settings/settings-edit.php:42
285
  msgid "Settings"
286
  msgstr "Configuració"
287
 
288
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
289
  #: sentmail/sentmail-show.php:93
290
  msgid "Reports"
291
  msgstr "Informes"
292
 
293
- #: ../classes/es-register.php:183
294
  msgid "Help & Info"
295
  msgstr "Ajuda i informació"
296
 
297
- #: ../classes/es-register.php:184
298
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
299
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda & informació</span>"
300
 
301
- #: ../classes/es-register.php:195
302
  msgctxt "view-subscriber-enhanced-select"
303
  msgid "Please enter subscriber email address."
304
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
305
 
306
- #: ../classes/es-register.php:196
307
  msgctxt "view-subscriber-enhanced-select"
308
  msgid "Please select subscriber email status."
309
  msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
310
 
311
- #: ../classes/es-register.php:197
312
  msgctxt "view-subscriber-enhanced-select"
313
  msgid "Please select or create group for this subscriber."
314
  msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
315
 
316
- #: ../classes/es-register.php:198
317
  msgctxt "view-subscriber-enhanced-select"
318
  msgid "Do you want to delete this record?"
319
  msgstr "Vols eliminar aquest registre?"
320
 
321
- #: ../classes/es-register.php:199
322
  msgctxt "view-subscriber-enhanced-select"
323
  msgid "Please select the bulk action."
324
  msgstr "Selecciona l'acció bulk"
325
 
326
- #: ../classes/es-register.php:200
327
  msgctxt "view-subscriber-enhanced-select"
328
  msgid "Are you sure you want to delete selected records?"
329
  msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
330
 
331
- #: ../classes/es-register.php:202
332
  msgctxt "view-subscriber-enhanced-select"
333
  msgid "Please select new subscriber group."
334
  msgstr "Seleccioneu nou grup d'abonats."
335
 
336
- #: ../classes/es-register.php:203
337
  msgctxt "view-subscriber-enhanced-select"
338
  msgid "Please select new status for subscribers"
339
  msgstr "Seleccioneu nou estatus per a subscriptors"
340
 
341
- #: ../classes/es-register.php:204
342
  msgctxt "view-subscriber-enhanced-select"
343
  msgid "Do you want to update subscribers group?"
344
  msgstr "Vols actualitzar el grup de subscriptors?"
345
 
346
- #: ../classes/es-register.php:205
347
  msgctxt "view-subscriber-enhanced-select"
348
  msgid "Do you want to update subscribers status?"
349
  msgstr "Vols actualitzar l'estat dels subscriptors?"
350
 
351
- #: ../classes/es-register.php:206
352
  msgctxt "view-subscriber-enhanced-select"
353
  msgid ""
354
  "Please select only csv file. Please check official website for csv structure."
@@ -357,32 +591,32 @@ msgstr ""
357
  "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
358
  "l'estructura csv .."
359
 
360
- #: ../classes/es-register.php:214
361
  msgctxt "notification-enhanced-select"
362
  msgid "Please select subscribers group."
363
  msgstr "Selecciona el grup de subscriptors."
364
 
365
- #: ../classes/es-register.php:216
366
  msgctxt "notification-enhanced-select"
367
  msgid "Please select notification status."
368
  msgstr "Seleccioneu l'estat de la notificació."
369
 
370
- #: ../classes/es-register.php:217
371
  msgctxt "notification-enhanced-select"
372
  msgid "Do you want to delete this record?"
373
  msgstr "Vols eliminar aquest registre?"
374
 
375
- #: ../classes/es-register.php:225
376
  msgctxt "sendmail-enhanced-select"
377
  msgid "Please select your mail subject."
378
  msgstr "Si us plau selecciona l'assumpte del teu email."
379
 
380
- #: ../classes/es-register.php:226
381
  msgctxt "sendmail-enhanced-select"
382
  msgid "Please select your mail type."
383
  msgstr "Si us plau selecciona el teu tipus de correu."
384
 
385
- #: ../classes/es-register.php:227
386
  msgctxt "sendmail-enhanced-select"
387
  msgid ""
388
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -391,59 +625,59 @@ msgstr ""
391
  "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
392
  "endavant i l'enviarem."
393
 
394
- #: ../classes/es-register.php:235
395
  msgctxt "sentmail-enhanced-select"
396
  msgid "Do you want to delete this record?"
397
  msgstr "Vols eliminar aquest registre?"
398
 
399
- #: ../classes/es-register.php:236
400
  msgctxt "sentmail-enhanced-select"
401
  msgid "Do you want to delete all records except latest 10?"
402
  msgstr "Vols eliminar tots els registres excepte els 10 últims?"
403
 
404
- #: ../classes/es-register.php:244
405
  msgctxt "cron-enhanced-select"
406
  msgid "Please select enter number of mails you want to send per hour/trigger."
407
  msgstr ""
408
  "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
409
  "hora / gallet."
410
 
411
- #: ../classes/es-register.php:245
412
  msgctxt "cron-enhanced-select"
413
  msgid "Please enter the mail count, only number."
414
  msgstr "Si us plau, introdueixi el recompte d'emails, només número."
415
 
416
- #: ../classes/es-register.php:258
417
  msgctxt "widget-page-enhanced-select"
418
  msgid "Please enter email address"
419
  msgstr "Si us plau, entra l'adreça d'email"
420
 
421
- #: ../classes/es-register.php:259
422
  msgctxt "widget-page-enhanced-select"
423
  msgid "Successfully Subscribed."
424
  msgstr "Subscripció exitosa"
425
 
426
- #: ../classes/es-register.php:261
427
  msgctxt "widget-page-enhanced-select"
428
  msgid "Email Address already exists!"
429
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
430
 
431
- #: ../classes/es-register.php:262
432
  msgctxt "widget-page-enhanced-select"
433
  msgid "Oops.. Unexpected error occurred."
434
  msgstr "Vaja... S'ha produït un error inesperat."
435
 
436
- #: ../classes/es-register.php:263
437
  msgctxt "widget-page-enhanced-select"
438
  msgid "Invalid email address"
439
  msgstr "l'Adreça de correu electrònic no és vàlida"
440
 
441
- #: ../classes/es-register.php:264
442
  msgctxt "widget-page-enhanced-select"
443
  msgid "Please try after some time"
444
  msgstr "Torna-ho a provar d'aquí a una estona"
445
 
446
- #: ../classes/es-register.php:753
447
  msgid ""
448
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
449
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -455,116 +689,116 @@ msgstr ""
455
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
456
  "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
457
 
458
- #: ../classes/es-register.php:767
459
  #, php-format
460
  msgid "Email Subscribers version: <strong>%s</strong>"
461
  msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
462
 
463
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
464
  msgid "Add new Template"
465
  msgstr "Afegir plantilla nova"
466
 
467
- #: ../classes/es-register.php:780
468
  msgid "Edit Templates"
469
  msgstr "Editar plantilles"
470
 
471
- #: ../classes/es-register.php:781
472
  msgid "New Templates"
473
  msgstr "Plantilla nova"
474
 
475
- #: ../classes/es-register.php:783
476
  msgid "View Templates"
477
  msgstr "Veure les plantilles"
478
 
479
- #: ../classes/es-register.php:784
480
  msgid "Search Templates"
481
  msgstr "Cercar plantilles"
482
 
483
- #: ../classes/es-register.php:785
484
  msgid "No Templates found"
485
  msgstr "No s'han trobat plantilles"
486
 
487
- #: ../classes/es-register.php:786
488
  msgid "No Templates found in Trash"
489
  msgstr "No s'ha trobat cap plantilla a la paperera"
490
 
491
- #: ../classes/es-register.php:789
492
  msgid "Thumbnail (For Visual Representation only)"
493
  msgstr "Miniatura (només per a la representació visual)"
494
 
495
- #: ../classes/es-register.php:790
496
  msgid "Set thumbnail"
497
  msgstr "Estableix miniatura"
498
 
499
- #: ../classes/es-register.php:827
500
  msgid "Template Type"
501
  msgstr "Tipus de plantilla"
502
 
503
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
504
  msgid "Thumbnail"
505
  msgstr "Miniatura"
506
 
507
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
508
  #: sentmail/sentmail-show.php:121
509
  msgid "Preview"
510
  msgstr "Vista previa"
511
 
512
- #: ../classes/es-register.php:907
513
  msgid "Select your Email Template Type"
514
  msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
515
 
516
- #: ../classes/es-register.php:909
517
  msgid "Newsletter"
518
  msgstr "Butlletí de notícies"
519
 
520
- #: ../classes/es-register.php:910
521
  msgid "Post Notification"
522
  msgstr "Notificació de l'entrada"
523
 
524
- #: ../classes/es-register.php:959
525
  msgid "Preview Template"
526
  msgstr "Vista prèvia de la plantilla"
527
 
528
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
529
- #: register.php:994 ../classes/es-register.php:1002
530
  msgid "Available Keywords"
531
  msgstr "Paraules clau disponibles"
532
 
533
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
534
  msgid "Name"
535
  msgstr "Nom"
536
 
537
- #: ../classes/es-register.php:1044
538
  msgid "Email *"
539
  msgstr "Email*"
540
 
541
- #: ../classes/es-register.php:1053 ../help/help.php:202
542
  msgid "Subscribe"
543
  msgstr "Subscriure"
544
 
545
- #: ../classes/es-register.php:1157
546
  msgid "Widget Title"
547
  msgstr "Títol del widget"
548
 
549
- #: ../classes/es-register.php:1161
550
  msgid "Short description about subscription form"
551
  msgstr "Breu descripció sobre el formulari de subscripció"
552
 
553
- #: ../classes/es-register.php:1165
554
  msgid "Display Name Field"
555
  msgstr "Mostra nom del camp"
556
 
557
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
558
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
559
  msgid "YES"
560
  msgstr "Si"
561
 
562
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
563
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
564
  msgid "NO"
565
  msgstr "No"
566
 
567
- #: ../classes/es-register.php:1172
568
  msgid "Subscriber Group"
569
  msgstr "Grup de subscriptor"
570
 
@@ -963,7 +1197,7 @@ msgstr "Ajuda"
963
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
964
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
965
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
966
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
967
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
968
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
969
  msgid "Select"
@@ -1024,8 +1258,8 @@ msgstr "Afegir a cron i enviar correu electrònic a través de cron"
1024
  msgid "Disable email notification"
1025
  msgstr "Desactivar la notificació de correu electrònic"
1026
 
1027
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1028
- #: 291 ../subscribers/view-subscriber-edit.php:191
1029
  msgid "Save"
1030
  msgstr "Desar"
1031
 
@@ -1150,20 +1384,20 @@ msgstr "Seleccionar el tipus de correu electrònic"
1150
  msgid "Send email via cron job"
1151
  msgstr "Enviar email via cron"
1152
 
1153
- #: ../sendmail/sendmail.php:147
1154
  msgid "Select Subscribers group to Send Email"
1155
  msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
1156
 
1157
- #: ../sendmail/sendmail.php:179
1158
  msgid "Recipients : 0 "
1159
  msgstr "Destinataris: 0"
1160
 
1161
- #: ../sendmail/sendmail.php:181
1162
  #, php-format
1163
  msgid "Recipients : %s"
1164
  msgstr "Destinataris : %s"
1165
 
1166
- #: ../sendmail/sendmail.php:184
1167
  msgid ""
1168
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1169
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1173,11 +1407,11 @@ msgstr ""
1173
  "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1174
  "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1175
 
1176
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1177
  msgid "Send Email"
1178
  msgstr "Enviar el correu electrònic"
1179
 
1180
- #: ../sendmail/sendmail.php:201
1181
  msgid "Reset"
1182
  msgstr "restablir"
1183
 
@@ -1473,23 +1707,10 @@ msgstr ""
1473
  msgid "Sent Report Subject"
1474
  msgstr "Assumpte del informe enviat"
1475
 
1476
- #: ../settings/settings-edit.php:166
1477
- msgid "Subject for the email report which will be sent to admin."
1478
- msgstr "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
1479
-
1480
  #: ../settings/settings-edit.php:172
1481
  msgid "Sent Report Content"
1482
  msgstr "Contingut del informe enviat"
1483
 
1484
- #: ../settings/settings-edit.php:173
1485
- msgid ""
1486
- "Content for the email report which will be sent to admin.<br />Available "
1487
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1488
- msgstr ""
1489
- "Contingut per a l'informe de correu electrònic que s'enviarà a "
1490
- "l'administrador.<br />Paraules clau disponibles: {{COUNT}}, {{UNIQUE}}, "
1491
- "{{STARTTIME}}, {{ENDTIME}}"
1492
-
1493
  #: ../settings/settings-edit.php:184
1494
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1495
  msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
@@ -1700,25 +1921,25 @@ msgstr ""
1700
  "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
1701
  "recomana no modificar-lo."
1702
 
1703
- #: ../settings/settings-edit.php:376
1704
  msgid "Email Count"
1705
  msgstr "Comte de correu electrònic"
1706
 
1707
- #: ../settings/settings-edit.php:377
1708
  msgid "Number of emails that you want to trigger per hour."
1709
  msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
1710
 
1711
- #: ../settings/settings-edit.php:382
1712
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1713
  msgstr ""
1714
  "(El vostre proveïdor d'allotjament web té límits. Us suggerim 50 correus "
1715
  "electrònics per hora per anar segurs.)"
1716
 
1717
- #: ../settings/settings-edit.php:387
1718
  msgid "Cron Report"
1719
  msgstr "Informe Cron"
1720
 
1721
- #: ../settings/settings-edit.php:388
1722
  msgid ""
1723
  "Email to admin whenever a cron URL is triggered from your server.<br "
1724
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1727,11 +1948,11 @@ msgstr ""
1727
  "s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
1728
  "{{DATE}}, {{SUBJECT}}, {{COUNT}}"
1729
 
1730
- #: ../settings/settings-edit.php:398
1731
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1732
  msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
1733
 
1734
- #: ../settings/settings-edit.php:399
1735
  msgid ""
1736
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1737
  "schedule-cron-emails/?"
@@ -1743,7 +1964,7 @@ msgstr ""
1743
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
1744
  "Cron?</a>"
1745
 
1746
- #: ../settings/settings-edit.php:400
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1749
  "schedule-cron-emails-in-cpanel/?"
@@ -1755,7 +1976,7 @@ msgstr ""
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
1756
  "el treball cron a cPanel</a>"
1757
 
1758
- #: ../settings/settings-edit.php:401
1759
  msgid ""
1760
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1761
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1767,7 +1988,7 @@ msgstr ""
1767
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1768
  "el treball cron a Plesk</a>"
1769
 
1770
- #: ../settings/settings-edit.php:402
1771
  msgid ""
1772
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1773
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1779,19 +2000,19 @@ msgstr ""
1779
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
1780
  "nt no és compatible amb els treballs de cron?</a>"
1781
 
1782
- #: ../settings/settings-edit.php:517
1783
  msgid "Please enter sender of notifications from name."
1784
  msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
1785
 
1786
- #: ../settings/settings-edit.php:522
1787
  msgid "Please enter sender of notifications from email."
1788
  msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
1789
 
1790
- #: ../settings/settings-edit.php:580
1791
  msgid "Settings Saved."
1792
  msgstr "Configuració guardada"
1793
 
1794
- #: ../settings/settings-edit.php:583
1795
  msgid "Oops, unable to update."
1796
  msgstr "Vaja, no es pot actualitzar."
1797
 
@@ -2239,7 +2460,7 @@ msgstr ""
2239
  "notificar als subscriptors automàticament sobre nous missatges al blog una "
2240
  "vegada que es publiquen."
2241
 
2242
- #: ../email-subscribers.php:95
2243
  msgctxt "timezone date format"
2244
  msgid "Y-m-d H:i:s"
2245
  msgstr "A-m-d H:m:s"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:41: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: Catalan\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ca_ES"
24
 
25
+ #: ../classes/es-register.php:191
26
+ msgid "Go Pro"
27
+ msgstr ""
28
+
29
+ #: ../classes/es-register.php:192
30
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
31
+ msgstr ""
32
+
33
+ #: ../classes/es-register.php:210
34
  msgctxt "view-subscriber-enhanced-select"
35
  msgid ""
36
  "Do you want to resend confirmation email? Also please note, this will update "
37
  "subscriber current status to 'Unconfirmed'."
38
  msgstr ""
39
 
40
+ #: ../classes/es-register.php:224
41
  msgctxt "notification-enhanced-select"
42
  msgid "Please select notification mail subject. Use templates menu to create new."
43
  msgstr ""
44
 
45
+ #: ../classes/es-register.php:269
46
  msgctxt "widget-page-enhanced-select"
47
  msgid ""
48
  "Your subscription was successful! Kindly check your mailbox and confirm your "
50
  "spam/junk folder."
51
  msgstr ""
52
 
53
+ #: ../classes/es-register.php:699
54
+ msgid "No, I don't like it"
55
+ msgstr ""
56
+
57
+ #: ../classes/es-register.php:705
58
+ msgctxt "timezone date format"
59
+ msgid "Y-m-d"
60
+ msgstr ""
61
+
62
+ #: ../classes/es-register.php:850
63
+ msgid "What do you hate about list building and email marketing?"
64
+ msgstr ""
65
+
66
+ #: ../classes/es-register.php:851
67
+ msgid "Hey, glad to see you!"
68
+ msgstr ""
69
+
70
+ #: ../classes/es-register.php:852
71
+ msgid ""
72
+ "I am on a daring quest to solve your biggest problems around list building "
73
+ "and email marketing. "
74
+ msgstr ""
75
+
76
+ #: ../classes/es-register.php:853
77
+ msgid ""
78
+ "So tell me, when it comes to list building and email marketing, what's your "
79
+ "biggest challenge? What's blocking your progress? "
80
+ msgstr ""
81
+
82
+ #: ../classes/es-register.php:858
83
+ msgid "And what's another big challenge? "
84
+ msgstr ""
85
+
86
+ #: ../classes/es-register.php:862
87
+ msgid "Send my problems..."
88
+ msgstr ""
89
+
90
+ #: ../classes/es-register.php:863
91
+ msgid "No, I don't have problems"
92
+ msgstr ""
93
+
94
+ #: ../classes/es-register.php:865
95
+ msgid "Fill the above field first"
96
+ msgstr ""
97
+
98
+ #: ../classes/es-register.php:874
99
+ msgid "Gosh... I hear you mate... "
100
+ msgstr ""
101
+
102
+ #: ../classes/es-register.php:875
103
  msgid ""
104
+ "Enter your email below, and you will be the first to know when we solve "
105
+ "those problems. "
106
+ msgstr ""
107
+
108
+ #: ../classes/es-register.php:879
109
+ msgid "Nah, I don't like improvements"
110
+ msgstr ""
111
+
112
+ #: ../classes/es-register.php:893
113
+ msgid "I got you."
114
+ msgstr ""
115
+
116
+ #: ../classes/es-register.php:894
117
+ msgid "Will do everything I can to help you. "
118
+ msgstr ""
119
+
120
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
121
+ msgid "Later. "
122
+ msgstr ""
123
+
124
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
125
+ msgid "Andrea Julio "
126
  msgstr ""
127
 
128
+ #: ../classes/es-register.php:902
129
+ msgid "No issues, have a nice day!"
130
  msgstr ""
131
 
132
+ #: ../classes/es-register.php:1020
133
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
134
  msgstr ""
135
 
136
+ #: ../classes/es-register.php:1167
137
  #, php-format
138
  msgid "%s for Post Notification: {{POSTTITLE}}"
139
  msgstr ""
140
 
141
+ #: ../classes/es-register.php:1167
142
  msgid "Available Keyword"
143
  msgstr ""
144
 
145
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
146
  #, php-format
147
  msgid ""
148
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
150
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
151
  msgstr ""
152
 
153
+ #: ../classes/es-register.php:1246
154
  #, php-format
155
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
156
  msgstr ""
157
 
158
+ #: ../classes/es-register.php:1269
159
  #, php-format
160
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
161
  msgstr ""
258
  msgid "(Use templates menu to create new)"
259
  msgstr ""
260
 
261
+ #: ../sentmail/sentmail-show.php:216
262
  msgid ""
263
  "<strong>Note:</strong> If you delete record for the emails with Status = "
264
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
265
  "deleted too and email will not be sent."
266
  msgstr ""
267
 
268
+ #: ../settings/settings-edit.php:166
269
+ msgid ""
270
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
271
+ "only if sending email via immediately)"
272
+ msgstr ""
273
+
274
+ #: ../settings/settings-edit.php:173
275
+ msgid ""
276
+ "Content for the email report which will be sent to admin.<br />Available "
277
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
278
+ "sent only if sending email via immediately)"
279
+ msgstr ""
280
+
281
+ #: ../settings/settings-edit.php:393
282
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
283
+ msgstr ""
284
+
285
+ #: ../settings/settings-edit.php:569
286
  msgid "Please enter valid email count."
287
  msgstr ""
288
 
305
  msgid "Total Subscribers: "
306
  msgstr ""
307
 
308
+ #: ../pricing/pricing.php:157
309
+ msgid "Go a notch higher"
310
+ msgstr ""
311
+
312
+ #: ../pricing/pricing.php:158
313
+ msgid "Get the Email Subscribers Pro Plugin at"
314
+ msgstr ""
315
+
316
+ #: ../pricing/pricing.php:162
317
+ msgid "month"
318
+ msgstr ""
319
+
320
+ #: ../pricing/pricing.php:163
321
+ msgid "Sign up for monthly"
322
+ msgstr ""
323
+
324
+ #: ../pricing/pricing.php:166
325
+ msgid "year"
326
+ msgstr ""
327
+
328
+ #: ../pricing/pricing.php:167
329
+ msgid "Sign up for yearly"
330
+ msgstr ""
331
+
332
+ #: ../pricing/pricing.php:171
333
+ msgid "Get more with Email Subscribers Pro"
334
+ msgstr ""
335
+
336
+ #: ../pricing/pricing.php:173
337
+ msgid "All features of Email Subscribers free plugin + everything below:"
338
+ msgstr ""
339
+
340
+ #: ../pricing/pricing.php:176
341
+ msgid "Protect your list from bot attacks"
342
+ msgstr ""
343
+
344
+ #: ../pricing/pricing.php:177
345
+ msgid "Use "
346
+ msgstr ""
347
+
348
+ #: ../pricing/pricing.php:177
349
+ msgid "captcha"
350
+ msgstr ""
351
+
352
+ #: ../pricing/pricing.php:177
353
+ msgid ""
354
+ "to protect your email list from bots. The simple maths captcha helps "
355
+ "identifying bots from humans and eliminates spam signups."
356
+ msgstr ""
357
+
358
+ #: ../pricing/pricing.php:180
359
+ msgid "Check email status & increase email success rate"
360
+ msgstr ""
361
+
362
+ #: ../pricing/pricing.php:181
363
+ msgid "Double check the status of the emails addresses and increase "
364
+ msgstr ""
365
+
366
+ #: ../pricing/pricing.php:181
367
+ msgid "email success rate"
368
+ msgstr ""
369
+
370
+ #: ../pricing/pricing.php:181
371
+ msgid "of your email campaign. "
372
+ msgstr ""
373
+
374
+ #: ../pricing/pricing.php:187
375
+ msgid "Fullproof email deliverability"
376
+ msgstr ""
377
+
378
+ #: ../pricing/pricing.php:188
379
+ msgid ""
380
+ "Reduce the risk of emails ending in trash or spam. Increase email "
381
+ "deliverability by double checking emails for their "
382
+ msgstr ""
383
+
384
+ #: ../pricing/pricing.php:188
385
+ msgid "spam score"
386
+ msgstr ""
387
+
388
+ #: ../pricing/pricing.php:188
389
+ msgid "before hitting send."
390
+ msgstr ""
391
+
392
+ #: ../pricing/pricing.php:191
393
+ msgid "Track email leads in Google"
394
+ msgstr ""
395
+
396
+ #: ../pricing/pricing.php:192
397
+ msgid "Insert "
398
+ msgstr ""
399
+
400
+ #: ../pricing/pricing.php:192
401
+ msgid "UTM tracking"
402
+ msgstr ""
403
+
404
+ #: ../pricing/pricing.php:192
405
+ msgid ""
406
+ "in all your email CTA’s and track the effectiveness of your emails directly "
407
+ "within Google. Know which/ how many leads landed up from your emails and "
408
+ "tweak emails for better performance."
409
+ msgstr ""
410
+
411
+ #: ../pricing/pricing.php:199
412
+ msgid "Save time, use readymade email templates"
413
+ msgstr ""
414
+
415
+ #: ../pricing/pricing.php:200
416
+ msgid ""
417
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
418
+ "elegant templates</strong> to send your next email campaign."
419
+ msgstr ""
420
+
421
+ #: ../pricing/pricing.php:203
422
+ msgid "Customize confirmation and unsubscribe page"
423
+ msgstr ""
424
+
425
+ #: ../pricing/pricing.php:204
426
+ msgid ""
427
+ "Communicate with subscribers. Redirect them to beautifully designed "
428
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
429
+ msgstr ""
430
+
431
+ #: ../pricing/pricing.php:211
432
+ msgid "Coming soon..."
433
+ msgstr ""
434
+
435
+ #: ../pricing/pricing.php:213
436
+ msgid "Spam testing"
437
+ msgstr ""
438
+
439
+ #: ../pricing/pricing.php:214
440
+ msgid "Bounce handling"
441
+ msgstr ""
442
+
443
+ #: ../pricing/pricing.php:215
444
+ msgid "Advanced reporting"
445
+ msgstr ""
446
+
447
  #: ../classes/es-common.php:13
448
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
449
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
488
  msgid "<span style=\"color:#993399;\">Immediately</span>"
489
  msgstr "Immediatament"
490
 
491
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
492
+ #: register.php:1055
493
  msgid "Email Subscribers"
494
  msgstr "Email Subscribers"
495
 
496
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
497
  #: subscribers/view-subscriber-show.php:242
498
  msgid "Subscribers"
499
  msgstr "Subscriptors"
500
 
501
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
502
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
503
+ #: 1049
504
  msgid "Templates"
505
  msgstr "Plantilles"
506
 
507
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
508
  #: 370 ../notification/notification-show.php:52
509
  msgid "Post Notifications"
510
  msgstr "Notificacions de les entrades"
511
 
512
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
513
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
514
  msgid "Newsletters"
515
  msgstr "Butlletins"
516
 
517
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
518
  #: settings/settings-edit.php:42
519
  msgid "Settings"
520
  msgstr "Configuració"
521
 
522
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
523
  #: sentmail/sentmail-show.php:93
524
  msgid "Reports"
525
  msgstr "Informes"
526
 
527
+ #: ../classes/es-register.php:187
528
  msgid "Help & Info"
529
  msgstr "Ajuda i informació"
530
 
531
+ #: ../classes/es-register.php:188
532
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
533
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda & informació</span>"
534
 
535
+ #: ../classes/es-register.php:204
536
  msgctxt "view-subscriber-enhanced-select"
537
  msgid "Please enter subscriber email address."
538
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
539
 
540
+ #: ../classes/es-register.php:205
541
  msgctxt "view-subscriber-enhanced-select"
542
  msgid "Please select subscriber email status."
543
  msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
544
 
545
+ #: ../classes/es-register.php:206
546
  msgctxt "view-subscriber-enhanced-select"
547
  msgid "Please select or create group for this subscriber."
548
  msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
549
 
550
+ #: ../classes/es-register.php:207
551
  msgctxt "view-subscriber-enhanced-select"
552
  msgid "Do you want to delete this record?"
553
  msgstr "Vols eliminar aquest registre?"
554
 
555
+ #: ../classes/es-register.php:208
556
  msgctxt "view-subscriber-enhanced-select"
557
  msgid "Please select the bulk action."
558
  msgstr "Selecciona l'acció bulk"
559
 
560
+ #: ../classes/es-register.php:209
561
  msgctxt "view-subscriber-enhanced-select"
562
  msgid "Are you sure you want to delete selected records?"
563
  msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
564
 
565
+ #: ../classes/es-register.php:211
566
  msgctxt "view-subscriber-enhanced-select"
567
  msgid "Please select new subscriber group."
568
  msgstr "Seleccioneu nou grup d'abonats."
569
 
570
+ #: ../classes/es-register.php:212
571
  msgctxt "view-subscriber-enhanced-select"
572
  msgid "Please select new status for subscribers"
573
  msgstr "Seleccioneu nou estatus per a subscriptors"
574
 
575
+ #: ../classes/es-register.php:213
576
  msgctxt "view-subscriber-enhanced-select"
577
  msgid "Do you want to update subscribers group?"
578
  msgstr "Vols actualitzar el grup de subscriptors?"
579
 
580
+ #: ../classes/es-register.php:214
581
  msgctxt "view-subscriber-enhanced-select"
582
  msgid "Do you want to update subscribers status?"
583
  msgstr "Vols actualitzar l'estat dels subscriptors?"
584
 
585
+ #: ../classes/es-register.php:215
586
  msgctxt "view-subscriber-enhanced-select"
587
  msgid ""
588
  "Please select only csv file. Please check official website for csv structure."
591
  "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
592
  "l'estructura csv .."
593
 
594
+ #: ../classes/es-register.php:223
595
  msgctxt "notification-enhanced-select"
596
  msgid "Please select subscribers group."
597
  msgstr "Selecciona el grup de subscriptors."
598
 
599
+ #: ../classes/es-register.php:225
600
  msgctxt "notification-enhanced-select"
601
  msgid "Please select notification status."
602
  msgstr "Seleccioneu l'estat de la notificació."
603
 
604
+ #: ../classes/es-register.php:226
605
  msgctxt "notification-enhanced-select"
606
  msgid "Do you want to delete this record?"
607
  msgstr "Vols eliminar aquest registre?"
608
 
609
+ #: ../classes/es-register.php:234
610
  msgctxt "sendmail-enhanced-select"
611
  msgid "Please select your mail subject."
612
  msgstr "Si us plau selecciona l'assumpte del teu email."
613
 
614
+ #: ../classes/es-register.php:235
615
  msgctxt "sendmail-enhanced-select"
616
  msgid "Please select your mail type."
617
  msgstr "Si us plau selecciona el teu tipus de correu."
618
 
619
+ #: ../classes/es-register.php:236
620
  msgctxt "sendmail-enhanced-select"
621
  msgid ""
622
  "Have you double checked your selected group? If so, let's go ahead and send "
625
  "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
626
  "endavant i l'enviarem."
627
 
628
+ #: ../classes/es-register.php:244
629
  msgctxt "sentmail-enhanced-select"
630
  msgid "Do you want to delete this record?"
631
  msgstr "Vols eliminar aquest registre?"
632
 
633
+ #: ../classes/es-register.php:245
634
  msgctxt "sentmail-enhanced-select"
635
  msgid "Do you want to delete all records except latest 10?"
636
  msgstr "Vols eliminar tots els registres excepte els 10 últims?"
637
 
638
+ #: ../classes/es-register.php:253
639
  msgctxt "cron-enhanced-select"
640
  msgid "Please select enter number of mails you want to send per hour/trigger."
641
  msgstr ""
642
  "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
643
  "hora / gallet."
644
 
645
+ #: ../classes/es-register.php:254
646
  msgctxt "cron-enhanced-select"
647
  msgid "Please enter the mail count, only number."
648
  msgstr "Si us plau, introdueixi el recompte d'emails, només número."
649
 
650
+ #: ../classes/es-register.php:267
651
  msgctxt "widget-page-enhanced-select"
652
  msgid "Please enter email address"
653
  msgstr "Si us plau, entra l'adreça d'email"
654
 
655
+ #: ../classes/es-register.php:268
656
  msgctxt "widget-page-enhanced-select"
657
  msgid "Successfully Subscribed."
658
  msgstr "Subscripció exitosa"
659
 
660
+ #: ../classes/es-register.php:270
661
  msgctxt "widget-page-enhanced-select"
662
  msgid "Email Address already exists!"
663
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
664
 
665
+ #: ../classes/es-register.php:271
666
  msgctxt "widget-page-enhanced-select"
667
  msgid "Oops.. Unexpected error occurred."
668
  msgstr "Vaja... S'ha produït un error inesperat."
669
 
670
+ #: ../classes/es-register.php:272
671
  msgctxt "widget-page-enhanced-select"
672
  msgid "Invalid email address"
673
  msgstr "l'Adreça de correu electrònic no és vàlida"
674
 
675
+ #: ../classes/es-register.php:273
676
  msgctxt "widget-page-enhanced-select"
677
  msgid "Please try after some time"
678
  msgstr "Torna-ho a provar d'aquí a una estona"
679
 
680
+ #: ../classes/es-register.php:698
681
  msgid ""
682
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
683
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
689
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
690
  "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
691
 
692
+ #: ../classes/es-register.php:1034
693
  #, php-format
694
  msgid "Email Subscribers version: <strong>%s</strong>"
695
  msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
696
 
697
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
698
  msgid "Add new Template"
699
  msgstr "Afegir plantilla nova"
700
 
701
+ #: ../classes/es-register.php:1047
702
  msgid "Edit Templates"
703
  msgstr "Editar plantilles"
704
 
705
+ #: ../classes/es-register.php:1048
706
  msgid "New Templates"
707
  msgstr "Plantilla nova"
708
 
709
+ #: ../classes/es-register.php:1050
710
  msgid "View Templates"
711
  msgstr "Veure les plantilles"
712
 
713
+ #: ../classes/es-register.php:1051
714
  msgid "Search Templates"
715
  msgstr "Cercar plantilles"
716
 
717
+ #: ../classes/es-register.php:1052
718
  msgid "No Templates found"
719
  msgstr "No s'han trobat plantilles"
720
 
721
+ #: ../classes/es-register.php:1053
722
  msgid "No Templates found in Trash"
723
  msgstr "No s'ha trobat cap plantilla a la paperera"
724
 
725
+ #: ../classes/es-register.php:1056
726
  msgid "Thumbnail (For Visual Representation only)"
727
  msgstr "Miniatura (només per a la representació visual)"
728
 
729
+ #: ../classes/es-register.php:1057
730
  msgid "Set thumbnail"
731
  msgstr "Estableix miniatura"
732
 
733
+ #: ../classes/es-register.php:1094
734
  msgid "Template Type"
735
  msgstr "Tipus de plantilla"
736
 
737
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
738
  msgid "Thumbnail"
739
  msgstr "Miniatura"
740
 
741
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
742
  #: sentmail/sentmail-show.php:121
743
  msgid "Preview"
744
  msgstr "Vista previa"
745
 
746
+ #: ../classes/es-register.php:1174
747
  msgid "Select your Email Template Type"
748
  msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
749
 
750
+ #: ../classes/es-register.php:1176
751
  msgid "Newsletter"
752
  msgstr "Butlletí de notícies"
753
 
754
+ #: ../classes/es-register.php:1177
755
  msgid "Post Notification"
756
  msgstr "Notificació de l'entrada"
757
 
758
+ #: ../classes/es-register.php:1226
759
  msgid "Preview Template"
760
  msgstr "Vista prèvia de la plantilla"
761
 
762
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
763
+ #: register.php:1261 ../classes/es-register.php:1269
764
  msgid "Available Keywords"
765
  msgstr "Paraules clau disponibles"
766
 
767
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
768
  msgid "Name"
769
  msgstr "Nom"
770
 
771
+ #: ../classes/es-register.php:1311
772
  msgid "Email *"
773
  msgstr "Email*"
774
 
775
+ #: ../classes/es-register.php:1320 ../help/help.php:202
776
  msgid "Subscribe"
777
  msgstr "Subscriure"
778
 
779
+ #: ../classes/es-register.php:1424
780
  msgid "Widget Title"
781
  msgstr "Títol del widget"
782
 
783
+ #: ../classes/es-register.php:1428
784
  msgid "Short description about subscription form"
785
  msgstr "Breu descripció sobre el formulari de subscripció"
786
 
787
+ #: ../classes/es-register.php:1432
788
  msgid "Display Name Field"
789
  msgstr "Mostra nom del camp"
790
 
791
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
792
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
793
  msgid "YES"
794
  msgstr "Si"
795
 
796
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
797
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
798
  msgid "NO"
799
  msgstr "No"
800
 
801
+ #: ../classes/es-register.php:1439
802
  msgid "Subscriber Group"
803
  msgstr "Grup de subscriptor"
804
 
1197
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1198
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1199
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1200
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1201
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1202
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1203
  msgid "Select"
1258
  msgid "Disable email notification"
1259
  msgstr "Desactivar la notificació de correu electrònic"
1260
 
1261
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1262
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1263
  msgid "Save"
1264
  msgstr "Desar"
1265
 
1384
  msgid "Send email via cron job"
1385
  msgstr "Enviar email via cron"
1386
 
1387
+ #: ../sendmail/sendmail.php:148
1388
  msgid "Select Subscribers group to Send Email"
1389
  msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
1390
 
1391
+ #: ../sendmail/sendmail.php:180
1392
  msgid "Recipients : 0 "
1393
  msgstr "Destinataris: 0"
1394
 
1395
+ #: ../sendmail/sendmail.php:182
1396
  #, php-format
1397
  msgid "Recipients : %s"
1398
  msgstr "Destinataris : %s"
1399
 
1400
+ #: ../sendmail/sendmail.php:185
1401
  msgid ""
1402
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1403
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1407
  "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1408
  "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1409
 
1410
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1411
  msgid "Send Email"
1412
  msgstr "Enviar el correu electrònic"
1413
 
1414
+ #: ../sendmail/sendmail.php:202
1415
  msgid "Reset"
1416
  msgstr "restablir"
1417
 
1707
  msgid "Sent Report Subject"
1708
  msgstr "Assumpte del informe enviat"
1709
 
 
 
 
 
1710
  #: ../settings/settings-edit.php:172
1711
  msgid "Sent Report Content"
1712
  msgstr "Contingut del informe enviat"
1713
 
 
 
 
 
 
 
 
 
 
1714
  #: ../settings/settings-edit.php:184
1715
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1716
  msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
1921
  "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
1922
  "recomana no modificar-lo."
1923
 
1924
+ #: ../settings/settings-edit.php:377
1925
  msgid "Email Count"
1926
  msgstr "Comte de correu electrònic"
1927
 
1928
+ #: ../settings/settings-edit.php:378
1929
  msgid "Number of emails that you want to trigger per hour."
1930
  msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
1931
 
1932
+ #: ../settings/settings-edit.php:383
1933
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1934
  msgstr ""
1935
  "(El vostre proveïdor d'allotjament web té límits. Us suggerim 50 correus "
1936
  "electrònics per hora per anar segurs.)"
1937
 
1938
+ #: ../settings/settings-edit.php:388
1939
  msgid "Cron Report"
1940
  msgstr "Informe Cron"
1941
 
1942
+ #: ../settings/settings-edit.php:389
1943
  msgid ""
1944
  "Email to admin whenever a cron URL is triggered from your server.<br "
1945
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1948
  "s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
1949
  "{{DATE}}, {{SUBJECT}}, {{COUNT}}"
1950
 
1951
+ #: ../settings/settings-edit.php:400
1952
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1953
  msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
1954
 
1955
+ #: ../settings/settings-edit.php:401
1956
  msgid ""
1957
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1958
  "schedule-cron-emails/?"
1964
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
1965
  "Cron?</a>"
1966
 
1967
+ #: ../settings/settings-edit.php:402
1968
  msgid ""
1969
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1970
  "schedule-cron-emails-in-cpanel/?"
1976
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
1977
  "el treball cron a cPanel</a>"
1978
 
1979
+ #: ../settings/settings-edit.php:403
1980
  msgid ""
1981
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1982
  "schedule-cron-emails-in-parallels-plesk/?"
1988
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1989
  "el treball cron a Plesk</a>"
1990
 
1991
+ #: ../settings/settings-edit.php:404
1992
  msgid ""
1993
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1994
  "if-hosting-doesnt-support-cron-jobs/?"
2000
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
2001
  "nt no és compatible amb els treballs de cron?</a>"
2002
 
2003
+ #: ../settings/settings-edit.php:520
2004
  msgid "Please enter sender of notifications from name."
2005
  msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
2006
 
2007
+ #: ../settings/settings-edit.php:525
2008
  msgid "Please enter sender of notifications from email."
2009
  msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
2010
 
2011
+ #: ../settings/settings-edit.php:584
2012
  msgid "Settings Saved."
2013
  msgstr "Configuració guardada"
2014
 
2015
+ #: ../settings/settings-edit.php:587
2016
  msgid "Oops, unable to update."
2017
  msgstr "Vaja, no es pot actualitzar."
2018
 
2460
  "notificar als subscriptors automàticament sobre nous missatges al blog una "
2461
  "vegada que es publiquen."
2462
 
2463
+ #: ../email-subscribers.php:96
2464
  msgctxt "timezone date format"
2465
  msgid "Y-m-d H:i:s"
2466
  msgstr "A-m-d H:m:s"
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:25 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: German\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,35 +22,112 @@ msgstr ""
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:788
27
  msgid "Email Subscribers"
28
  msgstr ""
29
 
30
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  msgid ""
32
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
33
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
34
  msgstr ""
35
 
36
- #: ../classes/es-register.php:728
37
- msgid "Here's how"
38
  msgstr ""
39
 
40
- #: ../classes/es-register.php:728
41
- msgid "Not interested. Dismiss this."
42
  msgstr ""
43
 
44
- #: ../classes/es-register.php:900
 
 
 
 
 
 
 
 
45
  #, php-format
46
  msgid "%s for Post Notification: {{POSTTITLE}}"
47
  msgstr ""
48
 
49
- #: ../classes/es-register.php:900
50
  msgid "Available Keyword"
51
  msgstr ""
52
 
53
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
54
  #, php-format
55
  msgid ""
56
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -58,7 +135,7 @@ msgid ""
58
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
59
  msgstr ""
60
 
61
- #: ../classes/es-register.php:1002
62
  #, php-format
63
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
64
  msgstr ""
@@ -99,17 +176,173 @@ msgstr ""
99
  msgid "Subscribers Group to send post notification to"
100
  msgstr ""
101
 
102
- #: ../sentmail/sentmail-show.php:212
103
  msgid ""
104
  "<strong>Note:</strong> If you delete record for the emails with Status = "
105
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
106
  "deleted too and email will not be sent."
107
  msgstr ""
108
 
109
- #: ../settings/settings-edit.php:566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  msgid "Please enter valid email count."
111
  msgstr ""
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  #: ../classes/es-common.php:13
114
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
115
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
@@ -154,75 +387,76 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
154
  msgid "<span style=\"color:#993399;\">Immediately</span>"
155
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
156
 
157
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
158
  #: subscribers/view-subscriber-show.php:242
159
  msgid "Subscribers"
160
  msgstr "Abonnenten"
161
 
162
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
163
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
164
  msgid "Templates"
165
  msgstr "Vorlagen"
166
 
167
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
168
  #: 370 ../notification/notification-show.php:52
169
  msgid "Post Notifications"
170
  msgstr "Benachrichtigungen"
171
 
172
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
173
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
174
  msgid "Newsletters"
175
  msgstr "Newsletter"
176
 
177
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
178
  #: settings/settings-edit.php:42
179
  msgid "Settings"
180
  msgstr "Einstellungen"
181
 
182
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
183
  #: sentmail/sentmail-show.php:93
184
  msgid "Reports"
185
  msgstr "Berichte"
186
 
187
- #: ../classes/es-register.php:183
188
  msgid "Help & Info"
189
  msgstr "Hilfe & Info"
190
 
191
- #: ../classes/es-register.php:184
192
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
193
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
194
 
195
- #: ../classes/es-register.php:195
196
  msgctxt "view-subscriber-enhanced-select"
197
  msgid "Please enter subscriber email address."
198
  msgstr "Bitte E-Mail-Adresse des Abonnenten eingeben."
199
 
200
- #: ../classes/es-register.php:196
201
  msgctxt "view-subscriber-enhanced-select"
202
  msgid "Please select subscriber email status."
203
  msgstr "Wähle den E-Mail-Status des Abonnenten."
204
 
205
- #: ../classes/es-register.php:197
206
  msgctxt "view-subscriber-enhanced-select"
207
  msgid "Please select or create group for this subscriber."
208
  msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
209
 
210
- #: ../classes/es-register.php:198
211
  msgctxt "view-subscriber-enhanced-select"
212
  msgid "Do you want to delete this record?"
213
  msgstr "Möchtest Du diesen Eintrag löschen?"
214
 
215
- #: ../classes/es-register.php:199
216
  msgctxt "view-subscriber-enhanced-select"
217
  msgid "Please select the bulk action."
218
  msgstr "Bitte wähle die Mehrfachaktion."
219
 
220
- #: ../classes/es-register.php:200
221
  msgctxt "view-subscriber-enhanced-select"
222
  msgid "Are you sure you want to delete selected records?"
223
  msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
224
 
225
- #: ../classes/es-register.php:201
226
  msgctxt "view-subscriber-enhanced-select"
227
  msgid ""
228
  "Do you want to resend confirmation email? Also please note, this will update "
@@ -231,66 +465,66 @@ msgstr ""
231
  "Möchtest Du die Bestätigungs-E-Mail erneut versenden? Beachte, dies wird den "
232
  "Status des Abonnenten auf 'unbestätigt' setzen."
233
 
234
- #: ../classes/es-register.php:202
235
  msgctxt "view-subscriber-enhanced-select"
236
  msgid "Please select new subscriber group."
237
  msgstr "Bitte wähle die neue Abonnentengruppe."
238
 
239
- #: ../classes/es-register.php:203
240
  msgctxt "view-subscriber-enhanced-select"
241
  msgid "Please select new status for subscribers"
242
  msgstr "Bitte wähle den neuen Status für Abonnenten"
243
 
244
- #: ../classes/es-register.php:204
245
  msgctxt "view-subscriber-enhanced-select"
246
  msgid "Do you want to update subscribers group?"
247
  msgstr "Abonnentengruppe aktualisieren?"
248
 
249
- #: ../classes/es-register.php:205
250
  msgctxt "view-subscriber-enhanced-select"
251
  msgid "Do you want to update subscribers status?"
252
  msgstr "Abonnentenstatus aktualisieren?"
253
 
254
- #: ../classes/es-register.php:206
255
  msgctxt "view-subscriber-enhanced-select"
256
  msgid ""
257
  "Please select only csv file. Please check official website for csv structure."
258
  "."
259
  msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
260
 
261
- #: ../classes/es-register.php:214
262
  msgctxt "notification-enhanced-select"
263
  msgid "Please select subscribers group."
264
  msgstr "Abonnentengruppe wählen."
265
 
266
- #: ../classes/es-register.php:215
267
  msgctxt "notification-enhanced-select"
268
  msgid "Please select notification mail subject. Use templates menu to create new."
269
  msgstr ""
270
  "Bitte wähle den Betreff für die Benachrichtigung. Verwende das Menü Vorlagen "
271
  "um ein neues zu erstellen."
272
 
273
- #: ../classes/es-register.php:216
274
  msgctxt "notification-enhanced-select"
275
  msgid "Please select notification status."
276
  msgstr "Wähle den Benachrichtigungsstatus."
277
 
278
- #: ../classes/es-register.php:217
279
  msgctxt "notification-enhanced-select"
280
  msgid "Do you want to delete this record?"
281
  msgstr "Eintrag löschen?"
282
 
283
- #: ../classes/es-register.php:225
284
  msgctxt "sendmail-enhanced-select"
285
  msgid "Please select your mail subject."
286
  msgstr "Bitte wähle das Emailsubjekt."
287
 
288
- #: ../classes/es-register.php:226
289
  msgctxt "sendmail-enhanced-select"
290
  msgid "Please select your mail type."
291
  msgstr "Bitte wähle den Emailtyp."
292
 
293
- #: ../classes/es-register.php:227
294
  msgctxt "sendmail-enhanced-select"
295
  msgid ""
296
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -299,37 +533,37 @@ msgstr ""
299
  "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
300
  "verschicken."
301
 
302
- #: ../classes/es-register.php:235
303
  msgctxt "sentmail-enhanced-select"
304
  msgid "Do you want to delete this record?"
305
  msgstr "Eintrag löschen?"
306
 
307
- #: ../classes/es-register.php:236
308
  msgctxt "sentmail-enhanced-select"
309
  msgid "Do you want to delete all records except latest 10?"
310
  msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
311
 
312
- #: ../classes/es-register.php:244
313
  msgctxt "cron-enhanced-select"
314
  msgid "Please select enter number of mails you want to send per hour/trigger."
315
  msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
316
 
317
- #: ../classes/es-register.php:245
318
  msgctxt "cron-enhanced-select"
319
  msgid "Please enter the mail count, only number."
320
  msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
321
 
322
- #: ../classes/es-register.php:258
323
  msgctxt "widget-page-enhanced-select"
324
  msgid "Please enter email address"
325
  msgstr "Bitte gib die E-Mail-Adresse ein"
326
 
327
- #: ../classes/es-register.php:259
328
  msgctxt "widget-page-enhanced-select"
329
  msgid "Successfully Subscribed."
330
  msgstr "Erfolgreich angemeldet."
331
 
332
- #: ../classes/es-register.php:260
333
  msgctxt "widget-page-enhanced-select"
334
  msgid ""
335
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -340,27 +574,27 @@ msgstr ""
340
  "Anmeldung. Wenn Du nach einigen Minuten noch keine Email erhalten hast prüfe "
341
  "bitte Deinen Spam-Ordner."
342
 
343
- #: ../classes/es-register.php:261
344
  msgctxt "widget-page-enhanced-select"
345
  msgid "Email Address already exists!"
346
  msgstr "Diese Adresse existiert bereits!"
347
 
348
- #: ../classes/es-register.php:262
349
  msgctxt "widget-page-enhanced-select"
350
  msgid "Oops.. Unexpected error occurred."
351
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
352
 
353
- #: ../classes/es-register.php:263
354
  msgctxt "widget-page-enhanced-select"
355
  msgid "Invalid email address"
356
  msgstr "Ungültige E-Mail-Adresse"
357
 
358
- #: ../classes/es-register.php:264
359
  msgctxt "widget-page-enhanced-select"
360
  msgid "Please try after some time"
361
  msgstr "Versuche es in Kürze nochmal"
362
 
363
- #: ../classes/es-register.php:753
364
  msgid ""
365
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
366
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -373,121 +607,121 @@ msgstr ""
373
  "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
374
  "riesiges Dankeschön von Icegram im Voraus!"
375
 
376
- #: ../classes/es-register.php:767
377
  #, php-format
378
  msgid "Email Subscribers version: <strong>%s</strong>"
379
  msgstr "Email Subscribers Version: <strong>%s</strong>"
380
 
381
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
382
  msgid "Add new Template"
383
  msgstr "Neue Vorlage hinzufügen"
384
 
385
- #: ../classes/es-register.php:780
386
  msgid "Edit Templates"
387
  msgstr "Vorlagen bearbeiten"
388
 
389
- #: ../classes/es-register.php:781
390
  msgid "New Templates"
391
  msgstr "Neue Vorlagen"
392
 
393
- #: ../classes/es-register.php:783
394
  msgid "View Templates"
395
  msgstr "Vorlagen ansehen"
396
 
397
- #: ../classes/es-register.php:784
398
  msgid "Search Templates"
399
  msgstr "Vorlagen suchen"
400
 
401
- #: ../classes/es-register.php:785
402
  msgid "No Templates found"
403
  msgstr "Keine Vorlagen gefunden"
404
 
405
- #: ../classes/es-register.php:786
406
  msgid "No Templates found in Trash"
407
  msgstr "Keine Vorlagen im Papierkorb gefunden"
408
 
409
- #: ../classes/es-register.php:789
410
  msgid "Thumbnail (For Visual Representation only)"
411
  msgstr "Vorschaubild (nur zur visuellen Darstellung)"
412
 
413
- #: ../classes/es-register.php:790
414
  msgid "Set thumbnail"
415
  msgstr "Vorschaubild auswählen"
416
 
417
- #: ../classes/es-register.php:827
418
  msgid "Template Type"
419
  msgstr "Vorlagentyp"
420
 
421
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
422
  msgid "Thumbnail"
423
  msgstr "Vorschau"
424
 
425
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
426
  #: sentmail/sentmail-show.php:121
427
  msgid "Preview"
428
  msgstr "Vorschau"
429
 
430
- #: ../classes/es-register.php:907
431
  msgid "Select your Email Template Type"
432
  msgstr "Wähle den Typ der Emailvorlage"
433
 
434
- #: ../classes/es-register.php:909
435
  msgid "Newsletter"
436
  msgstr "Newsletter"
437
 
438
- #: ../classes/es-register.php:910
439
  msgid "Post Notification"
440
  msgstr "Benachrichtigung über Beitrag"
441
 
442
- #: ../classes/es-register.php:959
443
  msgid "Preview Template"
444
  msgstr "Voransicht Vorlage"
445
 
446
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
447
- #: register.php:994 ../classes/es-register.php:1002
448
  msgid "Available Keywords"
449
  msgstr "Verfügbare Schlüsselworte"
450
 
451
- #: ../classes/es-register.php:979
452
  #, php-format
453
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
454
  msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
455
 
456
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
457
  msgid "Name"
458
  msgstr "Name"
459
 
460
- #: ../classes/es-register.php:1044
461
  msgid "Email *"
462
  msgstr "E-Mail *"
463
 
464
- #: ../classes/es-register.php:1053 ../help/help.php:202
465
  msgid "Subscribe"
466
  msgstr "Anmelden"
467
 
468
- #: ../classes/es-register.php:1157
469
  msgid "Widget Title"
470
  msgstr "Widget Titel"
471
 
472
- #: ../classes/es-register.php:1161
473
  msgid "Short description about subscription form"
474
  msgstr "Kurze Beschreibung des Anmeldeformulars"
475
 
476
- #: ../classes/es-register.php:1165
477
  msgid "Display Name Field"
478
  msgstr "Namensfeld anzeigen"
479
 
480
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
481
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
482
  msgid "YES"
483
  msgstr "Ja"
484
 
485
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
486
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
487
  msgid "NO"
488
  msgstr "Nein"
489
 
490
- #: ../classes/es-register.php:1172
491
  msgid "Subscriber Group"
492
  msgstr "Abonnentengruppe"
493
 
@@ -955,7 +1189,7 @@ msgstr "Hilfe"
955
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
956
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
957
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
958
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
959
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
960
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
961
  msgid "Select"
@@ -1021,8 +1255,8 @@ msgstr "Zu Cron hinzufügen und E-Mail via Cron Job verschicken"
1021
  msgid "Disable email notification"
1022
  msgstr "E-Mail-Benachrichtigungen deaktivieren"
1023
 
1024
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1025
- #: 291 ../subscribers/view-subscriber-edit.php:191
1026
  msgid "Save"
1027
  msgstr "Sichern"
1028
 
@@ -1145,20 +1379,20 @@ msgstr "Wähle den E-Mail-Typ"
1145
  msgid "Send email via cron job"
1146
  msgstr "Sende E-Mail via Cron Job"
1147
 
1148
- #: ../sendmail/sendmail.php:147
1149
  msgid "Select Subscribers group to Send Email"
1150
  msgstr "Wähle die Abonnentengruppe aus die diese E-Mail erhalten soll"
1151
 
1152
- #: ../sendmail/sendmail.php:179
1153
  msgid "Recipients : 0 "
1154
  msgstr "Empfänger : 0 "
1155
 
1156
- #: ../sendmail/sendmail.php:181
1157
  #, php-format
1158
  msgid "Recipients : %s"
1159
  msgstr "Empfänger : %s"
1160
 
1161
- #: ../sendmail/sendmail.php:184
1162
  msgid ""
1163
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1164
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1168,11 +1402,11 @@ msgstr ""
1168
  "E-Mail-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1169
  "</strong><br>Klicke auf Hilfe für weitere Informationen."
1170
 
1171
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1172
  msgid "Send Email"
1173
  msgstr "E-Mail senden"
1174
 
1175
- #: ../sendmail/sendmail.php:201
1176
  msgid "Reset"
1177
  msgstr "Zurücksetzen"
1178
 
@@ -1463,22 +1697,10 @@ msgstr ""
1463
  msgid "Sent Report Subject"
1464
  msgstr "Subjekt des Sendeberichts"
1465
 
1466
- #: ../settings/settings-edit.php:166
1467
- msgid "Subject for the email report which will be sent to admin."
1468
- msgstr "Subjekt des E-Mail-Berichtes der an den Admin geschickt wird."
1469
-
1470
  #: ../settings/settings-edit.php:172
1471
  msgid "Sent Report Content"
1472
  msgstr "Inhalt des Sendeberichts"
1473
 
1474
- #: ../settings/settings-edit.php:173
1475
- msgid ""
1476
- "Content for the email report which will be sent to admin.<br />Available "
1477
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1478
- msgstr ""
1479
- "Inhalt des E-Mail-Berichts, der an den Admin geschickt wird.<br />Verfügbare "
1480
- "Schlüsselworte: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1481
-
1482
  #: ../settings/settings-edit.php:184
1483
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1484
  msgstr "Betreff der Bestätigungsmail (Doppeltes Opt-In)"
@@ -1680,25 +1902,25 @@ msgid ""
1680
  "modify it."
1681
  msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1682
 
1683
- #: ../settings/settings-edit.php:376
1684
  msgid "Email Count"
1685
  msgstr "Anzahl E-Mails"
1686
 
1687
- #: ../settings/settings-edit.php:377
1688
  msgid "Number of emails that you want to trigger per hour."
1689
  msgstr "Anzahl der E-Mails die pro Stunde verschickt werden sollen."
1690
 
1691
- #: ../settings/settings-edit.php:382
1692
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1693
  msgstr ""
1694
  "(Dein Hoster hat Limitierungen. Wir empfehlen 50 E-Mails pro Stunde um auf "
1695
  "der sicheren Seite zu sein.)"
1696
 
1697
- #: ../settings/settings-edit.php:387
1698
  msgid "Cron Report"
1699
  msgstr "Cron Bericht"
1700
 
1701
- #: ../settings/settings-edit.php:388
1702
  msgid ""
1703
  "Email to admin whenever a cron URL is triggered from your server.<br "
1704
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1706,11 +1928,11 @@ msgstr ""
1706
  "E-Mails an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
1707
  "/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1708
 
1709
- #: ../settings/settings-edit.php:398
1710
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1711
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1712
 
1713
- #: ../settings/settings-edit.php:399
1714
  msgid ""
1715
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1716
  "schedule-cron-emails/?"
@@ -1722,7 +1944,7 @@ msgstr ""
1722
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
1723
  "Cron?</a>"
1724
 
1725
- #: ../settings/settings-edit.php:400
1726
  msgid ""
1727
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1728
  "schedule-cron-emails-in-cpanel/?"
@@ -1734,7 +1956,7 @@ msgstr ""
1734
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1735
  "in cPanel konfigurieren</a>"
1736
 
1737
- #: ../settings/settings-edit.php:401
1738
  msgid ""
1739
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1740
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1746,7 +1968,7 @@ msgstr ""
1746
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1747
  "in Plesk konfigurieren</a>"
1748
 
1749
- #: ../settings/settings-edit.php:402
1750
  msgid ""
1751
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1752
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1758,19 +1980,19 @@ msgstr ""
1758
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
1759
  "Hoster unterstützt keine Cron Jobs?</a>"
1760
 
1761
- #: ../settings/settings-edit.php:517
1762
  msgid "Please enter sender of notifications from name."
1763
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
1764
 
1765
- #: ../settings/settings-edit.php:522
1766
  msgid "Please enter sender of notifications from email."
1767
  msgstr "Bitte wähle den Absender der Benachrichtigung über die E-Mail-Adresse."
1768
 
1769
- #: ../settings/settings-edit.php:580
1770
  msgid "Settings Saved."
1771
  msgstr "Einstellungen gesichert."
1772
 
1773
- #: ../settings/settings-edit.php:583
1774
  msgid "Oops, unable to update."
1775
  msgstr "Oops.. Update nicht möglich."
1776
 
@@ -2236,7 +2458,7 @@ msgstr ""
2236
  "automatische Benachrichtigungen an die Abonnenten sobald neue Beiträge "
2237
  "veröffentlicht werden."
2238
 
2239
- #: ../email-subscribers.php:95
2240
  msgctxt "timezone date format"
2241
  msgid "Y-m-d H:i:s"
2242
  msgstr "J-M-T S:M:S"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42: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: German\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "X-Loco-Target-Locale: de_DE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
26
+ #: register.php:1055
27
  msgid "Email Subscribers"
28
  msgstr ""
29
 
30
+ #: ../classes/es-register.php:191
31
+ msgid "Go Pro"
32
+ msgstr ""
33
+
34
+ #: ../classes/es-register.php:192
35
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
36
+ msgstr ""
37
+
38
+ #: ../classes/es-register.php:699
39
+ msgid "No, I don't like it"
40
+ msgstr ""
41
+
42
+ #: ../classes/es-register.php:705
43
+ msgctxt "timezone date format"
44
+ msgid "Y-m-d"
45
+ msgstr ""
46
+
47
+ #: ../classes/es-register.php:850
48
+ msgid "What do you hate about list building and email marketing?"
49
+ msgstr ""
50
+
51
+ #: ../classes/es-register.php:851
52
+ msgid "Hey, glad to see you!"
53
+ msgstr ""
54
+
55
+ #: ../classes/es-register.php:852
56
+ msgid ""
57
+ "I am on a daring quest to solve your biggest problems around list building "
58
+ "and email marketing. "
59
+ msgstr ""
60
+
61
+ #: ../classes/es-register.php:853
62
+ msgid ""
63
+ "So tell me, when it comes to list building and email marketing, what's your "
64
+ "biggest challenge? What's blocking your progress? "
65
+ msgstr ""
66
+
67
+ #: ../classes/es-register.php:858
68
+ msgid "And what's another big challenge? "
69
+ msgstr ""
70
+
71
+ #: ../classes/es-register.php:862
72
+ msgid "Send my problems..."
73
+ msgstr ""
74
+
75
+ #: ../classes/es-register.php:863
76
+ msgid "No, I don't have problems"
77
+ msgstr ""
78
+
79
+ #: ../classes/es-register.php:865
80
+ msgid "Fill the above field first"
81
+ msgstr ""
82
+
83
+ #: ../classes/es-register.php:874
84
+ msgid "Gosh... I hear you mate... "
85
+ msgstr ""
86
+
87
+ #: ../classes/es-register.php:875
88
  msgid ""
89
+ "Enter your email below, and you will be the first to know when we solve "
90
+ "those problems. "
91
+ msgstr ""
92
+
93
+ #: ../classes/es-register.php:879
94
+ msgid "Nah, I don't like improvements"
95
+ msgstr ""
96
+
97
+ #: ../classes/es-register.php:893
98
+ msgid "I got you."
99
+ msgstr ""
100
+
101
+ #: ../classes/es-register.php:894
102
+ msgid "Will do everything I can to help you. "
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
106
+ msgid "Later. "
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
110
+ msgid "Andrea Julio "
111
  msgstr ""
112
 
113
+ #: ../classes/es-register.php:902
114
+ msgid "No issues, have a nice day!"
115
+ msgstr ""
116
+
117
+ #: ../classes/es-register.php:1020
118
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
119
+ msgstr ""
120
+
121
+ #: ../classes/es-register.php:1167
122
  #, php-format
123
  msgid "%s for Post Notification: {{POSTTITLE}}"
124
  msgstr ""
125
 
126
+ #: ../classes/es-register.php:1167
127
  msgid "Available Keyword"
128
  msgstr ""
129
 
130
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
131
  #, php-format
132
  msgid ""
133
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
135
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
136
  msgstr ""
137
 
138
+ #: ../classes/es-register.php:1269
139
  #, php-format
140
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
141
  msgstr ""
176
  msgid "Subscribers Group to send post notification to"
177
  msgstr ""
178
 
179
+ #: ../sentmail/sentmail-show.php:216
180
  msgid ""
181
  "<strong>Note:</strong> If you delete record for the emails with Status = "
182
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
183
  "deleted too and email will not be sent."
184
  msgstr ""
185
 
186
+ #: ../settings/settings-edit.php:166
187
+ msgid ""
188
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
189
+ "only if sending email via immediately)"
190
+ msgstr ""
191
+
192
+ #: ../settings/settings-edit.php:173
193
+ msgid ""
194
+ "Content for the email report which will be sent to admin.<br />Available "
195
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
196
+ "sent only if sending email via immediately)"
197
+ msgstr ""
198
+
199
+ #: ../settings/settings-edit.php:393
200
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
201
+ msgstr ""
202
+
203
+ #: ../settings/settings-edit.php:569
204
  msgid "Please enter valid email count."
205
  msgstr ""
206
 
207
+ #: ../pricing/pricing.php:157
208
+ msgid "Go a notch higher"
209
+ msgstr ""
210
+
211
+ #: ../pricing/pricing.php:158
212
+ msgid "Get the Email Subscribers Pro Plugin at"
213
+ msgstr ""
214
+
215
+ #: ../pricing/pricing.php:162
216
+ msgid "month"
217
+ msgstr ""
218
+
219
+ #: ../pricing/pricing.php:163
220
+ msgid "Sign up for monthly"
221
+ msgstr ""
222
+
223
+ #: ../pricing/pricing.php:166
224
+ msgid "year"
225
+ msgstr ""
226
+
227
+ #: ../pricing/pricing.php:167
228
+ msgid "Sign up for yearly"
229
+ msgstr ""
230
+
231
+ #: ../pricing/pricing.php:171
232
+ msgid "Get more with Email Subscribers Pro"
233
+ msgstr ""
234
+
235
+ #: ../pricing/pricing.php:173
236
+ msgid "All features of Email Subscribers free plugin + everything below:"
237
+ msgstr ""
238
+
239
+ #: ../pricing/pricing.php:176
240
+ msgid "Protect your list from bot attacks"
241
+ msgstr ""
242
+
243
+ #: ../pricing/pricing.php:177
244
+ msgid "Use "
245
+ msgstr ""
246
+
247
+ #: ../pricing/pricing.php:177
248
+ msgid "captcha"
249
+ msgstr ""
250
+
251
+ #: ../pricing/pricing.php:177
252
+ msgid ""
253
+ "to protect your email list from bots. The simple maths captcha helps "
254
+ "identifying bots from humans and eliminates spam signups."
255
+ msgstr ""
256
+
257
+ #: ../pricing/pricing.php:180
258
+ msgid "Check email status & increase email success rate"
259
+ msgstr ""
260
+
261
+ #: ../pricing/pricing.php:181
262
+ msgid "Double check the status of the emails addresses and increase "
263
+ msgstr ""
264
+
265
+ #: ../pricing/pricing.php:181
266
+ msgid "email success rate"
267
+ msgstr ""
268
+
269
+ #: ../pricing/pricing.php:181
270
+ msgid "of your email campaign. "
271
+ msgstr ""
272
+
273
+ #: ../pricing/pricing.php:187
274
+ msgid "Fullproof email deliverability"
275
+ msgstr ""
276
+
277
+ #: ../pricing/pricing.php:188
278
+ msgid ""
279
+ "Reduce the risk of emails ending in trash or spam. Increase email "
280
+ "deliverability by double checking emails for their "
281
+ msgstr ""
282
+
283
+ #: ../pricing/pricing.php:188
284
+ msgid "spam score"
285
+ msgstr ""
286
+
287
+ #: ../pricing/pricing.php:188
288
+ msgid "before hitting send."
289
+ msgstr ""
290
+
291
+ #: ../pricing/pricing.php:191
292
+ msgid "Track email leads in Google"
293
+ msgstr ""
294
+
295
+ #: ../pricing/pricing.php:192
296
+ msgid "Insert "
297
+ msgstr ""
298
+
299
+ #: ../pricing/pricing.php:192
300
+ msgid "UTM tracking"
301
+ msgstr ""
302
+
303
+ #: ../pricing/pricing.php:192
304
+ msgid ""
305
+ "in all your email CTA’s and track the effectiveness of your emails directly "
306
+ "within Google. Know which/ how many leads landed up from your emails and "
307
+ "tweak emails for better performance."
308
+ msgstr ""
309
+
310
+ #: ../pricing/pricing.php:199
311
+ msgid "Save time, use readymade email templates"
312
+ msgstr ""
313
+
314
+ #: ../pricing/pricing.php:200
315
+ msgid ""
316
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
317
+ "elegant templates</strong> to send your next email campaign."
318
+ msgstr ""
319
+
320
+ #: ../pricing/pricing.php:203
321
+ msgid "Customize confirmation and unsubscribe page"
322
+ msgstr ""
323
+
324
+ #: ../pricing/pricing.php:204
325
+ msgid ""
326
+ "Communicate with subscribers. Redirect them to beautifully designed "
327
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
328
+ msgstr ""
329
+
330
+ #: ../pricing/pricing.php:211
331
+ msgid "Coming soon..."
332
+ msgstr ""
333
+
334
+ #: ../pricing/pricing.php:213
335
+ msgid "Spam testing"
336
+ msgstr ""
337
+
338
+ #: ../pricing/pricing.php:214
339
+ msgid "Bounce handling"
340
+ msgstr ""
341
+
342
+ #: ../pricing/pricing.php:215
343
+ msgid "Advanced reporting"
344
+ msgstr ""
345
+
346
  #: ../classes/es-common.php:13
347
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
348
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
387
  msgid "<span style=\"color:#993399;\">Immediately</span>"
388
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
389
 
390
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
391
  #: subscribers/view-subscriber-show.php:242
392
  msgid "Subscribers"
393
  msgstr "Abonnenten"
394
 
395
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
396
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
397
+ #: 1049
398
  msgid "Templates"
399
  msgstr "Vorlagen"
400
 
401
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
402
  #: 370 ../notification/notification-show.php:52
403
  msgid "Post Notifications"
404
  msgstr "Benachrichtigungen"
405
 
406
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
407
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
408
  msgid "Newsletters"
409
  msgstr "Newsletter"
410
 
411
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
412
  #: settings/settings-edit.php:42
413
  msgid "Settings"
414
  msgstr "Einstellungen"
415
 
416
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
417
  #: sentmail/sentmail-show.php:93
418
  msgid "Reports"
419
  msgstr "Berichte"
420
 
421
+ #: ../classes/es-register.php:187
422
  msgid "Help & Info"
423
  msgstr "Hilfe & Info"
424
 
425
+ #: ../classes/es-register.php:188
426
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
427
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
428
 
429
+ #: ../classes/es-register.php:204
430
  msgctxt "view-subscriber-enhanced-select"
431
  msgid "Please enter subscriber email address."
432
  msgstr "Bitte E-Mail-Adresse des Abonnenten eingeben."
433
 
434
+ #: ../classes/es-register.php:205
435
  msgctxt "view-subscriber-enhanced-select"
436
  msgid "Please select subscriber email status."
437
  msgstr "Wähle den E-Mail-Status des Abonnenten."
438
 
439
+ #: ../classes/es-register.php:206
440
  msgctxt "view-subscriber-enhanced-select"
441
  msgid "Please select or create group for this subscriber."
442
  msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
443
 
444
+ #: ../classes/es-register.php:207
445
  msgctxt "view-subscriber-enhanced-select"
446
  msgid "Do you want to delete this record?"
447
  msgstr "Möchtest Du diesen Eintrag löschen?"
448
 
449
+ #: ../classes/es-register.php:208
450
  msgctxt "view-subscriber-enhanced-select"
451
  msgid "Please select the bulk action."
452
  msgstr "Bitte wähle die Mehrfachaktion."
453
 
454
+ #: ../classes/es-register.php:209
455
  msgctxt "view-subscriber-enhanced-select"
456
  msgid "Are you sure you want to delete selected records?"
457
  msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
458
 
459
+ #: ../classes/es-register.php:210
460
  msgctxt "view-subscriber-enhanced-select"
461
  msgid ""
462
  "Do you want to resend confirmation email? Also please note, this will update "
465
  "Möchtest Du die Bestätigungs-E-Mail erneut versenden? Beachte, dies wird den "
466
  "Status des Abonnenten auf 'unbestätigt' setzen."
467
 
468
+ #: ../classes/es-register.php:211
469
  msgctxt "view-subscriber-enhanced-select"
470
  msgid "Please select new subscriber group."
471
  msgstr "Bitte wähle die neue Abonnentengruppe."
472
 
473
+ #: ../classes/es-register.php:212
474
  msgctxt "view-subscriber-enhanced-select"
475
  msgid "Please select new status for subscribers"
476
  msgstr "Bitte wähle den neuen Status für Abonnenten"
477
 
478
+ #: ../classes/es-register.php:213
479
  msgctxt "view-subscriber-enhanced-select"
480
  msgid "Do you want to update subscribers group?"
481
  msgstr "Abonnentengruppe aktualisieren?"
482
 
483
+ #: ../classes/es-register.php:214
484
  msgctxt "view-subscriber-enhanced-select"
485
  msgid "Do you want to update subscribers status?"
486
  msgstr "Abonnentenstatus aktualisieren?"
487
 
488
+ #: ../classes/es-register.php:215
489
  msgctxt "view-subscriber-enhanced-select"
490
  msgid ""
491
  "Please select only csv file. Please check official website for csv structure."
492
  "."
493
  msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
494
 
495
+ #: ../classes/es-register.php:223
496
  msgctxt "notification-enhanced-select"
497
  msgid "Please select subscribers group."
498
  msgstr "Abonnentengruppe wählen."
499
 
500
+ #: ../classes/es-register.php:224
501
  msgctxt "notification-enhanced-select"
502
  msgid "Please select notification mail subject. Use templates menu to create new."
503
  msgstr ""
504
  "Bitte wähle den Betreff für die Benachrichtigung. Verwende das Menü Vorlagen "
505
  "um ein neues zu erstellen."
506
 
507
+ #: ../classes/es-register.php:225
508
  msgctxt "notification-enhanced-select"
509
  msgid "Please select notification status."
510
  msgstr "Wähle den Benachrichtigungsstatus."
511
 
512
+ #: ../classes/es-register.php:226
513
  msgctxt "notification-enhanced-select"
514
  msgid "Do you want to delete this record?"
515
  msgstr "Eintrag löschen?"
516
 
517
+ #: ../classes/es-register.php:234
518
  msgctxt "sendmail-enhanced-select"
519
  msgid "Please select your mail subject."
520
  msgstr "Bitte wähle das Emailsubjekt."
521
 
522
+ #: ../classes/es-register.php:235
523
  msgctxt "sendmail-enhanced-select"
524
  msgid "Please select your mail type."
525
  msgstr "Bitte wähle den Emailtyp."
526
 
527
+ #: ../classes/es-register.php:236
528
  msgctxt "sendmail-enhanced-select"
529
  msgid ""
530
  "Have you double checked your selected group? If so, let's go ahead and send "
533
  "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
534
  "verschicken."
535
 
536
+ #: ../classes/es-register.php:244
537
  msgctxt "sentmail-enhanced-select"
538
  msgid "Do you want to delete this record?"
539
  msgstr "Eintrag löschen?"
540
 
541
+ #: ../classes/es-register.php:245
542
  msgctxt "sentmail-enhanced-select"
543
  msgid "Do you want to delete all records except latest 10?"
544
  msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
545
 
546
+ #: ../classes/es-register.php:253
547
  msgctxt "cron-enhanced-select"
548
  msgid "Please select enter number of mails you want to send per hour/trigger."
549
  msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
550
 
551
+ #: ../classes/es-register.php:254
552
  msgctxt "cron-enhanced-select"
553
  msgid "Please enter the mail count, only number."
554
  msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
555
 
556
+ #: ../classes/es-register.php:267
557
  msgctxt "widget-page-enhanced-select"
558
  msgid "Please enter email address"
559
  msgstr "Bitte gib die E-Mail-Adresse ein"
560
 
561
+ #: ../classes/es-register.php:268
562
  msgctxt "widget-page-enhanced-select"
563
  msgid "Successfully Subscribed."
564
  msgstr "Erfolgreich angemeldet."
565
 
566
+ #: ../classes/es-register.php:269
567
  msgctxt "widget-page-enhanced-select"
568
  msgid ""
569
  "Your subscription was successful! Kindly check your mailbox and confirm your "
574
  "Anmeldung. Wenn Du nach einigen Minuten noch keine Email erhalten hast prüfe "
575
  "bitte Deinen Spam-Ordner."
576
 
577
+ #: ../classes/es-register.php:270
578
  msgctxt "widget-page-enhanced-select"
579
  msgid "Email Address already exists!"
580
  msgstr "Diese Adresse existiert bereits!"
581
 
582
+ #: ../classes/es-register.php:271
583
  msgctxt "widget-page-enhanced-select"
584
  msgid "Oops.. Unexpected error occurred."
585
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
586
 
587
+ #: ../classes/es-register.php:272
588
  msgctxt "widget-page-enhanced-select"
589
  msgid "Invalid email address"
590
  msgstr "Ungültige E-Mail-Adresse"
591
 
592
+ #: ../classes/es-register.php:273
593
  msgctxt "widget-page-enhanced-select"
594
  msgid "Please try after some time"
595
  msgstr "Versuche es in Kürze nochmal"
596
 
597
+ #: ../classes/es-register.php:698
598
  msgid ""
599
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
600
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
607
  "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
608
  "riesiges Dankeschön von Icegram im Voraus!"
609
 
610
+ #: ../classes/es-register.php:1034
611
  #, php-format
612
  msgid "Email Subscribers version: <strong>%s</strong>"
613
  msgstr "Email Subscribers Version: <strong>%s</strong>"
614
 
615
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
616
  msgid "Add new Template"
617
  msgstr "Neue Vorlage hinzufügen"
618
 
619
+ #: ../classes/es-register.php:1047
620
  msgid "Edit Templates"
621
  msgstr "Vorlagen bearbeiten"
622
 
623
+ #: ../classes/es-register.php:1048
624
  msgid "New Templates"
625
  msgstr "Neue Vorlagen"
626
 
627
+ #: ../classes/es-register.php:1050
628
  msgid "View Templates"
629
  msgstr "Vorlagen ansehen"
630
 
631
+ #: ../classes/es-register.php:1051
632
  msgid "Search Templates"
633
  msgstr "Vorlagen suchen"
634
 
635
+ #: ../classes/es-register.php:1052
636
  msgid "No Templates found"
637
  msgstr "Keine Vorlagen gefunden"
638
 
639
+ #: ../classes/es-register.php:1053
640
  msgid "No Templates found in Trash"
641
  msgstr "Keine Vorlagen im Papierkorb gefunden"
642
 
643
+ #: ../classes/es-register.php:1056
644
  msgid "Thumbnail (For Visual Representation only)"
645
  msgstr "Vorschaubild (nur zur visuellen Darstellung)"
646
 
647
+ #: ../classes/es-register.php:1057
648
  msgid "Set thumbnail"
649
  msgstr "Vorschaubild auswählen"
650
 
651
+ #: ../classes/es-register.php:1094
652
  msgid "Template Type"
653
  msgstr "Vorlagentyp"
654
 
655
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
656
  msgid "Thumbnail"
657
  msgstr "Vorschau"
658
 
659
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
660
  #: sentmail/sentmail-show.php:121
661
  msgid "Preview"
662
  msgstr "Vorschau"
663
 
664
+ #: ../classes/es-register.php:1174
665
  msgid "Select your Email Template Type"
666
  msgstr "Wähle den Typ der Emailvorlage"
667
 
668
+ #: ../classes/es-register.php:1176
669
  msgid "Newsletter"
670
  msgstr "Newsletter"
671
 
672
+ #: ../classes/es-register.php:1177
673
  msgid "Post Notification"
674
  msgstr "Benachrichtigung über Beitrag"
675
 
676
+ #: ../classes/es-register.php:1226
677
  msgid "Preview Template"
678
  msgstr "Voransicht Vorlage"
679
 
680
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
681
+ #: register.php:1261 ../classes/es-register.php:1269
682
  msgid "Available Keywords"
683
  msgstr "Verfügbare Schlüsselworte"
684
 
685
+ #: ../classes/es-register.php:1246
686
  #, php-format
687
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
688
  msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
689
 
690
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
691
  msgid "Name"
692
  msgstr "Name"
693
 
694
+ #: ../classes/es-register.php:1311
695
  msgid "Email *"
696
  msgstr "E-Mail *"
697
 
698
+ #: ../classes/es-register.php:1320 ../help/help.php:202
699
  msgid "Subscribe"
700
  msgstr "Anmelden"
701
 
702
+ #: ../classes/es-register.php:1424
703
  msgid "Widget Title"
704
  msgstr "Widget Titel"
705
 
706
+ #: ../classes/es-register.php:1428
707
  msgid "Short description about subscription form"
708
  msgstr "Kurze Beschreibung des Anmeldeformulars"
709
 
710
+ #: ../classes/es-register.php:1432
711
  msgid "Display Name Field"
712
  msgstr "Namensfeld anzeigen"
713
 
714
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
715
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
716
  msgid "YES"
717
  msgstr "Ja"
718
 
719
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
720
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
721
  msgid "NO"
722
  msgstr "Nein"
723
 
724
+ #: ../classes/es-register.php:1439
725
  msgid "Subscriber Group"
726
  msgstr "Abonnentengruppe"
727
 
1189
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1190
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1191
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1192
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1193
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1194
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1195
  msgid "Select"
1255
  msgid "Disable email notification"
1256
  msgstr "E-Mail-Benachrichtigungen deaktivieren"
1257
 
1258
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1259
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1260
  msgid "Save"
1261
  msgstr "Sichern"
1262
 
1379
  msgid "Send email via cron job"
1380
  msgstr "Sende E-Mail via Cron Job"
1381
 
1382
+ #: ../sendmail/sendmail.php:148
1383
  msgid "Select Subscribers group to Send Email"
1384
  msgstr "Wähle die Abonnentengruppe aus die diese E-Mail erhalten soll"
1385
 
1386
+ #: ../sendmail/sendmail.php:180
1387
  msgid "Recipients : 0 "
1388
  msgstr "Empfänger : 0 "
1389
 
1390
+ #: ../sendmail/sendmail.php:182
1391
  #, php-format
1392
  msgid "Recipients : %s"
1393
  msgstr "Empfänger : %s"
1394
 
1395
+ #: ../sendmail/sendmail.php:185
1396
  msgid ""
1397
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1398
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1402
  "E-Mail-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1403
  "</strong><br>Klicke auf Hilfe für weitere Informationen."
1404
 
1405
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1406
  msgid "Send Email"
1407
  msgstr "E-Mail senden"
1408
 
1409
+ #: ../sendmail/sendmail.php:202
1410
  msgid "Reset"
1411
  msgstr "Zurücksetzen"
1412
 
1697
  msgid "Sent Report Subject"
1698
  msgstr "Subjekt des Sendeberichts"
1699
 
 
 
 
 
1700
  #: ../settings/settings-edit.php:172
1701
  msgid "Sent Report Content"
1702
  msgstr "Inhalt des Sendeberichts"
1703
 
 
 
 
 
 
 
 
 
1704
  #: ../settings/settings-edit.php:184
1705
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1706
  msgstr "Betreff der Bestätigungsmail (Doppeltes Opt-In)"
1902
  "modify it."
1903
  msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1904
 
1905
+ #: ../settings/settings-edit.php:377
1906
  msgid "Email Count"
1907
  msgstr "Anzahl E-Mails"
1908
 
1909
+ #: ../settings/settings-edit.php:378
1910
  msgid "Number of emails that you want to trigger per hour."
1911
  msgstr "Anzahl der E-Mails die pro Stunde verschickt werden sollen."
1912
 
1913
+ #: ../settings/settings-edit.php:383
1914
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1915
  msgstr ""
1916
  "(Dein Hoster hat Limitierungen. Wir empfehlen 50 E-Mails pro Stunde um auf "
1917
  "der sicheren Seite zu sein.)"
1918
 
1919
+ #: ../settings/settings-edit.php:388
1920
  msgid "Cron Report"
1921
  msgstr "Cron Bericht"
1922
 
1923
+ #: ../settings/settings-edit.php:389
1924
  msgid ""
1925
  "Email to admin whenever a cron URL is triggered from your server.<br "
1926
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1928
  "E-Mails an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
1929
  "/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1930
 
1931
+ #: ../settings/settings-edit.php:400
1932
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1933
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1934
 
1935
+ #: ../settings/settings-edit.php:401
1936
  msgid ""
1937
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1938
  "schedule-cron-emails/?"
1944
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
1945
  "Cron?</a>"
1946
 
1947
+ #: ../settings/settings-edit.php:402
1948
  msgid ""
1949
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1950
  "schedule-cron-emails-in-cpanel/?"
1956
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1957
  "in cPanel konfigurieren</a>"
1958
 
1959
+ #: ../settings/settings-edit.php:403
1960
  msgid ""
1961
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1962
  "schedule-cron-emails-in-parallels-plesk/?"
1968
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1969
  "in Plesk konfigurieren</a>"
1970
 
1971
+ #: ../settings/settings-edit.php:404
1972
  msgid ""
1973
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1974
  "if-hosting-doesnt-support-cron-jobs/?"
1980
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
1981
  "Hoster unterstützt keine Cron Jobs?</a>"
1982
 
1983
+ #: ../settings/settings-edit.php:520
1984
  msgid "Please enter sender of notifications from name."
1985
  msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
1986
 
1987
+ #: ../settings/settings-edit.php:525
1988
  msgid "Please enter sender of notifications from email."
1989
  msgstr "Bitte wähle den Absender der Benachrichtigung über die E-Mail-Adresse."
1990
 
1991
+ #: ../settings/settings-edit.php:584
1992
  msgid "Settings Saved."
1993
  msgstr "Einstellungen gesichert."
1994
 
1995
+ #: ../settings/settings-edit.php:587
1996
  msgid "Oops, unable to update."
1997
  msgstr "Oops.. Update nicht möglich."
1998
 
2458
  "automatische Benachrichtigungen an die Abonnenten sobald neue Beiträge "
2459
  "veröffentlicht werden."
2460
 
2461
+ #: ../email-subscribers.php:96
2462
  msgctxt "timezone date format"
2463
  msgid "Y-m-d H:i:s"
2464
  msgstr "J-M-T S:M:S"
languages/email-subscribers-es_ES.mo CHANGED
Binary file
languages/email-subscribers-es_ES.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:29 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Spanish (Spain)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -23,30 +23,107 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid ""
28
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
29
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
30
  msgstr ""
31
 
32
- #: ../classes/es-register.php:728
33
- msgid "Here's how"
34
  msgstr ""
35
 
36
- #: ../classes/es-register.php:728
37
- msgid "Not interested. Dismiss this."
38
  msgstr ""
39
 
40
- #: ../classes/es-register.php:900
 
 
 
 
 
 
 
 
41
  #, php-format
42
  msgid "%s for Post Notification: {{POSTTITLE}}"
43
  msgstr ""
44
 
45
- #: ../classes/es-register.php:900
46
  msgid "Available Keyword"
47
  msgstr ""
48
 
49
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
50
  #, php-format
51
  msgid ""
52
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -54,7 +131,7 @@ msgid ""
54
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
55
  msgstr ""
56
 
57
- #: ../classes/es-register.php:1002
58
  #, php-format
59
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
60
  msgstr ""
@@ -99,17 +176,173 @@ msgstr ""
99
  msgid "Subscribers Group to send post notification to"
100
  msgstr ""
101
 
102
- #: ../sentmail/sentmail-show.php:212
103
  msgid ""
104
  "<strong>Note:</strong> If you delete record for the emails with Status = "
105
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
106
  "deleted too and email will not be sent."
107
  msgstr ""
108
 
109
- #: ../settings/settings-edit.php:566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  msgid "Please enter valid email count."
111
  msgstr ""
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  #: ../classes/es-common.php:13
114
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
115
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
@@ -154,80 +387,81 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">por tarea CRON</span>"
154
  msgid "<span style=\"color:#993399;\">Immediately</span>"
155
  msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
156
 
157
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
158
- #: register.php:788
159
  msgid "Email Subscribers"
160
  msgstr "Email Subscribers"
161
 
162
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
163
  #: subscribers/view-subscriber-show.php:242
164
  msgid "Subscribers"
165
  msgstr "Suscriptores"
166
 
167
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
168
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
169
  msgid "Templates"
170
  msgstr "Plantillas"
171
 
172
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
173
  #: 370 ../notification/notification-show.php:52
174
  msgid "Post Notifications"
175
  msgstr "Notificar Entrada"
176
 
177
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
178
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
179
  msgid "Newsletters"
180
  msgstr "Boletín Informativo"
181
 
182
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
183
  #: settings/settings-edit.php:42
184
  msgid "Settings"
185
  msgstr "Configuración"
186
 
187
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
188
  #: sentmail/sentmail-show.php:93
189
  msgid "Reports"
190
  msgstr "Informes"
191
 
192
- #: ../classes/es-register.php:183
193
  msgid "Help & Info"
194
  msgstr "Ayuda e Información"
195
 
196
- #: ../classes/es-register.php:184
197
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
198
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e información</span>"
199
 
200
- #: ../classes/es-register.php:195
201
  msgctxt "view-subscriber-enhanced-select"
202
  msgid "Please enter subscriber email address."
203
  msgstr "Por favor introduce la dirección de correo del suscriptor."
204
 
205
- #: ../classes/es-register.php:196
206
  msgctxt "view-subscriber-enhanced-select"
207
  msgid "Please select subscriber email status."
208
  msgstr "Por favor selecciona el estado de correo de suscriptor."
209
 
210
- #: ../classes/es-register.php:197
211
  msgctxt "view-subscriber-enhanced-select"
212
  msgid "Please select or create group for this subscriber."
213
  msgstr "Selecciona o crea un grupo para este suscriptor."
214
 
215
- #: ../classes/es-register.php:198
216
  msgctxt "view-subscriber-enhanced-select"
217
  msgid "Do you want to delete this record?"
218
  msgstr "¿Quieres eliminar a este suscriptor?"
219
 
220
- #: ../classes/es-register.php:199
221
  msgctxt "view-subscriber-enhanced-select"
222
  msgid "Please select the bulk action."
223
  msgstr "Por favor selecciona la acción en bloque."
224
 
225
- #: ../classes/es-register.php:200
226
  msgctxt "view-subscriber-enhanced-select"
227
  msgid "Are you sure you want to delete selected records?"
228
  msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
229
 
230
- #: ../classes/es-register.php:201
231
  msgctxt "view-subscriber-enhanced-select"
232
  msgid ""
233
  "Do you want to resend confirmation email? Also please note, this will update "
@@ -236,29 +470,29 @@ msgstr ""
236
  "¿Quieres volver a enviar el correo de confirmación? También ten en cuenta "
237
  "que esto actualizará el estado actual del suscriptor a \"Sin confirmar\"."
238
 
239
- #: ../classes/es-register.php:202
240
  msgctxt "view-subscriber-enhanced-select"
241
  msgid "Please select new subscriber group."
242
  msgstr ""
243
  "Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
244
  "seleccionados."
245
 
246
- #: ../classes/es-register.php:203
247
  msgctxt "view-subscriber-enhanced-select"
248
  msgid "Please select new status for subscribers"
249
  msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
250
 
251
- #: ../classes/es-register.php:204
252
  msgctxt "view-subscriber-enhanced-select"
253
  msgid "Do you want to update subscribers group?"
254
  msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
255
 
256
- #: ../classes/es-register.php:205
257
  msgctxt "view-subscriber-enhanced-select"
258
  msgid "Do you want to update subscribers status?"
259
  msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
260
 
261
- #: ../classes/es-register.php:206
262
  msgctxt "view-subscriber-enhanced-select"
263
  msgid ""
264
  "Please select only csv file. Please check official website for csv structure."
@@ -267,39 +501,39 @@ msgstr ""
267
  "Selecciona el fichero de entrada en formato CSV.\n"
268
  "En el enlace de abajo puedes ver que estructura debe tener."
269
 
270
- #: ../classes/es-register.php:214
271
  msgctxt "notification-enhanced-select"
272
  msgid "Please select subscribers group."
273
  msgstr "Por favor selecciona el grupo de suscriptores."
274
 
275
- #: ../classes/es-register.php:215
276
  msgctxt "notification-enhanced-select"
277
  msgid "Please select notification mail subject. Use templates menu to create new."
278
  msgstr ""
279
  "Por favor selecciona el asunto del correo de notificación, Utiliza el menú "
280
  "plantillas para crear uno nuevo."
281
 
282
- #: ../classes/es-register.php:216
283
  msgctxt "notification-enhanced-select"
284
  msgid "Please select notification status."
285
  msgstr "Por favor selecciona el modo de envío."
286
 
287
- #: ../classes/es-register.php:217
288
  msgctxt "notification-enhanced-select"
289
  msgid "Do you want to delete this record?"
290
  msgstr "¿Quieres borrar este registro?"
291
 
292
- #: ../classes/es-register.php:225
293
  msgctxt "sendmail-enhanced-select"
294
  msgid "Please select your mail subject."
295
  msgstr "Por favor selecciona el asunto de tu correo."
296
 
297
- #: ../classes/es-register.php:226
298
  msgctxt "sendmail-enhanced-select"
299
  msgid "Please select your mail type."
300
  msgstr "Por favor selecciona tu tipo de correo."
301
 
302
- #: ../classes/es-register.php:227
303
  msgctxt "sendmail-enhanced-select"
304
  msgid ""
305
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -308,39 +542,39 @@ msgstr ""
308
  "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
309
  "enviemos esto."
310
 
311
- #: ../classes/es-register.php:235
312
  msgctxt "sentmail-enhanced-select"
313
  msgid "Do you want to delete this record?"
314
  msgstr "¿Quieres borrar este registro?"
315
 
316
- #: ../classes/es-register.php:236
317
  msgctxt "sentmail-enhanced-select"
318
  msgid "Do you want to delete all records except latest 10?"
319
  msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
320
 
321
- #: ../classes/es-register.php:244
322
  msgctxt "cron-enhanced-select"
323
  msgid "Please select enter number of mails you want to send per hour/trigger."
324
  msgstr ""
325
  "Por favor, introduce el número de correos que quieres enviar por "
326
  "hora/disparador."
327
 
328
- #: ../classes/es-register.php:245
329
  msgctxt "cron-enhanced-select"
330
  msgid "Please enter the mail count, only number."
331
  msgstr "Por favor, introduce el máximo de correos, sólo numérico."
332
 
333
- #: ../classes/es-register.php:258
334
  msgctxt "widget-page-enhanced-select"
335
  msgid "Please enter email address"
336
  msgstr "Por favor introduce dirección de correo electrónico"
337
 
338
- #: ../classes/es-register.php:259
339
  msgctxt "widget-page-enhanced-select"
340
  msgid "Successfully Subscribed."
341
  msgstr "Suscripción correcta."
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,27 +585,27 @@ msgstr ""
351
  "suscripción. Si no ves el correo en unos minutos, consulta la carpeta "
352
  "spam/correo no deseado."
353
 
354
- #: ../classes/es-register.php:261
355
  msgctxt "widget-page-enhanced-select"
356
  msgid "Email Address already exists!"
357
  msgstr "¡Esa dirección de correo electrónico ya existe!"
358
 
359
- #: ../classes/es-register.php:262
360
  msgctxt "widget-page-enhanced-select"
361
  msgid "Oops.. Unexpected error occurred."
362
  msgstr "Ups. Ha sucedido un error inesperado."
363
 
364
- #: ../classes/es-register.php:263
365
  msgctxt "widget-page-enhanced-select"
366
  msgid "Invalid email address"
367
  msgstr "Dirección de correo electrónico no válida"
368
 
369
- #: ../classes/es-register.php:264
370
  msgctxt "widget-page-enhanced-select"
371
  msgid "Please try after some time"
372
  msgstr "Por favor, inténtalo transcurridos unos minutos"
373
 
374
- #: ../classes/es-register.php:753
375
  msgid ""
376
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
377
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -384,121 +618,121 @@ msgstr ""
384
  "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
385
  "Icegram!"
386
 
387
- #: ../classes/es-register.php:767
388
  #, php-format
389
  msgid "Email Subscribers version: <strong>%s</strong>"
390
  msgstr "Email Subscribers versión: <strong>%s</strong>"
391
 
392
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
393
  msgid "Add new Template"
394
  msgstr "Añadir nueva Plantilla"
395
 
396
- #: ../classes/es-register.php:780
397
  msgid "Edit Templates"
398
  msgstr "Editar Plantillas"
399
 
400
- #: ../classes/es-register.php:781
401
  msgid "New Templates"
402
  msgstr "Nuevas Plantillas"
403
 
404
- #: ../classes/es-register.php:783
405
  msgid "View Templates"
406
  msgstr "Ver Plantillas"
407
 
408
- #: ../classes/es-register.php:784
409
  msgid "Search Templates"
410
  msgstr "Buscar Plantillas"
411
 
412
- #: ../classes/es-register.php:785
413
  msgid "No Templates found"
414
  msgstr "No se han encontrado Plantillas"
415
 
416
- #: ../classes/es-register.php:786
417
  msgid "No Templates found in Trash"
418
  msgstr "No se han encontrado Plantillas en la papelera"
419
 
420
- #: ../classes/es-register.php:789
421
  msgid "Thumbnail (For Visual Representation only)"
422
  msgstr "Miniatura (Para representación visual solo)"
423
 
424
- #: ../classes/es-register.php:790
425
  msgid "Set thumbnail"
426
  msgstr "Establecer miniatura"
427
 
428
- #: ../classes/es-register.php:827
429
  msgid "Template Type"
430
  msgstr "Tipo Plantilla"
431
 
432
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
433
  msgid "Thumbnail"
434
  msgstr "Pequeña"
435
 
436
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
437
  #: sentmail/sentmail-show.php:121
438
  msgid "Preview"
439
  msgstr "Vista previa"
440
 
441
- #: ../classes/es-register.php:907
442
  msgid "Select your Email Template Type"
443
  msgstr "Selecciona tu tipo de Plantilla de Correo"
444
 
445
- #: ../classes/es-register.php:909
446
  msgid "Newsletter"
447
  msgstr "Boletín informativo"
448
 
449
- #: ../classes/es-register.php:910
450
  msgid "Post Notification"
451
  msgstr "Notificación de nueva Entrada"
452
 
453
- #: ../classes/es-register.php:959
454
  msgid "Preview Template"
455
  msgstr "Previsualizar Plantilla"
456
 
457
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
458
- #: register.php:994 ../classes/es-register.php:1002
459
  msgid "Available Keywords"
460
  msgstr "Campos disponibles"
461
 
462
- #: ../classes/es-register.php:979
463
  #, php-format
464
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
465
  msgstr "<br/><br/>%s para Lista de Correo: {{NAME}}, {{EMAIL}}"
466
 
467
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
468
  msgid "Name"
469
  msgstr "Nombre"
470
 
471
- #: ../classes/es-register.php:1044
472
  msgid "Email *"
473
  msgstr "Email *"
474
 
475
- #: ../classes/es-register.php:1053 ../help/help.php:202
476
  msgid "Subscribe"
477
  msgstr "Suscribirse"
478
 
479
- #: ../classes/es-register.php:1157
480
  msgid "Widget Title"
481
  msgstr "Título Widget"
482
 
483
- #: ../classes/es-register.php:1161
484
  msgid "Short description about subscription form"
485
  msgstr "Descripción corta sobre el formulario de suscripción"
486
 
487
- #: ../classes/es-register.php:1165
488
  msgid "Display Name Field"
489
  msgstr "Mostrar el campo Nombre"
490
 
491
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
492
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
493
  msgid "YES"
494
  msgstr "SÍ"
495
 
496
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
497
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
498
  msgid "NO"
499
  msgstr "NO"
500
 
501
- #: ../classes/es-register.php:1172
502
  msgid "Subscriber Group"
503
  msgstr "Grupos de suscriptores"
504
 
@@ -971,7 +1205,7 @@ msgstr "Ayuda"
971
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
972
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
973
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
974
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
975
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
976
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
977
  msgid "Select"
@@ -1037,8 +1271,8 @@ msgstr "Añadir al programador de tareas (CRON)"
1037
  msgid "Disable email notification"
1038
  msgstr "Deshabilitar notificación por correo"
1039
 
1040
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1041
- #: 291 ../subscribers/view-subscriber-edit.php:191
1042
  msgid "Save"
1043
  msgstr "Guardar"
1044
 
@@ -1163,20 +1397,20 @@ msgstr "Selecciona Tipo Correo"
1163
  msgid "Send email via cron job"
1164
  msgstr "Envío diferido (programador de tareas CRON)"
1165
 
1166
- #: ../sendmail/sendmail.php:147
1167
  msgid "Select Subscribers group to Send Email"
1168
  msgstr "Selecciona Grupo de suscriptores a los que Enviar Correo"
1169
 
1170
- #: ../sendmail/sendmail.php:179
1171
  msgid "Recipients : 0 "
1172
  msgstr "Destinatarios: 0 "
1173
 
1174
- #: ../sendmail/sendmail.php:181
1175
  #, php-format
1176
  msgid "Recipients : %s"
1177
  msgstr "Destinatarios: %s"
1178
 
1179
- #: ../sendmail/sendmail.php:184
1180
  msgid ""
1181
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1182
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1187,11 +1421,11 @@ msgstr ""
1187
  "correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
1188
  "información."
1189
 
1190
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1191
  msgid "Send Email"
1192
  msgstr "Enviar Boletín"
1193
 
1194
- #: ../sendmail/sendmail.php:201
1195
  msgid "Reset"
1196
  msgstr "Reiniciar"
1197
 
@@ -1486,23 +1720,10 @@ msgstr ""
1486
  msgid "Sent Report Subject"
1487
  msgstr "ASUNTO: Informes"
1488
 
1489
- #: ../settings/settings-edit.php:166
1490
- msgid "Subject for the email report which will be sent to admin."
1491
- msgstr "Asunto del correo que se enviará al administrador con los informes."
1492
-
1493
  #: ../settings/settings-edit.php:172
1494
  msgid "Sent Report Content"
1495
  msgstr "TEXTO: Informes"
1496
 
1497
- #: ../settings/settings-edit.php:173
1498
- msgid ""
1499
- "Content for the email report which will be sent to admin.<br />Available "
1500
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1501
- msgstr ""
1502
- "Contenido para el correo de informe que se enviará al administrador.<br "
1503
- "/>Palabras clave disponibles: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1504
- "{{ENDTIME}}"
1505
-
1506
  #: ../settings/settings-edit.php:184
1507
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1508
  msgstr "ASUNTO: Confirmar cuenta correo"
@@ -1711,25 +1932,25 @@ msgid ""
1711
  "modify it."
1712
  msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
1713
 
1714
- #: ../settings/settings-edit.php:376
1715
  msgid "Email Count"
1716
  msgstr "Número Correos"
1717
 
1718
- #: ../settings/settings-edit.php:377
1719
  msgid "Number of emails that you want to trigger per hour."
1720
  msgstr "Número de correos que quieres que se envíen por hora."
1721
 
1722
- #: ../settings/settings-edit.php:382
1723
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1724
  msgstr ""
1725
  "(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
1726
  "hora para mayor seguridad)"
1727
 
1728
- #: ../settings/settings-edit.php:387
1729
  msgid "Cron Report"
1730
  msgstr "Informes de CRON"
1731
 
1732
- #: ../settings/settings-edit.php:388
1733
  msgid ""
1734
  "Email to admin whenever a cron URL is triggered from your server.<br "
1735
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1737,13 +1958,13 @@ msgstr ""
1737
  "Correo al administrador cuando una URL cron sea activada desde tu servidor."
1738
  "<br />Palabras clave disponibles: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1739
 
1740
- #: ../settings/settings-edit.php:398
1741
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1742
  msgstr ""
1743
  "¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
1744
  "automáticamente? ¿Y cómo se configura una tarea Cron?"
1745
 
1746
- #: ../settings/settings-edit.php:399
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1749
  "schedule-cron-emails/?"
@@ -1755,7 +1976,7 @@ msgstr ""
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
1756
  "CRON?</a>"
1757
 
1758
- #: ../settings/settings-edit.php:400
1759
  msgid ""
1760
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1761
  "schedule-cron-emails-in-cpanel/?"
@@ -1767,7 +1988,7 @@ msgstr ""
1767
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1768
  "tareas CRON desde cPanel</a>"
1769
 
1770
- #: ../settings/settings-edit.php:401
1771
  msgid ""
1772
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1773
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1779,7 +2000,7 @@ msgstr ""
1779
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1780
  "tareas CRON desde Plesk</a>"
1781
 
1782
- #: ../settings/settings-edit.php:402
1783
  msgid ""
1784
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1785
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1791,19 +2012,19 @@ msgstr ""
1791
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
1792
  "Hosting no soporta tareas de CRON?</a>"
1793
 
1794
- #: ../settings/settings-edit.php:517
1795
  msgid "Please enter sender of notifications from name."
1796
  msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
1797
 
1798
- #: ../settings/settings-edit.php:522
1799
  msgid "Please enter sender of notifications from email."
1800
  msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
1801
 
1802
- #: ../settings/settings-edit.php:580
1803
  msgid "Settings Saved."
1804
  msgstr "Configuración guardada."
1805
 
1806
- #: ../settings/settings-edit.php:583
1807
  msgid "Oops, unable to update."
1808
  msgstr "Vaya, no se ha podido actualizar."
1809
 
@@ -2269,7 +2490,7 @@ msgstr ""
2269
  "notifica automáticamente a suscriptores cuando se publiquen nuevas entradas "
2270
  "en el blog."
2271
 
2272
- #: ../email-subscribers.php:95
2273
  msgctxt "timezone date format"
2274
  msgid "Y-m-d H:i:s"
2275
  msgstr "AAAA-mm-dd HH:mm:ss"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:04 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Spanish (Spain)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
+ #: ../classes/es-register.php:191
27
+ msgid "Go Pro"
28
+ msgstr ""
29
+
30
+ #: ../classes/es-register.php:192
31
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
32
+ msgstr ""
33
+
34
+ #: ../classes/es-register.php:699
35
+ msgid "No, I don't like it"
36
+ msgstr ""
37
+
38
+ #: ../classes/es-register.php:705
39
+ msgctxt "timezone date format"
40
+ msgid "Y-m-d"
41
+ msgstr ""
42
+
43
+ #: ../classes/es-register.php:850
44
+ msgid "What do you hate about list building and email marketing?"
45
+ msgstr ""
46
+
47
+ #: ../classes/es-register.php:851
48
+ msgid "Hey, glad to see you!"
49
+ msgstr ""
50
+
51
+ #: ../classes/es-register.php:852
52
+ msgid ""
53
+ "I am on a daring quest to solve your biggest problems around list building "
54
+ "and email marketing. "
55
+ msgstr ""
56
+
57
+ #: ../classes/es-register.php:853
58
+ msgid ""
59
+ "So tell me, when it comes to list building and email marketing, what's your "
60
+ "biggest challenge? What's blocking your progress? "
61
+ msgstr ""
62
+
63
+ #: ../classes/es-register.php:858
64
+ msgid "And what's another big challenge? "
65
+ msgstr ""
66
+
67
+ #: ../classes/es-register.php:862
68
+ msgid "Send my problems..."
69
+ msgstr ""
70
+
71
+ #: ../classes/es-register.php:863
72
+ msgid "No, I don't have problems"
73
+ msgstr ""
74
+
75
+ #: ../classes/es-register.php:865
76
+ msgid "Fill the above field first"
77
+ msgstr ""
78
+
79
+ #: ../classes/es-register.php:874
80
+ msgid "Gosh... I hear you mate... "
81
+ msgstr ""
82
+
83
+ #: ../classes/es-register.php:875
84
  msgid ""
85
+ "Enter your email below, and you will be the first to know when we solve "
86
+ "those problems. "
87
+ msgstr ""
88
+
89
+ #: ../classes/es-register.php:879
90
+ msgid "Nah, I don't like improvements"
91
+ msgstr ""
92
+
93
+ #: ../classes/es-register.php:893
94
+ msgid "I got you."
95
+ msgstr ""
96
+
97
+ #: ../classes/es-register.php:894
98
+ msgid "Will do everything I can to help you. "
99
  msgstr ""
100
 
101
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
102
+ msgid "Later. "
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
106
+ msgid "Andrea Julio "
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:902
110
+ msgid "No issues, have a nice day!"
111
+ msgstr ""
112
+
113
+ #: ../classes/es-register.php:1020
114
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
115
+ msgstr ""
116
+
117
+ #: ../classes/es-register.php:1167
118
  #, php-format
119
  msgid "%s for Post Notification: {{POSTTITLE}}"
120
  msgstr ""
121
 
122
+ #: ../classes/es-register.php:1167
123
  msgid "Available Keyword"
124
  msgstr ""
125
 
126
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
127
  #, php-format
128
  msgid ""
129
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
131
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
132
  msgstr ""
133
 
134
+ #: ../classes/es-register.php:1269
135
  #, php-format
136
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
137
  msgstr ""
176
  msgid "Subscribers Group to send post notification to"
177
  msgstr ""
178
 
179
+ #: ../sentmail/sentmail-show.php:216
180
  msgid ""
181
  "<strong>Note:</strong> If you delete record for the emails with Status = "
182
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
183
  "deleted too and email will not be sent."
184
  msgstr ""
185
 
186
+ #: ../settings/settings-edit.php:166
187
+ msgid ""
188
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
189
+ "only if sending email via immediately)"
190
+ msgstr ""
191
+
192
+ #: ../settings/settings-edit.php:173
193
+ msgid ""
194
+ "Content for the email report which will be sent to admin.<br />Available "
195
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
196
+ "sent only if sending email via immediately)"
197
+ msgstr ""
198
+
199
+ #: ../settings/settings-edit.php:393
200
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
201
+ msgstr ""
202
+
203
+ #: ../settings/settings-edit.php:569
204
  msgid "Please enter valid email count."
205
  msgstr ""
206
 
207
+ #: ../pricing/pricing.php:157
208
+ msgid "Go a notch higher"
209
+ msgstr ""
210
+
211
+ #: ../pricing/pricing.php:158
212
+ msgid "Get the Email Subscribers Pro Plugin at"
213
+ msgstr ""
214
+
215
+ #: ../pricing/pricing.php:162
216
+ msgid "month"
217
+ msgstr ""
218
+
219
+ #: ../pricing/pricing.php:163
220
+ msgid "Sign up for monthly"
221
+ msgstr ""
222
+
223
+ #: ../pricing/pricing.php:166
224
+ msgid "year"
225
+ msgstr ""
226
+
227
+ #: ../pricing/pricing.php:167
228
+ msgid "Sign up for yearly"
229
+ msgstr ""
230
+
231
+ #: ../pricing/pricing.php:171
232
+ msgid "Get more with Email Subscribers Pro"
233
+ msgstr ""
234
+
235
+ #: ../pricing/pricing.php:173
236
+ msgid "All features of Email Subscribers free plugin + everything below:"
237
+ msgstr ""
238
+
239
+ #: ../pricing/pricing.php:176
240
+ msgid "Protect your list from bot attacks"
241
+ msgstr ""
242
+
243
+ #: ../pricing/pricing.php:177
244
+ msgid "Use "
245
+ msgstr ""
246
+
247
+ #: ../pricing/pricing.php:177
248
+ msgid "captcha"
249
+ msgstr ""
250
+
251
+ #: ../pricing/pricing.php:177
252
+ msgid ""
253
+ "to protect your email list from bots. The simple maths captcha helps "
254
+ "identifying bots from humans and eliminates spam signups."
255
+ msgstr ""
256
+
257
+ #: ../pricing/pricing.php:180
258
+ msgid "Check email status & increase email success rate"
259
+ msgstr ""
260
+
261
+ #: ../pricing/pricing.php:181
262
+ msgid "Double check the status of the emails addresses and increase "
263
+ msgstr ""
264
+
265
+ #: ../pricing/pricing.php:181
266
+ msgid "email success rate"
267
+ msgstr ""
268
+
269
+ #: ../pricing/pricing.php:181
270
+ msgid "of your email campaign. "
271
+ msgstr ""
272
+
273
+ #: ../pricing/pricing.php:187
274
+ msgid "Fullproof email deliverability"
275
+ msgstr ""
276
+
277
+ #: ../pricing/pricing.php:188
278
+ msgid ""
279
+ "Reduce the risk of emails ending in trash or spam. Increase email "
280
+ "deliverability by double checking emails for their "
281
+ msgstr ""
282
+
283
+ #: ../pricing/pricing.php:188
284
+ msgid "spam score"
285
+ msgstr ""
286
+
287
+ #: ../pricing/pricing.php:188
288
+ msgid "before hitting send."
289
+ msgstr ""
290
+
291
+ #: ../pricing/pricing.php:191
292
+ msgid "Track email leads in Google"
293
+ msgstr ""
294
+
295
+ #: ../pricing/pricing.php:192
296
+ msgid "Insert "
297
+ msgstr ""
298
+
299
+ #: ../pricing/pricing.php:192
300
+ msgid "UTM tracking"
301
+ msgstr ""
302
+
303
+ #: ../pricing/pricing.php:192
304
+ msgid ""
305
+ "in all your email CTA’s and track the effectiveness of your emails directly "
306
+ "within Google. Know which/ how many leads landed up from your emails and "
307
+ "tweak emails for better performance."
308
+ msgstr ""
309
+
310
+ #: ../pricing/pricing.php:199
311
+ msgid "Save time, use readymade email templates"
312
+ msgstr ""
313
+
314
+ #: ../pricing/pricing.php:200
315
+ msgid ""
316
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
317
+ "elegant templates</strong> to send your next email campaign."
318
+ msgstr ""
319
+
320
+ #: ../pricing/pricing.php:203
321
+ msgid "Customize confirmation and unsubscribe page"
322
+ msgstr ""
323
+
324
+ #: ../pricing/pricing.php:204
325
+ msgid ""
326
+ "Communicate with subscribers. Redirect them to beautifully designed "
327
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
328
+ msgstr ""
329
+
330
+ #: ../pricing/pricing.php:211
331
+ msgid "Coming soon..."
332
+ msgstr ""
333
+
334
+ #: ../pricing/pricing.php:213
335
+ msgid "Spam testing"
336
+ msgstr ""
337
+
338
+ #: ../pricing/pricing.php:214
339
+ msgid "Bounce handling"
340
+ msgstr ""
341
+
342
+ #: ../pricing/pricing.php:215
343
+ msgid "Advanced reporting"
344
+ msgstr ""
345
+
346
  #: ../classes/es-common.php:13
347
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
348
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
387
  msgid "<span style=\"color:#993399;\">Immediately</span>"
388
  msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
389
 
390
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
391
+ #: register.php:1055
392
  msgid "Email Subscribers"
393
  msgstr "Email Subscribers"
394
 
395
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
396
  #: subscribers/view-subscriber-show.php:242
397
  msgid "Subscribers"
398
  msgstr "Suscriptores"
399
 
400
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
401
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
402
+ #: 1049
403
  msgid "Templates"
404
  msgstr "Plantillas"
405
 
406
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
407
  #: 370 ../notification/notification-show.php:52
408
  msgid "Post Notifications"
409
  msgstr "Notificar Entrada"
410
 
411
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
412
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
413
  msgid "Newsletters"
414
  msgstr "Boletín Informativo"
415
 
416
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
417
  #: settings/settings-edit.php:42
418
  msgid "Settings"
419
  msgstr "Configuración"
420
 
421
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
422
  #: sentmail/sentmail-show.php:93
423
  msgid "Reports"
424
  msgstr "Informes"
425
 
426
+ #: ../classes/es-register.php:187
427
  msgid "Help & Info"
428
  msgstr "Ayuda e Información"
429
 
430
+ #: ../classes/es-register.php:188
431
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
432
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e información</span>"
433
 
434
+ #: ../classes/es-register.php:204
435
  msgctxt "view-subscriber-enhanced-select"
436
  msgid "Please enter subscriber email address."
437
  msgstr "Por favor introduce la dirección de correo del suscriptor."
438
 
439
+ #: ../classes/es-register.php:205
440
  msgctxt "view-subscriber-enhanced-select"
441
  msgid "Please select subscriber email status."
442
  msgstr "Por favor selecciona el estado de correo de suscriptor."
443
 
444
+ #: ../classes/es-register.php:206
445
  msgctxt "view-subscriber-enhanced-select"
446
  msgid "Please select or create group for this subscriber."
447
  msgstr "Selecciona o crea un grupo para este suscriptor."
448
 
449
+ #: ../classes/es-register.php:207
450
  msgctxt "view-subscriber-enhanced-select"
451
  msgid "Do you want to delete this record?"
452
  msgstr "¿Quieres eliminar a este suscriptor?"
453
 
454
+ #: ../classes/es-register.php:208
455
  msgctxt "view-subscriber-enhanced-select"
456
  msgid "Please select the bulk action."
457
  msgstr "Por favor selecciona la acción en bloque."
458
 
459
+ #: ../classes/es-register.php:209
460
  msgctxt "view-subscriber-enhanced-select"
461
  msgid "Are you sure you want to delete selected records?"
462
  msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
463
 
464
+ #: ../classes/es-register.php:210
465
  msgctxt "view-subscriber-enhanced-select"
466
  msgid ""
467
  "Do you want to resend confirmation email? Also please note, this will update "
470
  "¿Quieres volver a enviar el correo de confirmación? También ten en cuenta "
471
  "que esto actualizará el estado actual del suscriptor a \"Sin confirmar\"."
472
 
473
+ #: ../classes/es-register.php:211
474
  msgctxt "view-subscriber-enhanced-select"
475
  msgid "Please select new subscriber group."
476
  msgstr ""
477
  "Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
478
  "seleccionados."
479
 
480
+ #: ../classes/es-register.php:212
481
  msgctxt "view-subscriber-enhanced-select"
482
  msgid "Please select new status for subscribers"
483
  msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
484
 
485
+ #: ../classes/es-register.php:213
486
  msgctxt "view-subscriber-enhanced-select"
487
  msgid "Do you want to update subscribers group?"
488
  msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
489
 
490
+ #: ../classes/es-register.php:214
491
  msgctxt "view-subscriber-enhanced-select"
492
  msgid "Do you want to update subscribers status?"
493
  msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
494
 
495
+ #: ../classes/es-register.php:215
496
  msgctxt "view-subscriber-enhanced-select"
497
  msgid ""
498
  "Please select only csv file. Please check official website for csv structure."
501
  "Selecciona el fichero de entrada en formato CSV.\n"
502
  "En el enlace de abajo puedes ver que estructura debe tener."
503
 
504
+ #: ../classes/es-register.php:223
505
  msgctxt "notification-enhanced-select"
506
  msgid "Please select subscribers group."
507
  msgstr "Por favor selecciona el grupo de suscriptores."
508
 
509
+ #: ../classes/es-register.php:224
510
  msgctxt "notification-enhanced-select"
511
  msgid "Please select notification mail subject. Use templates menu to create new."
512
  msgstr ""
513
  "Por favor selecciona el asunto del correo de notificación, Utiliza el menú "
514
  "plantillas para crear uno nuevo."
515
 
516
+ #: ../classes/es-register.php:225
517
  msgctxt "notification-enhanced-select"
518
  msgid "Please select notification status."
519
  msgstr "Por favor selecciona el modo de envío."
520
 
521
+ #: ../classes/es-register.php:226
522
  msgctxt "notification-enhanced-select"
523
  msgid "Do you want to delete this record?"
524
  msgstr "¿Quieres borrar este registro?"
525
 
526
+ #: ../classes/es-register.php:234
527
  msgctxt "sendmail-enhanced-select"
528
  msgid "Please select your mail subject."
529
  msgstr "Por favor selecciona el asunto de tu correo."
530
 
531
+ #: ../classes/es-register.php:235
532
  msgctxt "sendmail-enhanced-select"
533
  msgid "Please select your mail type."
534
  msgstr "Por favor selecciona tu tipo de correo."
535
 
536
+ #: ../classes/es-register.php:236
537
  msgctxt "sendmail-enhanced-select"
538
  msgid ""
539
  "Have you double checked your selected group? If so, let's go ahead and send "
542
  "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
543
  "enviemos esto."
544
 
545
+ #: ../classes/es-register.php:244
546
  msgctxt "sentmail-enhanced-select"
547
  msgid "Do you want to delete this record?"
548
  msgstr "¿Quieres borrar este registro?"
549
 
550
+ #: ../classes/es-register.php:245
551
  msgctxt "sentmail-enhanced-select"
552
  msgid "Do you want to delete all records except latest 10?"
553
  msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
554
 
555
+ #: ../classes/es-register.php:253
556
  msgctxt "cron-enhanced-select"
557
  msgid "Please select enter number of mails you want to send per hour/trigger."
558
  msgstr ""
559
  "Por favor, introduce el número de correos que quieres enviar por "
560
  "hora/disparador."
561
 
562
+ #: ../classes/es-register.php:254
563
  msgctxt "cron-enhanced-select"
564
  msgid "Please enter the mail count, only number."
565
  msgstr "Por favor, introduce el máximo de correos, sólo numérico."
566
 
567
+ #: ../classes/es-register.php:267
568
  msgctxt "widget-page-enhanced-select"
569
  msgid "Please enter email address"
570
  msgstr "Por favor introduce dirección de correo electrónico"
571
 
572
+ #: ../classes/es-register.php:268
573
  msgctxt "widget-page-enhanced-select"
574
  msgid "Successfully Subscribed."
575
  msgstr "Suscripción correcta."
576
 
577
+ #: ../classes/es-register.php:269
578
  msgctxt "widget-page-enhanced-select"
579
  msgid ""
580
  "Your subscription was successful! Kindly check your mailbox and confirm your "
585
  "suscripción. Si no ves el correo en unos minutos, consulta la carpeta "
586
  "spam/correo no deseado."
587
 
588
+ #: ../classes/es-register.php:270
589
  msgctxt "widget-page-enhanced-select"
590
  msgid "Email Address already exists!"
591
  msgstr "¡Esa dirección de correo electrónico ya existe!"
592
 
593
+ #: ../classes/es-register.php:271
594
  msgctxt "widget-page-enhanced-select"
595
  msgid "Oops.. Unexpected error occurred."
596
  msgstr "Ups. Ha sucedido un error inesperado."
597
 
598
+ #: ../classes/es-register.php:272
599
  msgctxt "widget-page-enhanced-select"
600
  msgid "Invalid email address"
601
  msgstr "Dirección de correo electrónico no válida"
602
 
603
+ #: ../classes/es-register.php:273
604
  msgctxt "widget-page-enhanced-select"
605
  msgid "Please try after some time"
606
  msgstr "Por favor, inténtalo transcurridos unos minutos"
607
 
608
+ #: ../classes/es-register.php:698
609
  msgid ""
610
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
611
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
618
  "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
619
  "Icegram!"
620
 
621
+ #: ../classes/es-register.php:1034
622
  #, php-format
623
  msgid "Email Subscribers version: <strong>%s</strong>"
624
  msgstr "Email Subscribers versión: <strong>%s</strong>"
625
 
626
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
627
  msgid "Add new Template"
628
  msgstr "Añadir nueva Plantilla"
629
 
630
+ #: ../classes/es-register.php:1047
631
  msgid "Edit Templates"
632
  msgstr "Editar Plantillas"
633
 
634
+ #: ../classes/es-register.php:1048
635
  msgid "New Templates"
636
  msgstr "Nuevas Plantillas"
637
 
638
+ #: ../classes/es-register.php:1050
639
  msgid "View Templates"
640
  msgstr "Ver Plantillas"
641
 
642
+ #: ../classes/es-register.php:1051
643
  msgid "Search Templates"
644
  msgstr "Buscar Plantillas"
645
 
646
+ #: ../classes/es-register.php:1052
647
  msgid "No Templates found"
648
  msgstr "No se han encontrado Plantillas"
649
 
650
+ #: ../classes/es-register.php:1053
651
  msgid "No Templates found in Trash"
652
  msgstr "No se han encontrado Plantillas en la papelera"
653
 
654
+ #: ../classes/es-register.php:1056
655
  msgid "Thumbnail (For Visual Representation only)"
656
  msgstr "Miniatura (Para representación visual solo)"
657
 
658
+ #: ../classes/es-register.php:1057
659
  msgid "Set thumbnail"
660
  msgstr "Establecer miniatura"
661
 
662
+ #: ../classes/es-register.php:1094
663
  msgid "Template Type"
664
  msgstr "Tipo Plantilla"
665
 
666
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
667
  msgid "Thumbnail"
668
  msgstr "Pequeña"
669
 
670
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
671
  #: sentmail/sentmail-show.php:121
672
  msgid "Preview"
673
  msgstr "Vista previa"
674
 
675
+ #: ../classes/es-register.php:1174
676
  msgid "Select your Email Template Type"
677
  msgstr "Selecciona tu tipo de Plantilla de Correo"
678
 
679
+ #: ../classes/es-register.php:1176
680
  msgid "Newsletter"
681
  msgstr "Boletín informativo"
682
 
683
+ #: ../classes/es-register.php:1177
684
  msgid "Post Notification"
685
  msgstr "Notificación de nueva Entrada"
686
 
687
+ #: ../classes/es-register.php:1226
688
  msgid "Preview Template"
689
  msgstr "Previsualizar Plantilla"
690
 
691
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
692
+ #: register.php:1261 ../classes/es-register.php:1269
693
  msgid "Available Keywords"
694
  msgstr "Campos disponibles"
695
 
696
+ #: ../classes/es-register.php:1246
697
  #, php-format
698
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
699
  msgstr "<br/><br/>%s para Lista de Correo: {{NAME}}, {{EMAIL}}"
700
 
701
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
702
  msgid "Name"
703
  msgstr "Nombre"
704
 
705
+ #: ../classes/es-register.php:1311
706
  msgid "Email *"
707
  msgstr "Email *"
708
 
709
+ #: ../classes/es-register.php:1320 ../help/help.php:202
710
  msgid "Subscribe"
711
  msgstr "Suscribirse"
712
 
713
+ #: ../classes/es-register.php:1424
714
  msgid "Widget Title"
715
  msgstr "Título Widget"
716
 
717
+ #: ../classes/es-register.php:1428
718
  msgid "Short description about subscription form"
719
  msgstr "Descripción corta sobre el formulario de suscripción"
720
 
721
+ #: ../classes/es-register.php:1432
722
  msgid "Display Name Field"
723
  msgstr "Mostrar el campo Nombre"
724
 
725
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
726
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
727
  msgid "YES"
728
  msgstr "SÍ"
729
 
730
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
731
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
732
  msgid "NO"
733
  msgstr "NO"
734
 
735
+ #: ../classes/es-register.php:1439
736
  msgid "Subscriber Group"
737
  msgstr "Grupos de suscriptores"
738
 
1205
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1206
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1207
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1208
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1209
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1210
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1211
  msgid "Select"
1271
  msgid "Disable email notification"
1272
  msgstr "Deshabilitar notificación por correo"
1273
 
1274
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1275
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1276
  msgid "Save"
1277
  msgstr "Guardar"
1278
 
1397
  msgid "Send email via cron job"
1398
  msgstr "Envío diferido (programador de tareas CRON)"
1399
 
1400
+ #: ../sendmail/sendmail.php:148
1401
  msgid "Select Subscribers group to Send Email"
1402
  msgstr "Selecciona Grupo de suscriptores a los que Enviar Correo"
1403
 
1404
+ #: ../sendmail/sendmail.php:180
1405
  msgid "Recipients : 0 "
1406
  msgstr "Destinatarios: 0 "
1407
 
1408
+ #: ../sendmail/sendmail.php:182
1409
  #, php-format
1410
  msgid "Recipients : %s"
1411
  msgstr "Destinatarios: %s"
1412
 
1413
+ #: ../sendmail/sendmail.php:185
1414
  msgid ""
1415
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1416
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1421
  "correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
1422
  "información."
1423
 
1424
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1425
  msgid "Send Email"
1426
  msgstr "Enviar Boletín"
1427
 
1428
+ #: ../sendmail/sendmail.php:202
1429
  msgid "Reset"
1430
  msgstr "Reiniciar"
1431
 
1720
  msgid "Sent Report Subject"
1721
  msgstr "ASUNTO: Informes"
1722
 
 
 
 
 
1723
  #: ../settings/settings-edit.php:172
1724
  msgid "Sent Report Content"
1725
  msgstr "TEXTO: Informes"
1726
 
 
 
 
 
 
 
 
 
 
1727
  #: ../settings/settings-edit.php:184
1728
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1729
  msgstr "ASUNTO: Confirmar cuenta correo"
1932
  "modify it."
1933
  msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
1934
 
1935
+ #: ../settings/settings-edit.php:377
1936
  msgid "Email Count"
1937
  msgstr "Número Correos"
1938
 
1939
+ #: ../settings/settings-edit.php:378
1940
  msgid "Number of emails that you want to trigger per hour."
1941
  msgstr "Número de correos que quieres que se envíen por hora."
1942
 
1943
+ #: ../settings/settings-edit.php:383
1944
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1945
  msgstr ""
1946
  "(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
1947
  "hora para mayor seguridad)"
1948
 
1949
+ #: ../settings/settings-edit.php:388
1950
  msgid "Cron Report"
1951
  msgstr "Informes de CRON"
1952
 
1953
+ #: ../settings/settings-edit.php:389
1954
  msgid ""
1955
  "Email to admin whenever a cron URL is triggered from your server.<br "
1956
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1958
  "Correo al administrador cuando una URL cron sea activada desde tu servidor."
1959
  "<br />Palabras clave disponibles: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1960
 
1961
+ #: ../settings/settings-edit.php:400
1962
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1963
  msgstr ""
1964
  "¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
1965
  "automáticamente? ¿Y cómo se configura una tarea Cron?"
1966
 
1967
+ #: ../settings/settings-edit.php:401
1968
  msgid ""
1969
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1970
  "schedule-cron-emails/?"
1976
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
1977
  "CRON?</a>"
1978
 
1979
+ #: ../settings/settings-edit.php:402
1980
  msgid ""
1981
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1982
  "schedule-cron-emails-in-cpanel/?"
1988
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1989
  "tareas CRON desde cPanel</a>"
1990
 
1991
+ #: ../settings/settings-edit.php:403
1992
  msgid ""
1993
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1994
  "schedule-cron-emails-in-parallels-plesk/?"
2000
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
2001
  "tareas CRON desde Plesk</a>"
2002
 
2003
+ #: ../settings/settings-edit.php:404
2004
  msgid ""
2005
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
2006
  "if-hosting-doesnt-support-cron-jobs/?"
2012
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
2013
  "Hosting no soporta tareas de CRON?</a>"
2014
 
2015
+ #: ../settings/settings-edit.php:520
2016
  msgid "Please enter sender of notifications from name."
2017
  msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
2018
 
2019
+ #: ../settings/settings-edit.php:525
2020
  msgid "Please enter sender of notifications from email."
2021
  msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
2022
 
2023
+ #: ../settings/settings-edit.php:584
2024
  msgid "Settings Saved."
2025
  msgstr "Configuración guardada."
2026
 
2027
+ #: ../settings/settings-edit.php:587
2028
  msgid "Oops, unable to update."
2029
  msgstr "Vaya, no se ha podido actualizar."
2030
 
2490
  "notifica automáticamente a suscriptores cuando se publiquen nuevas entradas "
2491
  "en el blog."
2492
 
2493
+ #: ../email-subscribers.php:96
2494
  msgctxt "timezone date format"
2495
  msgid "Y-m-d H:i:s"
2496
  msgstr "AAAA-mm-dd HH:mm:ss"
languages/email-subscribers-fr_FR.mo CHANGED
Binary file
languages/email-subscribers-fr_FR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:32 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: French (France)\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
@@ -22,24 +22,33 @@ msgstr ""
22
  "X-Loco-Target-Locale: fr_FR\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
27
  msgid "Templates"
28
  msgstr ""
29
 
30
- #: ../classes/es-register.php:201
 
 
 
 
 
 
 
 
31
  msgctxt "view-subscriber-enhanced-select"
32
  msgid ""
33
  "Do you want to resend confirmation email? Also please note, this will update "
34
  "subscriber current status to 'Unconfirmed'."
35
  msgstr ""
36
 
37
- #: ../classes/es-register.php:215
38
  msgctxt "notification-enhanced-select"
39
  msgid "Please select notification mail subject. Use templates menu to create new."
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,83 +56,152 @@ msgid ""
47
  "spam/junk folder."
48
  msgstr ""
49
 
50
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  msgid ""
52
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
53
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  msgstr ""
55
 
56
- #: ../classes/es-register.php:728
57
- msgid "Here's how"
58
  msgstr ""
59
 
60
- #: ../classes/es-register.php:728
61
- msgid "Not interested. Dismiss this."
62
  msgstr ""
63
 
64
- #: ../classes/es-register.php:767
65
  #, php-format
66
  msgid "Email Subscribers version: <strong>%s</strong>"
67
  msgstr ""
68
 
69
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
70
  msgid "Add new Template"
71
  msgstr ""
72
 
73
- #: ../classes/es-register.php:780
74
  msgid "Edit Templates"
75
  msgstr ""
76
 
77
- #: ../classes/es-register.php:781
78
  msgid "New Templates"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:783
82
  msgid "View Templates"
83
  msgstr ""
84
 
85
- #: ../classes/es-register.php:784
86
  msgid "Search Templates"
87
  msgstr ""
88
 
89
- #: ../classes/es-register.php:785
90
  msgid "No Templates found"
91
  msgstr ""
92
 
93
- #: ../classes/es-register.php:786
94
  msgid "No Templates found in Trash"
95
  msgstr ""
96
 
97
- #: ../classes/es-register.php:789
98
  msgid "Thumbnail (For Visual Representation only)"
99
  msgstr ""
100
 
101
- #: ../classes/es-register.php:790
102
  msgid "Set thumbnail"
103
  msgstr ""
104
 
105
- #: ../classes/es-register.php:827
106
  msgid "Template Type"
107
  msgstr ""
108
 
109
- #: ../classes/es-register.php:900
110
  #, php-format
111
  msgid "%s for Post Notification: {{POSTTITLE}}"
112
  msgstr ""
113
 
114
- #: ../classes/es-register.php:900
115
  msgid "Available Keyword"
116
  msgstr ""
117
 
118
- #: ../classes/es-register.php:907
119
  msgid "Select your Email Template Type"
120
  msgstr ""
121
 
122
- #: ../classes/es-register.php:959
123
  msgid "Preview Template"
124
  msgstr ""
125
 
126
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
127
  #, php-format
128
  msgid ""
129
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -131,12 +209,12 @@ msgid ""
131
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
132
  msgstr ""
133
 
134
- #: ../classes/es-register.php:979
135
  #, php-format
136
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
137
  msgstr ""
138
 
139
- #: ../classes/es-register.php:1002
140
  #, php-format
141
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
142
  msgstr ""
@@ -274,7 +352,7 @@ msgid ""
274
  "a slight variation on how your customer will view the email content."
275
  msgstr ""
276
 
277
- #: ../sentmail/sentmail-show.php:212
278
  msgid ""
279
  "<strong>Note:</strong> If you delete record for the emails with Status = "
280
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
@@ -293,10 +371,17 @@ msgid ""
293
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
294
  msgstr ""
295
 
 
 
 
 
 
 
296
  #: ../settings/settings-edit.php:173
297
  msgid ""
298
  "Content for the email report which will be sent to admin.<br />Available "
299
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
 
300
  msgstr ""
301
 
302
  #: ../settings/settings-edit.php:192
@@ -322,13 +407,17 @@ msgstr ""
322
  msgid "Templates Menu"
323
  msgstr ""
324
 
325
- #: ../settings/settings-edit.php:388
326
  msgid ""
327
  "Email to admin whenever a cron URL is triggered from your server.<br "
328
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
329
  msgstr ""
330
 
331
- #: ../settings/settings-edit.php:566
 
 
 
 
332
  msgid "Please enter valid email count."
333
  msgstr ""
334
 
@@ -372,6 +461,145 @@ msgid ""
372
  "customer will view the email content."
373
  msgstr ""
374
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
  #: ../classes/es-common.php:13
376
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
377
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
@@ -416,95 +644,95 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
416
  msgid "<span style=\"color:#993399;\">Immediately</span>"
417
  msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
418
 
419
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
420
- #: register.php:788
421
  msgid "Email Subscribers"
422
  msgstr "Email Subscribers & Newsletters"
423
 
424
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
425
  #: subscribers/view-subscriber-show.php:242
426
  msgid "Subscribers"
427
  msgstr "Abonnés"
428
 
429
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
430
  #: 370 ../notification/notification-show.php:52
431
  msgid "Post Notifications"
432
  msgstr "Notifications d'article"
433
 
434
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
435
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
436
  msgid "Newsletters"
437
  msgstr "Newsletters"
438
 
439
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
440
  #: settings/settings-edit.php:42
441
  msgid "Settings"
442
  msgstr "Paramètres"
443
 
444
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
445
  #: sentmail/sentmail-show.php:93
446
  msgid "Reports"
447
  msgstr "Rapports"
448
 
449
- #: ../classes/es-register.php:183
450
  msgid "Help & Info"
451
  msgstr "Aide & Infos"
452
 
453
- #: ../classes/es-register.php:184
454
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
455
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Info</span>"
456
 
457
- #: ../classes/es-register.php:195
458
  msgctxt "view-subscriber-enhanced-select"
459
  msgid "Please enter subscriber email address."
460
  msgstr "Entrer l'adresse e-mail de l'abonné."
461
 
462
- #: ../classes/es-register.php:196
463
  msgctxt "view-subscriber-enhanced-select"
464
  msgid "Please select subscriber email status."
465
  msgstr "Sélectionner le type d'envoi pour cet abonné."
466
 
467
- #: ../classes/es-register.php:197
468
  msgctxt "view-subscriber-enhanced-select"
469
  msgid "Please select or create group for this subscriber."
470
  msgstr "Sélectionner ou créer un groupe pour cet abonné."
471
 
472
- #: ../classes/es-register.php:198
473
  msgctxt "view-subscriber-enhanced-select"
474
  msgid "Do you want to delete this record?"
475
  msgstr "Voulez-vous supprimer cette ligne?"
476
 
477
- #: ../classes/es-register.php:199
478
  msgctxt "view-subscriber-enhanced-select"
479
  msgid "Please select the bulk action."
480
  msgstr "Veuillez sélectionner une action."
481
 
482
- #: ../classes/es-register.php:200
483
  msgctxt "view-subscriber-enhanced-select"
484
  msgid "Are you sure you want to delete selected records?"
485
  msgstr "Voulez-vous supprimer les lignes sélectionnées?"
486
 
487
- #: ../classes/es-register.php:202
488
  msgctxt "view-subscriber-enhanced-select"
489
  msgid "Please select new subscriber group."
490
  msgstr "Veuillez choisir un groupe d'abonnés."
491
 
492
- #: ../classes/es-register.php:203
493
  msgctxt "view-subscriber-enhanced-select"
494
  msgid "Please select new status for subscribers"
495
  msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
496
 
497
- #: ../classes/es-register.php:204
498
  msgctxt "view-subscriber-enhanced-select"
499
  msgid "Do you want to update subscribers group?"
500
  msgstr "Voulez-vous mettre à jour ce groupe?"
501
 
502
- #: ../classes/es-register.php:205
503
  msgctxt "view-subscriber-enhanced-select"
504
  msgid "Do you want to update subscribers status?"
505
  msgstr "Voulez vous modifier le statut de ces abonnés?"
506
 
507
- #: ../classes/es-register.php:206
508
  msgctxt "view-subscriber-enhanced-select"
509
  msgid ""
510
  "Please select only csv file. Please check official website for csv structure."
@@ -513,32 +741,32 @@ msgstr ""
513
  "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
514
  "la structure du fichier csv."
515
 
516
- #: ../classes/es-register.php:214
517
  msgctxt "notification-enhanced-select"
518
  msgid "Please select subscribers group."
519
  msgstr "Veuillez choisir un groupe."
520
 
521
- #: ../classes/es-register.php:216
522
  msgctxt "notification-enhanced-select"
523
  msgid "Please select notification status."
524
  msgstr "Veuillez sélectionner le statut de la notification."
525
 
526
- #: ../classes/es-register.php:217
527
  msgctxt "notification-enhanced-select"
528
  msgid "Do you want to delete this record?"
529
  msgstr "Voulez-vous supprimer cet enregistrement?"
530
 
531
- #: ../classes/es-register.php:225
532
  msgctxt "sendmail-enhanced-select"
533
  msgid "Please select your mail subject."
534
  msgstr "Veuillez choisir le sujet du courriel."
535
 
536
- #: ../classes/es-register.php:226
537
  msgctxt "sendmail-enhanced-select"
538
  msgid "Please select your mail type."
539
  msgstr "Veuillez choisir le type d'envoi."
540
 
541
- #: ../classes/es-register.php:227
542
  msgctxt "sendmail-enhanced-select"
543
  msgid ""
544
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -547,59 +775,59 @@ msgstr ""
547
  "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
548
  "envoyer."
549
 
550
- #: ../classes/es-register.php:235
551
  msgctxt "sentmail-enhanced-select"
552
  msgid "Do you want to delete this record?"
553
  msgstr "Voulez-vous supprimer cet enregistrement?"
554
 
555
- #: ../classes/es-register.php:236
556
  msgctxt "sentmail-enhanced-select"
557
  msgid "Do you want to delete all records except latest 10?"
558
  msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
559
 
560
- #: ../classes/es-register.php:244
561
  msgctxt "cron-enhanced-select"
562
  msgid "Please select enter number of mails you want to send per hour/trigger."
563
  msgstr ""
564
  "Veuillez saisir le nombre de courriels que vous voulez envoyer par "
565
  "heure/envoi."
566
 
567
- #: ../classes/es-register.php:245
568
  msgctxt "cron-enhanced-select"
569
  msgid "Please enter the mail count, only number."
570
  msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
571
 
572
- #: ../classes/es-register.php:258
573
  msgctxt "widget-page-enhanced-select"
574
  msgid "Please enter email address"
575
  msgstr "Veuillez saisir une adresse e-mail"
576
 
577
- #: ../classes/es-register.php:259
578
  msgctxt "widget-page-enhanced-select"
579
  msgid "Successfully Subscribed."
580
  msgstr "Abonnement réussi."
581
 
582
- #: ../classes/es-register.php:261
583
  msgctxt "widget-page-enhanced-select"
584
  msgid "Email Address already exists!"
585
  msgstr "Cette adresse existe déjà !"
586
 
587
- #: ../classes/es-register.php:262
588
  msgctxt "widget-page-enhanced-select"
589
  msgid "Oops.. Unexpected error occurred."
590
  msgstr "Oups... Une erreur inattendue s'est produite."
591
 
592
- #: ../classes/es-register.php:263
593
  msgctxt "widget-page-enhanced-select"
594
  msgid "Invalid email address"
595
  msgstr "Adresse e-mail non valide"
596
 
597
- #: ../classes/es-register.php:264
598
  msgctxt "widget-page-enhanced-select"
599
  msgid "Please try after some time"
600
  msgstr "Veuillez réessayer plus tard"
601
 
602
- #: ../classes/es-register.php:753
603
  msgid ""
604
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
605
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -611,63 +839,63 @@ msgstr ""
611
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
612
  "</a>. Un grand merci d'Icegram d'avance!"
613
 
614
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
615
  msgid "Thumbnail"
616
  msgstr "Miniature"
617
 
618
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
619
  #: sentmail/sentmail-show.php:121
620
  msgid "Preview"
621
  msgstr "Aperçu"
622
 
623
- #: ../classes/es-register.php:909
624
  msgid "Newsletter"
625
  msgstr "Newsletters"
626
 
627
- #: ../classes/es-register.php:910
628
  msgid "Post Notification"
629
  msgstr "Notification d'article"
630
 
631
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
632
- #: register.php:994 ../classes/es-register.php:1002
633
  msgid "Available Keywords"
634
  msgstr "Mots clés autorisés"
635
 
636
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
637
  msgid "Name"
638
  msgstr "Nom"
639
 
640
- #: ../classes/es-register.php:1044
641
  msgid "Email *"
642
  msgstr "E-mail *"
643
 
644
- #: ../classes/es-register.php:1053 ../help/help.php:202
645
  msgid "Subscribe"
646
  msgstr "S'abonner"
647
 
648
- #: ../classes/es-register.php:1157
649
  msgid "Widget Title"
650
  msgstr "Titre du widget"
651
 
652
- #: ../classes/es-register.php:1161
653
  msgid "Short description about subscription form"
654
  msgstr "Courte description de votre formulaire d'abonnement"
655
 
656
- #: ../classes/es-register.php:1165
657
  msgid "Display Name Field"
658
  msgstr "Afficher le champ Nom"
659
 
660
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
661
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
662
  msgid "YES"
663
  msgstr "OUI"
664
 
665
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
666
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
667
  msgid "NO"
668
  msgstr "NON"
669
 
670
- #: ../classes/es-register.php:1172
671
  msgid "Subscriber Group"
672
  msgstr "Groupe d'abonnés"
673
 
@@ -1034,7 +1262,7 @@ msgstr "Aide"
1034
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1035
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1036
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1037
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
1038
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1039
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1040
  msgid "Select"
@@ -1095,8 +1323,8 @@ msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
1095
  msgid "Disable email notification"
1096
  msgstr "Ne pas envoyer"
1097
 
1098
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1099
- #: 291 ../subscribers/view-subscriber-edit.php:191
1100
  msgid "Save"
1101
  msgstr "Enregistrer"
1102
 
@@ -1219,20 +1447,20 @@ msgstr "Type d'envoi"
1219
  msgid "Send email via cron job"
1220
  msgstr "Envoyer les courriels via la tâche CRON"
1221
 
1222
- #: ../sendmail/sendmail.php:147
1223
  msgid "Select Subscribers group to Send Email"
1224
  msgstr "Groupe d'abonnés"
1225
 
1226
- #: ../sendmail/sendmail.php:179
1227
  msgid "Recipients : 0 "
1228
  msgstr "Destinataires : 0 "
1229
 
1230
- #: ../sendmail/sendmail.php:181
1231
  #, php-format
1232
  msgid "Recipients : %s"
1233
  msgstr "Destinataires : %s"
1234
 
1235
- #: ../sendmail/sendmail.php:184
1236
  msgid ""
1237
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1238
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1242,11 +1470,11 @@ msgstr ""
1242
  "de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
1243
  "courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
1244
 
1245
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1246
  msgid "Send Email"
1247
  msgstr "Envoyer"
1248
 
1249
- #: ../sendmail/sendmail.php:201
1250
  msgid "Reset"
1251
  msgstr "Réinitialiser"
1252
 
@@ -1508,10 +1736,6 @@ msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
1508
  msgid "Sent Report Subject"
1509
  msgstr "Sujet pour le rapport d'envoi"
1510
 
1511
- #: ../settings/settings-edit.php:166
1512
- msgid "Subject for the email report which will be sent to admin."
1513
- msgstr "C'est le sujet de l'e-mail de rapport d'envoi envoyé à l'administrateur."
1514
-
1515
  #: ../settings/settings-edit.php:172
1516
  msgid "Sent Report Content"
1517
  msgstr "Contenu du rapport d'envoi"
@@ -1681,27 +1905,27 @@ msgid ""
1681
  "modify it."
1682
  msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
1683
 
1684
- #: ../settings/settings-edit.php:376
1685
  msgid "Email Count"
1686
  msgstr "Nombre de courriels"
1687
 
1688
- #: ../settings/settings-edit.php:377
1689
  msgid "Number of emails that you want to trigger per hour."
1690
  msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
1691
 
1692
- #: ../settings/settings-edit.php:382
1693
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1694
  msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
1695
 
1696
- #: ../settings/settings-edit.php:387
1697
  msgid "Cron Report"
1698
  msgstr "Rapport de têche CRON"
1699
 
1700
- #: ../settings/settings-edit.php:398
1701
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1702
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1703
 
1704
- #: ../settings/settings-edit.php:399
1705
  msgid ""
1706
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1707
  "schedule-cron-emails/?"
@@ -1713,7 +1937,7 @@ msgstr ""
1713
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
1714
  "qu'une tâche Cron?</a>"
1715
 
1716
- #: ../settings/settings-edit.php:400
1717
  msgid ""
1718
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1719
  "schedule-cron-emails-in-cpanel/?"
@@ -1725,7 +1949,7 @@ msgstr ""
1725
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1726
  "une tâche Cron dans cPanel</a>"
1727
 
1728
- #: ../settings/settings-edit.php:401
1729
  msgid ""
1730
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1731
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1737,7 +1961,7 @@ msgstr ""
1737
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1738
  "une tâche Cron dans Plesk</a>"
1739
 
1740
- #: ../settings/settings-edit.php:402
1741
  msgid ""
1742
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1743
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1749,19 +1973,19 @@ msgstr ""
1749
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
1750
  "hébergeur ne gère pas les tâches Cron?</a>"
1751
 
1752
- #: ../settings/settings-edit.php:517
1753
  msgid "Please enter sender of notifications from name."
1754
  msgstr "Veuillez saisir le nom de l'expéditeur"
1755
 
1756
- #: ../settings/settings-edit.php:522
1757
  msgid "Please enter sender of notifications from email."
1758
  msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1759
 
1760
- #: ../settings/settings-edit.php:580
1761
  msgid "Settings Saved."
1762
  msgstr "Options enregistrées."
1763
 
1764
- #: ../settings/settings-edit.php:583
1765
  msgid "Oops, unable to update."
1766
  msgstr "Oups, impossible de mettre à jour."
1767
 
@@ -2178,7 +2402,7 @@ msgstr ""
2178
  "newsletters en HTML et d'informer automatiquement vos abonnés de vos "
2179
  "nouvelles publications."
2180
 
2181
- #: ../email-subscribers.php:95
2182
  msgctxt "timezone date format"
2183
  msgid "Y-m-d H:i:s"
2184
  msgstr "d-m-Y H:i:s"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42: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: French (France)\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
22
  "X-Loco-Target-Locale: fr_FR\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
26
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
27
+ #: 1049
28
  msgid "Templates"
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:191
32
+ msgid "Go Pro"
33
+ msgstr ""
34
+
35
+ #: ../classes/es-register.php:192
36
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
37
+ msgstr ""
38
+
39
+ #: ../classes/es-register.php:210
40
  msgctxt "view-subscriber-enhanced-select"
41
  msgid ""
42
  "Do you want to resend confirmation email? Also please note, this will update "
43
  "subscriber current status to 'Unconfirmed'."
44
  msgstr ""
45
 
46
+ #: ../classes/es-register.php:224
47
  msgctxt "notification-enhanced-select"
48
  msgid "Please select notification mail subject. Use templates menu to create new."
49
  msgstr ""
50
 
51
+ #: ../classes/es-register.php:269
52
  msgctxt "widget-page-enhanced-select"
53
  msgid ""
54
  "Your subscription was successful! Kindly check your mailbox and confirm your "
56
  "spam/junk folder."
57
  msgstr ""
58
 
59
+ #: ../classes/es-register.php:699
60
+ msgid "No, I don't like it"
61
+ msgstr ""
62
+
63
+ #: ../classes/es-register.php:705
64
+ msgctxt "timezone date format"
65
+ msgid "Y-m-d"
66
+ msgstr ""
67
+
68
+ #: ../classes/es-register.php:850
69
+ msgid "What do you hate about list building and email marketing?"
70
+ msgstr ""
71
+
72
+ #: ../classes/es-register.php:851
73
+ msgid "Hey, glad to see you!"
74
+ msgstr ""
75
+
76
+ #: ../classes/es-register.php:852
77
  msgid ""
78
+ "I am on a daring quest to solve your biggest problems around list building "
79
+ "and email marketing. "
80
+ msgstr ""
81
+
82
+ #: ../classes/es-register.php:853
83
+ msgid ""
84
+ "So tell me, when it comes to list building and email marketing, what's your "
85
+ "biggest challenge? What's blocking your progress? "
86
+ msgstr ""
87
+
88
+ #: ../classes/es-register.php:858
89
+ msgid "And what's another big challenge? "
90
+ msgstr ""
91
+
92
+ #: ../classes/es-register.php:862
93
+ msgid "Send my problems..."
94
+ msgstr ""
95
+
96
+ #: ../classes/es-register.php:863
97
+ msgid "No, I don't have problems"
98
+ msgstr ""
99
+
100
+ #: ../classes/es-register.php:865
101
+ msgid "Fill the above field first"
102
+ msgstr ""
103
+
104
+ #: ../classes/es-register.php:874
105
+ msgid "Gosh... I hear you mate... "
106
+ msgstr ""
107
+
108
+ #: ../classes/es-register.php:875
109
+ msgid ""
110
+ "Enter your email below, and you will be the first to know when we solve "
111
+ "those problems. "
112
+ msgstr ""
113
+
114
+ #: ../classes/es-register.php:879
115
+ msgid "Nah, I don't like improvements"
116
+ msgstr ""
117
+
118
+ #: ../classes/es-register.php:893
119
+ msgid "I got you."
120
+ msgstr ""
121
+
122
+ #: ../classes/es-register.php:894
123
+ msgid "Will do everything I can to help you. "
124
+ msgstr ""
125
+
126
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
127
+ msgid "Later. "
128
+ msgstr ""
129
+
130
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
131
+ msgid "Andrea Julio "
132
  msgstr ""
133
 
134
+ #: ../classes/es-register.php:902
135
+ msgid "No issues, have a nice day!"
136
  msgstr ""
137
 
138
+ #: ../classes/es-register.php:1020
139
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
140
  msgstr ""
141
 
142
+ #: ../classes/es-register.php:1034
143
  #, php-format
144
  msgid "Email Subscribers version: <strong>%s</strong>"
145
  msgstr ""
146
 
147
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
148
  msgid "Add new Template"
149
  msgstr ""
150
 
151
+ #: ../classes/es-register.php:1047
152
  msgid "Edit Templates"
153
  msgstr ""
154
 
155
+ #: ../classes/es-register.php:1048
156
  msgid "New Templates"
157
  msgstr ""
158
 
159
+ #: ../classes/es-register.php:1050
160
  msgid "View Templates"
161
  msgstr ""
162
 
163
+ #: ../classes/es-register.php:1051
164
  msgid "Search Templates"
165
  msgstr ""
166
 
167
+ #: ../classes/es-register.php:1052
168
  msgid "No Templates found"
169
  msgstr ""
170
 
171
+ #: ../classes/es-register.php:1053
172
  msgid "No Templates found in Trash"
173
  msgstr ""
174
 
175
+ #: ../classes/es-register.php:1056
176
  msgid "Thumbnail (For Visual Representation only)"
177
  msgstr ""
178
 
179
+ #: ../classes/es-register.php:1057
180
  msgid "Set thumbnail"
181
  msgstr ""
182
 
183
+ #: ../classes/es-register.php:1094
184
  msgid "Template Type"
185
  msgstr ""
186
 
187
+ #: ../classes/es-register.php:1167
188
  #, php-format
189
  msgid "%s for Post Notification: {{POSTTITLE}}"
190
  msgstr ""
191
 
192
+ #: ../classes/es-register.php:1167
193
  msgid "Available Keyword"
194
  msgstr ""
195
 
196
+ #: ../classes/es-register.php:1174
197
  msgid "Select your Email Template Type"
198
  msgstr ""
199
 
200
+ #: ../classes/es-register.php:1226
201
  msgid "Preview Template"
202
  msgstr ""
203
 
204
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
205
  #, php-format
206
  msgid ""
207
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
209
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
210
  msgstr ""
211
 
212
+ #: ../classes/es-register.php:1246
213
  #, php-format
214
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
215
  msgstr ""
216
 
217
+ #: ../classes/es-register.php:1269
218
  #, php-format
219
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
220
  msgstr ""
352
  "a slight variation on how your customer will view the email content."
353
  msgstr ""
354
 
355
+ #: ../sentmail/sentmail-show.php:216
356
  msgid ""
357
  "<strong>Note:</strong> If you delete record for the emails with Status = "
358
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
371
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
372
  msgstr ""
373
 
374
+ #: ../settings/settings-edit.php:166
375
+ msgid ""
376
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
377
+ "only if sending email via immediately)"
378
+ msgstr ""
379
+
380
  #: ../settings/settings-edit.php:173
381
  msgid ""
382
  "Content for the email report which will be sent to admin.<br />Available "
383
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
384
+ "sent only if sending email via immediately)"
385
  msgstr ""
386
 
387
  #: ../settings/settings-edit.php:192
407
  msgid "Templates Menu"
408
  msgstr ""
409
 
410
+ #: ../settings/settings-edit.php:389
411
  msgid ""
412
  "Email to admin whenever a cron URL is triggered from your server.<br "
413
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
414
  msgstr ""
415
 
416
+ #: ../settings/settings-edit.php:393
417
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
418
+ msgstr ""
419
+
420
+ #: ../settings/settings-edit.php:569
421
  msgid "Please enter valid email count."
422
  msgstr ""
423
 
461
  "customer will view the email content."
462
  msgstr ""
463
 
464
+ #: ../pricing/pricing.php:157
465
+ msgid "Go a notch higher"
466
+ msgstr ""
467
+
468
+ #: ../pricing/pricing.php:158
469
+ msgid "Get the Email Subscribers Pro Plugin at"
470
+ msgstr ""
471
+
472
+ #: ../pricing/pricing.php:162
473
+ msgid "month"
474
+ msgstr ""
475
+
476
+ #: ../pricing/pricing.php:163
477
+ msgid "Sign up for monthly"
478
+ msgstr ""
479
+
480
+ #: ../pricing/pricing.php:166
481
+ msgid "year"
482
+ msgstr ""
483
+
484
+ #: ../pricing/pricing.php:167
485
+ msgid "Sign up for yearly"
486
+ msgstr ""
487
+
488
+ #: ../pricing/pricing.php:171
489
+ msgid "Get more with Email Subscribers Pro"
490
+ msgstr ""
491
+
492
+ #: ../pricing/pricing.php:173
493
+ msgid "All features of Email Subscribers free plugin + everything below:"
494
+ msgstr ""
495
+
496
+ #: ../pricing/pricing.php:176
497
+ msgid "Protect your list from bot attacks"
498
+ msgstr ""
499
+
500
+ #: ../pricing/pricing.php:177
501
+ msgid "Use "
502
+ msgstr ""
503
+
504
+ #: ../pricing/pricing.php:177
505
+ msgid "captcha"
506
+ msgstr ""
507
+
508
+ #: ../pricing/pricing.php:177
509
+ msgid ""
510
+ "to protect your email list from bots. The simple maths captcha helps "
511
+ "identifying bots from humans and eliminates spam signups."
512
+ msgstr ""
513
+
514
+ #: ../pricing/pricing.php:180
515
+ msgid "Check email status & increase email success rate"
516
+ msgstr ""
517
+
518
+ #: ../pricing/pricing.php:181
519
+ msgid "Double check the status of the emails addresses and increase "
520
+ msgstr ""
521
+
522
+ #: ../pricing/pricing.php:181
523
+ msgid "email success rate"
524
+ msgstr ""
525
+
526
+ #: ../pricing/pricing.php:181
527
+ msgid "of your email campaign. "
528
+ msgstr ""
529
+
530
+ #: ../pricing/pricing.php:187
531
+ msgid "Fullproof email deliverability"
532
+ msgstr ""
533
+
534
+ #: ../pricing/pricing.php:188
535
+ msgid ""
536
+ "Reduce the risk of emails ending in trash or spam. Increase email "
537
+ "deliverability by double checking emails for their "
538
+ msgstr ""
539
+
540
+ #: ../pricing/pricing.php:188
541
+ msgid "spam score"
542
+ msgstr ""
543
+
544
+ #: ../pricing/pricing.php:188
545
+ msgid "before hitting send."
546
+ msgstr ""
547
+
548
+ #: ../pricing/pricing.php:191
549
+ msgid "Track email leads in Google"
550
+ msgstr ""
551
+
552
+ #: ../pricing/pricing.php:192
553
+ msgid "Insert "
554
+ msgstr ""
555
+
556
+ #: ../pricing/pricing.php:192
557
+ msgid "UTM tracking"
558
+ msgstr ""
559
+
560
+ #: ../pricing/pricing.php:192
561
+ msgid ""
562
+ "in all your email CTA’s and track the effectiveness of your emails directly "
563
+ "within Google. Know which/ how many leads landed up from your emails and "
564
+ "tweak emails for better performance."
565
+ msgstr ""
566
+
567
+ #: ../pricing/pricing.php:199
568
+ msgid "Save time, use readymade email templates"
569
+ msgstr ""
570
+
571
+ #: ../pricing/pricing.php:200
572
+ msgid ""
573
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
574
+ "elegant templates</strong> to send your next email campaign."
575
+ msgstr ""
576
+
577
+ #: ../pricing/pricing.php:203
578
+ msgid "Customize confirmation and unsubscribe page"
579
+ msgstr ""
580
+
581
+ #: ../pricing/pricing.php:204
582
+ msgid ""
583
+ "Communicate with subscribers. Redirect them to beautifully designed "
584
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
585
+ msgstr ""
586
+
587
+ #: ../pricing/pricing.php:211
588
+ msgid "Coming soon..."
589
+ msgstr ""
590
+
591
+ #: ../pricing/pricing.php:213
592
+ msgid "Spam testing"
593
+ msgstr ""
594
+
595
+ #: ../pricing/pricing.php:214
596
+ msgid "Bounce handling"
597
+ msgstr ""
598
+
599
+ #: ../pricing/pricing.php:215
600
+ msgid "Advanced reporting"
601
+ msgstr ""
602
+
603
  #: ../classes/es-common.php:13
604
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
605
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
644
  msgid "<span style=\"color:#993399;\">Immediately</span>"
645
  msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
646
 
647
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
648
+ #: register.php:1055
649
  msgid "Email Subscribers"
650
  msgstr "Email Subscribers & Newsletters"
651
 
652
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
653
  #: subscribers/view-subscriber-show.php:242
654
  msgid "Subscribers"
655
  msgstr "Abonnés"
656
 
657
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
658
  #: 370 ../notification/notification-show.php:52
659
  msgid "Post Notifications"
660
  msgstr "Notifications d'article"
661
 
662
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
663
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
664
  msgid "Newsletters"
665
  msgstr "Newsletters"
666
 
667
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
668
  #: settings/settings-edit.php:42
669
  msgid "Settings"
670
  msgstr "Paramètres"
671
 
672
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
673
  #: sentmail/sentmail-show.php:93
674
  msgid "Reports"
675
  msgstr "Rapports"
676
 
677
+ #: ../classes/es-register.php:187
678
  msgid "Help & Info"
679
  msgstr "Aide & Infos"
680
 
681
+ #: ../classes/es-register.php:188
682
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
683
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Info</span>"
684
 
685
+ #: ../classes/es-register.php:204
686
  msgctxt "view-subscriber-enhanced-select"
687
  msgid "Please enter subscriber email address."
688
  msgstr "Entrer l'adresse e-mail de l'abonné."
689
 
690
+ #: ../classes/es-register.php:205
691
  msgctxt "view-subscriber-enhanced-select"
692
  msgid "Please select subscriber email status."
693
  msgstr "Sélectionner le type d'envoi pour cet abonné."
694
 
695
+ #: ../classes/es-register.php:206
696
  msgctxt "view-subscriber-enhanced-select"
697
  msgid "Please select or create group for this subscriber."
698
  msgstr "Sélectionner ou créer un groupe pour cet abonné."
699
 
700
+ #: ../classes/es-register.php:207
701
  msgctxt "view-subscriber-enhanced-select"
702
  msgid "Do you want to delete this record?"
703
  msgstr "Voulez-vous supprimer cette ligne?"
704
 
705
+ #: ../classes/es-register.php:208
706
  msgctxt "view-subscriber-enhanced-select"
707
  msgid "Please select the bulk action."
708
  msgstr "Veuillez sélectionner une action."
709
 
710
+ #: ../classes/es-register.php:209
711
  msgctxt "view-subscriber-enhanced-select"
712
  msgid "Are you sure you want to delete selected records?"
713
  msgstr "Voulez-vous supprimer les lignes sélectionnées?"
714
 
715
+ #: ../classes/es-register.php:211
716
  msgctxt "view-subscriber-enhanced-select"
717
  msgid "Please select new subscriber group."
718
  msgstr "Veuillez choisir un groupe d'abonnés."
719
 
720
+ #: ../classes/es-register.php:212
721
  msgctxt "view-subscriber-enhanced-select"
722
  msgid "Please select new status for subscribers"
723
  msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
724
 
725
+ #: ../classes/es-register.php:213
726
  msgctxt "view-subscriber-enhanced-select"
727
  msgid "Do you want to update subscribers group?"
728
  msgstr "Voulez-vous mettre à jour ce groupe?"
729
 
730
+ #: ../classes/es-register.php:214
731
  msgctxt "view-subscriber-enhanced-select"
732
  msgid "Do you want to update subscribers status?"
733
  msgstr "Voulez vous modifier le statut de ces abonnés?"
734
 
735
+ #: ../classes/es-register.php:215
736
  msgctxt "view-subscriber-enhanced-select"
737
  msgid ""
738
  "Please select only csv file. Please check official website for csv structure."
741
  "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
742
  "la structure du fichier csv."
743
 
744
+ #: ../classes/es-register.php:223
745
  msgctxt "notification-enhanced-select"
746
  msgid "Please select subscribers group."
747
  msgstr "Veuillez choisir un groupe."
748
 
749
+ #: ../classes/es-register.php:225
750
  msgctxt "notification-enhanced-select"
751
  msgid "Please select notification status."
752
  msgstr "Veuillez sélectionner le statut de la notification."
753
 
754
+ #: ../classes/es-register.php:226
755
  msgctxt "notification-enhanced-select"
756
  msgid "Do you want to delete this record?"
757
  msgstr "Voulez-vous supprimer cet enregistrement?"
758
 
759
+ #: ../classes/es-register.php:234
760
  msgctxt "sendmail-enhanced-select"
761
  msgid "Please select your mail subject."
762
  msgstr "Veuillez choisir le sujet du courriel."
763
 
764
+ #: ../classes/es-register.php:235
765
  msgctxt "sendmail-enhanced-select"
766
  msgid "Please select your mail type."
767
  msgstr "Veuillez choisir le type d'envoi."
768
 
769
+ #: ../classes/es-register.php:236
770
  msgctxt "sendmail-enhanced-select"
771
  msgid ""
772
  "Have you double checked your selected group? If so, let's go ahead and send "
775
  "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
776
  "envoyer."
777
 
778
+ #: ../classes/es-register.php:244
779
  msgctxt "sentmail-enhanced-select"
780
  msgid "Do you want to delete this record?"
781
  msgstr "Voulez-vous supprimer cet enregistrement?"
782
 
783
+ #: ../classes/es-register.php:245
784
  msgctxt "sentmail-enhanced-select"
785
  msgid "Do you want to delete all records except latest 10?"
786
  msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
787
 
788
+ #: ../classes/es-register.php:253
789
  msgctxt "cron-enhanced-select"
790
  msgid "Please select enter number of mails you want to send per hour/trigger."
791
  msgstr ""
792
  "Veuillez saisir le nombre de courriels que vous voulez envoyer par "
793
  "heure/envoi."
794
 
795
+ #: ../classes/es-register.php:254
796
  msgctxt "cron-enhanced-select"
797
  msgid "Please enter the mail count, only number."
798
  msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
799
 
800
+ #: ../classes/es-register.php:267
801
  msgctxt "widget-page-enhanced-select"
802
  msgid "Please enter email address"
803
  msgstr "Veuillez saisir une adresse e-mail"
804
 
805
+ #: ../classes/es-register.php:268
806
  msgctxt "widget-page-enhanced-select"
807
  msgid "Successfully Subscribed."
808
  msgstr "Abonnement réussi."
809
 
810
+ #: ../classes/es-register.php:270
811
  msgctxt "widget-page-enhanced-select"
812
  msgid "Email Address already exists!"
813
  msgstr "Cette adresse existe déjà !"
814
 
815
+ #: ../classes/es-register.php:271
816
  msgctxt "widget-page-enhanced-select"
817
  msgid "Oops.. Unexpected error occurred."
818
  msgstr "Oups... Une erreur inattendue s'est produite."
819
 
820
+ #: ../classes/es-register.php:272
821
  msgctxt "widget-page-enhanced-select"
822
  msgid "Invalid email address"
823
  msgstr "Adresse e-mail non valide"
824
 
825
+ #: ../classes/es-register.php:273
826
  msgctxt "widget-page-enhanced-select"
827
  msgid "Please try after some time"
828
  msgstr "Veuillez réessayer plus tard"
829
 
830
+ #: ../classes/es-register.php:698
831
  msgid ""
832
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
833
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
839
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
840
  "</a>. Un grand merci d'Icegram d'avance!"
841
 
842
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
843
  msgid "Thumbnail"
844
  msgstr "Miniature"
845
 
846
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
847
  #: sentmail/sentmail-show.php:121
848
  msgid "Preview"
849
  msgstr "Aperçu"
850
 
851
+ #: ../classes/es-register.php:1176
852
  msgid "Newsletter"
853
  msgstr "Newsletters"
854
 
855
+ #: ../classes/es-register.php:1177
856
  msgid "Post Notification"
857
  msgstr "Notification d'article"
858
 
859
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
860
+ #: register.php:1261 ../classes/es-register.php:1269
861
  msgid "Available Keywords"
862
  msgstr "Mots clés autorisés"
863
 
864
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
865
  msgid "Name"
866
  msgstr "Nom"
867
 
868
+ #: ../classes/es-register.php:1311
869
  msgid "Email *"
870
  msgstr "E-mail *"
871
 
872
+ #: ../classes/es-register.php:1320 ../help/help.php:202
873
  msgid "Subscribe"
874
  msgstr "S'abonner"
875
 
876
+ #: ../classes/es-register.php:1424
877
  msgid "Widget Title"
878
  msgstr "Titre du widget"
879
 
880
+ #: ../classes/es-register.php:1428
881
  msgid "Short description about subscription form"
882
  msgstr "Courte description de votre formulaire d'abonnement"
883
 
884
+ #: ../classes/es-register.php:1432
885
  msgid "Display Name Field"
886
  msgstr "Afficher le champ Nom"
887
 
888
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
889
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
890
  msgid "YES"
891
  msgstr "OUI"
892
 
893
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
894
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
895
  msgid "NO"
896
  msgstr "NON"
897
 
898
+ #: ../classes/es-register.php:1439
899
  msgid "Subscriber Group"
900
  msgstr "Groupe d'abonnés"
901
 
1262
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1263
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1264
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1265
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1266
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1267
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1268
  msgid "Select"
1323
  msgid "Disable email notification"
1324
  msgstr "Ne pas envoyer"
1325
 
1326
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1327
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1328
  msgid "Save"
1329
  msgstr "Enregistrer"
1330
 
1447
  msgid "Send email via cron job"
1448
  msgstr "Envoyer les courriels via la tâche CRON"
1449
 
1450
+ #: ../sendmail/sendmail.php:148
1451
  msgid "Select Subscribers group to Send Email"
1452
  msgstr "Groupe d'abonnés"
1453
 
1454
+ #: ../sendmail/sendmail.php:180
1455
  msgid "Recipients : 0 "
1456
  msgstr "Destinataires : 0 "
1457
 
1458
+ #: ../sendmail/sendmail.php:182
1459
  #, php-format
1460
  msgid "Recipients : %s"
1461
  msgstr "Destinataires : %s"
1462
 
1463
+ #: ../sendmail/sendmail.php:185
1464
  msgid ""
1465
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1466
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1470
  "de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
1471
  "courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
1472
 
1473
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1474
  msgid "Send Email"
1475
  msgstr "Envoyer"
1476
 
1477
+ #: ../sendmail/sendmail.php:202
1478
  msgid "Reset"
1479
  msgstr "Réinitialiser"
1480
 
1736
  msgid "Sent Report Subject"
1737
  msgstr "Sujet pour le rapport d'envoi"
1738
 
 
 
 
 
1739
  #: ../settings/settings-edit.php:172
1740
  msgid "Sent Report Content"
1741
  msgstr "Contenu du rapport d'envoi"
1905
  "modify it."
1906
  msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
1907
 
1908
+ #: ../settings/settings-edit.php:377
1909
  msgid "Email Count"
1910
  msgstr "Nombre de courriels"
1911
 
1912
+ #: ../settings/settings-edit.php:378
1913
  msgid "Number of emails that you want to trigger per hour."
1914
  msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
1915
 
1916
+ #: ../settings/settings-edit.php:383
1917
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1918
  msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
1919
 
1920
+ #: ../settings/settings-edit.php:388
1921
  msgid "Cron Report"
1922
  msgstr "Rapport de têche CRON"
1923
 
1924
+ #: ../settings/settings-edit.php:400
1925
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1926
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1927
 
1928
+ #: ../settings/settings-edit.php:401
1929
  msgid ""
1930
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1931
  "schedule-cron-emails/?"
1937
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
1938
  "qu'une tâche Cron?</a>"
1939
 
1940
+ #: ../settings/settings-edit.php:402
1941
  msgid ""
1942
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1943
  "schedule-cron-emails-in-cpanel/?"
1949
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1950
  "une tâche Cron dans cPanel</a>"
1951
 
1952
+ #: ../settings/settings-edit.php:403
1953
  msgid ""
1954
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1955
  "schedule-cron-emails-in-parallels-plesk/?"
1961
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1962
  "une tâche Cron dans Plesk</a>"
1963
 
1964
+ #: ../settings/settings-edit.php:404
1965
  msgid ""
1966
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1967
  "if-hosting-doesnt-support-cron-jobs/?"
1973
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
1974
  "hébergeur ne gère pas les tâches Cron?</a>"
1975
 
1976
+ #: ../settings/settings-edit.php:520
1977
  msgid "Please enter sender of notifications from name."
1978
  msgstr "Veuillez saisir le nom de l'expéditeur"
1979
 
1980
+ #: ../settings/settings-edit.php:525
1981
  msgid "Please enter sender of notifications from email."
1982
  msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1983
 
1984
+ #: ../settings/settings-edit.php:584
1985
  msgid "Settings Saved."
1986
  msgstr "Options enregistrées."
1987
 
1988
+ #: ../settings/settings-edit.php:587
1989
  msgid "Oops, unable to update."
1990
  msgstr "Oups, impossible de mettre à jour."
1991
 
2402
  "newsletters en HTML et d'informer automatiquement vos abonnés de vos "
2403
  "nouvelles publications."
2404
 
2405
+ #: ../email-subscribers.php:96
2406
  msgctxt "timezone date format"
2407
  msgid "Y-m-d H:i:s"
2408
  msgstr "d-m-Y H:i:s"
languages/email-subscribers-hu_HU.mo CHANGED
Binary file
languages/email-subscribers-hu_HU.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:35 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Hungarian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,28 +22,37 @@ msgstr ""
22
  "X-Loco-Target-Locale: hu_HU\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
27
  msgid "Templates"
28
  msgstr ""
29
 
30
- #: ../classes/es-register.php:184
31
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
32
  msgstr ""
33
 
34
- #: ../classes/es-register.php:201
 
 
 
 
 
 
 
 
35
  msgctxt "view-subscriber-enhanced-select"
36
  msgid ""
37
  "Do you want to resend confirmation email? Also please note, this will update "
38
  "subscriber current status to 'Unconfirmed'."
39
  msgstr ""
40
 
41
- #: ../classes/es-register.php:215
42
  msgctxt "notification-enhanced-select"
43
  msgid "Please select notification mail subject. Use templates menu to create new."
44
  msgstr ""
45
 
46
- #: ../classes/es-register.php:260
47
  msgctxt "widget-page-enhanced-select"
48
  msgid ""
49
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -51,83 +60,152 @@ msgid ""
51
  "spam/junk folder."
52
  msgstr ""
53
 
54
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgid ""
56
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
57
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
58
  msgstr ""
59
 
60
- #: ../classes/es-register.php:728
61
- msgid "Here's how"
62
  msgstr ""
63
 
64
- #: ../classes/es-register.php:728
65
- msgid "Not interested. Dismiss this."
66
  msgstr ""
67
 
68
- #: ../classes/es-register.php:767
 
 
 
 
 
 
 
 
69
  #, php-format
70
  msgid "Email Subscribers version: <strong>%s</strong>"
71
  msgstr ""
72
 
73
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
74
  msgid "Add new Template"
75
  msgstr ""
76
 
77
- #: ../classes/es-register.php:780
78
  msgid "Edit Templates"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:781
82
  msgid "New Templates"
83
  msgstr ""
84
 
85
- #: ../classes/es-register.php:783
86
  msgid "View Templates"
87
  msgstr ""
88
 
89
- #: ../classes/es-register.php:784
90
  msgid "Search Templates"
91
  msgstr ""
92
 
93
- #: ../classes/es-register.php:785
94
  msgid "No Templates found"
95
  msgstr ""
96
 
97
- #: ../classes/es-register.php:786
98
  msgid "No Templates found in Trash"
99
  msgstr ""
100
 
101
- #: ../classes/es-register.php:789
102
  msgid "Thumbnail (For Visual Representation only)"
103
  msgstr ""
104
 
105
- #: ../classes/es-register.php:790
106
  msgid "Set thumbnail"
107
  msgstr ""
108
 
109
- #: ../classes/es-register.php:827
110
  msgid "Template Type"
111
  msgstr ""
112
 
113
- #: ../classes/es-register.php:900
114
  #, php-format
115
  msgid "%s for Post Notification: {{POSTTITLE}}"
116
  msgstr ""
117
 
118
- #: ../classes/es-register.php:900
119
  msgid "Available Keyword"
120
  msgstr ""
121
 
122
- #: ../classes/es-register.php:907
123
  msgid "Select your Email Template Type"
124
  msgstr ""
125
 
126
- #: ../classes/es-register.php:959
127
  msgid "Preview Template"
128
  msgstr ""
129
 
130
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
131
  #, php-format
132
  msgid ""
133
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -135,12 +213,12 @@ msgid ""
135
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
136
  msgstr ""
137
 
138
- #: ../classes/es-register.php:979
139
  #, php-format
140
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
141
  msgstr ""
142
 
143
- #: ../classes/es-register.php:1002
144
  #, php-format
145
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
146
  msgstr ""
@@ -520,7 +598,7 @@ msgid ""
520
  "a slight variation on how your customer will view the email content."
521
  msgstr ""
522
 
523
- #: ../sentmail/sentmail-show.php:212
524
  msgid ""
525
  "<strong>Note:</strong> If you delete record for the emails with Status = "
526
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
@@ -581,13 +659,16 @@ msgid ""
581
  msgstr ""
582
 
583
  #: ../settings/settings-edit.php:166
584
- msgid "Subject for the email report which will be sent to admin."
 
 
585
  msgstr ""
586
 
587
  #: ../settings/settings-edit.php:173
588
  msgid ""
589
  "Content for the email report which will be sent to admin.<br />Available "
590
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
 
591
  msgstr ""
592
 
593
  #: ../settings/settings-edit.php:184
@@ -685,21 +766,25 @@ msgstr ""
685
  msgid "Templates Menu"
686
  msgstr ""
687
 
688
- #: ../settings/settings-edit.php:382
689
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
690
  msgstr ""
691
 
692
- #: ../settings/settings-edit.php:387
693
  msgid "Cron Report"
694
  msgstr ""
695
 
696
- #: ../settings/settings-edit.php:388
697
  msgid ""
698
  "Email to admin whenever a cron URL is triggered from your server.<br "
699
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
700
  msgstr ""
701
 
702
- #: ../settings/settings-edit.php:399
 
 
 
 
703
  msgid ""
704
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
705
  "schedule-cron-emails/?"
@@ -707,7 +792,7 @@ msgid ""
707
  "Cron?</a>"
708
  msgstr ""
709
 
710
- #: ../settings/settings-edit.php:400
711
  msgid ""
712
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
713
  "schedule-cron-emails-in-cpanel/?"
@@ -715,7 +800,7 @@ msgid ""
715
  "job in cPanel</a>"
716
  msgstr ""
717
 
718
- #: ../settings/settings-edit.php:401
719
  msgid ""
720
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
721
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -723,7 +808,7 @@ msgid ""
723
  "job in Plesk</a>"
724
  msgstr ""
725
 
726
- #: ../settings/settings-edit.php:402
727
  msgid ""
728
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
729
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -731,7 +816,7 @@ msgid ""
731
  "does not support cron jobs?</a>"
732
  msgstr ""
733
 
734
- #: ../settings/settings-edit.php:566
735
  msgid "Please enter valid email count."
736
  msgstr ""
737
 
@@ -779,11 +864,150 @@ msgstr ""
779
  msgid "https://www.icegram.com"
780
  msgstr ""
781
 
782
- #: ../email-subscribers.php:95
783
  msgctxt "timezone date format"
784
  msgid "Y-m-d H:i:s"
785
  msgstr ""
786
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
787
  #: ../classes/es-common.php:13
788
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
789
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Visszaigazolt</span>"
@@ -828,123 +1052,123 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
828
  msgid "<span style=\"color:#993399;\">Immediately</span>"
829
  msgstr "<span style=\"color:#993399;\">Azonnal</span>"
830
 
831
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
832
- #: register.php:788
833
  msgid "Email Subscribers"
834
  msgstr "Email Subscribers"
835
 
836
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
837
  #: subscribers/view-subscriber-show.php:242
838
  msgid "Subscribers"
839
  msgstr "Feliratkozottak"
840
 
841
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
842
  #: 370 ../notification/notification-show.php:52
843
  msgid "Post Notifications"
844
  msgstr "Új bejegyzés értesítés"
845
 
846
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
847
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
848
  msgid "Newsletters"
849
  msgstr "Hírlevél"
850
 
851
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
852
  #: settings/settings-edit.php:42
853
  msgid "Settings"
854
  msgstr "Beállítások"
855
 
856
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
857
  #: sentmail/sentmail-show.php:93
858
  msgid "Reports"
859
  msgstr "Jelentések"
860
 
861
- #: ../classes/es-register.php:183
862
  msgid "Help & Info"
863
  msgstr "Segítség & Információ"
864
 
865
- #: ../classes/es-register.php:195
866
  msgctxt "view-subscriber-enhanced-select"
867
  msgid "Please enter subscriber email address."
868
  msgstr "Adja meg az előfizető e-mail címét."
869
 
870
- #: ../classes/es-register.php:196
871
  msgctxt "view-subscriber-enhanced-select"
872
  msgid "Please select subscriber email status."
873
  msgstr "Válassza ki az előfizető e-mail státuszát."
874
 
875
- #: ../classes/es-register.php:197
876
  msgctxt "view-subscriber-enhanced-select"
877
  msgid "Please select or create group for this subscriber."
878
  msgstr "Törölni akarja ezt az adatot?"
879
 
880
- #: ../classes/es-register.php:198
881
  msgctxt "view-subscriber-enhanced-select"
882
  msgid "Do you want to delete this record?"
883
  msgstr "Biztos törölni szeretnéd?"
884
 
885
- #: ../classes/es-register.php:199
886
  msgctxt "view-subscriber-enhanced-select"
887
  msgid "Please select the bulk action."
888
  msgstr "Kérem válassza a tömeges műveleteket!"
889
 
890
- #: ../classes/es-register.php:200
891
  msgctxt "view-subscriber-enhanced-select"
892
  msgid "Are you sure you want to delete selected records?"
893
  msgstr "Biztosan törlöd ezeket az adatokat? "
894
 
895
- #: ../classes/es-register.php:202
896
  msgctxt "view-subscriber-enhanced-select"
897
  msgid "Please select new subscriber group."
898
  msgstr "KÉrem válassza ki az előfizetői csoportot"
899
 
900
- #: ../classes/es-register.php:203
901
  msgctxt "view-subscriber-enhanced-select"
902
  msgid "Please select new status for subscribers"
903
  msgstr "Add meg az előfizetők új státuszát!"
904
 
905
- #: ../classes/es-register.php:204
906
  msgctxt "view-subscriber-enhanced-select"
907
  msgid "Do you want to update subscribers group?"
908
  msgstr "Frissíteni akarja az előfizetői csoportokat? "
909
 
910
- #: ../classes/es-register.php:205
911
  msgctxt "view-subscriber-enhanced-select"
912
  msgid "Do you want to update subscribers status?"
913
  msgstr "Frissítsük a feliratkozók státuszát?"
914
 
915
- #: ../classes/es-register.php:206
916
  msgctxt "view-subscriber-enhanced-select"
917
  msgid ""
918
  "Please select only csv file. Please check official website for csv structure."
919
  "."
920
  msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
921
 
922
- #: ../classes/es-register.php:214
923
  msgctxt "notification-enhanced-select"
924
  msgid "Please select subscribers group."
925
  msgstr "Kérem válassza ki az előfizetői csoportot!"
926
 
927
- #: ../classes/es-register.php:216
928
  msgctxt "notification-enhanced-select"
929
  msgid "Please select notification status."
930
  msgstr "Válassza ki az értesítőlevél státuszát!"
931
 
932
- #: ../classes/es-register.php:217
933
  msgctxt "notification-enhanced-select"
934
  msgid "Do you want to delete this record?"
935
  msgstr "Valóban törölni akarja ezt az adatot? "
936
 
937
- #: ../classes/es-register.php:225
938
  msgctxt "sendmail-enhanced-select"
939
  msgid "Please select your mail subject."
940
  msgstr "Kérem töltse ki a levél tárgyát!"
941
 
942
- #: ../classes/es-register.php:226
943
  msgctxt "sendmail-enhanced-select"
944
  msgid "Please select your mail type."
945
  msgstr "Az e-mail típusa (időzített vagy azonnali)"
946
 
947
- #: ../classes/es-register.php:227
948
  msgctxt "sendmail-enhanced-select"
949
  msgid ""
950
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -953,59 +1177,59 @@ msgstr ""
953
  "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
954
  "rendben, akkor klikkelj megint."
955
 
956
- #: ../classes/es-register.php:235
957
  msgctxt "sentmail-enhanced-select"
958
  msgid "Do you want to delete this record?"
959
  msgstr "Szeretné törölni ezt az adatot? "
960
 
961
- #: ../classes/es-register.php:236
962
  msgctxt "sentmail-enhanced-select"
963
  msgid "Do you want to delete all records except latest 10?"
964
  msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
965
 
966
- #: ../classes/es-register.php:244
967
  msgctxt "cron-enhanced-select"
968
  msgid "Please select enter number of mails you want to send per hour/trigger."
969
  msgstr ""
970
  "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
971
  "küldeni?"
972
 
973
- #: ../classes/es-register.php:245
974
  msgctxt "cron-enhanced-select"
975
  msgid "Please enter the mail count, only number."
976
  msgstr "Kérem egy számot adjon meg, hány e-mail? "
977
 
978
- #: ../classes/es-register.php:258
979
  msgctxt "widget-page-enhanced-select"
980
  msgid "Please enter email address"
981
  msgstr "KÉrem adja meg az e-mail címét!"
982
 
983
- #: ../classes/es-register.php:259
984
  msgctxt "widget-page-enhanced-select"
985
  msgid "Successfully Subscribed."
986
  msgstr "Sikeres feliratkozás."
987
 
988
- #: ../classes/es-register.php:261
989
  msgctxt "widget-page-enhanced-select"
990
  msgid "Email Address already exists!"
991
  msgstr "Ilyen e-mail cím már létezik. "
992
 
993
- #: ../classes/es-register.php:262
994
  msgctxt "widget-page-enhanced-select"
995
  msgid "Oops.. Unexpected error occurred."
996
  msgstr "Váratlan hiba lépett fel"
997
 
998
- #: ../classes/es-register.php:263
999
  msgctxt "widget-page-enhanced-select"
1000
  msgid "Invalid email address"
1001
  msgstr "Hibás e-mail cím."
1002
 
1003
- #: ../classes/es-register.php:264
1004
  msgctxt "widget-page-enhanced-select"
1005
  msgid "Please try after some time"
1006
  msgstr "Kérem próbálja meg később. "
1007
 
1008
- #: ../classes/es-register.php:753
1009
  msgid ""
1010
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1011
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -1017,63 +1241,63 @@ msgstr ""
1017
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1018
  "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
1019
 
1020
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
1021
  msgid "Thumbnail"
1022
  msgstr "Bélyegkép"
1023
 
1024
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
1025
  #: sentmail/sentmail-show.php:121
1026
  msgid "Preview"
1027
  msgstr "Előnézet"
1028
 
1029
- #: ../classes/es-register.php:909
1030
  msgid "Newsletter"
1031
  msgstr "Hírlevél"
1032
 
1033
- #: ../classes/es-register.php:910
1034
  msgid "Post Notification"
1035
  msgstr "Értesítés az új bejegyzésről"
1036
 
1037
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
1038
- #: register.php:994 ../classes/es-register.php:1002
1039
  msgid "Available Keywords"
1040
  msgstr "Választható kulcsszavak"
1041
 
1042
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
1043
  msgid "Name"
1044
  msgstr "Név"
1045
 
1046
- #: ../classes/es-register.php:1044
1047
  msgid "Email *"
1048
  msgstr "E-mail*"
1049
 
1050
- #: ../classes/es-register.php:1053 ../help/help.php:202
1051
  msgid "Subscribe"
1052
  msgstr "Feliratkozás"
1053
 
1054
- #: ../classes/es-register.php:1157
1055
  msgid "Widget Title"
1056
  msgstr "Widget Cím"
1057
 
1058
- #: ../classes/es-register.php:1161
1059
  msgid "Short description about subscription form"
1060
  msgstr "A feliratkozó űrlap rövid leírása"
1061
 
1062
- #: ../classes/es-register.php:1165
1063
  msgid "Display Name Field"
1064
  msgstr "Feliratkozásnál kérjük a nevet is? "
1065
 
1066
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
1067
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
1068
  msgid "YES"
1069
  msgstr "Igen"
1070
 
1071
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
1072
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
1073
  msgid "NO"
1074
  msgstr "Nem"
1075
 
1076
- #: ../classes/es-register.php:1172
1077
  msgid "Subscriber Group"
1078
  msgstr "Előfizetői csoport"
1079
 
@@ -1169,7 +1393,7 @@ msgstr "Segítség"
1169
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1170
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1171
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1172
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
1173
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1174
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1175
  msgid "Select"
@@ -1230,8 +1454,8 @@ msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
1230
  msgid "Disable email notification"
1231
  msgstr "Az új bejegyzések értesítésének letiltása"
1232
 
1233
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1234
- #: 291 ../subscribers/view-subscriber-edit.php:191
1235
  msgid "Save"
1236
  msgstr "Mentés"
1237
 
@@ -1350,20 +1574,20 @@ msgstr "Válassza ki az e-mail típusát!"
1350
  msgid "Send email via cron job"
1351
  msgstr "Időzített e-mail küldés"
1352
 
1353
- #: ../sendmail/sendmail.php:147
1354
  msgid "Select Subscribers group to Send Email"
1355
  msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1356
 
1357
- #: ../sendmail/sendmail.php:179
1358
  msgid "Recipients : 0 "
1359
  msgstr "Címzettek: 0"
1360
 
1361
- #: ../sendmail/sendmail.php:181
1362
  #, php-format
1363
  msgid "Recipients : %s"
1364
  msgstr "Címzettek: %s"
1365
 
1366
- #: ../sendmail/sendmail.php:184
1367
  msgid ""
1368
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1369
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1373,11 +1597,11 @@ msgstr ""
1373
  "most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
1374
  "a súgóra további segítségért!"
1375
 
1376
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1377
  msgid "Send Email"
1378
  msgstr "Hírlevél küldése"
1379
 
1380
- #: ../sendmail/sendmail.php:201
1381
  msgid "Reset"
1382
  msgstr "Alapbeállítások visszaállítása"
1383
 
@@ -1671,31 +1895,31 @@ msgid ""
1671
  "modify it."
1672
  msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1673
 
1674
- #: ../settings/settings-edit.php:376
1675
  msgid "Email Count"
1676
  msgstr "E-mail számláló."
1677
 
1678
- #: ../settings/settings-edit.php:377
1679
  msgid "Number of emails that you want to trigger per hour."
1680
  msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
1681
 
1682
- #: ../settings/settings-edit.php:398
1683
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1684
  msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1685
 
1686
- #: ../settings/settings-edit.php:517
1687
  msgid "Please enter sender of notifications from name."
1688
  msgstr "Az értesítőlevél feladójának neve"
1689
 
1690
- #: ../settings/settings-edit.php:522
1691
  msgid "Please enter sender of notifications from email."
1692
  msgstr "Az értesítőlevél levél feladójának e-mail címe"
1693
 
1694
- #: ../settings/settings-edit.php:580
1695
  msgid "Settings Saved."
1696
  msgstr "Sikeres mentés"
1697
 
1698
- #: ../settings/settings-edit.php:583
1699
  msgid "Oops, unable to update."
1700
  msgstr "Nem sikerült menteni. "
1701
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:10 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Hungarian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "X-Loco-Target-Locale: hu_HU\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
26
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
27
+ #: 1049
28
  msgid "Templates"
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:188
32
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
33
  msgstr ""
34
 
35
+ #: ../classes/es-register.php:191
36
+ msgid "Go Pro"
37
+ msgstr ""
38
+
39
+ #: ../classes/es-register.php:192
40
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
41
+ msgstr ""
42
+
43
+ #: ../classes/es-register.php:210
44
  msgctxt "view-subscriber-enhanced-select"
45
  msgid ""
46
  "Do you want to resend confirmation email? Also please note, this will update "
47
  "subscriber current status to 'Unconfirmed'."
48
  msgstr ""
49
 
50
+ #: ../classes/es-register.php:224
51
  msgctxt "notification-enhanced-select"
52
  msgid "Please select notification mail subject. Use templates menu to create new."
53
  msgstr ""
54
 
55
+ #: ../classes/es-register.php:269
56
  msgctxt "widget-page-enhanced-select"
57
  msgid ""
58
  "Your subscription was successful! Kindly check your mailbox and confirm your "
60
  "spam/junk folder."
61
  msgstr ""
62
 
63
+ #: ../classes/es-register.php:699
64
+ msgid "No, I don't like it"
65
+ msgstr ""
66
+
67
+ #: ../classes/es-register.php:705
68
+ msgctxt "timezone date format"
69
+ msgid "Y-m-d"
70
+ msgstr ""
71
+
72
+ #: ../classes/es-register.php:850
73
+ msgid "What do you hate about list building and email marketing?"
74
+ msgstr ""
75
+
76
+ #: ../classes/es-register.php:851
77
+ msgid "Hey, glad to see you!"
78
+ msgstr ""
79
+
80
+ #: ../classes/es-register.php:852
81
+ msgid ""
82
+ "I am on a daring quest to solve your biggest problems around list building "
83
+ "and email marketing. "
84
+ msgstr ""
85
+
86
+ #: ../classes/es-register.php:853
87
+ msgid ""
88
+ "So tell me, when it comes to list building and email marketing, what's your "
89
+ "biggest challenge? What's blocking your progress? "
90
+ msgstr ""
91
+
92
+ #: ../classes/es-register.php:858
93
+ msgid "And what's another big challenge? "
94
+ msgstr ""
95
+
96
+ #: ../classes/es-register.php:862
97
+ msgid "Send my problems..."
98
+ msgstr ""
99
+
100
+ #: ../classes/es-register.php:863
101
+ msgid "No, I don't have problems"
102
+ msgstr ""
103
+
104
+ #: ../classes/es-register.php:865
105
+ msgid "Fill the above field first"
106
+ msgstr ""
107
+
108
+ #: ../classes/es-register.php:874
109
+ msgid "Gosh... I hear you mate... "
110
+ msgstr ""
111
+
112
+ #: ../classes/es-register.php:875
113
  msgid ""
114
+ "Enter your email below, and you will be the first to know when we solve "
115
+ "those problems. "
116
+ msgstr ""
117
+
118
+ #: ../classes/es-register.php:879
119
+ msgid "Nah, I don't like improvements"
120
+ msgstr ""
121
+
122
+ #: ../classes/es-register.php:893
123
+ msgid "I got you."
124
+ msgstr ""
125
+
126
+ #: ../classes/es-register.php:894
127
+ msgid "Will do everything I can to help you. "
128
  msgstr ""
129
 
130
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
131
+ msgid "Later. "
132
  msgstr ""
133
 
134
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
135
+ msgid "Andrea Julio "
136
  msgstr ""
137
 
138
+ #: ../classes/es-register.php:902
139
+ msgid "No issues, have a nice day!"
140
+ msgstr ""
141
+
142
+ #: ../classes/es-register.php:1020
143
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
144
+ msgstr ""
145
+
146
+ #: ../classes/es-register.php:1034
147
  #, php-format
148
  msgid "Email Subscribers version: <strong>%s</strong>"
149
  msgstr ""
150
 
151
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
152
  msgid "Add new Template"
153
  msgstr ""
154
 
155
+ #: ../classes/es-register.php:1047
156
  msgid "Edit Templates"
157
  msgstr ""
158
 
159
+ #: ../classes/es-register.php:1048
160
  msgid "New Templates"
161
  msgstr ""
162
 
163
+ #: ../classes/es-register.php:1050
164
  msgid "View Templates"
165
  msgstr ""
166
 
167
+ #: ../classes/es-register.php:1051
168
  msgid "Search Templates"
169
  msgstr ""
170
 
171
+ #: ../classes/es-register.php:1052
172
  msgid "No Templates found"
173
  msgstr ""
174
 
175
+ #: ../classes/es-register.php:1053
176
  msgid "No Templates found in Trash"
177
  msgstr ""
178
 
179
+ #: ../classes/es-register.php:1056
180
  msgid "Thumbnail (For Visual Representation only)"
181
  msgstr ""
182
 
183
+ #: ../classes/es-register.php:1057
184
  msgid "Set thumbnail"
185
  msgstr ""
186
 
187
+ #: ../classes/es-register.php:1094
188
  msgid "Template Type"
189
  msgstr ""
190
 
191
+ #: ../classes/es-register.php:1167
192
  #, php-format
193
  msgid "%s for Post Notification: {{POSTTITLE}}"
194
  msgstr ""
195
 
196
+ #: ../classes/es-register.php:1167
197
  msgid "Available Keyword"
198
  msgstr ""
199
 
200
+ #: ../classes/es-register.php:1174
201
  msgid "Select your Email Template Type"
202
  msgstr ""
203
 
204
+ #: ../classes/es-register.php:1226
205
  msgid "Preview Template"
206
  msgstr ""
207
 
208
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
209
  #, php-format
210
  msgid ""
211
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
213
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
214
  msgstr ""
215
 
216
+ #: ../classes/es-register.php:1246
217
  #, php-format
218
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
219
  msgstr ""
220
 
221
+ #: ../classes/es-register.php:1269
222
  #, php-format
223
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
224
  msgstr ""
598
  "a slight variation on how your customer will view the email content."
599
  msgstr ""
600
 
601
+ #: ../sentmail/sentmail-show.php:216
602
  msgid ""
603
  "<strong>Note:</strong> If you delete record for the emails with Status = "
604
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
659
  msgstr ""
660
 
661
  #: ../settings/settings-edit.php:166
662
+ msgid ""
663
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
664
+ "only if sending email via immediately)"
665
  msgstr ""
666
 
667
  #: ../settings/settings-edit.php:173
668
  msgid ""
669
  "Content for the email report which will be sent to admin.<br />Available "
670
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
671
+ "sent only if sending email via immediately)"
672
  msgstr ""
673
 
674
  #: ../settings/settings-edit.php:184
766
  msgid "Templates Menu"
767
  msgstr ""
768
 
769
+ #: ../settings/settings-edit.php:383
770
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
771
  msgstr ""
772
 
773
+ #: ../settings/settings-edit.php:388
774
  msgid "Cron Report"
775
  msgstr ""
776
 
777
+ #: ../settings/settings-edit.php:389
778
  msgid ""
779
  "Email to admin whenever a cron URL is triggered from your server.<br "
780
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
781
  msgstr ""
782
 
783
+ #: ../settings/settings-edit.php:393
784
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
785
+ msgstr ""
786
+
787
+ #: ../settings/settings-edit.php:401
788
  msgid ""
789
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
790
  "schedule-cron-emails/?"
792
  "Cron?</a>"
793
  msgstr ""
794
 
795
+ #: ../settings/settings-edit.php:402
796
  msgid ""
797
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
798
  "schedule-cron-emails-in-cpanel/?"
800
  "job in cPanel</a>"
801
  msgstr ""
802
 
803
+ #: ../settings/settings-edit.php:403
804
  msgid ""
805
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
806
  "schedule-cron-emails-in-parallels-plesk/?"
808
  "job in Plesk</a>"
809
  msgstr ""
810
 
811
+ #: ../settings/settings-edit.php:404
812
  msgid ""
813
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
814
  "if-hosting-doesnt-support-cron-jobs/?"
816
  "does not support cron jobs?</a>"
817
  msgstr ""
818
 
819
+ #: ../settings/settings-edit.php:569
820
  msgid "Please enter valid email count."
821
  msgstr ""
822
 
864
  msgid "https://www.icegram.com"
865
  msgstr ""
866
 
867
+ #: ../email-subscribers.php:96
868
  msgctxt "timezone date format"
869
  msgid "Y-m-d H:i:s"
870
  msgstr ""
871
 
872
+ #: ../pricing/pricing.php:157
873
+ msgid "Go a notch higher"
874
+ msgstr ""
875
+
876
+ #: ../pricing/pricing.php:158
877
+ msgid "Get the Email Subscribers Pro Plugin at"
878
+ msgstr ""
879
+
880
+ #: ../pricing/pricing.php:162
881
+ msgid "month"
882
+ msgstr ""
883
+
884
+ #: ../pricing/pricing.php:163
885
+ msgid "Sign up for monthly"
886
+ msgstr ""
887
+
888
+ #: ../pricing/pricing.php:166
889
+ msgid "year"
890
+ msgstr ""
891
+
892
+ #: ../pricing/pricing.php:167
893
+ msgid "Sign up for yearly"
894
+ msgstr ""
895
+
896
+ #: ../pricing/pricing.php:171
897
+ msgid "Get more with Email Subscribers Pro"
898
+ msgstr ""
899
+
900
+ #: ../pricing/pricing.php:173
901
+ msgid "All features of Email Subscribers free plugin + everything below:"
902
+ msgstr ""
903
+
904
+ #: ../pricing/pricing.php:176
905
+ msgid "Protect your list from bot attacks"
906
+ msgstr ""
907
+
908
+ #: ../pricing/pricing.php:177
909
+ msgid "Use "
910
+ msgstr ""
911
+
912
+ #: ../pricing/pricing.php:177
913
+ msgid "captcha"
914
+ msgstr ""
915
+
916
+ #: ../pricing/pricing.php:177
917
+ msgid ""
918
+ "to protect your email list from bots. The simple maths captcha helps "
919
+ "identifying bots from humans and eliminates spam signups."
920
+ msgstr ""
921
+
922
+ #: ../pricing/pricing.php:180
923
+ msgid "Check email status & increase email success rate"
924
+ msgstr ""
925
+
926
+ #: ../pricing/pricing.php:181
927
+ msgid "Double check the status of the emails addresses and increase "
928
+ msgstr ""
929
+
930
+ #: ../pricing/pricing.php:181
931
+ msgid "email success rate"
932
+ msgstr ""
933
+
934
+ #: ../pricing/pricing.php:181
935
+ msgid "of your email campaign. "
936
+ msgstr ""
937
+
938
+ #: ../pricing/pricing.php:187
939
+ msgid "Fullproof email deliverability"
940
+ msgstr ""
941
+
942
+ #: ../pricing/pricing.php:188
943
+ msgid ""
944
+ "Reduce the risk of emails ending in trash or spam. Increase email "
945
+ "deliverability by double checking emails for their "
946
+ msgstr ""
947
+
948
+ #: ../pricing/pricing.php:188
949
+ msgid "spam score"
950
+ msgstr ""
951
+
952
+ #: ../pricing/pricing.php:188
953
+ msgid "before hitting send."
954
+ msgstr ""
955
+
956
+ #: ../pricing/pricing.php:191
957
+ msgid "Track email leads in Google"
958
+ msgstr ""
959
+
960
+ #: ../pricing/pricing.php:192
961
+ msgid "Insert "
962
+ msgstr ""
963
+
964
+ #: ../pricing/pricing.php:192
965
+ msgid "UTM tracking"
966
+ msgstr ""
967
+
968
+ #: ../pricing/pricing.php:192
969
+ msgid ""
970
+ "in all your email CTA’s and track the effectiveness of your emails directly "
971
+ "within Google. Know which/ how many leads landed up from your emails and "
972
+ "tweak emails for better performance."
973
+ msgstr ""
974
+
975
+ #: ../pricing/pricing.php:199
976
+ msgid "Save time, use readymade email templates"
977
+ msgstr ""
978
+
979
+ #: ../pricing/pricing.php:200
980
+ msgid ""
981
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
982
+ "elegant templates</strong> to send your next email campaign."
983
+ msgstr ""
984
+
985
+ #: ../pricing/pricing.php:203
986
+ msgid "Customize confirmation and unsubscribe page"
987
+ msgstr ""
988
+
989
+ #: ../pricing/pricing.php:204
990
+ msgid ""
991
+ "Communicate with subscribers. Redirect them to beautifully designed "
992
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
993
+ msgstr ""
994
+
995
+ #: ../pricing/pricing.php:211
996
+ msgid "Coming soon..."
997
+ msgstr ""
998
+
999
+ #: ../pricing/pricing.php:213
1000
+ msgid "Spam testing"
1001
+ msgstr ""
1002
+
1003
+ #: ../pricing/pricing.php:214
1004
+ msgid "Bounce handling"
1005
+ msgstr ""
1006
+
1007
+ #: ../pricing/pricing.php:215
1008
+ msgid "Advanced reporting"
1009
+ msgstr ""
1010
+
1011
  #: ../classes/es-common.php:13
1012
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1013
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Visszaigazolt</span>"
1052
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1053
  msgstr "<span style=\"color:#993399;\">Azonnal</span>"
1054
 
1055
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
1056
+ #: register.php:1055
1057
  msgid "Email Subscribers"
1058
  msgstr "Email Subscribers"
1059
 
1060
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
1061
  #: subscribers/view-subscriber-show.php:242
1062
  msgid "Subscribers"
1063
  msgstr "Feliratkozottak"
1064
 
1065
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
1066
  #: 370 ../notification/notification-show.php:52
1067
  msgid "Post Notifications"
1068
  msgstr "Új bejegyzés értesítés"
1069
 
1070
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
1071
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
1072
  msgid "Newsletters"
1073
  msgstr "Hírlevél"
1074
 
1075
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
1076
  #: settings/settings-edit.php:42
1077
  msgid "Settings"
1078
  msgstr "Beállítások"
1079
 
1080
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
1081
  #: sentmail/sentmail-show.php:93
1082
  msgid "Reports"
1083
  msgstr "Jelentések"
1084
 
1085
+ #: ../classes/es-register.php:187
1086
  msgid "Help & Info"
1087
  msgstr "Segítség & Információ"
1088
 
1089
+ #: ../classes/es-register.php:204
1090
  msgctxt "view-subscriber-enhanced-select"
1091
  msgid "Please enter subscriber email address."
1092
  msgstr "Adja meg az előfizető e-mail címét."
1093
 
1094
+ #: ../classes/es-register.php:205
1095
  msgctxt "view-subscriber-enhanced-select"
1096
  msgid "Please select subscriber email status."
1097
  msgstr "Válassza ki az előfizető e-mail státuszát."
1098
 
1099
+ #: ../classes/es-register.php:206
1100
  msgctxt "view-subscriber-enhanced-select"
1101
  msgid "Please select or create group for this subscriber."
1102
  msgstr "Törölni akarja ezt az adatot?"
1103
 
1104
+ #: ../classes/es-register.php:207
1105
  msgctxt "view-subscriber-enhanced-select"
1106
  msgid "Do you want to delete this record?"
1107
  msgstr "Biztos törölni szeretnéd?"
1108
 
1109
+ #: ../classes/es-register.php:208
1110
  msgctxt "view-subscriber-enhanced-select"
1111
  msgid "Please select the bulk action."
1112
  msgstr "Kérem válassza a tömeges műveleteket!"
1113
 
1114
+ #: ../classes/es-register.php:209
1115
  msgctxt "view-subscriber-enhanced-select"
1116
  msgid "Are you sure you want to delete selected records?"
1117
  msgstr "Biztosan törlöd ezeket az adatokat? "
1118
 
1119
+ #: ../classes/es-register.php:211
1120
  msgctxt "view-subscriber-enhanced-select"
1121
  msgid "Please select new subscriber group."
1122
  msgstr "KÉrem válassza ki az előfizetői csoportot"
1123
 
1124
+ #: ../classes/es-register.php:212
1125
  msgctxt "view-subscriber-enhanced-select"
1126
  msgid "Please select new status for subscribers"
1127
  msgstr "Add meg az előfizetők új státuszát!"
1128
 
1129
+ #: ../classes/es-register.php:213
1130
  msgctxt "view-subscriber-enhanced-select"
1131
  msgid "Do you want to update subscribers group?"
1132
  msgstr "Frissíteni akarja az előfizetői csoportokat? "
1133
 
1134
+ #: ../classes/es-register.php:214
1135
  msgctxt "view-subscriber-enhanced-select"
1136
  msgid "Do you want to update subscribers status?"
1137
  msgstr "Frissítsük a feliratkozók státuszát?"
1138
 
1139
+ #: ../classes/es-register.php:215
1140
  msgctxt "view-subscriber-enhanced-select"
1141
  msgid ""
1142
  "Please select only csv file. Please check official website for csv structure."
1143
  "."
1144
  msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
1145
 
1146
+ #: ../classes/es-register.php:223
1147
  msgctxt "notification-enhanced-select"
1148
  msgid "Please select subscribers group."
1149
  msgstr "Kérem válassza ki az előfizetői csoportot!"
1150
 
1151
+ #: ../classes/es-register.php:225
1152
  msgctxt "notification-enhanced-select"
1153
  msgid "Please select notification status."
1154
  msgstr "Válassza ki az értesítőlevél státuszát!"
1155
 
1156
+ #: ../classes/es-register.php:226
1157
  msgctxt "notification-enhanced-select"
1158
  msgid "Do you want to delete this record?"
1159
  msgstr "Valóban törölni akarja ezt az adatot? "
1160
 
1161
+ #: ../classes/es-register.php:234
1162
  msgctxt "sendmail-enhanced-select"
1163
  msgid "Please select your mail subject."
1164
  msgstr "Kérem töltse ki a levél tárgyát!"
1165
 
1166
+ #: ../classes/es-register.php:235
1167
  msgctxt "sendmail-enhanced-select"
1168
  msgid "Please select your mail type."
1169
  msgstr "Az e-mail típusa (időzített vagy azonnali)"
1170
 
1171
+ #: ../classes/es-register.php:236
1172
  msgctxt "sendmail-enhanced-select"
1173
  msgid ""
1174
  "Have you double checked your selected group? If so, let's go ahead and send "
1177
  "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
1178
  "rendben, akkor klikkelj megint."
1179
 
1180
+ #: ../classes/es-register.php:244
1181
  msgctxt "sentmail-enhanced-select"
1182
  msgid "Do you want to delete this record?"
1183
  msgstr "Szeretné törölni ezt az adatot? "
1184
 
1185
+ #: ../classes/es-register.php:245
1186
  msgctxt "sentmail-enhanced-select"
1187
  msgid "Do you want to delete all records except latest 10?"
1188
  msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
1189
 
1190
+ #: ../classes/es-register.php:253
1191
  msgctxt "cron-enhanced-select"
1192
  msgid "Please select enter number of mails you want to send per hour/trigger."
1193
  msgstr ""
1194
  "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
1195
  "küldeni?"
1196
 
1197
+ #: ../classes/es-register.php:254
1198
  msgctxt "cron-enhanced-select"
1199
  msgid "Please enter the mail count, only number."
1200
  msgstr "Kérem egy számot adjon meg, hány e-mail? "
1201
 
1202
+ #: ../classes/es-register.php:267
1203
  msgctxt "widget-page-enhanced-select"
1204
  msgid "Please enter email address"
1205
  msgstr "KÉrem adja meg az e-mail címét!"
1206
 
1207
+ #: ../classes/es-register.php:268
1208
  msgctxt "widget-page-enhanced-select"
1209
  msgid "Successfully Subscribed."
1210
  msgstr "Sikeres feliratkozás."
1211
 
1212
+ #: ../classes/es-register.php:270
1213
  msgctxt "widget-page-enhanced-select"
1214
  msgid "Email Address already exists!"
1215
  msgstr "Ilyen e-mail cím már létezik. "
1216
 
1217
+ #: ../classes/es-register.php:271
1218
  msgctxt "widget-page-enhanced-select"
1219
  msgid "Oops.. Unexpected error occurred."
1220
  msgstr "Váratlan hiba lépett fel"
1221
 
1222
+ #: ../classes/es-register.php:272
1223
  msgctxt "widget-page-enhanced-select"
1224
  msgid "Invalid email address"
1225
  msgstr "Hibás e-mail cím."
1226
 
1227
+ #: ../classes/es-register.php:273
1228
  msgctxt "widget-page-enhanced-select"
1229
  msgid "Please try after some time"
1230
  msgstr "Kérem próbálja meg később. "
1231
 
1232
+ #: ../classes/es-register.php:698
1233
  msgid ""
1234
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1235
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1241
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1242
  "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
1243
 
1244
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
1245
  msgid "Thumbnail"
1246
  msgstr "Bélyegkép"
1247
 
1248
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
1249
  #: sentmail/sentmail-show.php:121
1250
  msgid "Preview"
1251
  msgstr "Előnézet"
1252
 
1253
+ #: ../classes/es-register.php:1176
1254
  msgid "Newsletter"
1255
  msgstr "Hírlevél"
1256
 
1257
+ #: ../classes/es-register.php:1177
1258
  msgid "Post Notification"
1259
  msgstr "Értesítés az új bejegyzésről"
1260
 
1261
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
1262
+ #: register.php:1261 ../classes/es-register.php:1269
1263
  msgid "Available Keywords"
1264
  msgstr "Választható kulcsszavak"
1265
 
1266
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
1267
  msgid "Name"
1268
  msgstr "Név"
1269
 
1270
+ #: ../classes/es-register.php:1311
1271
  msgid "Email *"
1272
  msgstr "E-mail*"
1273
 
1274
+ #: ../classes/es-register.php:1320 ../help/help.php:202
1275
  msgid "Subscribe"
1276
  msgstr "Feliratkozás"
1277
 
1278
+ #: ../classes/es-register.php:1424
1279
  msgid "Widget Title"
1280
  msgstr "Widget Cím"
1281
 
1282
+ #: ../classes/es-register.php:1428
1283
  msgid "Short description about subscription form"
1284
  msgstr "A feliratkozó űrlap rövid leírása"
1285
 
1286
+ #: ../classes/es-register.php:1432
1287
  msgid "Display Name Field"
1288
  msgstr "Feliratkozásnál kérjük a nevet is? "
1289
 
1290
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
1291
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
1292
  msgid "YES"
1293
  msgstr "Igen"
1294
 
1295
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
1296
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
1297
  msgid "NO"
1298
  msgstr "Nem"
1299
 
1300
+ #: ../classes/es-register.php:1439
1301
  msgid "Subscriber Group"
1302
  msgstr "Előfizetői csoport"
1303
 
1393
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1394
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1395
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1396
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1397
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1398
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1399
  msgid "Select"
1454
  msgid "Disable email notification"
1455
  msgstr "Az új bejegyzések értesítésének letiltása"
1456
 
1457
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1458
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1459
  msgid "Save"
1460
  msgstr "Mentés"
1461
 
1574
  msgid "Send email via cron job"
1575
  msgstr "Időzített e-mail küldés"
1576
 
1577
+ #: ../sendmail/sendmail.php:148
1578
  msgid "Select Subscribers group to Send Email"
1579
  msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1580
 
1581
+ #: ../sendmail/sendmail.php:180
1582
  msgid "Recipients : 0 "
1583
  msgstr "Címzettek: 0"
1584
 
1585
+ #: ../sendmail/sendmail.php:182
1586
  #, php-format
1587
  msgid "Recipients : %s"
1588
  msgstr "Címzettek: %s"
1589
 
1590
+ #: ../sendmail/sendmail.php:185
1591
  msgid ""
1592
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1593
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1597
  "most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
1598
  "a súgóra további segítségért!"
1599
 
1600
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1601
  msgid "Send Email"
1602
  msgstr "Hírlevél küldése"
1603
 
1604
+ #: ../sendmail/sendmail.php:202
1605
  msgid "Reset"
1606
  msgstr "Alapbeállítások visszaállítása"
1607
 
1895
  "modify it."
1896
  msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1897
 
1898
+ #: ../settings/settings-edit.php:377
1899
  msgid "Email Count"
1900
  msgstr "E-mail számláló."
1901
 
1902
+ #: ../settings/settings-edit.php:378
1903
  msgid "Number of emails that you want to trigger per hour."
1904
  msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
1905
 
1906
+ #: ../settings/settings-edit.php:400
1907
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1908
  msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1909
 
1910
+ #: ../settings/settings-edit.php:520
1911
  msgid "Please enter sender of notifications from name."
1912
  msgstr "Az értesítőlevél feladójának neve"
1913
 
1914
+ #: ../settings/settings-edit.php:525
1915
  msgid "Please enter sender of notifications from email."
1916
  msgstr "Az értesítőlevél levél feladójának e-mail címe"
1917
 
1918
+ #: ../settings/settings-edit.php:584
1919
  msgid "Settings Saved."
1920
  msgstr "Sikeres mentés"
1921
 
1922
+ #: ../settings/settings-edit.php:587
1923
  msgid "Oops, unable to update."
1924
  msgstr "Nem sikerült menteni. "
1925
 
languages/email-subscribers-it_IT.mo CHANGED
Binary file
languages/email-subscribers-it_IT.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:42 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Italian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,30 +22,107 @@ msgstr ""
22
  "X-Generator: Loco - https://localise.biz/\n"
23
  "X-Loco-Target-Locale: it_IT"
24
 
25
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid ""
27
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
28
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
- #: ../classes/es-register.php:728
32
- msgid "Here's how"
33
  msgstr ""
34
 
35
- #: ../classes/es-register.php:728
36
- msgid "Not interested. Dismiss this."
37
  msgstr ""
38
 
39
- #: ../classes/es-register.php:900
 
 
 
 
 
 
 
 
40
  #, php-format
41
  msgid "%s for Post Notification: {{POSTTITLE}}"
42
  msgstr ""
43
 
44
- #: ../classes/es-register.php:900
45
  msgid "Available Keyword"
46
  msgstr ""
47
 
48
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
49
  #, php-format
50
  msgid ""
51
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -53,7 +130,7 @@ msgid ""
53
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
54
  msgstr ""
55
 
56
- #: ../classes/es-register.php:1002
57
  #, php-format
58
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
59
  msgstr ""
@@ -112,14 +189,31 @@ msgstr ""
112
  msgid " &gt;&gt; "
113
  msgstr ""
114
 
115
- #: ../sentmail/sentmail-show.php:212
116
  msgid ""
117
  "<strong>Note:</strong> If you delete record for the emails with Status = "
118
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
119
  "deleted too and email will not be sent."
120
  msgstr ""
121
 
122
- #: ../settings/settings-edit.php:566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  msgid "Please enter valid email count."
124
  msgstr ""
125
 
@@ -128,6 +222,145 @@ msgstr ""
128
  msgid " to view details."
129
  msgstr ""
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  #: ../classes/es-common.php:13
132
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
133
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confermato</span>"
@@ -172,80 +405,81 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
172
  msgid "<span style=\"color:#993399;\">Immediately</span>"
173
  msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
174
 
175
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
176
- #: register.php:788
177
  msgid "Email Subscribers"
178
  msgstr "Email Iscritti"
179
 
180
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
181
  #: subscribers/view-subscriber-show.php:242
182
  msgid "Subscribers"
183
  msgstr "Iscritti"
184
 
185
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
186
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
187
  msgid "Templates"
188
  msgstr "Modelli"
189
 
190
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
191
  #: 370 ../notification/notification-show.php:52
192
  msgid "Post Notifications"
193
  msgstr "Notifiche Post"
194
 
195
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
196
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
197
  msgid "Newsletters"
198
  msgstr "Newsletter"
199
 
200
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
201
  #: settings/settings-edit.php:42
202
  msgid "Settings"
203
  msgstr "Configurazione"
204
 
205
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
206
  #: sentmail/sentmail-show.php:93
207
  msgid "Reports"
208
  msgstr "Rapporti"
209
 
210
- #: ../classes/es-register.php:183
211
  msgid "Help & Info"
212
  msgstr "Aiuto e Informazioni"
213
 
214
- #: ../classes/es-register.php:184
215
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
216
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aiuto e Informazioni</span>"
217
 
218
- #: ../classes/es-register.php:195
219
  msgctxt "view-subscriber-enhanced-select"
220
  msgid "Please enter subscriber email address."
221
  msgstr "Inserisci l'indirizzo email dell'iscritto."
222
 
223
- #: ../classes/es-register.php:196
224
  msgctxt "view-subscriber-enhanced-select"
225
  msgid "Please select subscriber email status."
226
  msgstr "Seleziona lo statu dell'iscritto"
227
 
228
- #: ../classes/es-register.php:197
229
  msgctxt "view-subscriber-enhanced-select"
230
  msgid "Please select or create group for this subscriber."
231
  msgstr "Seleziona o crea un gruppo per questo iscritto."
232
 
233
- #: ../classes/es-register.php:198
234
  msgctxt "view-subscriber-enhanced-select"
235
  msgid "Do you want to delete this record?"
236
  msgstr "Vuoi cancellare questo record ?"
237
 
238
- #: ../classes/es-register.php:199
239
  msgctxt "view-subscriber-enhanced-select"
240
  msgid "Please select the bulk action."
241
  msgstr "Seleziona una azione di gruppo."
242
 
243
- #: ../classes/es-register.php:200
244
  msgctxt "view-subscriber-enhanced-select"
245
  msgid "Are you sure you want to delete selected records?"
246
  msgstr "Sei sicuro di voler cancellare i record selezionati ?"
247
 
248
- #: ../classes/es-register.php:201
249
  msgctxt "view-subscriber-enhanced-select"
250
  msgid ""
251
  "Do you want to resend confirmation email? Also please note, this will update "
@@ -254,27 +488,27 @@ msgstr ""
254
  "Vuoi reinviare l'email di conferma ? Tieni presente che questa azione mette "
255
  "l'iscritto nello status 'Non Confermato'."
256
 
257
- #: ../classes/es-register.php:202
258
  msgctxt "view-subscriber-enhanced-select"
259
  msgid "Please select new subscriber group."
260
  msgstr "Seleziona un nuovo gruppo."
261
 
262
- #: ../classes/es-register.php:203
263
  msgctxt "view-subscriber-enhanced-select"
264
  msgid "Please select new status for subscribers"
265
  msgstr "Seleziona il nuovo status degli iscritti"
266
 
267
- #: ../classes/es-register.php:204
268
  msgctxt "view-subscriber-enhanced-select"
269
  msgid "Do you want to update subscribers group?"
270
  msgstr "Vuoi aggiornare il gruppo degli iscritti ?"
271
 
272
- #: ../classes/es-register.php:205
273
  msgctxt "view-subscriber-enhanced-select"
274
  msgid "Do you want to update subscribers status?"
275
  msgstr "Vuoi aggiornare lo status degli iscritti ?"
276
 
277
- #: ../classes/es-register.php:206
278
  msgctxt "view-subscriber-enhanced-select"
279
  msgid ""
280
  "Please select only csv file. Please check official website for csv structure."
@@ -283,76 +517,76 @@ msgstr ""
283
  "Utilizzare solo file csv. Controllare il sito ufficiale per la struttura del "
284
  "file csv."
285
 
286
- #: ../classes/es-register.php:214
287
  msgctxt "notification-enhanced-select"
288
  msgid "Please select subscribers group."
289
  msgstr "Seleziona il gruppo degli iscritti."
290
 
291
- #: ../classes/es-register.php:215
292
  msgctxt "notification-enhanced-select"
293
  msgid "Please select notification mail subject. Use templates menu to create new."
294
  msgstr ""
295
  "Seleziona l'oggetto della mail di notifica. Utilizza il menu Modelli per "
296
  "crearne uno nuovo."
297
 
298
- #: ../classes/es-register.php:216
299
  msgctxt "notification-enhanced-select"
300
  msgid "Please select notification status."
301
  msgstr "Seleziona lo status della notifica."
302
 
303
- #: ../classes/es-register.php:217
304
  msgctxt "notification-enhanced-select"
305
  msgid "Do you want to delete this record?"
306
  msgstr "Vuoi cancellare questo record ?"
307
 
308
- #: ../classes/es-register.php:225
309
  msgctxt "sendmail-enhanced-select"
310
  msgid "Please select your mail subject."
311
  msgstr "Scegli l'oggetto della mail."
312
 
313
- #: ../classes/es-register.php:226
314
  msgctxt "sendmail-enhanced-select"
315
  msgid "Please select your mail type."
316
  msgstr "Seleziona il tipo di email."
317
 
318
- #: ../classes/es-register.php:227
319
  msgctxt "sendmail-enhanced-select"
320
  msgid ""
321
  "Have you double checked your selected group? If so, let's go ahead and send "
322
  "this."
323
  msgstr "Hai controllato due volte il gruppo ? Se sì, inviala."
324
 
325
- #: ../classes/es-register.php:235
326
  msgctxt "sentmail-enhanced-select"
327
  msgid "Do you want to delete this record?"
328
  msgstr "Vuoi cancellare questo record ?"
329
 
330
- #: ../classes/es-register.php:236
331
  msgctxt "sentmail-enhanced-select"
332
  msgid "Do you want to delete all records except latest 10?"
333
  msgstr "vuoi cancellare tutti i record tranne gli ultimi 10 ?"
334
 
335
- #: ../classes/es-register.php:244
336
  msgctxt "cron-enhanced-select"
337
  msgid "Please select enter number of mails you want to send per hour/trigger."
338
  msgstr "Seleziona il numero di email che vuoi spedire per ogni ora."
339
 
340
- #: ../classes/es-register.php:245
341
  msgctxt "cron-enhanced-select"
342
  msgid "Please enter the mail count, only number."
343
  msgstr "Inserisci il numero di email, solo numeri."
344
 
345
- #: ../classes/es-register.php:258
346
  msgctxt "widget-page-enhanced-select"
347
  msgid "Please enter email address"
348
  msgstr "Inserisci l'indirizzo email"
349
 
350
- #: ../classes/es-register.php:259
351
  msgctxt "widget-page-enhanced-select"
352
  msgid "Successfully Subscribed."
353
  msgstr "Iscritto con successo."
354
 
355
- #: ../classes/es-register.php:260
356
  msgctxt "widget-page-enhanced-select"
357
  msgid ""
358
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -363,27 +597,27 @@ msgstr ""
363
  "di posta e confermare l'abbonamento. Se non vedi l'email entro pochi minuti, "
364
  "controlla la cartella spam / junk."
365
 
366
- #: ../classes/es-register.php:261
367
  msgctxt "widget-page-enhanced-select"
368
  msgid "Email Address already exists!"
369
  msgstr "Questo indirizzo email è già presente !"
370
 
371
- #: ../classes/es-register.php:262
372
  msgctxt "widget-page-enhanced-select"
373
  msgid "Oops.. Unexpected error occurred."
374
  msgstr "Oops... Si è verificato un errore inatteso."
375
 
376
- #: ../classes/es-register.php:263
377
  msgctxt "widget-page-enhanced-select"
378
  msgid "Invalid email address"
379
  msgstr "Indirizzo email non valido"
380
 
381
- #: ../classes/es-register.php:264
382
  msgctxt "widget-page-enhanced-select"
383
  msgid "Please try after some time"
384
  msgstr "Per favore riprova tra qualche minuto"
385
 
386
- #: ../classes/es-register.php:753
387
  msgid ""
388
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
389
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -395,121 +629,121 @@ msgstr ""
395
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
396
  "&#9733;&#9733;&#9733;&#9733;</a>. Molte grazie in anticipo da Icegram !"
397
 
398
- #: ../classes/es-register.php:767
399
  #, php-format
400
  msgid "Email Subscribers version: <strong>%s</strong>"
401
  msgstr "Email Subscribers versione: <strong>%s</strong>"
402
 
403
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
404
  msgid "Add new Template"
405
  msgstr "Aggiungi nuovo Modello"
406
 
407
- #: ../classes/es-register.php:780
408
  msgid "Edit Templates"
409
  msgstr "Modifica Modello"
410
 
411
- #: ../classes/es-register.php:781
412
  msgid "New Templates"
413
  msgstr "Nuovo Modello"
414
 
415
- #: ../classes/es-register.php:783
416
  msgid "View Templates"
417
  msgstr "Visualizza Modelli"
418
 
419
- #: ../classes/es-register.php:784
420
  msgid "Search Templates"
421
  msgstr "Ricerca Modelli"
422
 
423
- #: ../classes/es-register.php:785
424
  msgid "No Templates found"
425
  msgstr "Nessun Modello trovato"
426
 
427
- #: ../classes/es-register.php:786
428
  msgid "No Templates found in Trash"
429
  msgstr "Nessun Modello trovato nel Cestino"
430
 
431
- #: ../classes/es-register.php:789
432
  msgid "Thumbnail (For Visual Representation only)"
433
  msgstr "Miniature (solo per rappresentazione visuale)"
434
 
435
- #: ../classes/es-register.php:790
436
  msgid "Set thumbnail"
437
  msgstr "Configura minuature"
438
 
439
- #: ../classes/es-register.php:827
440
  msgid "Template Type"
441
  msgstr "Tipo Modello"
442
 
443
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
444
  msgid "Thumbnail"
445
  msgstr "Miniatura"
446
 
447
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
448
  #: sentmail/sentmail-show.php:121
449
  msgid "Preview"
450
  msgstr "Anteprima"
451
 
452
- #: ../classes/es-register.php:907
453
  msgid "Select your Email Template Type"
454
  msgstr "Seleziona il tipo di Modello Email"
455
 
456
- #: ../classes/es-register.php:909
457
  msgid "Newsletter"
458
  msgstr "Newsletter"
459
 
460
- #: ../classes/es-register.php:910
461
  msgid "Post Notification"
462
  msgstr "Notifica Post"
463
 
464
- #: ../classes/es-register.php:959
465
  msgid "Preview Template"
466
  msgstr "Anteprima Modello"
467
 
468
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
469
- #: register.php:994 ../classes/es-register.php:1002
470
  msgid "Available Keywords"
471
  msgstr "Parole Chiave disponibili"
472
 
473
- #: ../classes/es-register.php:979
474
  #, php-format
475
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
476
  msgstr "<br/><br/>%s per la Newsletter: {{NAME}}, {{EMAIL}}"
477
 
478
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
479
  msgid "Name"
480
  msgstr "Nome"
481
 
482
- #: ../classes/es-register.php:1044
483
  msgid "Email *"
484
  msgstr "Email *"
485
 
486
- #: ../classes/es-register.php:1053 ../help/help.php:202
487
  msgid "Subscribe"
488
  msgstr "Iscriviti"
489
 
490
- #: ../classes/es-register.php:1157
491
  msgid "Widget Title"
492
  msgstr "Titolo del Widget"
493
 
494
- #: ../classes/es-register.php:1161
495
  msgid "Short description about subscription form"
496
  msgstr "Breve descrizione per il modulo di iscrizione"
497
 
498
- #: ../classes/es-register.php:1165
499
  msgid "Display Name Field"
500
  msgstr "Campo Visualizza Nome"
501
 
502
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
503
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
504
  msgid "YES"
505
  msgstr "SI"
506
 
507
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
508
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
509
  msgid "NO"
510
  msgstr "NO"
511
 
512
- #: ../classes/es-register.php:1172
513
  msgid "Subscriber Group"
514
  msgstr "Gruppo Iscritti"
515
 
@@ -963,7 +1197,7 @@ msgstr "Aiuto"
963
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
964
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
965
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
966
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
967
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
968
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
969
  msgid "Select"
@@ -1029,8 +1263,8 @@ msgstr "Aggiungi al cron e invia email via cron job"
1029
  msgid "Disable email notification"
1030
  msgstr "Disattiva notifica email"
1031
 
1032
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1033
- #: 291 ../subscribers/view-subscriber-edit.php:191
1034
  msgid "Save"
1035
  msgstr "Salva"
1036
 
@@ -1153,20 +1387,20 @@ msgstr "Seleziona tipo email"
1153
  msgid "Send email via cron job"
1154
  msgstr "Invia email via cron job"
1155
 
1156
- #: ../sendmail/sendmail.php:147
1157
  msgid "Select Subscribers group to Send Email"
1158
  msgstr "Seleziona il Gruppo iscritti a cui inviare l'email"
1159
 
1160
- #: ../sendmail/sendmail.php:179
1161
  msgid "Recipients : 0 "
1162
  msgstr "Destinatari: 0"
1163
 
1164
- #: ../sendmail/sendmail.php:181
1165
  #, php-format
1166
  msgid "Recipients : %s"
1167
  msgstr "Destinatari: %s"
1168
 
1169
- #: ../sendmail/sendmail.php:184
1170
  msgid ""
1171
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1172
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1176,11 +1410,11 @@ msgstr ""
1176
  "vivamente di modificare il tipo di email a Cron e Invia mail via Cron Job."
1177
  "</strong><br>Clicca su Aiuto per maggiori informazioni."
1178
 
1179
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1180
  msgid "Send Email"
1181
  msgstr "Invia email"
1182
 
1183
- #: ../sendmail/sendmail.php:201
1184
  msgid "Reset"
1185
  msgstr "Resetta"
1186
 
@@ -1463,23 +1697,10 @@ msgstr ""
1463
  msgid "Sent Report Subject"
1464
  msgstr "Oggetto del report inviato"
1465
 
1466
- #: ../settings/settings-edit.php:166
1467
- msgid "Subject for the email report which will be sent to admin."
1468
- msgstr "Oggetto dell'email di report che viene inviata all'Amministratore."
1469
-
1470
  #: ../settings/settings-edit.php:172
1471
  msgid "Sent Report Content"
1472
  msgstr "Contenuto del Report"
1473
 
1474
- #: ../settings/settings-edit.php:173
1475
- msgid ""
1476
- "Content for the email report which will be sent to admin.<br />Available "
1477
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1478
- msgstr ""
1479
- "Contenuto dell'email di Report che viene inviata all'Amministratore.<br "
1480
- "/>Parole chiave disponibili: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1481
- "{{ENDTIME}}"
1482
-
1483
  #: ../settings/settings-edit.php:184
1484
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1485
  msgstr "Oggetto email per il Doppio Opt-In (email di conferma)"
@@ -1682,23 +1903,23 @@ msgstr ""
1682
  "Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
1683
  "essere modificato."
1684
 
1685
- #: ../settings/settings-edit.php:376
1686
  msgid "Email Count"
1687
  msgstr "Numero di Email"
1688
 
1689
- #: ../settings/settings-edit.php:377
1690
  msgid "Number of emails that you want to trigger per hour."
1691
  msgstr "Nuomero di email che vuoi spedire all'ora."
1692
 
1693
- #: ../settings/settings-edit.php:382
1694
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1695
  msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
1696
 
1697
- #: ../settings/settings-edit.php:387
1698
  msgid "Cron Report"
1699
  msgstr "Rapporto del Cron"
1700
 
1701
- #: ../settings/settings-edit.php:388
1702
  msgid ""
1703
  "Email to admin whenever a cron URL is triggered from your server.<br "
1704
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1706,11 +1927,11 @@ msgstr ""
1706
  "Invia email all'Amministratore quando un cron viene gestito dal server<br />."
1707
  " Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1708
 
1709
- #: ../settings/settings-edit.php:398
1710
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1711
  msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
1712
 
1713
- #: ../settings/settings-edit.php:399
1714
  msgid ""
1715
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1716
  "schedule-cron-emails/?"
@@ -1722,7 +1943,7 @@ msgstr ""
1722
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
1723
  "Cron?</a>"
1724
 
1725
- #: ../settings/settings-edit.php:400
1726
  msgid ""
1727
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1728
  "schedule-cron-emails-in-cpanel/?"
@@ -1734,7 +1955,7 @@ msgstr ""
1734
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1735
  "un cron job in cPanel</a>"
1736
 
1737
- #: ../settings/settings-edit.php:401
1738
  msgid ""
1739
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1740
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1746,7 +1967,7 @@ msgstr ""
1746
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1747
  "un cron job in Plesk</a>"
1748
 
1749
- #: ../settings/settings-edit.php:402
1750
  msgid ""
1751
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1752
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1758,19 +1979,19 @@ msgstr ""
1758
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
1759
  "Hosting non supporta i cron job ?</a>"
1760
 
1761
- #: ../settings/settings-edit.php:517
1762
  msgid "Please enter sender of notifications from name."
1763
  msgstr "Inserisci il nome del mittente delle notifiche."
1764
 
1765
- #: ../settings/settings-edit.php:522
1766
  msgid "Please enter sender of notifications from email."
1767
  msgstr "Inserisci l'email del mittente delle notifiche."
1768
 
1769
- #: ../settings/settings-edit.php:580
1770
  msgid "Settings Saved."
1771
  msgstr "Configurazione salvata."
1772
 
1773
- #: ../settings/settings-edit.php:583
1774
  msgid "Oops, unable to update."
1775
  msgstr "Oops, impossibile aggiornare."
1776
 
@@ -2224,7 +2445,7 @@ msgstr ""
2224
  "Aggiungi un modulo di iscrizione al sito, invia email in HTML e aggiorna "
2225
  "automaticamente gli iscritti quando viene aggiunto un nuovo articolo."
2226
 
2227
- #: ../email-subscribers.php:95
2228
  msgctxt "timezone date format"
2229
  msgid "Y-m-d H:i:s"
2230
  msgstr "A-m-g O:m:s"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:12 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Italian\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "X-Generator: Loco - https://localise.biz/\n"
23
  "X-Loco-Target-Locale: it_IT"
24
 
25
+ #: ../classes/es-register.php:191
26
+ msgid "Go Pro"
27
+ msgstr ""
28
+
29
+ #: ../classes/es-register.php:192
30
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
31
+ msgstr ""
32
+
33
+ #: ../classes/es-register.php:699
34
+ msgid "No, I don't like it"
35
+ msgstr ""
36
+
37
+ #: ../classes/es-register.php:705
38
+ msgctxt "timezone date format"
39
+ msgid "Y-m-d"
40
+ msgstr ""
41
+
42
+ #: ../classes/es-register.php:850
43
+ msgid "What do you hate about list building and email marketing?"
44
+ msgstr ""
45
+
46
+ #: ../classes/es-register.php:851
47
+ msgid "Hey, glad to see you!"
48
+ msgstr ""
49
+
50
+ #: ../classes/es-register.php:852
51
+ msgid ""
52
+ "I am on a daring quest to solve your biggest problems around list building "
53
+ "and email marketing. "
54
+ msgstr ""
55
+
56
+ #: ../classes/es-register.php:853
57
+ msgid ""
58
+ "So tell me, when it comes to list building and email marketing, what's your "
59
+ "biggest challenge? What's blocking your progress? "
60
+ msgstr ""
61
+
62
+ #: ../classes/es-register.php:858
63
+ msgid "And what's another big challenge? "
64
+ msgstr ""
65
+
66
+ #: ../classes/es-register.php:862
67
+ msgid "Send my problems..."
68
+ msgstr ""
69
+
70
+ #: ../classes/es-register.php:863
71
+ msgid "No, I don't have problems"
72
+ msgstr ""
73
+
74
+ #: ../classes/es-register.php:865
75
+ msgid "Fill the above field first"
76
+ msgstr ""
77
+
78
+ #: ../classes/es-register.php:874
79
+ msgid "Gosh... I hear you mate... "
80
+ msgstr ""
81
+
82
+ #: ../classes/es-register.php:875
83
  msgid ""
84
+ "Enter your email below, and you will be the first to know when we solve "
85
+ "those problems. "
86
+ msgstr ""
87
+
88
+ #: ../classes/es-register.php:879
89
+ msgid "Nah, I don't like improvements"
90
+ msgstr ""
91
+
92
+ #: ../classes/es-register.php:893
93
+ msgid "I got you."
94
+ msgstr ""
95
+
96
+ #: ../classes/es-register.php:894
97
+ msgid "Will do everything I can to help you. "
98
  msgstr ""
99
 
100
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
101
+ msgid "Later. "
102
  msgstr ""
103
 
104
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
105
+ msgid "Andrea Julio "
106
  msgstr ""
107
 
108
+ #: ../classes/es-register.php:902
109
+ msgid "No issues, have a nice day!"
110
+ msgstr ""
111
+
112
+ #: ../classes/es-register.php:1020
113
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
114
+ msgstr ""
115
+
116
+ #: ../classes/es-register.php:1167
117
  #, php-format
118
  msgid "%s for Post Notification: {{POSTTITLE}}"
119
  msgstr ""
120
 
121
+ #: ../classes/es-register.php:1167
122
  msgid "Available Keyword"
123
  msgstr ""
124
 
125
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
126
  #, php-format
127
  msgid ""
128
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
130
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
131
  msgstr ""
132
 
133
+ #: ../classes/es-register.php:1269
134
  #, php-format
135
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
136
  msgstr ""
189
  msgid " &gt;&gt; "
190
  msgstr ""
191
 
192
+ #: ../sentmail/sentmail-show.php:216
193
  msgid ""
194
  "<strong>Note:</strong> If you delete record for the emails with Status = "
195
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
196
  "deleted too and email will not be sent."
197
  msgstr ""
198
 
199
+ #: ../settings/settings-edit.php:166
200
+ msgid ""
201
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
202
+ "only if sending email via immediately)"
203
+ msgstr ""
204
+
205
+ #: ../settings/settings-edit.php:173
206
+ msgid ""
207
+ "Content for the email report which will be sent to admin.<br />Available "
208
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
209
+ "sent only if sending email via immediately)"
210
+ msgstr ""
211
+
212
+ #: ../settings/settings-edit.php:393
213
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
214
+ msgstr ""
215
+
216
+ #: ../settings/settings-edit.php:569
217
  msgid "Please enter valid email count."
218
  msgstr ""
219
 
222
  msgid " to view details."
223
  msgstr ""
224
 
225
+ #: ../pricing/pricing.php:157
226
+ msgid "Go a notch higher"
227
+ msgstr ""
228
+
229
+ #: ../pricing/pricing.php:158
230
+ msgid "Get the Email Subscribers Pro Plugin at"
231
+ msgstr ""
232
+
233
+ #: ../pricing/pricing.php:162
234
+ msgid "month"
235
+ msgstr ""
236
+
237
+ #: ../pricing/pricing.php:163
238
+ msgid "Sign up for monthly"
239
+ msgstr ""
240
+
241
+ #: ../pricing/pricing.php:166
242
+ msgid "year"
243
+ msgstr ""
244
+
245
+ #: ../pricing/pricing.php:167
246
+ msgid "Sign up for yearly"
247
+ msgstr ""
248
+
249
+ #: ../pricing/pricing.php:171
250
+ msgid "Get more with Email Subscribers Pro"
251
+ msgstr ""
252
+
253
+ #: ../pricing/pricing.php:173
254
+ msgid "All features of Email Subscribers free plugin + everything below:"
255
+ msgstr ""
256
+
257
+ #: ../pricing/pricing.php:176
258
+ msgid "Protect your list from bot attacks"
259
+ msgstr ""
260
+
261
+ #: ../pricing/pricing.php:177
262
+ msgid "Use "
263
+ msgstr ""
264
+
265
+ #: ../pricing/pricing.php:177
266
+ msgid "captcha"
267
+ msgstr ""
268
+
269
+ #: ../pricing/pricing.php:177
270
+ msgid ""
271
+ "to protect your email list from bots. The simple maths captcha helps "
272
+ "identifying bots from humans and eliminates spam signups."
273
+ msgstr ""
274
+
275
+ #: ../pricing/pricing.php:180
276
+ msgid "Check email status & increase email success rate"
277
+ msgstr ""
278
+
279
+ #: ../pricing/pricing.php:181
280
+ msgid "Double check the status of the emails addresses and increase "
281
+ msgstr ""
282
+
283
+ #: ../pricing/pricing.php:181
284
+ msgid "email success rate"
285
+ msgstr ""
286
+
287
+ #: ../pricing/pricing.php:181
288
+ msgid "of your email campaign. "
289
+ msgstr ""
290
+
291
+ #: ../pricing/pricing.php:187
292
+ msgid "Fullproof email deliverability"
293
+ msgstr ""
294
+
295
+ #: ../pricing/pricing.php:188
296
+ msgid ""
297
+ "Reduce the risk of emails ending in trash or spam. Increase email "
298
+ "deliverability by double checking emails for their "
299
+ msgstr ""
300
+
301
+ #: ../pricing/pricing.php:188
302
+ msgid "spam score"
303
+ msgstr ""
304
+
305
+ #: ../pricing/pricing.php:188
306
+ msgid "before hitting send."
307
+ msgstr ""
308
+
309
+ #: ../pricing/pricing.php:191
310
+ msgid "Track email leads in Google"
311
+ msgstr ""
312
+
313
+ #: ../pricing/pricing.php:192
314
+ msgid "Insert "
315
+ msgstr ""
316
+
317
+ #: ../pricing/pricing.php:192
318
+ msgid "UTM tracking"
319
+ msgstr ""
320
+
321
+ #: ../pricing/pricing.php:192
322
+ msgid ""
323
+ "in all your email CTA’s and track the effectiveness of your emails directly "
324
+ "within Google. Know which/ how many leads landed up from your emails and "
325
+ "tweak emails for better performance."
326
+ msgstr ""
327
+
328
+ #: ../pricing/pricing.php:199
329
+ msgid "Save time, use readymade email templates"
330
+ msgstr ""
331
+
332
+ #: ../pricing/pricing.php:200
333
+ msgid ""
334
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
335
+ "elegant templates</strong> to send your next email campaign."
336
+ msgstr ""
337
+
338
+ #: ../pricing/pricing.php:203
339
+ msgid "Customize confirmation and unsubscribe page"
340
+ msgstr ""
341
+
342
+ #: ../pricing/pricing.php:204
343
+ msgid ""
344
+ "Communicate with subscribers. Redirect them to beautifully designed "
345
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
346
+ msgstr ""
347
+
348
+ #: ../pricing/pricing.php:211
349
+ msgid "Coming soon..."
350
+ msgstr ""
351
+
352
+ #: ../pricing/pricing.php:213
353
+ msgid "Spam testing"
354
+ msgstr ""
355
+
356
+ #: ../pricing/pricing.php:214
357
+ msgid "Bounce handling"
358
+ msgstr ""
359
+
360
+ #: ../pricing/pricing.php:215
361
+ msgid "Advanced reporting"
362
+ msgstr ""
363
+
364
  #: ../classes/es-common.php:13
365
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
366
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confermato</span>"
405
  msgid "<span style=\"color:#993399;\">Immediately</span>"
406
  msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
407
 
408
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
409
+ #: register.php:1055
410
  msgid "Email Subscribers"
411
  msgstr "Email Iscritti"
412
 
413
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
414
  #: subscribers/view-subscriber-show.php:242
415
  msgid "Subscribers"
416
  msgstr "Iscritti"
417
 
418
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
419
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
420
+ #: 1049
421
  msgid "Templates"
422
  msgstr "Modelli"
423
 
424
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
425
  #: 370 ../notification/notification-show.php:52
426
  msgid "Post Notifications"
427
  msgstr "Notifiche Post"
428
 
429
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
430
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
431
  msgid "Newsletters"
432
  msgstr "Newsletter"
433
 
434
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
435
  #: settings/settings-edit.php:42
436
  msgid "Settings"
437
  msgstr "Configurazione"
438
 
439
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
440
  #: sentmail/sentmail-show.php:93
441
  msgid "Reports"
442
  msgstr "Rapporti"
443
 
444
+ #: ../classes/es-register.php:187
445
  msgid "Help & Info"
446
  msgstr "Aiuto e Informazioni"
447
 
448
+ #: ../classes/es-register.php:188
449
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
450
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aiuto e Informazioni</span>"
451
 
452
+ #: ../classes/es-register.php:204
453
  msgctxt "view-subscriber-enhanced-select"
454
  msgid "Please enter subscriber email address."
455
  msgstr "Inserisci l'indirizzo email dell'iscritto."
456
 
457
+ #: ../classes/es-register.php:205
458
  msgctxt "view-subscriber-enhanced-select"
459
  msgid "Please select subscriber email status."
460
  msgstr "Seleziona lo statu dell'iscritto"
461
 
462
+ #: ../classes/es-register.php:206
463
  msgctxt "view-subscriber-enhanced-select"
464
  msgid "Please select or create group for this subscriber."
465
  msgstr "Seleziona o crea un gruppo per questo iscritto."
466
 
467
+ #: ../classes/es-register.php:207
468
  msgctxt "view-subscriber-enhanced-select"
469
  msgid "Do you want to delete this record?"
470
  msgstr "Vuoi cancellare questo record ?"
471
 
472
+ #: ../classes/es-register.php:208
473
  msgctxt "view-subscriber-enhanced-select"
474
  msgid "Please select the bulk action."
475
  msgstr "Seleziona una azione di gruppo."
476
 
477
+ #: ../classes/es-register.php:209
478
  msgctxt "view-subscriber-enhanced-select"
479
  msgid "Are you sure you want to delete selected records?"
480
  msgstr "Sei sicuro di voler cancellare i record selezionati ?"
481
 
482
+ #: ../classes/es-register.php:210
483
  msgctxt "view-subscriber-enhanced-select"
484
  msgid ""
485
  "Do you want to resend confirmation email? Also please note, this will update "
488
  "Vuoi reinviare l'email di conferma ? Tieni presente che questa azione mette "
489
  "l'iscritto nello status 'Non Confermato'."
490
 
491
+ #: ../classes/es-register.php:211
492
  msgctxt "view-subscriber-enhanced-select"
493
  msgid "Please select new subscriber group."
494
  msgstr "Seleziona un nuovo gruppo."
495
 
496
+ #: ../classes/es-register.php:212
497
  msgctxt "view-subscriber-enhanced-select"
498
  msgid "Please select new status for subscribers"
499
  msgstr "Seleziona il nuovo status degli iscritti"
500
 
501
+ #: ../classes/es-register.php:213
502
  msgctxt "view-subscriber-enhanced-select"
503
  msgid "Do you want to update subscribers group?"
504
  msgstr "Vuoi aggiornare il gruppo degli iscritti ?"
505
 
506
+ #: ../classes/es-register.php:214
507
  msgctxt "view-subscriber-enhanced-select"
508
  msgid "Do you want to update subscribers status?"
509
  msgstr "Vuoi aggiornare lo status degli iscritti ?"
510
 
511
+ #: ../classes/es-register.php:215
512
  msgctxt "view-subscriber-enhanced-select"
513
  msgid ""
514
  "Please select only csv file. Please check official website for csv structure."
517
  "Utilizzare solo file csv. Controllare il sito ufficiale per la struttura del "
518
  "file csv."
519
 
520
+ #: ../classes/es-register.php:223
521
  msgctxt "notification-enhanced-select"
522
  msgid "Please select subscribers group."
523
  msgstr "Seleziona il gruppo degli iscritti."
524
 
525
+ #: ../classes/es-register.php:224
526
  msgctxt "notification-enhanced-select"
527
  msgid "Please select notification mail subject. Use templates menu to create new."
528
  msgstr ""
529
  "Seleziona l'oggetto della mail di notifica. Utilizza il menu Modelli per "
530
  "crearne uno nuovo."
531
 
532
+ #: ../classes/es-register.php:225
533
  msgctxt "notification-enhanced-select"
534
  msgid "Please select notification status."
535
  msgstr "Seleziona lo status della notifica."
536
 
537
+ #: ../classes/es-register.php:226
538
  msgctxt "notification-enhanced-select"
539
  msgid "Do you want to delete this record?"
540
  msgstr "Vuoi cancellare questo record ?"
541
 
542
+ #: ../classes/es-register.php:234
543
  msgctxt "sendmail-enhanced-select"
544
  msgid "Please select your mail subject."
545
  msgstr "Scegli l'oggetto della mail."
546
 
547
+ #: ../classes/es-register.php:235
548
  msgctxt "sendmail-enhanced-select"
549
  msgid "Please select your mail type."
550
  msgstr "Seleziona il tipo di email."
551
 
552
+ #: ../classes/es-register.php:236
553
  msgctxt "sendmail-enhanced-select"
554
  msgid ""
555
  "Have you double checked your selected group? If so, let's go ahead and send "
556
  "this."
557
  msgstr "Hai controllato due volte il gruppo ? Se sì, inviala."
558
 
559
+ #: ../classes/es-register.php:244
560
  msgctxt "sentmail-enhanced-select"
561
  msgid "Do you want to delete this record?"
562
  msgstr "Vuoi cancellare questo record ?"
563
 
564
+ #: ../classes/es-register.php:245
565
  msgctxt "sentmail-enhanced-select"
566
  msgid "Do you want to delete all records except latest 10?"
567
  msgstr "vuoi cancellare tutti i record tranne gli ultimi 10 ?"
568
 
569
+ #: ../classes/es-register.php:253
570
  msgctxt "cron-enhanced-select"
571
  msgid "Please select enter number of mails you want to send per hour/trigger."
572
  msgstr "Seleziona il numero di email che vuoi spedire per ogni ora."
573
 
574
+ #: ../classes/es-register.php:254
575
  msgctxt "cron-enhanced-select"
576
  msgid "Please enter the mail count, only number."
577
  msgstr "Inserisci il numero di email, solo numeri."
578
 
579
+ #: ../classes/es-register.php:267
580
  msgctxt "widget-page-enhanced-select"
581
  msgid "Please enter email address"
582
  msgstr "Inserisci l'indirizzo email"
583
 
584
+ #: ../classes/es-register.php:268
585
  msgctxt "widget-page-enhanced-select"
586
  msgid "Successfully Subscribed."
587
  msgstr "Iscritto con successo."
588
 
589
+ #: ../classes/es-register.php:269
590
  msgctxt "widget-page-enhanced-select"
591
  msgid ""
592
  "Your subscription was successful! Kindly check your mailbox and confirm your "
597
  "di posta e confermare l'abbonamento. Se non vedi l'email entro pochi minuti, "
598
  "controlla la cartella spam / junk."
599
 
600
+ #: ../classes/es-register.php:270
601
  msgctxt "widget-page-enhanced-select"
602
  msgid "Email Address already exists!"
603
  msgstr "Questo indirizzo email è già presente !"
604
 
605
+ #: ../classes/es-register.php:271
606
  msgctxt "widget-page-enhanced-select"
607
  msgid "Oops.. Unexpected error occurred."
608
  msgstr "Oops... Si è verificato un errore inatteso."
609
 
610
+ #: ../classes/es-register.php:272
611
  msgctxt "widget-page-enhanced-select"
612
  msgid "Invalid email address"
613
  msgstr "Indirizzo email non valido"
614
 
615
+ #: ../classes/es-register.php:273
616
  msgctxt "widget-page-enhanced-select"
617
  msgid "Please try after some time"
618
  msgstr "Per favore riprova tra qualche minuto"
619
 
620
+ #: ../classes/es-register.php:698
621
  msgid ""
622
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
623
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
629
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
630
  "&#9733;&#9733;&#9733;&#9733;</a>. Molte grazie in anticipo da Icegram !"
631
 
632
+ #: ../classes/es-register.php:1034
633
  #, php-format
634
  msgid "Email Subscribers version: <strong>%s</strong>"
635
  msgstr "Email Subscribers versione: <strong>%s</strong>"
636
 
637
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
638
  msgid "Add new Template"
639
  msgstr "Aggiungi nuovo Modello"
640
 
641
+ #: ../classes/es-register.php:1047
642
  msgid "Edit Templates"
643
  msgstr "Modifica Modello"
644
 
645
+ #: ../classes/es-register.php:1048
646
  msgid "New Templates"
647
  msgstr "Nuovo Modello"
648
 
649
+ #: ../classes/es-register.php:1050
650
  msgid "View Templates"
651
  msgstr "Visualizza Modelli"
652
 
653
+ #: ../classes/es-register.php:1051
654
  msgid "Search Templates"
655
  msgstr "Ricerca Modelli"
656
 
657
+ #: ../classes/es-register.php:1052
658
  msgid "No Templates found"
659
  msgstr "Nessun Modello trovato"
660
 
661
+ #: ../classes/es-register.php:1053
662
  msgid "No Templates found in Trash"
663
  msgstr "Nessun Modello trovato nel Cestino"
664
 
665
+ #: ../classes/es-register.php:1056
666
  msgid "Thumbnail (For Visual Representation only)"
667
  msgstr "Miniature (solo per rappresentazione visuale)"
668
 
669
+ #: ../classes/es-register.php:1057
670
  msgid "Set thumbnail"
671
  msgstr "Configura minuature"
672
 
673
+ #: ../classes/es-register.php:1094
674
  msgid "Template Type"
675
  msgstr "Tipo Modello"
676
 
677
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
678
  msgid "Thumbnail"
679
  msgstr "Miniatura"
680
 
681
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
682
  #: sentmail/sentmail-show.php:121
683
  msgid "Preview"
684
  msgstr "Anteprima"
685
 
686
+ #: ../classes/es-register.php:1174
687
  msgid "Select your Email Template Type"
688
  msgstr "Seleziona il tipo di Modello Email"
689
 
690
+ #: ../classes/es-register.php:1176
691
  msgid "Newsletter"
692
  msgstr "Newsletter"
693
 
694
+ #: ../classes/es-register.php:1177
695
  msgid "Post Notification"
696
  msgstr "Notifica Post"
697
 
698
+ #: ../classes/es-register.php:1226
699
  msgid "Preview Template"
700
  msgstr "Anteprima Modello"
701
 
702
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
703
+ #: register.php:1261 ../classes/es-register.php:1269
704
  msgid "Available Keywords"
705
  msgstr "Parole Chiave disponibili"
706
 
707
+ #: ../classes/es-register.php:1246
708
  #, php-format
709
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
710
  msgstr "<br/><br/>%s per la Newsletter: {{NAME}}, {{EMAIL}}"
711
 
712
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
713
  msgid "Name"
714
  msgstr "Nome"
715
 
716
+ #: ../classes/es-register.php:1311
717
  msgid "Email *"
718
  msgstr "Email *"
719
 
720
+ #: ../classes/es-register.php:1320 ../help/help.php:202
721
  msgid "Subscribe"
722
  msgstr "Iscriviti"
723
 
724
+ #: ../classes/es-register.php:1424
725
  msgid "Widget Title"
726
  msgstr "Titolo del Widget"
727
 
728
+ #: ../classes/es-register.php:1428
729
  msgid "Short description about subscription form"
730
  msgstr "Breve descrizione per il modulo di iscrizione"
731
 
732
+ #: ../classes/es-register.php:1432
733
  msgid "Display Name Field"
734
  msgstr "Campo Visualizza Nome"
735
 
736
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
737
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
738
  msgid "YES"
739
  msgstr "SI"
740
 
741
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
742
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
743
  msgid "NO"
744
  msgstr "NO"
745
 
746
+ #: ../classes/es-register.php:1439
747
  msgid "Subscriber Group"
748
  msgstr "Gruppo Iscritti"
749
 
1197
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1198
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1199
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1200
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1201
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1202
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1203
  msgid "Select"
1263
  msgid "Disable email notification"
1264
  msgstr "Disattiva notifica email"
1265
 
1266
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1267
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1268
  msgid "Save"
1269
  msgstr "Salva"
1270
 
1387
  msgid "Send email via cron job"
1388
  msgstr "Invia email via cron job"
1389
 
1390
+ #: ../sendmail/sendmail.php:148
1391
  msgid "Select Subscribers group to Send Email"
1392
  msgstr "Seleziona il Gruppo iscritti a cui inviare l'email"
1393
 
1394
+ #: ../sendmail/sendmail.php:180
1395
  msgid "Recipients : 0 "
1396
  msgstr "Destinatari: 0"
1397
 
1398
+ #: ../sendmail/sendmail.php:182
1399
  #, php-format
1400
  msgid "Recipients : %s"
1401
  msgstr "Destinatari: %s"
1402
 
1403
+ #: ../sendmail/sendmail.php:185
1404
  msgid ""
1405
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1406
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1410
  "vivamente di modificare il tipo di email a Cron e Invia mail via Cron Job."
1411
  "</strong><br>Clicca su Aiuto per maggiori informazioni."
1412
 
1413
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1414
  msgid "Send Email"
1415
  msgstr "Invia email"
1416
 
1417
+ #: ../sendmail/sendmail.php:202
1418
  msgid "Reset"
1419
  msgstr "Resetta"
1420
 
1697
  msgid "Sent Report Subject"
1698
  msgstr "Oggetto del report inviato"
1699
 
 
 
 
 
1700
  #: ../settings/settings-edit.php:172
1701
  msgid "Sent Report Content"
1702
  msgstr "Contenuto del Report"
1703
 
 
 
 
 
 
 
 
 
 
1704
  #: ../settings/settings-edit.php:184
1705
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1706
  msgstr "Oggetto email per il Doppio Opt-In (email di conferma)"
1903
  "Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
1904
  "essere modificato."
1905
 
1906
+ #: ../settings/settings-edit.php:377
1907
  msgid "Email Count"
1908
  msgstr "Numero di Email"
1909
 
1910
+ #: ../settings/settings-edit.php:378
1911
  msgid "Number of emails that you want to trigger per hour."
1912
  msgstr "Nuomero di email che vuoi spedire all'ora."
1913
 
1914
+ #: ../settings/settings-edit.php:383
1915
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1916
  msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
1917
 
1918
+ #: ../settings/settings-edit.php:388
1919
  msgid "Cron Report"
1920
  msgstr "Rapporto del Cron"
1921
 
1922
+ #: ../settings/settings-edit.php:389
1923
  msgid ""
1924
  "Email to admin whenever a cron URL is triggered from your server.<br "
1925
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1927
  "Invia email all'Amministratore quando un cron viene gestito dal server<br />."
1928
  " Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1929
 
1930
+ #: ../settings/settings-edit.php:400
1931
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1932
  msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
1933
 
1934
+ #: ../settings/settings-edit.php:401
1935
  msgid ""
1936
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1937
  "schedule-cron-emails/?"
1943
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
1944
  "Cron?</a>"
1945
 
1946
+ #: ../settings/settings-edit.php:402
1947
  msgid ""
1948
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1949
  "schedule-cron-emails-in-cpanel/?"
1955
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1956
  "un cron job in cPanel</a>"
1957
 
1958
+ #: ../settings/settings-edit.php:403
1959
  msgid ""
1960
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1961
  "schedule-cron-emails-in-parallels-plesk/?"
1967
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1968
  "un cron job in Plesk</a>"
1969
 
1970
+ #: ../settings/settings-edit.php:404
1971
  msgid ""
1972
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1973
  "if-hosting-doesnt-support-cron-jobs/?"
1979
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
1980
  "Hosting non supporta i cron job ?</a>"
1981
 
1982
+ #: ../settings/settings-edit.php:520
1983
  msgid "Please enter sender of notifications from name."
1984
  msgstr "Inserisci il nome del mittente delle notifiche."
1985
 
1986
+ #: ../settings/settings-edit.php:525
1987
  msgid "Please enter sender of notifications from email."
1988
  msgstr "Inserisci l'email del mittente delle notifiche."
1989
 
1990
+ #: ../settings/settings-edit.php:584
1991
  msgid "Settings Saved."
1992
  msgstr "Configurazione salvata."
1993
 
1994
+ #: ../settings/settings-edit.php:587
1995
  msgid "Oops, unable to update."
1996
  msgstr "Oops, impossibile aggiornare."
1997
 
2445
  "Aggiungi un modulo di iscrizione al sito, invia email in HTML e aggiorna "
2446
  "automaticamente gli iscritti quando viene aggiunto un nuovo articolo."
2447
 
2448
+ #: ../email-subscribers.php:96
2449
  msgctxt "timezone date format"
2450
  msgid "Y-m-d H:i:s"
2451
  msgstr "A-m-g O:m:s"
languages/email-subscribers-nb_NO.mo CHANGED
Binary file
languages/email-subscribers-nb_NO.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:45 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Norwegian (Bokmål)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,24 +22,33 @@ msgstr ""
22
  "X-Loco-Target-Locale: nb_NO\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
27
  msgid "Templates"
28
  msgstr ""
29
 
30
- #: ../classes/es-register.php:201
 
 
 
 
 
 
 
 
31
  msgctxt "view-subscriber-enhanced-select"
32
  msgid ""
33
  "Do you want to resend confirmation email? Also please note, this will update "
34
  "subscriber current status to 'Unconfirmed'."
35
  msgstr ""
36
 
37
- #: ../classes/es-register.php:215
38
  msgctxt "notification-enhanced-select"
39
  msgid "Please select notification mail subject. Use templates menu to create new."
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,83 +56,152 @@ msgid ""
47
  "spam/junk folder."
48
  msgstr ""
49
 
50
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  msgid ""
52
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
53
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  msgstr ""
55
 
56
- #: ../classes/es-register.php:728
57
- msgid "Here's how"
58
  msgstr ""
59
 
60
- #: ../classes/es-register.php:728
61
- msgid "Not interested. Dismiss this."
62
  msgstr ""
63
 
64
- #: ../classes/es-register.php:767
65
  #, php-format
66
  msgid "Email Subscribers version: <strong>%s</strong>"
67
  msgstr ""
68
 
69
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
70
  msgid "Add new Template"
71
  msgstr ""
72
 
73
- #: ../classes/es-register.php:780
74
  msgid "Edit Templates"
75
  msgstr ""
76
 
77
- #: ../classes/es-register.php:781
78
  msgid "New Templates"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:783
82
  msgid "View Templates"
83
  msgstr ""
84
 
85
- #: ../classes/es-register.php:784
86
  msgid "Search Templates"
87
  msgstr ""
88
 
89
- #: ../classes/es-register.php:785
90
  msgid "No Templates found"
91
  msgstr ""
92
 
93
- #: ../classes/es-register.php:786
94
  msgid "No Templates found in Trash"
95
  msgstr ""
96
 
97
- #: ../classes/es-register.php:789
98
  msgid "Thumbnail (For Visual Representation only)"
99
  msgstr ""
100
 
101
- #: ../classes/es-register.php:790
102
  msgid "Set thumbnail"
103
  msgstr ""
104
 
105
- #: ../classes/es-register.php:827
106
  msgid "Template Type"
107
  msgstr ""
108
 
109
- #: ../classes/es-register.php:900
110
  #, php-format
111
  msgid "%s for Post Notification: {{POSTTITLE}}"
112
  msgstr ""
113
 
114
- #: ../classes/es-register.php:900
115
  msgid "Available Keyword"
116
  msgstr ""
117
 
118
- #: ../classes/es-register.php:907
119
  msgid "Select your Email Template Type"
120
  msgstr ""
121
 
122
- #: ../classes/es-register.php:959
123
  msgid "Preview Template"
124
  msgstr ""
125
 
126
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
127
  #, php-format
128
  msgid ""
129
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -131,12 +209,12 @@ msgid ""
131
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
132
  msgstr ""
133
 
134
- #: ../classes/es-register.php:979
135
  #, php-format
136
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
137
  msgstr ""
138
 
139
- #: ../classes/es-register.php:1002
140
  #, php-format
141
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
142
  msgstr ""
@@ -274,7 +352,7 @@ msgid ""
274
  "a slight variation on how your customer will view the email content."
275
  msgstr ""
276
 
277
- #: ../sentmail/sentmail-show.php:212
278
  msgid ""
279
  "<strong>Note:</strong> If you delete record for the emails with Status = "
280
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
@@ -293,10 +371,17 @@ msgid ""
293
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
294
  msgstr ""
295
 
 
 
 
 
 
 
296
  #: ../settings/settings-edit.php:173
297
  msgid ""
298
  "Content for the email report which will be sent to admin.<br />Available "
299
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
 
300
  msgstr ""
301
 
302
  #: ../settings/settings-edit.php:192
@@ -322,13 +407,17 @@ msgstr ""
322
  msgid "Templates Menu"
323
  msgstr ""
324
 
325
- #: ../settings/settings-edit.php:388
326
  msgid ""
327
  "Email to admin whenever a cron URL is triggered from your server.<br "
328
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
329
  msgstr ""
330
 
331
- #: ../settings/settings-edit.php:566
 
 
 
 
332
  msgid "Please enter valid email count."
333
  msgstr ""
334
 
@@ -372,6 +461,145 @@ msgid ""
372
  "customer will view the email content."
373
  msgstr ""
374
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
  #: ../classes/es-common.php:13
376
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
377
  msgstr "<span style=«color:#006600;font-weight:bold;»>Bekreftet</span>"
@@ -416,127 +644,127 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
416
  msgid "<span style=\"color:#993399;\">Immediately</span>"
417
  msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
418
 
419
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
420
- #: register.php:788
421
  msgid "Email Subscribers"
422
  msgstr "Email Subscribers"
423
 
424
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
425
  #: subscribers/view-subscriber-show.php:242
426
  msgid "Subscribers"
427
  msgstr "Abonnenter"
428
 
429
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
430
  #: 370 ../notification/notification-show.php:52
431
  msgid "Post Notifications"
432
  msgstr "Varsler"
433
 
434
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
435
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
436
  msgid "Newsletters"
437
  msgstr "Nyhetsbrev"
438
 
439
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
440
  #: settings/settings-edit.php:42
441
  msgid "Settings"
442
  msgstr "Innstillinger"
443
 
444
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
445
  #: sentmail/sentmail-show.php:93
446
  msgid "Reports"
447
  msgstr "Rapporter"
448
 
449
- #: ../classes/es-register.php:183
450
  msgid "Help & Info"
451
  msgstr "Hjelp & Info"
452
 
453
- #: ../classes/es-register.php:184
454
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
455
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hjelp og info</span>"
456
 
457
- #: ../classes/es-register.php:195
458
  msgctxt "view-subscriber-enhanced-select"
459
  msgid "Please enter subscriber email address."
460
  msgstr "Angi abonnent e-postadresse."
461
 
462
- #: ../classes/es-register.php:196
463
  msgctxt "view-subscriber-enhanced-select"
464
  msgid "Please select subscriber email status."
465
  msgstr "Velg abonnents e-poststatus."
466
 
467
- #: ../classes/es-register.php:197
468
  msgctxt "view-subscriber-enhanced-select"
469
  msgid "Please select or create group for this subscriber."
470
  msgstr "Velg eller Opprett gruppe for denne abonnent."
471
 
472
- #: ../classes/es-register.php:198
473
  msgctxt "view-subscriber-enhanced-select"
474
  msgid "Do you want to delete this record?"
475
  msgstr "Er du sikker på at du vil slette denne oppføringen?"
476
 
477
- #: ../classes/es-register.php:199
478
  msgctxt "view-subscriber-enhanced-select"
479
  msgid "Please select the bulk action."
480
  msgstr "Velg massehandling."
481
 
482
- #: ../classes/es-register.php:200
483
  msgctxt "view-subscriber-enhanced-select"
484
  msgid "Are you sure you want to delete selected records?"
485
  msgstr "Er du sikker på at du vil slette valgte oppføringer?"
486
 
487
- #: ../classes/es-register.php:202
488
  msgctxt "view-subscriber-enhanced-select"
489
  msgid "Please select new subscriber group."
490
  msgstr "Velg ny abonnent gruppe."
491
 
492
- #: ../classes/es-register.php:203
493
  msgctxt "view-subscriber-enhanced-select"
494
  msgid "Please select new status for subscribers"
495
  msgstr "Velg ny status for abonnenter"
496
 
497
- #: ../classes/es-register.php:204
498
  msgctxt "view-subscriber-enhanced-select"
499
  msgid "Do you want to update subscribers group?"
500
  msgstr "Vil du oppdatere abonnenter gruppe?"
501
 
502
- #: ../classes/es-register.php:205
503
  msgctxt "view-subscriber-enhanced-select"
504
  msgid "Do you want to update subscribers status?"
505
  msgstr "Vil du oppdatere abonnenter status?"
506
 
507
- #: ../classes/es-register.php:206
508
  msgctxt "view-subscriber-enhanced-select"
509
  msgid ""
510
  "Please select only csv file. Please check official website for csv structure."
511
  "."
512
  msgstr "Velg bare csv-filen. Kontroller hjemmeside for csv-struktur."
513
 
514
- #: ../classes/es-register.php:214
515
  msgctxt "notification-enhanced-select"
516
  msgid "Please select subscribers group."
517
  msgstr "Velg abonnent gruppe."
518
 
519
- #: ../classes/es-register.php:216
520
  msgctxt "notification-enhanced-select"
521
  msgid "Please select notification status."
522
  msgstr "Velg varselstatusen."
523
 
524
- #: ../classes/es-register.php:217
525
  msgctxt "notification-enhanced-select"
526
  msgid "Do you want to delete this record?"
527
  msgstr "Vil du slette denne posten?"
528
 
529
- #: ../classes/es-register.php:225
530
  msgctxt "sendmail-enhanced-select"
531
  msgid "Please select your mail subject."
532
  msgstr "Vennligst velg e-post subjekt."
533
 
534
- #: ../classes/es-register.php:226
535
  msgctxt "sendmail-enhanced-select"
536
  msgid "Please select your mail type."
537
  msgstr "Velg din e-post type."
538
 
539
- #: ../classes/es-register.php:227
540
  msgctxt "sendmail-enhanced-select"
541
  msgid ""
542
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -545,57 +773,57 @@ msgstr ""
545
  "Har du dobbelt sjekket den valgte gruppen? Hvis ja, la oss gå videre og "
546
  "sende dette."
547
 
548
- #: ../classes/es-register.php:235
549
  msgctxt "sentmail-enhanced-select"
550
  msgid "Do you want to delete this record?"
551
  msgstr "Vil du slette denne posten?"
552
 
553
- #: ../classes/es-register.php:236
554
  msgctxt "sentmail-enhanced-select"
555
  msgid "Do you want to delete all records except latest 10?"
556
  msgstr "Vil du slette alle poster unntatt siste 10?"
557
 
558
- #: ../classes/es-register.php:244
559
  msgctxt "cron-enhanced-select"
560
  msgid "Please select enter number of mails you want to send per hour/trigger."
561
  msgstr "Velg Angi antall poster som du vil sende per time/trigger."
562
 
563
- #: ../classes/es-register.php:245
564
  msgctxt "cron-enhanced-select"
565
  msgid "Please enter the mail count, only number."
566
  msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
567
 
568
- #: ../classes/es-register.php:258
569
  msgctxt "widget-page-enhanced-select"
570
  msgid "Please enter email address"
571
  msgstr "Vennligst skriv e-postadresse"
572
 
573
- #: ../classes/es-register.php:259
574
  msgctxt "widget-page-enhanced-select"
575
  msgid "Successfully Subscribed."
576
  msgstr "Du er nå abonnent."
577
 
578
- #: ../classes/es-register.php:261
579
  msgctxt "widget-page-enhanced-select"
580
  msgid "Email Address already exists!"
581
  msgstr "Epostadressen finnes allerede!"
582
 
583
- #: ../classes/es-register.php:262
584
  msgctxt "widget-page-enhanced-select"
585
  msgid "Oops.. Unexpected error occurred."
586
  msgstr "Oops... Det oppstod en uventet feil."
587
 
588
- #: ../classes/es-register.php:263
589
  msgctxt "widget-page-enhanced-select"
590
  msgid "Invalid email address"
591
  msgstr "Ugyldig e-postadresse"
592
 
593
- #: ../classes/es-register.php:264
594
  msgctxt "widget-page-enhanced-select"
595
  msgid "Please try after some time"
596
  msgstr "Prøv på nytt senere"
597
 
598
- #: ../classes/es-register.php:753
599
  msgid ""
600
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
601
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -607,63 +835,63 @@ msgstr ""
607
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
608
  "fra Icegram!"
609
 
610
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
611
  msgid "Thumbnail"
612
  msgstr "Miniatyrbilde"
613
 
614
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
615
  #: sentmail/sentmail-show.php:121
616
  msgid "Preview"
617
  msgstr "Forhåndsvis"
618
 
619
- #: ../classes/es-register.php:909
620
  msgid "Newsletter"
621
  msgstr "Nyhetsbrev"
622
 
623
- #: ../classes/es-register.php:910
624
  msgid "Post Notification"
625
  msgstr "Varsel"
626
 
627
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
628
- #: register.php:994 ../classes/es-register.php:1002
629
  msgid "Available Keywords"
630
  msgstr "Tilgjengelige søkeord"
631
 
632
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
633
  msgid "Name"
634
  msgstr "Navn"
635
 
636
- #: ../classes/es-register.php:1044
637
  msgid "Email *"
638
  msgstr "E-post *"
639
 
640
- #: ../classes/es-register.php:1053 ../help/help.php:202
641
  msgid "Subscribe"
642
  msgstr "Abonner"
643
 
644
- #: ../classes/es-register.php:1157
645
  msgid "Widget Title"
646
  msgstr "Widget tittel"
647
 
648
- #: ../classes/es-register.php:1161
649
  msgid "Short description about subscription form"
650
  msgstr "Kort beskrivelse av ditt abonnement skjema"
651
 
652
- #: ../classes/es-register.php:1165
653
  msgid "Display Name Field"
654
  msgstr "Vis Navnefelt"
655
 
656
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
657
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
658
  msgid "YES"
659
  msgstr "JA"
660
 
661
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
662
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
663
  msgid "NO"
664
  msgstr "NEI"
665
 
666
- #: ../classes/es-register.php:1172
667
  msgid "Subscriber Group"
668
  msgstr "Abonnent gruppe"
669
 
@@ -1025,7 +1253,7 @@ msgstr "Hjelp"
1025
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1026
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1027
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1028
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
1029
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1030
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1031
  msgid "Select"
@@ -1086,8 +1314,8 @@ msgstr "Legge til cron og sende epost via cron jobb"
1086
  msgid "Disable email notification"
1087
  msgstr "Deaktivere e-postvarsling"
1088
 
1089
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1090
- #: 291 ../subscribers/view-subscriber-edit.php:191
1091
  msgid "Save"
1092
  msgstr "Lagre"
1093
 
@@ -1210,20 +1438,20 @@ msgstr "Velg e-posttype"
1210
  msgid "Send email via cron job"
1211
  msgstr "Sende e-post via cron jobb"
1212
 
1213
- #: ../sendmail/sendmail.php:147
1214
  msgid "Select Subscribers group to Send Email"
1215
  msgstr "Velg abonnent gruppe som skal motta e-post"
1216
 
1217
- #: ../sendmail/sendmail.php:179
1218
  msgid "Recipients : 0 "
1219
  msgstr "Mottakere : 0 "
1220
 
1221
- #: ../sendmail/sendmail.php:181
1222
  #, php-format
1223
  msgid "Recipients : %s"
1224
  msgstr "Mottakere: %s"
1225
 
1226
- #: ../sendmail/sendmail.php:184
1227
  msgid ""
1228
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1229
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1233,11 +1461,11 @@ msgstr ""
1233
  "endrer e-post type til Cron og sender e-post via Cron-jobb."
1234
  "</strong><br>Klikk på hjelp for mer informasjon."
1235
 
1236
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1237
  msgid "Send Email"
1238
  msgstr "Send e-post"
1239
 
1240
- #: ../sendmail/sendmail.php:201
1241
  msgid "Reset"
1242
  msgstr "Nullstille"
1243
 
@@ -1492,10 +1720,6 @@ msgstr "Admin e-innhold når en ny abonnent registreres"
1492
  msgid "Sent Report Subject"
1493
  msgstr "Sendt rapport emne"
1494
 
1495
- #: ../settings/settings-edit.php:166
1496
- msgid "Subject for the email report which will be sent to admin."
1497
- msgstr "Angi emnet for sendte e-poster rapporten. Det vil bli sendt til Admin."
1498
-
1499
  #: ../settings/settings-edit.php:172
1500
  msgid "Sent Report Content"
1501
  msgstr "Sendte rapport innhold"
@@ -1672,27 +1896,27 @@ msgstr ""
1672
  "Dette er din Cron jobb URL. Det er et skrivebeskyttet felt du anbefales ikke "
1673
  "å endre den."
1674
 
1675
- #: ../settings/settings-edit.php:376
1676
  msgid "Email Count"
1677
  msgstr "Antall e-poster"
1678
 
1679
- #: ../settings/settings-edit.php:377
1680
  msgid "Number of emails that you want to trigger per hour."
1681
  msgstr "Antall e-postmeldinger som skal utløses per time."
1682
 
1683
- #: ../settings/settings-edit.php:382
1684
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1685
  msgstr "(Web verten har begrensninger. Vi foreslår 50 e-poster per time sikre)"
1686
 
1687
- #: ../settings/settings-edit.php:387
1688
  msgid "Cron Report"
1689
  msgstr "Cronlogg"
1690
 
1691
- #: ../settings/settings-edit.php:398
1692
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1693
  msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
1694
 
1695
- #: ../settings/settings-edit.php:399
1696
  msgid ""
1697
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1698
  "schedule-cron-emails/?"
@@ -1702,7 +1926,7 @@ msgstr ""
1702
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1703
  "schedule-cron-emails/\">Hva er Cron?</a>"
1704
 
1705
- #: ../settings/settings-edit.php:400
1706
  msgid ""
1707
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1708
  "schedule-cron-emails-in-cpanel/?"
@@ -1714,7 +1938,7 @@ msgstr ""
1714
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Oppsett "
1715
  "cron jobb i cPanel</a>"
1716
 
1717
- #: ../settings/settings-edit.php:401
1718
  msgid ""
1719
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1720
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1724,7 +1948,7 @@ msgstr ""
1724
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1725
  "schedule-cron-emails-in-parallels-plesk/\">ISetup cron jobb i Plesk</a>"
1726
 
1727
- #: ../settings/settings-edit.php:402
1728
  msgid ""
1729
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1730
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1734,19 +1958,19 @@ msgstr ""
1734
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
1735
  "if-hosting-doesnt-support-cron-jobs/\">Host støtter ikke cron jobber?</a>"
1736
 
1737
- #: ../settings/settings-edit.php:517
1738
  msgid "Please enter sender of notifications from name."
1739
  msgstr "Angi avsenderen av meldinger fra navn."
1740
 
1741
- #: ../settings/settings-edit.php:522
1742
  msgid "Please enter sender of notifications from email."
1743
  msgstr "Angi avsenderen av meldinger fra e-post."
1744
 
1745
- #: ../settings/settings-edit.php:580
1746
  msgid "Settings Saved."
1747
  msgstr "Innstillinger Lagret."
1748
 
1749
- #: ../settings/settings-edit.php:583
1750
  msgid "Oops, unable to update."
1751
  msgstr "Oops, kan ikke oppdatere."
1752
 
@@ -2164,7 +2388,7 @@ msgstr ""
2164
  "Legge til abonnement skjemaer på nettsider, sende HTML nyhetsbrev & "
2165
  "automatisk varsle abonnenter om nye blogginnlegg gang det blir publisert."
2166
 
2167
- #: ../email-subscribers.php:95
2168
  msgctxt "timezone date format"
2169
  msgid "Y-m-d H:i:s"
2170
  msgstr "Tidssone & dato Tid<br>(Y-M-D H:I:S)"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:16 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Norwegian (Bokmål)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "X-Loco-Target-Locale: nb_NO\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
26
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
27
+ #: 1049
28
  msgid "Templates"
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:191
32
+ msgid "Go Pro"
33
+ msgstr ""
34
+
35
+ #: ../classes/es-register.php:192
36
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
37
+ msgstr ""
38
+
39
+ #: ../classes/es-register.php:210
40
  msgctxt "view-subscriber-enhanced-select"
41
  msgid ""
42
  "Do you want to resend confirmation email? Also please note, this will update "
43
  "subscriber current status to 'Unconfirmed'."
44
  msgstr ""
45
 
46
+ #: ../classes/es-register.php:224
47
  msgctxt "notification-enhanced-select"
48
  msgid "Please select notification mail subject. Use templates menu to create new."
49
  msgstr ""
50
 
51
+ #: ../classes/es-register.php:269
52
  msgctxt "widget-page-enhanced-select"
53
  msgid ""
54
  "Your subscription was successful! Kindly check your mailbox and confirm your "
56
  "spam/junk folder."
57
  msgstr ""
58
 
59
+ #: ../classes/es-register.php:699
60
+ msgid "No, I don't like it"
61
+ msgstr ""
62
+
63
+ #: ../classes/es-register.php:705
64
+ msgctxt "timezone date format"
65
+ msgid "Y-m-d"
66
+ msgstr ""
67
+
68
+ #: ../classes/es-register.php:850
69
+ msgid "What do you hate about list building and email marketing?"
70
+ msgstr ""
71
+
72
+ #: ../classes/es-register.php:851
73
+ msgid "Hey, glad to see you!"
74
+ msgstr ""
75
+
76
+ #: ../classes/es-register.php:852
77
  msgid ""
78
+ "I am on a daring quest to solve your biggest problems around list building "
79
+ "and email marketing. "
80
+ msgstr ""
81
+
82
+ #: ../classes/es-register.php:853
83
+ msgid ""
84
+ "So tell me, when it comes to list building and email marketing, what's your "
85
+ "biggest challenge? What's blocking your progress? "
86
+ msgstr ""
87
+
88
+ #: ../classes/es-register.php:858
89
+ msgid "And what's another big challenge? "
90
+ msgstr ""
91
+
92
+ #: ../classes/es-register.php:862
93
+ msgid "Send my problems..."
94
+ msgstr ""
95
+
96
+ #: ../classes/es-register.php:863
97
+ msgid "No, I don't have problems"
98
+ msgstr ""
99
+
100
+ #: ../classes/es-register.php:865
101
+ msgid "Fill the above field first"
102
+ msgstr ""
103
+
104
+ #: ../classes/es-register.php:874
105
+ msgid "Gosh... I hear you mate... "
106
+ msgstr ""
107
+
108
+ #: ../classes/es-register.php:875
109
+ msgid ""
110
+ "Enter your email below, and you will be the first to know when we solve "
111
+ "those problems. "
112
+ msgstr ""
113
+
114
+ #: ../classes/es-register.php:879
115
+ msgid "Nah, I don't like improvements"
116
+ msgstr ""
117
+
118
+ #: ../classes/es-register.php:893
119
+ msgid "I got you."
120
+ msgstr ""
121
+
122
+ #: ../classes/es-register.php:894
123
+ msgid "Will do everything I can to help you. "
124
+ msgstr ""
125
+
126
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
127
+ msgid "Later. "
128
+ msgstr ""
129
+
130
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
131
+ msgid "Andrea Julio "
132
  msgstr ""
133
 
134
+ #: ../classes/es-register.php:902
135
+ msgid "No issues, have a nice day!"
136
  msgstr ""
137
 
138
+ #: ../classes/es-register.php:1020
139
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
140
  msgstr ""
141
 
142
+ #: ../classes/es-register.php:1034
143
  #, php-format
144
  msgid "Email Subscribers version: <strong>%s</strong>"
145
  msgstr ""
146
 
147
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
148
  msgid "Add new Template"
149
  msgstr ""
150
 
151
+ #: ../classes/es-register.php:1047
152
  msgid "Edit Templates"
153
  msgstr ""
154
 
155
+ #: ../classes/es-register.php:1048
156
  msgid "New Templates"
157
  msgstr ""
158
 
159
+ #: ../classes/es-register.php:1050
160
  msgid "View Templates"
161
  msgstr ""
162
 
163
+ #: ../classes/es-register.php:1051
164
  msgid "Search Templates"
165
  msgstr ""
166
 
167
+ #: ../classes/es-register.php:1052
168
  msgid "No Templates found"
169
  msgstr ""
170
 
171
+ #: ../classes/es-register.php:1053
172
  msgid "No Templates found in Trash"
173
  msgstr ""
174
 
175
+ #: ../classes/es-register.php:1056
176
  msgid "Thumbnail (For Visual Representation only)"
177
  msgstr ""
178
 
179
+ #: ../classes/es-register.php:1057
180
  msgid "Set thumbnail"
181
  msgstr ""
182
 
183
+ #: ../classes/es-register.php:1094
184
  msgid "Template Type"
185
  msgstr ""
186
 
187
+ #: ../classes/es-register.php:1167
188
  #, php-format
189
  msgid "%s for Post Notification: {{POSTTITLE}}"
190
  msgstr ""
191
 
192
+ #: ../classes/es-register.php:1167
193
  msgid "Available Keyword"
194
  msgstr ""
195
 
196
+ #: ../classes/es-register.php:1174
197
  msgid "Select your Email Template Type"
198
  msgstr ""
199
 
200
+ #: ../classes/es-register.php:1226
201
  msgid "Preview Template"
202
  msgstr ""
203
 
204
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
205
  #, php-format
206
  msgid ""
207
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
209
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
210
  msgstr ""
211
 
212
+ #: ../classes/es-register.php:1246
213
  #, php-format
214
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
215
  msgstr ""
216
 
217
+ #: ../classes/es-register.php:1269
218
  #, php-format
219
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
220
  msgstr ""
352
  "a slight variation on how your customer will view the email content."
353
  msgstr ""
354
 
355
+ #: ../sentmail/sentmail-show.php:216
356
  msgid ""
357
  "<strong>Note:</strong> If you delete record for the emails with Status = "
358
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
371
  "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
372
  msgstr ""
373
 
374
+ #: ../settings/settings-edit.php:166
375
+ msgid ""
376
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
377
+ "only if sending email via immediately)"
378
+ msgstr ""
379
+
380
  #: ../settings/settings-edit.php:173
381
  msgid ""
382
  "Content for the email report which will be sent to admin.<br />Available "
383
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
384
+ "sent only if sending email via immediately)"
385
  msgstr ""
386
 
387
  #: ../settings/settings-edit.php:192
407
  msgid "Templates Menu"
408
  msgstr ""
409
 
410
+ #: ../settings/settings-edit.php:389
411
  msgid ""
412
  "Email to admin whenever a cron URL is triggered from your server.<br "
413
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
414
  msgstr ""
415
 
416
+ #: ../settings/settings-edit.php:393
417
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
418
+ msgstr ""
419
+
420
+ #: ../settings/settings-edit.php:569
421
  msgid "Please enter valid email count."
422
  msgstr ""
423
 
461
  "customer will view the email content."
462
  msgstr ""
463
 
464
+ #: ../pricing/pricing.php:157
465
+ msgid "Go a notch higher"
466
+ msgstr ""
467
+
468
+ #: ../pricing/pricing.php:158
469
+ msgid "Get the Email Subscribers Pro Plugin at"
470
+ msgstr ""
471
+
472
+ #: ../pricing/pricing.php:162
473
+ msgid "month"
474
+ msgstr ""
475
+
476
+ #: ../pricing/pricing.php:163
477
+ msgid "Sign up for monthly"
478
+ msgstr ""
479
+
480
+ #: ../pricing/pricing.php:166
481
+ msgid "year"
482
+ msgstr ""
483
+
484
+ #: ../pricing/pricing.php:167
485
+ msgid "Sign up for yearly"
486
+ msgstr ""
487
+
488
+ #: ../pricing/pricing.php:171
489
+ msgid "Get more with Email Subscribers Pro"
490
+ msgstr ""
491
+
492
+ #: ../pricing/pricing.php:173
493
+ msgid "All features of Email Subscribers free plugin + everything below:"
494
+ msgstr ""
495
+
496
+ #: ../pricing/pricing.php:176
497
+ msgid "Protect your list from bot attacks"
498
+ msgstr ""
499
+
500
+ #: ../pricing/pricing.php:177
501
+ msgid "Use "
502
+ msgstr ""
503
+
504
+ #: ../pricing/pricing.php:177
505
+ msgid "captcha"
506
+ msgstr ""
507
+
508
+ #: ../pricing/pricing.php:177
509
+ msgid ""
510
+ "to protect your email list from bots. The simple maths captcha helps "
511
+ "identifying bots from humans and eliminates spam signups."
512
+ msgstr ""
513
+
514
+ #: ../pricing/pricing.php:180
515
+ msgid "Check email status & increase email success rate"
516
+ msgstr ""
517
+
518
+ #: ../pricing/pricing.php:181
519
+ msgid "Double check the status of the emails addresses and increase "
520
+ msgstr ""
521
+
522
+ #: ../pricing/pricing.php:181
523
+ msgid "email success rate"
524
+ msgstr ""
525
+
526
+ #: ../pricing/pricing.php:181
527
+ msgid "of your email campaign. "
528
+ msgstr ""
529
+
530
+ #: ../pricing/pricing.php:187
531
+ msgid "Fullproof email deliverability"
532
+ msgstr ""
533
+
534
+ #: ../pricing/pricing.php:188
535
+ msgid ""
536
+ "Reduce the risk of emails ending in trash or spam. Increase email "
537
+ "deliverability by double checking emails for their "
538
+ msgstr ""
539
+
540
+ #: ../pricing/pricing.php:188
541
+ msgid "spam score"
542
+ msgstr ""
543
+
544
+ #: ../pricing/pricing.php:188
545
+ msgid "before hitting send."
546
+ msgstr ""
547
+
548
+ #: ../pricing/pricing.php:191
549
+ msgid "Track email leads in Google"
550
+ msgstr ""
551
+
552
+ #: ../pricing/pricing.php:192
553
+ msgid "Insert "
554
+ msgstr ""
555
+
556
+ #: ../pricing/pricing.php:192
557
+ msgid "UTM tracking"
558
+ msgstr ""
559
+
560
+ #: ../pricing/pricing.php:192
561
+ msgid ""
562
+ "in all your email CTA’s and track the effectiveness of your emails directly "
563
+ "within Google. Know which/ how many leads landed up from your emails and "
564
+ "tweak emails for better performance."
565
+ msgstr ""
566
+
567
+ #: ../pricing/pricing.php:199
568
+ msgid "Save time, use readymade email templates"
569
+ msgstr ""
570
+
571
+ #: ../pricing/pricing.php:200
572
+ msgid ""
573
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
574
+ "elegant templates</strong> to send your next email campaign."
575
+ msgstr ""
576
+
577
+ #: ../pricing/pricing.php:203
578
+ msgid "Customize confirmation and unsubscribe page"
579
+ msgstr ""
580
+
581
+ #: ../pricing/pricing.php:204
582
+ msgid ""
583
+ "Communicate with subscribers. Redirect them to beautifully designed "
584
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
585
+ msgstr ""
586
+
587
+ #: ../pricing/pricing.php:211
588
+ msgid "Coming soon..."
589
+ msgstr ""
590
+
591
+ #: ../pricing/pricing.php:213
592
+ msgid "Spam testing"
593
+ msgstr ""
594
+
595
+ #: ../pricing/pricing.php:214
596
+ msgid "Bounce handling"
597
+ msgstr ""
598
+
599
+ #: ../pricing/pricing.php:215
600
+ msgid "Advanced reporting"
601
+ msgstr ""
602
+
603
  #: ../classes/es-common.php:13
604
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
605
  msgstr "<span style=«color:#006600;font-weight:bold;»>Bekreftet</span>"
644
  msgid "<span style=\"color:#993399;\">Immediately</span>"
645
  msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
646
 
647
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
648
+ #: register.php:1055
649
  msgid "Email Subscribers"
650
  msgstr "Email Subscribers"
651
 
652
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
653
  #: subscribers/view-subscriber-show.php:242
654
  msgid "Subscribers"
655
  msgstr "Abonnenter"
656
 
657
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
658
  #: 370 ../notification/notification-show.php:52
659
  msgid "Post Notifications"
660
  msgstr "Varsler"
661
 
662
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
663
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
664
  msgid "Newsletters"
665
  msgstr "Nyhetsbrev"
666
 
667
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
668
  #: settings/settings-edit.php:42
669
  msgid "Settings"
670
  msgstr "Innstillinger"
671
 
672
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
673
  #: sentmail/sentmail-show.php:93
674
  msgid "Reports"
675
  msgstr "Rapporter"
676
 
677
+ #: ../classes/es-register.php:187
678
  msgid "Help & Info"
679
  msgstr "Hjelp & Info"
680
 
681
+ #: ../classes/es-register.php:188
682
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
683
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hjelp og info</span>"
684
 
685
+ #: ../classes/es-register.php:204
686
  msgctxt "view-subscriber-enhanced-select"
687
  msgid "Please enter subscriber email address."
688
  msgstr "Angi abonnent e-postadresse."
689
 
690
+ #: ../classes/es-register.php:205
691
  msgctxt "view-subscriber-enhanced-select"
692
  msgid "Please select subscriber email status."
693
  msgstr "Velg abonnents e-poststatus."
694
 
695
+ #: ../classes/es-register.php:206
696
  msgctxt "view-subscriber-enhanced-select"
697
  msgid "Please select or create group for this subscriber."
698
  msgstr "Velg eller Opprett gruppe for denne abonnent."
699
 
700
+ #: ../classes/es-register.php:207
701
  msgctxt "view-subscriber-enhanced-select"
702
  msgid "Do you want to delete this record?"
703
  msgstr "Er du sikker på at du vil slette denne oppføringen?"
704
 
705
+ #: ../classes/es-register.php:208
706
  msgctxt "view-subscriber-enhanced-select"
707
  msgid "Please select the bulk action."
708
  msgstr "Velg massehandling."
709
 
710
+ #: ../classes/es-register.php:209
711
  msgctxt "view-subscriber-enhanced-select"
712
  msgid "Are you sure you want to delete selected records?"
713
  msgstr "Er du sikker på at du vil slette valgte oppføringer?"
714
 
715
+ #: ../classes/es-register.php:211
716
  msgctxt "view-subscriber-enhanced-select"
717
  msgid "Please select new subscriber group."
718
  msgstr "Velg ny abonnent gruppe."
719
 
720
+ #: ../classes/es-register.php:212
721
  msgctxt "view-subscriber-enhanced-select"
722
  msgid "Please select new status for subscribers"
723
  msgstr "Velg ny status for abonnenter"
724
 
725
+ #: ../classes/es-register.php:213
726
  msgctxt "view-subscriber-enhanced-select"
727
  msgid "Do you want to update subscribers group?"
728
  msgstr "Vil du oppdatere abonnenter gruppe?"
729
 
730
+ #: ../classes/es-register.php:214
731
  msgctxt "view-subscriber-enhanced-select"
732
  msgid "Do you want to update subscribers status?"
733
  msgstr "Vil du oppdatere abonnenter status?"
734
 
735
+ #: ../classes/es-register.php:215
736
  msgctxt "view-subscriber-enhanced-select"
737
  msgid ""
738
  "Please select only csv file. Please check official website for csv structure."
739
  "."
740
  msgstr "Velg bare csv-filen. Kontroller hjemmeside for csv-struktur."
741
 
742
+ #: ../classes/es-register.php:223
743
  msgctxt "notification-enhanced-select"
744
  msgid "Please select subscribers group."
745
  msgstr "Velg abonnent gruppe."
746
 
747
+ #: ../classes/es-register.php:225
748
  msgctxt "notification-enhanced-select"
749
  msgid "Please select notification status."
750
  msgstr "Velg varselstatusen."
751
 
752
+ #: ../classes/es-register.php:226
753
  msgctxt "notification-enhanced-select"
754
  msgid "Do you want to delete this record?"
755
  msgstr "Vil du slette denne posten?"
756
 
757
+ #: ../classes/es-register.php:234
758
  msgctxt "sendmail-enhanced-select"
759
  msgid "Please select your mail subject."
760
  msgstr "Vennligst velg e-post subjekt."
761
 
762
+ #: ../classes/es-register.php:235
763
  msgctxt "sendmail-enhanced-select"
764
  msgid "Please select your mail type."
765
  msgstr "Velg din e-post type."
766
 
767
+ #: ../classes/es-register.php:236
768
  msgctxt "sendmail-enhanced-select"
769
  msgid ""
770
  "Have you double checked your selected group? If so, let's go ahead and send "
773
  "Har du dobbelt sjekket den valgte gruppen? Hvis ja, la oss gå videre og "
774
  "sende dette."
775
 
776
+ #: ../classes/es-register.php:244
777
  msgctxt "sentmail-enhanced-select"
778
  msgid "Do you want to delete this record?"
779
  msgstr "Vil du slette denne posten?"
780
 
781
+ #: ../classes/es-register.php:245
782
  msgctxt "sentmail-enhanced-select"
783
  msgid "Do you want to delete all records except latest 10?"
784
  msgstr "Vil du slette alle poster unntatt siste 10?"
785
 
786
+ #: ../classes/es-register.php:253
787
  msgctxt "cron-enhanced-select"
788
  msgid "Please select enter number of mails you want to send per hour/trigger."
789
  msgstr "Velg Angi antall poster som du vil sende per time/trigger."
790
 
791
+ #: ../classes/es-register.php:254
792
  msgctxt "cron-enhanced-select"
793
  msgid "Please enter the mail count, only number."
794
  msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
795
 
796
+ #: ../classes/es-register.php:267
797
  msgctxt "widget-page-enhanced-select"
798
  msgid "Please enter email address"
799
  msgstr "Vennligst skriv e-postadresse"
800
 
801
+ #: ../classes/es-register.php:268
802
  msgctxt "widget-page-enhanced-select"
803
  msgid "Successfully Subscribed."
804
  msgstr "Du er nå abonnent."
805
 
806
+ #: ../classes/es-register.php:270
807
  msgctxt "widget-page-enhanced-select"
808
  msgid "Email Address already exists!"
809
  msgstr "Epostadressen finnes allerede!"
810
 
811
+ #: ../classes/es-register.php:271
812
  msgctxt "widget-page-enhanced-select"
813
  msgid "Oops.. Unexpected error occurred."
814
  msgstr "Oops... Det oppstod en uventet feil."
815
 
816
+ #: ../classes/es-register.php:272
817
  msgctxt "widget-page-enhanced-select"
818
  msgid "Invalid email address"
819
  msgstr "Ugyldig e-postadresse"
820
 
821
+ #: ../classes/es-register.php:273
822
  msgctxt "widget-page-enhanced-select"
823
  msgid "Please try after some time"
824
  msgstr "Prøv på nytt senere"
825
 
826
+ #: ../classes/es-register.php:698
827
  msgid ""
828
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
829
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
835
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
836
  "fra Icegram!"
837
 
838
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
839
  msgid "Thumbnail"
840
  msgstr "Miniatyrbilde"
841
 
842
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
843
  #: sentmail/sentmail-show.php:121
844
  msgid "Preview"
845
  msgstr "Forhåndsvis"
846
 
847
+ #: ../classes/es-register.php:1176
848
  msgid "Newsletter"
849
  msgstr "Nyhetsbrev"
850
 
851
+ #: ../classes/es-register.php:1177
852
  msgid "Post Notification"
853
  msgstr "Varsel"
854
 
855
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
856
+ #: register.php:1261 ../classes/es-register.php:1269
857
  msgid "Available Keywords"
858
  msgstr "Tilgjengelige søkeord"
859
 
860
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
861
  msgid "Name"
862
  msgstr "Navn"
863
 
864
+ #: ../classes/es-register.php:1311
865
  msgid "Email *"
866
  msgstr "E-post *"
867
 
868
+ #: ../classes/es-register.php:1320 ../help/help.php:202
869
  msgid "Subscribe"
870
  msgstr "Abonner"
871
 
872
+ #: ../classes/es-register.php:1424
873
  msgid "Widget Title"
874
  msgstr "Widget tittel"
875
 
876
+ #: ../classes/es-register.php:1428
877
  msgid "Short description about subscription form"
878
  msgstr "Kort beskrivelse av ditt abonnement skjema"
879
 
880
+ #: ../classes/es-register.php:1432
881
  msgid "Display Name Field"
882
  msgstr "Vis Navnefelt"
883
 
884
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
885
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
886
  msgid "YES"
887
  msgstr "JA"
888
 
889
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
890
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
891
  msgid "NO"
892
  msgstr "NEI"
893
 
894
+ #: ../classes/es-register.php:1439
895
  msgid "Subscriber Group"
896
  msgstr "Abonnent gruppe"
897
 
1253
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1254
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1255
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1256
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1257
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1258
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1259
  msgid "Select"
1314
  msgid "Disable email notification"
1315
  msgstr "Deaktivere e-postvarsling"
1316
 
1317
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1318
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1319
  msgid "Save"
1320
  msgstr "Lagre"
1321
 
1438
  msgid "Send email via cron job"
1439
  msgstr "Sende e-post via cron jobb"
1440
 
1441
+ #: ../sendmail/sendmail.php:148
1442
  msgid "Select Subscribers group to Send Email"
1443
  msgstr "Velg abonnent gruppe som skal motta e-post"
1444
 
1445
+ #: ../sendmail/sendmail.php:180
1446
  msgid "Recipients : 0 "
1447
  msgstr "Mottakere : 0 "
1448
 
1449
+ #: ../sendmail/sendmail.php:182
1450
  #, php-format
1451
  msgid "Recipients : %s"
1452
  msgstr "Mottakere: %s"
1453
 
1454
+ #: ../sendmail/sendmail.php:185
1455
  msgid ""
1456
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1457
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1461
  "endrer e-post type til Cron og sender e-post via Cron-jobb."
1462
  "</strong><br>Klikk på hjelp for mer informasjon."
1463
 
1464
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1465
  msgid "Send Email"
1466
  msgstr "Send e-post"
1467
 
1468
+ #: ../sendmail/sendmail.php:202
1469
  msgid "Reset"
1470
  msgstr "Nullstille"
1471
 
1720
  msgid "Sent Report Subject"
1721
  msgstr "Sendt rapport emne"
1722
 
 
 
 
 
1723
  #: ../settings/settings-edit.php:172
1724
  msgid "Sent Report Content"
1725
  msgstr "Sendte rapport innhold"
1896
  "Dette er din Cron jobb URL. Det er et skrivebeskyttet felt du anbefales ikke "
1897
  "å endre den."
1898
 
1899
+ #: ../settings/settings-edit.php:377
1900
  msgid "Email Count"
1901
  msgstr "Antall e-poster"
1902
 
1903
+ #: ../settings/settings-edit.php:378
1904
  msgid "Number of emails that you want to trigger per hour."
1905
  msgstr "Antall e-postmeldinger som skal utløses per time."
1906
 
1907
+ #: ../settings/settings-edit.php:383
1908
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1909
  msgstr "(Web verten har begrensninger. Vi foreslår 50 e-poster per time sikre)"
1910
 
1911
+ #: ../settings/settings-edit.php:388
1912
  msgid "Cron Report"
1913
  msgstr "Cronlogg"
1914
 
1915
+ #: ../settings/settings-edit.php:400
1916
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1917
  msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
1918
 
1919
+ #: ../settings/settings-edit.php:401
1920
  msgid ""
1921
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1922
  "schedule-cron-emails/?"
1926
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1927
  "schedule-cron-emails/\">Hva er Cron?</a>"
1928
 
1929
+ #: ../settings/settings-edit.php:402
1930
  msgid ""
1931
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1932
  "schedule-cron-emails-in-cpanel/?"
1938
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Oppsett "
1939
  "cron jobb i cPanel</a>"
1940
 
1941
+ #: ../settings/settings-edit.php:403
1942
  msgid ""
1943
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1944
  "schedule-cron-emails-in-parallels-plesk/?"
1948
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1949
  "schedule-cron-emails-in-parallels-plesk/\">ISetup cron jobb i Plesk</a>"
1950
 
1951
+ #: ../settings/settings-edit.php:404
1952
  msgid ""
1953
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1954
  "if-hosting-doesnt-support-cron-jobs/?"
1958
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
1959
  "if-hosting-doesnt-support-cron-jobs/\">Host støtter ikke cron jobber?</a>"
1960
 
1961
+ #: ../settings/settings-edit.php:520
1962
  msgid "Please enter sender of notifications from name."
1963
  msgstr "Angi avsenderen av meldinger fra navn."
1964
 
1965
+ #: ../settings/settings-edit.php:525
1966
  msgid "Please enter sender of notifications from email."
1967
  msgstr "Angi avsenderen av meldinger fra e-post."
1968
 
1969
+ #: ../settings/settings-edit.php:584
1970
  msgid "Settings Saved."
1971
  msgstr "Innstillinger Lagret."
1972
 
1973
+ #: ../settings/settings-edit.php:587
1974
  msgid "Oops, unable to update."
1975
  msgstr "Oops, kan ikke oppdatere."
1976
 
2388
  "Legge til abonnement skjemaer på nettsider, sende HTML nyhetsbrev & "
2389
  "automatisk varsle abonnenter om nye blogginnlegg gang det blir publisert."
2390
 
2391
+ #: ../email-subscribers.php:96
2392
  msgctxt "timezone date format"
2393
  msgid "Y-m-d H:i:s"
2394
  msgstr "Tidssone & dato Tid<br>(Y-M-D H:I:S)"
languages/email-subscribers-pl_PL.mo CHANGED
Binary file
languages/email-subscribers-pl_PL.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:48 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Polish\n"
10
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
@@ -23,30 +23,107 @@ msgstr ""
23
  "X-Loco-Target-Locale: pl_PL\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid ""
28
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
29
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
30
  msgstr ""
31
 
32
- #: ../classes/es-register.php:728
33
- msgid "Here's how"
34
  msgstr ""
35
 
36
- #: ../classes/es-register.php:728
37
- msgid "Not interested. Dismiss this."
38
  msgstr ""
39
 
40
- #: ../classes/es-register.php:900
 
 
 
 
 
 
 
 
41
  #, php-format
42
  msgid "%s for Post Notification: {{POSTTITLE}}"
43
  msgstr ""
44
 
45
- #: ../classes/es-register.php:900
46
  msgid "Available Keyword"
47
  msgstr ""
48
 
49
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
50
  #, php-format
51
  msgid ""
52
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -54,7 +131,7 @@ msgid ""
54
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
55
  msgstr ""
56
 
57
- #: ../classes/es-register.php:1002
58
  #, php-format
59
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
60
  msgstr ""
@@ -64,10 +141,166 @@ msgstr ""
64
  msgid "Subscribers Group to send post notification to"
65
  msgstr ""
66
 
67
- #: ../settings/settings-edit.php:566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "Please enter valid email count."
69
  msgstr ""
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
72
  #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
73
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
@@ -121,80 +354,81 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
121
  msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
122
 
123
  #. Name of the plugin
124
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
125
- #: register.php:788
126
  msgid "Email Subscribers"
127
  msgstr "Email Subscribers"
128
 
129
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
130
  #: subscribers/view-subscriber-show.php:242
131
  msgid "Subscribers"
132
  msgstr "Subskrybujący"
133
 
134
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
135
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
136
  msgid "Templates"
137
  msgstr "Szablony"
138
 
139
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
140
  #: 370 ../notification/notification-show.php:52
141
  msgid "Post Notifications"
142
  msgstr "Powiadomienia pocztowe"
143
 
144
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
145
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
146
  msgid "Newsletters"
147
  msgstr "Biuletyny"
148
 
149
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
150
  #: settings/settings-edit.php:42
151
  msgid "Settings"
152
  msgstr "Ustawienia"
153
 
154
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
155
  #: sentmail/sentmail-show.php:93
156
  msgid "Reports"
157
  msgstr "Raporty"
158
 
159
- #: ../classes/es-register.php:183
160
  msgid "Help & Info"
161
  msgstr "Pomoc i Informacje"
162
 
163
- #: ../classes/es-register.php:184
164
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
165
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Pomoc i informacja</span>"
166
 
167
- #: ../classes/es-register.php:195
168
  msgctxt "view-subscriber-enhanced-select"
169
  msgid "Please enter subscriber email address."
170
  msgstr "Proszę wprowadź adres e-mail subskrybenta."
171
 
172
- #: ../classes/es-register.php:196
173
  msgctxt "view-subscriber-enhanced-select"
174
  msgid "Please select subscriber email status."
175
  msgstr "Proszę wybierz status e-maila subskrybenta."
176
 
177
- #: ../classes/es-register.php:197
178
  msgctxt "view-subscriber-enhanced-select"
179
  msgid "Please select or create group for this subscriber."
180
  msgstr "Proszę wybrać lub utworzyć grupę dla tego subskrybenta."
181
 
182
- #: ../classes/es-register.php:198
183
  msgctxt "view-subscriber-enhanced-select"
184
  msgid "Do you want to delete this record?"
185
  msgstr "Czy chcesz usunąć ten rekord?"
186
 
187
- #: ../classes/es-register.php:199
188
  msgctxt "view-subscriber-enhanced-select"
189
  msgid "Please select the bulk action."
190
  msgstr "Proszę wybierz masowe działanie."
191
 
192
- #: ../classes/es-register.php:200
193
  msgctxt "view-subscriber-enhanced-select"
194
  msgid "Are you sure you want to delete selected records?"
195
  msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
196
 
197
- #: ../classes/es-register.php:201
198
  msgctxt "view-subscriber-enhanced-select"
199
  msgid ""
200
  "Do you want to resend confirmation email? Also please note, this will update "
@@ -203,27 +437,27 @@ msgstr ""
203
  "Chcesz powtórnie wysłać mail potwierdzający? Zwróć też uwagę, że "
204
  "zaktualizuje to aktualny status subskrybenta do \"Niepotwierdzony\"."
205
 
206
- #: ../classes/es-register.php:202
207
  msgctxt "view-subscriber-enhanced-select"
208
  msgid "Please select new subscriber group."
209
  msgstr "Proszę wybrać nową grupę subskrybenta."
210
 
211
- #: ../classes/es-register.php:203
212
  msgctxt "view-subscriber-enhanced-select"
213
  msgid "Please select new status for subscribers"
214
  msgstr "Proszę wskaż nowy status dla subskrybentów"
215
 
216
- #: ../classes/es-register.php:204
217
  msgctxt "view-subscriber-enhanced-select"
218
  msgid "Do you want to update subscribers group?"
219
  msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
220
 
221
- #: ../classes/es-register.php:205
222
  msgctxt "view-subscriber-enhanced-select"
223
  msgid "Do you want to update subscribers status?"
224
  msgstr "Czy chcesz zaktualizować statusy subskrybentów?"
225
 
226
- #: ../classes/es-register.php:206
227
  msgctxt "view-subscriber-enhanced-select"
228
  msgid ""
229
  "Please select only csv file. Please check official website for csv structure."
@@ -232,76 +466,76 @@ msgstr ""
232
  "Proszę wybrać tylko plik CSV. Proszę sprawdzić strukturę pliku CSV na "
233
  "oficjalnej stronie."
234
 
235
- #: ../classes/es-register.php:214
236
  msgctxt "notification-enhanced-select"
237
  msgid "Please select subscribers group."
238
  msgstr "Proszę wybrać grupę subskrybentów."
239
 
240
- #: ../classes/es-register.php:215
241
  msgctxt "notification-enhanced-select"
242
  msgid "Please select notification mail subject. Use templates menu to create new."
243
  msgstr ""
244
  "Wybierz temat wiadomości z powiadomieniem. Użyj menu szablonów, aby utworzyć "
245
  "nowe."
246
 
247
- #: ../classes/es-register.php:216
248
  msgctxt "notification-enhanced-select"
249
  msgid "Please select notification status."
250
  msgstr "Proszę wybierz stan powiadomienia."
251
 
252
- #: ../classes/es-register.php:217
253
  msgctxt "notification-enhanced-select"
254
  msgid "Do you want to delete this record?"
255
  msgstr "Czy chcesz usunąć ten rekord?"
256
 
257
- #: ../classes/es-register.php:225
258
  msgctxt "sendmail-enhanced-select"
259
  msgid "Please select your mail subject."
260
  msgstr "Proszę wybierz temat twojego maila."
261
 
262
- #: ../classes/es-register.php:226
263
  msgctxt "sendmail-enhanced-select"
264
  msgid "Please select your mail type."
265
  msgstr "Proszę wybrać typ maila."
266
 
267
- #: ../classes/es-register.php:227
268
  msgctxt "sendmail-enhanced-select"
269
  msgid ""
270
  "Have you double checked your selected group? If so, let's go ahead and send "
271
  "this."
272
  msgstr "Sprawdziłeś dwukrotnie wybraną grupę? Jeżeli tak to weź i wyślij."
273
 
274
- #: ../classes/es-register.php:235
275
  msgctxt "sentmail-enhanced-select"
276
  msgid "Do you want to delete this record?"
277
  msgstr "Czy chcesz usunąć ten rekord?"
278
 
279
- #: ../classes/es-register.php:236
280
  msgctxt "sentmail-enhanced-select"
281
  msgid "Do you want to delete all records except latest 10?"
282
  msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
283
 
284
- #: ../classes/es-register.php:244
285
  msgctxt "cron-enhanced-select"
286
  msgid "Please select enter number of mails you want to send per hour/trigger."
287
  msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
288
 
289
- #: ../classes/es-register.php:245
290
  msgctxt "cron-enhanced-select"
291
  msgid "Please enter the mail count, only number."
292
  msgstr "Proszę podać liczbę maili, tylko numer."
293
 
294
- #: ../classes/es-register.php:258
295
  msgctxt "widget-page-enhanced-select"
296
  msgid "Please enter email address"
297
  msgstr "Proszę wprowadź adres mailowy"
298
 
299
- #: ../classes/es-register.php:259
300
  msgctxt "widget-page-enhanced-select"
301
  msgid "Successfully Subscribed."
302
  msgstr "Zarejestrowano subskrypcję."
303
 
304
- #: ../classes/es-register.php:260
305
  msgctxt "widget-page-enhanced-select"
306
  msgid ""
307
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -312,27 +546,27 @@ msgstr ""
312
  "pocztową i potwierdzić subskrypcję. Jeśli wiadomość nie pojawi się w ciągu "
313
  "kilku minut, sprawdź folder spam/kosz."
314
 
315
- #: ../classes/es-register.php:261
316
  msgctxt "widget-page-enhanced-select"
317
  msgid "Email Address already exists!"
318
  msgstr "Adres email już istnieje!"
319
 
320
- #: ../classes/es-register.php:262
321
  msgctxt "widget-page-enhanced-select"
322
  msgid "Oops.. Unexpected error occurred."
323
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
324
 
325
- #: ../classes/es-register.php:263
326
  msgctxt "widget-page-enhanced-select"
327
  msgid "Invalid email address"
328
  msgstr "Niepoprawny adres email"
329
 
330
- #: ../classes/es-register.php:264
331
  msgctxt "widget-page-enhanced-select"
332
  msgid "Please try after some time"
333
  msgstr "Spróbuj po pewnym czasie"
334
 
335
- #: ../classes/es-register.php:753
336
  msgid ""
337
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
338
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -344,121 +578,121 @@ msgstr ""
344
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
345
  "</a>. Z góry dziękujemy, Icegram!"
346
 
347
- #: ../classes/es-register.php:767
348
  #, php-format
349
  msgid "Email Subscribers version: <strong>%s</strong>"
350
  msgstr "Wersja Email Subscribers: <strong>%s</strong>"
351
 
352
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
353
  msgid "Add new Template"
354
  msgstr "Dodaj nowy szablon"
355
 
356
- #: ../classes/es-register.php:780
357
  msgid "Edit Templates"
358
  msgstr "Edytuj szablony"
359
 
360
- #: ../classes/es-register.php:781
361
  msgid "New Templates"
362
  msgstr "Nowe szablony"
363
 
364
- #: ../classes/es-register.php:783
365
  msgid "View Templates"
366
  msgstr "Pokaż szablony"
367
 
368
- #: ../classes/es-register.php:784
369
  msgid "Search Templates"
370
  msgstr "Szukaj szablonów"
371
 
372
- #: ../classes/es-register.php:785
373
  msgid "No Templates found"
374
  msgstr "Brak szablonów"
375
 
376
- #: ../classes/es-register.php:786
377
  msgid "No Templates found in Trash"
378
  msgstr "Brak szablonów w koszu"
379
 
380
- #: ../classes/es-register.php:789
381
  msgid "Thumbnail (For Visual Representation only)"
382
  msgstr "Miniatura (jedynie dla wizualizacji)"
383
 
384
- #: ../classes/es-register.php:790
385
  msgid "Set thumbnail"
386
  msgstr "Ustaw miniaturę"
387
 
388
- #: ../classes/es-register.php:827
389
  msgid "Template Type"
390
  msgstr "Typ szablonu"
391
 
392
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
393
  msgid "Thumbnail"
394
  msgstr "Miniatura"
395
 
396
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
397
  #: sentmail/sentmail-show.php:121
398
  msgid "Preview"
399
  msgstr "Podgląd"
400
 
401
- #: ../classes/es-register.php:907
402
  msgid "Select your Email Template Type"
403
  msgstr "Wybierz typ szablonu e-maila"
404
 
405
- #: ../classes/es-register.php:909
406
  msgid "Newsletter"
407
  msgstr "Biuletyn"
408
 
409
- #: ../classes/es-register.php:910
410
  msgid "Post Notification"
411
  msgstr "Wpis"
412
 
413
- #: ../classes/es-register.php:959
414
  msgid "Preview Template"
415
  msgstr "Podgląd szablonu"
416
 
417
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
418
- #: register.php:994 ../classes/es-register.php:1002
419
  msgid "Available Keywords"
420
  msgstr "Dostępne słowa kluczowe"
421
 
422
- #: ../classes/es-register.php:979
423
  #, php-format
424
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
425
  msgstr "<br/><br/>%s do Biuletynu: {{NAME}}, {{EMAIL}}"
426
 
427
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
428
  msgid "Name"
429
  msgstr "Nazwa"
430
 
431
- #: ../classes/es-register.php:1044
432
  msgid "Email *"
433
  msgstr "E-mail *"
434
 
435
- #: ../classes/es-register.php:1053 ../help/help.php:202
436
  msgid "Subscribe"
437
  msgstr "Subskrypcja"
438
 
439
- #: ../classes/es-register.php:1157
440
  msgid "Widget Title"
441
  msgstr "Tytuł wtyczki"
442
 
443
- #: ../classes/es-register.php:1161
444
  msgid "Short description about subscription form"
445
  msgstr "Krótki opis formularza subskrypcji"
446
 
447
- #: ../classes/es-register.php:1165
448
  msgid "Display Name Field"
449
  msgstr "Wyświetl nazwę pola"
450
 
451
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
452
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
453
  msgid "YES"
454
  msgstr "TAK"
455
 
456
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
457
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
458
  msgid "NO"
459
  msgstr "NIE"
460
 
461
- #: ../classes/es-register.php:1172
462
  msgid "Subscriber Group"
463
  msgstr "Grupa subskrybenta"
464
 
@@ -952,7 +1186,7 @@ msgstr "Pomoc"
952
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
953
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
954
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
955
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
956
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
957
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
958
  msgid "Select"
@@ -1018,8 +1252,8 @@ msgstr "Dodaj do Cron i wyślij e-mail przez zadanie Cron"
1018
  msgid "Disable email notification"
1019
  msgstr "Wyłącz powiadomienia e-mail"
1020
 
1021
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1022
- #: 291 ../subscribers/view-subscriber-edit.php:191
1023
  msgid "Save"
1024
  msgstr "Zapisz"
1025
 
@@ -1142,20 +1376,20 @@ msgstr "Wybierz typ e-maila"
1142
  msgid "Send email via cron job"
1143
  msgstr "Wyślij e-mail przez zadanie Cron"
1144
 
1145
- #: ../sendmail/sendmail.php:147
1146
  msgid "Select Subscribers group to Send Email"
1147
  msgstr "Wybierz grupę subskrybentów, do wysłania e-maila"
1148
 
1149
- #: ../sendmail/sendmail.php:179
1150
  msgid "Recipients : 0 "
1151
  msgstr "Odbiorcy: 0 "
1152
 
1153
- #: ../sendmail/sendmail.php:181
1154
  #, php-format
1155
  msgid "Recipients : %s"
1156
  msgstr "Odbiorcy: %s"
1157
 
1158
- #: ../sendmail/sendmail.php:184
1159
  msgid ""
1160
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1161
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1165,11 +1399,11 @@ msgstr ""
1165
  "zmianę Typu Maili na Cron i wysyłkę maili przez zadania Cron."
1166
  "</strong><br>Aby uzyskać więcej informacji kliknij Pomoc."
1167
 
1168
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1169
  msgid "Send Email"
1170
  msgstr "Wyślij mail"
1171
 
1172
- #: ../sendmail/sendmail.php:201
1173
  msgid "Reset"
1174
  msgstr "Nastawić"
1175
 
@@ -1286,7 +1520,7 @@ msgstr ""
1286
  "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1287
  "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
1288
 
1289
- #: ../sentmail/sentmail-show.php:212
1290
  msgid ""
1291
  "<strong>Note:</strong> If you delete record for the emails with Status = "
1292
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
@@ -1470,22 +1704,10 @@ msgstr ""
1470
  msgid "Sent Report Subject"
1471
  msgstr "Temat wysłanego raportu"
1472
 
1473
- #: ../settings/settings-edit.php:166
1474
- msgid "Subject for the email report which will be sent to admin."
1475
- msgstr "Temat raportu e-mail, wysyłanego do administratora."
1476
-
1477
  #: ../settings/settings-edit.php:172
1478
  msgid "Sent Report Content"
1479
  msgstr "Treść wysłanego raportu"
1480
 
1481
- #: ../settings/settings-edit.php:173
1482
- msgid ""
1483
- "Content for the email report which will be sent to admin.<br />Available "
1484
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1485
- msgstr ""
1486
- "Treść raportu e-mailowego, który zostanie wysłany do administratora.<br "
1487
- "/>Dostępne słowa kluczowe: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1488
-
1489
  #: ../settings/settings-edit.php:184
1490
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1491
  msgstr "Temat e-maila Podwójnego Opt-In (E-mail potwierdzający)"
@@ -1693,25 +1915,25 @@ msgstr ""
1693
  "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie "
1694
  "zaleca się go modyfikować."
1695
 
1696
- #: ../settings/settings-edit.php:376
1697
  msgid "Email Count"
1698
  msgstr "Ilość emaili"
1699
 
1700
- #: ../settings/settings-edit.php:377
1701
  msgid "Number of emails that you want to trigger per hour."
1702
  msgstr "Ilość e-maili, które mają być wyzwalane na godzinę."
1703
 
1704
- #: ../settings/settings-edit.php:382
1705
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1706
  msgstr ""
1707
  "(Twój host ma ograniczenia. Sugerujemy bezpieczny limit 50 e-maili na "
1708
  "godzinę.)"
1709
 
1710
- #: ../settings/settings-edit.php:387
1711
  msgid "Cron Report"
1712
  msgstr "Raport Crona"
1713
 
1714
- #: ../settings/settings-edit.php:388
1715
  msgid ""
1716
  "Email to admin whenever a cron URL is triggered from your server.<br "
1717
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1720,11 +1942,11 @@ msgstr ""
1720
  "twojego serwera.<br />Możliwe słowa kluczowe: {{DATE}}, {{SUBJECT}}, "
1721
  "{{COUNT}}"
1722
 
1723
- #: ../settings/settings-edit.php:398
1724
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1725
  msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
1726
 
1727
- #: ../settings/settings-edit.php:399
1728
  msgid ""
1729
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1730
  "schedule-cron-emails/?"
@@ -1736,7 +1958,7 @@ msgstr ""
1736
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Co to jest "
1737
  "Cron?</a>"
1738
 
1739
- #: ../settings/settings-edit.php:400
1740
  msgid ""
1741
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1742
  "schedule-cron-emails-in-cpanel/?"
@@ -1748,7 +1970,7 @@ msgstr ""
1748
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1749
  "proceduję cron w cPanel</a>"
1750
 
1751
- #: ../settings/settings-edit.php:401
1752
  msgid ""
1753
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1754
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1760,7 +1982,7 @@ msgstr ""
1760
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1761
  "proceduję cron w Plesk</a>"
1762
 
1763
- #: ../settings/settings-edit.php:402
1764
  msgid ""
1765
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1766
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1772,19 +1994,19 @@ msgstr ""
1772
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1773
  "nie obsługuje procedur cron?</a>"
1774
 
1775
- #: ../settings/settings-edit.php:517
1776
  msgid "Please enter sender of notifications from name."
1777
  msgstr "Proszę podać nadawcę powiadomień po nazwie."
1778
 
1779
- #: ../settings/settings-edit.php:522
1780
  msgid "Please enter sender of notifications from email."
1781
  msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
1782
 
1783
- #: ../settings/settings-edit.php:580
1784
  msgid "Settings Saved."
1785
  msgstr "Ustawienia zapisane."
1786
 
1787
- #: ../settings/settings-edit.php:583
1788
  msgid "Oops, unable to update."
1789
  msgstr "Ups, nie można zaktualizować."
1790
 
@@ -2239,7 +2461,7 @@ msgstr ""
2239
  "automatycznie powiadom subskrybentów o nowych wpisach na blogu kiedy tylko "
2240
  "zostaną opublikowane."
2241
 
2242
- #: ../email-subscribers.php:95
2243
  msgctxt "timezone date format"
2244
  msgid "Y-m-d H:i:s"
2245
  msgstr "Y-m-d H:i:s"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:20 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Polish\n"
10
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
23
  "X-Loco-Target-Locale: pl_PL\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
+ #: ../classes/es-register.php:191
27
+ msgid "Go Pro"
28
+ msgstr ""
29
+
30
+ #: ../classes/es-register.php:192
31
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
32
+ msgstr ""
33
+
34
+ #: ../classes/es-register.php:699
35
+ msgid "No, I don't like it"
36
+ msgstr ""
37
+
38
+ #: ../classes/es-register.php:705
39
+ msgctxt "timezone date format"
40
+ msgid "Y-m-d"
41
+ msgstr ""
42
+
43
+ #: ../classes/es-register.php:850
44
+ msgid "What do you hate about list building and email marketing?"
45
+ msgstr ""
46
+
47
+ #: ../classes/es-register.php:851
48
+ msgid "Hey, glad to see you!"
49
+ msgstr ""
50
+
51
+ #: ../classes/es-register.php:852
52
+ msgid ""
53
+ "I am on a daring quest to solve your biggest problems around list building "
54
+ "and email marketing. "
55
+ msgstr ""
56
+
57
+ #: ../classes/es-register.php:853
58
+ msgid ""
59
+ "So tell me, when it comes to list building and email marketing, what's your "
60
+ "biggest challenge? What's blocking your progress? "
61
+ msgstr ""
62
+
63
+ #: ../classes/es-register.php:858
64
+ msgid "And what's another big challenge? "
65
+ msgstr ""
66
+
67
+ #: ../classes/es-register.php:862
68
+ msgid "Send my problems..."
69
+ msgstr ""
70
+
71
+ #: ../classes/es-register.php:863
72
+ msgid "No, I don't have problems"
73
+ msgstr ""
74
+
75
+ #: ../classes/es-register.php:865
76
+ msgid "Fill the above field first"
77
+ msgstr ""
78
+
79
+ #: ../classes/es-register.php:874
80
+ msgid "Gosh... I hear you mate... "
81
+ msgstr ""
82
+
83
+ #: ../classes/es-register.php:875
84
  msgid ""
85
+ "Enter your email below, and you will be the first to know when we solve "
86
+ "those problems. "
87
+ msgstr ""
88
+
89
+ #: ../classes/es-register.php:879
90
+ msgid "Nah, I don't like improvements"
91
+ msgstr ""
92
+
93
+ #: ../classes/es-register.php:893
94
+ msgid "I got you."
95
+ msgstr ""
96
+
97
+ #: ../classes/es-register.php:894
98
+ msgid "Will do everything I can to help you. "
99
  msgstr ""
100
 
101
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
102
+ msgid "Later. "
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
106
+ msgid "Andrea Julio "
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:902
110
+ msgid "No issues, have a nice day!"
111
+ msgstr ""
112
+
113
+ #: ../classes/es-register.php:1020
114
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
115
+ msgstr ""
116
+
117
+ #: ../classes/es-register.php:1167
118
  #, php-format
119
  msgid "%s for Post Notification: {{POSTTITLE}}"
120
  msgstr ""
121
 
122
+ #: ../classes/es-register.php:1167
123
  msgid "Available Keyword"
124
  msgstr ""
125
 
126
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
127
  #, php-format
128
  msgid ""
129
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
131
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
132
  msgstr ""
133
 
134
+ #: ../classes/es-register.php:1269
135
  #, php-format
136
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
137
  msgstr ""
141
  msgid "Subscribers Group to send post notification to"
142
  msgstr ""
143
 
144
+ #: ../settings/settings-edit.php:166
145
+ msgid ""
146
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
147
+ "only if sending email via immediately)"
148
+ msgstr ""
149
+
150
+ #: ../settings/settings-edit.php:173
151
+ msgid ""
152
+ "Content for the email report which will be sent to admin.<br />Available "
153
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
154
+ "sent only if sending email via immediately)"
155
+ msgstr ""
156
+
157
+ #: ../settings/settings-edit.php:393
158
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
159
+ msgstr ""
160
+
161
+ #: ../settings/settings-edit.php:569
162
  msgid "Please enter valid email count."
163
  msgstr ""
164
 
165
+ #: ../pricing/pricing.php:157
166
+ msgid "Go a notch higher"
167
+ msgstr ""
168
+
169
+ #: ../pricing/pricing.php:158
170
+ msgid "Get the Email Subscribers Pro Plugin at"
171
+ msgstr ""
172
+
173
+ #: ../pricing/pricing.php:162
174
+ msgid "month"
175
+ msgstr ""
176
+
177
+ #: ../pricing/pricing.php:163
178
+ msgid "Sign up for monthly"
179
+ msgstr ""
180
+
181
+ #: ../pricing/pricing.php:166
182
+ msgid "year"
183
+ msgstr ""
184
+
185
+ #: ../pricing/pricing.php:167
186
+ msgid "Sign up for yearly"
187
+ msgstr ""
188
+
189
+ #: ../pricing/pricing.php:171
190
+ msgid "Get more with Email Subscribers Pro"
191
+ msgstr ""
192
+
193
+ #: ../pricing/pricing.php:173
194
+ msgid "All features of Email Subscribers free plugin + everything below:"
195
+ msgstr ""
196
+
197
+ #: ../pricing/pricing.php:176
198
+ msgid "Protect your list from bot attacks"
199
+ msgstr ""
200
+
201
+ #: ../pricing/pricing.php:177
202
+ msgid "Use "
203
+ msgstr ""
204
+
205
+ #: ../pricing/pricing.php:177
206
+ msgid "captcha"
207
+ msgstr ""
208
+
209
+ #: ../pricing/pricing.php:177
210
+ msgid ""
211
+ "to protect your email list from bots. The simple maths captcha helps "
212
+ "identifying bots from humans and eliminates spam signups."
213
+ msgstr ""
214
+
215
+ #: ../pricing/pricing.php:180
216
+ msgid "Check email status & increase email success rate"
217
+ msgstr ""
218
+
219
+ #: ../pricing/pricing.php:181
220
+ msgid "Double check the status of the emails addresses and increase "
221
+ msgstr ""
222
+
223
+ #: ../pricing/pricing.php:181
224
+ msgid "email success rate"
225
+ msgstr ""
226
+
227
+ #: ../pricing/pricing.php:181
228
+ msgid "of your email campaign. "
229
+ msgstr ""
230
+
231
+ #: ../pricing/pricing.php:187
232
+ msgid "Fullproof email deliverability"
233
+ msgstr ""
234
+
235
+ #: ../pricing/pricing.php:188
236
+ msgid ""
237
+ "Reduce the risk of emails ending in trash or spam. Increase email "
238
+ "deliverability by double checking emails for their "
239
+ msgstr ""
240
+
241
+ #: ../pricing/pricing.php:188
242
+ msgid "spam score"
243
+ msgstr ""
244
+
245
+ #: ../pricing/pricing.php:188
246
+ msgid "before hitting send."
247
+ msgstr ""
248
+
249
+ #: ../pricing/pricing.php:191
250
+ msgid "Track email leads in Google"
251
+ msgstr ""
252
+
253
+ #: ../pricing/pricing.php:192
254
+ msgid "Insert "
255
+ msgstr ""
256
+
257
+ #: ../pricing/pricing.php:192
258
+ msgid "UTM tracking"
259
+ msgstr ""
260
+
261
+ #: ../pricing/pricing.php:192
262
+ msgid ""
263
+ "in all your email CTA’s and track the effectiveness of your emails directly "
264
+ "within Google. Know which/ how many leads landed up from your emails and "
265
+ "tweak emails for better performance."
266
+ msgstr ""
267
+
268
+ #: ../pricing/pricing.php:199
269
+ msgid "Save time, use readymade email templates"
270
+ msgstr ""
271
+
272
+ #: ../pricing/pricing.php:200
273
+ msgid ""
274
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
275
+ "elegant templates</strong> to send your next email campaign."
276
+ msgstr ""
277
+
278
+ #: ../pricing/pricing.php:203
279
+ msgid "Customize confirmation and unsubscribe page"
280
+ msgstr ""
281
+
282
+ #: ../pricing/pricing.php:204
283
+ msgid ""
284
+ "Communicate with subscribers. Redirect them to beautifully designed "
285
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
286
+ msgstr ""
287
+
288
+ #: ../pricing/pricing.php:211
289
+ msgid "Coming soon..."
290
+ msgstr ""
291
+
292
+ #: ../pricing/pricing.php:213
293
+ msgid "Spam testing"
294
+ msgstr ""
295
+
296
+ #: ../pricing/pricing.php:214
297
+ msgid "Bounce handling"
298
+ msgstr ""
299
+
300
+ #: ../pricing/pricing.php:215
301
+ msgid "Advanced reporting"
302
+ msgstr ""
303
+
304
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
305
  #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
306
  #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
354
  msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
355
 
356
  #. Name of the plugin
357
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
358
+ #: register.php:1055
359
  msgid "Email Subscribers"
360
  msgstr "Email Subscribers"
361
 
362
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
363
  #: subscribers/view-subscriber-show.php:242
364
  msgid "Subscribers"
365
  msgstr "Subskrybujący"
366
 
367
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
368
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
369
+ #: 1049
370
  msgid "Templates"
371
  msgstr "Szablony"
372
 
373
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
374
  #: 370 ../notification/notification-show.php:52
375
  msgid "Post Notifications"
376
  msgstr "Powiadomienia pocztowe"
377
 
378
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
379
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
380
  msgid "Newsletters"
381
  msgstr "Biuletyny"
382
 
383
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
384
  #: settings/settings-edit.php:42
385
  msgid "Settings"
386
  msgstr "Ustawienia"
387
 
388
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
389
  #: sentmail/sentmail-show.php:93
390
  msgid "Reports"
391
  msgstr "Raporty"
392
 
393
+ #: ../classes/es-register.php:187
394
  msgid "Help & Info"
395
  msgstr "Pomoc i Informacje"
396
 
397
+ #: ../classes/es-register.php:188
398
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
399
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Pomoc i informacja</span>"
400
 
401
+ #: ../classes/es-register.php:204
402
  msgctxt "view-subscriber-enhanced-select"
403
  msgid "Please enter subscriber email address."
404
  msgstr "Proszę wprowadź adres e-mail subskrybenta."
405
 
406
+ #: ../classes/es-register.php:205
407
  msgctxt "view-subscriber-enhanced-select"
408
  msgid "Please select subscriber email status."
409
  msgstr "Proszę wybierz status e-maila subskrybenta."
410
 
411
+ #: ../classes/es-register.php:206
412
  msgctxt "view-subscriber-enhanced-select"
413
  msgid "Please select or create group for this subscriber."
414
  msgstr "Proszę wybrać lub utworzyć grupę dla tego subskrybenta."
415
 
416
+ #: ../classes/es-register.php:207
417
  msgctxt "view-subscriber-enhanced-select"
418
  msgid "Do you want to delete this record?"
419
  msgstr "Czy chcesz usunąć ten rekord?"
420
 
421
+ #: ../classes/es-register.php:208
422
  msgctxt "view-subscriber-enhanced-select"
423
  msgid "Please select the bulk action."
424
  msgstr "Proszę wybierz masowe działanie."
425
 
426
+ #: ../classes/es-register.php:209
427
  msgctxt "view-subscriber-enhanced-select"
428
  msgid "Are you sure you want to delete selected records?"
429
  msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
430
 
431
+ #: ../classes/es-register.php:210
432
  msgctxt "view-subscriber-enhanced-select"
433
  msgid ""
434
  "Do you want to resend confirmation email? Also please note, this will update "
437
  "Chcesz powtórnie wysłać mail potwierdzający? Zwróć też uwagę, że "
438
  "zaktualizuje to aktualny status subskrybenta do \"Niepotwierdzony\"."
439
 
440
+ #: ../classes/es-register.php:211
441
  msgctxt "view-subscriber-enhanced-select"
442
  msgid "Please select new subscriber group."
443
  msgstr "Proszę wybrać nową grupę subskrybenta."
444
 
445
+ #: ../classes/es-register.php:212
446
  msgctxt "view-subscriber-enhanced-select"
447
  msgid "Please select new status for subscribers"
448
  msgstr "Proszę wskaż nowy status dla subskrybentów"
449
 
450
+ #: ../classes/es-register.php:213
451
  msgctxt "view-subscriber-enhanced-select"
452
  msgid "Do you want to update subscribers group?"
453
  msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
454
 
455
+ #: ../classes/es-register.php:214
456
  msgctxt "view-subscriber-enhanced-select"
457
  msgid "Do you want to update subscribers status?"
458
  msgstr "Czy chcesz zaktualizować statusy subskrybentów?"
459
 
460
+ #: ../classes/es-register.php:215
461
  msgctxt "view-subscriber-enhanced-select"
462
  msgid ""
463
  "Please select only csv file. Please check official website for csv structure."
466
  "Proszę wybrać tylko plik CSV. Proszę sprawdzić strukturę pliku CSV na "
467
  "oficjalnej stronie."
468
 
469
+ #: ../classes/es-register.php:223
470
  msgctxt "notification-enhanced-select"
471
  msgid "Please select subscribers group."
472
  msgstr "Proszę wybrać grupę subskrybentów."
473
 
474
+ #: ../classes/es-register.php:224
475
  msgctxt "notification-enhanced-select"
476
  msgid "Please select notification mail subject. Use templates menu to create new."
477
  msgstr ""
478
  "Wybierz temat wiadomości z powiadomieniem. Użyj menu szablonów, aby utworzyć "
479
  "nowe."
480
 
481
+ #: ../classes/es-register.php:225
482
  msgctxt "notification-enhanced-select"
483
  msgid "Please select notification status."
484
  msgstr "Proszę wybierz stan powiadomienia."
485
 
486
+ #: ../classes/es-register.php:226
487
  msgctxt "notification-enhanced-select"
488
  msgid "Do you want to delete this record?"
489
  msgstr "Czy chcesz usunąć ten rekord?"
490
 
491
+ #: ../classes/es-register.php:234
492
  msgctxt "sendmail-enhanced-select"
493
  msgid "Please select your mail subject."
494
  msgstr "Proszę wybierz temat twojego maila."
495
 
496
+ #: ../classes/es-register.php:235
497
  msgctxt "sendmail-enhanced-select"
498
  msgid "Please select your mail type."
499
  msgstr "Proszę wybrać typ maila."
500
 
501
+ #: ../classes/es-register.php:236
502
  msgctxt "sendmail-enhanced-select"
503
  msgid ""
504
  "Have you double checked your selected group? If so, let's go ahead and send "
505
  "this."
506
  msgstr "Sprawdziłeś dwukrotnie wybraną grupę? Jeżeli tak to weź i wyślij."
507
 
508
+ #: ../classes/es-register.php:244
509
  msgctxt "sentmail-enhanced-select"
510
  msgid "Do you want to delete this record?"
511
  msgstr "Czy chcesz usunąć ten rekord?"
512
 
513
+ #: ../classes/es-register.php:245
514
  msgctxt "sentmail-enhanced-select"
515
  msgid "Do you want to delete all records except latest 10?"
516
  msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
517
 
518
+ #: ../classes/es-register.php:253
519
  msgctxt "cron-enhanced-select"
520
  msgid "Please select enter number of mails you want to send per hour/trigger."
521
  msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
522
 
523
+ #: ../classes/es-register.php:254
524
  msgctxt "cron-enhanced-select"
525
  msgid "Please enter the mail count, only number."
526
  msgstr "Proszę podać liczbę maili, tylko numer."
527
 
528
+ #: ../classes/es-register.php:267
529
  msgctxt "widget-page-enhanced-select"
530
  msgid "Please enter email address"
531
  msgstr "Proszę wprowadź adres mailowy"
532
 
533
+ #: ../classes/es-register.php:268
534
  msgctxt "widget-page-enhanced-select"
535
  msgid "Successfully Subscribed."
536
  msgstr "Zarejestrowano subskrypcję."
537
 
538
+ #: ../classes/es-register.php:269
539
  msgctxt "widget-page-enhanced-select"
540
  msgid ""
541
  "Your subscription was successful! Kindly check your mailbox and confirm your "
546
  "pocztową i potwierdzić subskrypcję. Jeśli wiadomość nie pojawi się w ciągu "
547
  "kilku minut, sprawdź folder spam/kosz."
548
 
549
+ #: ../classes/es-register.php:270
550
  msgctxt "widget-page-enhanced-select"
551
  msgid "Email Address already exists!"
552
  msgstr "Adres email już istnieje!"
553
 
554
+ #: ../classes/es-register.php:271
555
  msgctxt "widget-page-enhanced-select"
556
  msgid "Oops.. Unexpected error occurred."
557
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
558
 
559
+ #: ../classes/es-register.php:272
560
  msgctxt "widget-page-enhanced-select"
561
  msgid "Invalid email address"
562
  msgstr "Niepoprawny adres email"
563
 
564
+ #: ../classes/es-register.php:273
565
  msgctxt "widget-page-enhanced-select"
566
  msgid "Please try after some time"
567
  msgstr "Spróbuj po pewnym czasie"
568
 
569
+ #: ../classes/es-register.php:698
570
  msgid ""
571
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
572
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
578
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
579
  "</a>. Z góry dziękujemy, Icegram!"
580
 
581
+ #: ../classes/es-register.php:1034
582
  #, php-format
583
  msgid "Email Subscribers version: <strong>%s</strong>"
584
  msgstr "Wersja Email Subscribers: <strong>%s</strong>"
585
 
586
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
587
  msgid "Add new Template"
588
  msgstr "Dodaj nowy szablon"
589
 
590
+ #: ../classes/es-register.php:1047
591
  msgid "Edit Templates"
592
  msgstr "Edytuj szablony"
593
 
594
+ #: ../classes/es-register.php:1048
595
  msgid "New Templates"
596
  msgstr "Nowe szablony"
597
 
598
+ #: ../classes/es-register.php:1050
599
  msgid "View Templates"
600
  msgstr "Pokaż szablony"
601
 
602
+ #: ../classes/es-register.php:1051
603
  msgid "Search Templates"
604
  msgstr "Szukaj szablonów"
605
 
606
+ #: ../classes/es-register.php:1052
607
  msgid "No Templates found"
608
  msgstr "Brak szablonów"
609
 
610
+ #: ../classes/es-register.php:1053
611
  msgid "No Templates found in Trash"
612
  msgstr "Brak szablonów w koszu"
613
 
614
+ #: ../classes/es-register.php:1056
615
  msgid "Thumbnail (For Visual Representation only)"
616
  msgstr "Miniatura (jedynie dla wizualizacji)"
617
 
618
+ #: ../classes/es-register.php:1057
619
  msgid "Set thumbnail"
620
  msgstr "Ustaw miniaturę"
621
 
622
+ #: ../classes/es-register.php:1094
623
  msgid "Template Type"
624
  msgstr "Typ szablonu"
625
 
626
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
627
  msgid "Thumbnail"
628
  msgstr "Miniatura"
629
 
630
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
631
  #: sentmail/sentmail-show.php:121
632
  msgid "Preview"
633
  msgstr "Podgląd"
634
 
635
+ #: ../classes/es-register.php:1174
636
  msgid "Select your Email Template Type"
637
  msgstr "Wybierz typ szablonu e-maila"
638
 
639
+ #: ../classes/es-register.php:1176
640
  msgid "Newsletter"
641
  msgstr "Biuletyn"
642
 
643
+ #: ../classes/es-register.php:1177
644
  msgid "Post Notification"
645
  msgstr "Wpis"
646
 
647
+ #: ../classes/es-register.php:1226
648
  msgid "Preview Template"
649
  msgstr "Podgląd szablonu"
650
 
651
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
652
+ #: register.php:1261 ../classes/es-register.php:1269
653
  msgid "Available Keywords"
654
  msgstr "Dostępne słowa kluczowe"
655
 
656
+ #: ../classes/es-register.php:1246
657
  #, php-format
658
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
659
  msgstr "<br/><br/>%s do Biuletynu: {{NAME}}, {{EMAIL}}"
660
 
661
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
662
  msgid "Name"
663
  msgstr "Nazwa"
664
 
665
+ #: ../classes/es-register.php:1311
666
  msgid "Email *"
667
  msgstr "E-mail *"
668
 
669
+ #: ../classes/es-register.php:1320 ../help/help.php:202
670
  msgid "Subscribe"
671
  msgstr "Subskrypcja"
672
 
673
+ #: ../classes/es-register.php:1424
674
  msgid "Widget Title"
675
  msgstr "Tytuł wtyczki"
676
 
677
+ #: ../classes/es-register.php:1428
678
  msgid "Short description about subscription form"
679
  msgstr "Krótki opis formularza subskrypcji"
680
 
681
+ #: ../classes/es-register.php:1432
682
  msgid "Display Name Field"
683
  msgstr "Wyświetl nazwę pola"
684
 
685
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
686
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
687
  msgid "YES"
688
  msgstr "TAK"
689
 
690
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
691
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
692
  msgid "NO"
693
  msgstr "NIE"
694
 
695
+ #: ../classes/es-register.php:1439
696
  msgid "Subscriber Group"
697
  msgstr "Grupa subskrybenta"
698
 
1186
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1187
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1188
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1189
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1190
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1191
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1192
  msgid "Select"
1252
  msgid "Disable email notification"
1253
  msgstr "Wyłącz powiadomienia e-mail"
1254
 
1255
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1256
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1257
  msgid "Save"
1258
  msgstr "Zapisz"
1259
 
1376
  msgid "Send email via cron job"
1377
  msgstr "Wyślij e-mail przez zadanie Cron"
1378
 
1379
+ #: ../sendmail/sendmail.php:148
1380
  msgid "Select Subscribers group to Send Email"
1381
  msgstr "Wybierz grupę subskrybentów, do wysłania e-maila"
1382
 
1383
+ #: ../sendmail/sendmail.php:180
1384
  msgid "Recipients : 0 "
1385
  msgstr "Odbiorcy: 0 "
1386
 
1387
+ #: ../sendmail/sendmail.php:182
1388
  #, php-format
1389
  msgid "Recipients : %s"
1390
  msgstr "Odbiorcy: %s"
1391
 
1392
+ #: ../sendmail/sendmail.php:185
1393
  msgid ""
1394
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1395
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1399
  "zmianę Typu Maili na Cron i wysyłkę maili przez zadania Cron."
1400
  "</strong><br>Aby uzyskać więcej informacji kliknij Pomoc."
1401
 
1402
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1403
  msgid "Send Email"
1404
  msgstr "Wyślij mail"
1405
 
1406
+ #: ../sendmail/sendmail.php:202
1407
  msgid "Reset"
1408
  msgstr "Nastawić"
1409
 
1520
  "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1521
  "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
1522
 
1523
+ #: ../sentmail/sentmail-show.php:216
1524
  msgid ""
1525
  "<strong>Note:</strong> If you delete record for the emails with Status = "
1526
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
1704
  msgid "Sent Report Subject"
1705
  msgstr "Temat wysłanego raportu"
1706
 
 
 
 
 
1707
  #: ../settings/settings-edit.php:172
1708
  msgid "Sent Report Content"
1709
  msgstr "Treść wysłanego raportu"
1710
 
 
 
 
 
 
 
 
 
1711
  #: ../settings/settings-edit.php:184
1712
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1713
  msgstr "Temat e-maila Podwójnego Opt-In (E-mail potwierdzający)"
1915
  "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie "
1916
  "zaleca się go modyfikować."
1917
 
1918
+ #: ../settings/settings-edit.php:377
1919
  msgid "Email Count"
1920
  msgstr "Ilość emaili"
1921
 
1922
+ #: ../settings/settings-edit.php:378
1923
  msgid "Number of emails that you want to trigger per hour."
1924
  msgstr "Ilość e-maili, które mają być wyzwalane na godzinę."
1925
 
1926
+ #: ../settings/settings-edit.php:383
1927
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1928
  msgstr ""
1929
  "(Twój host ma ograniczenia. Sugerujemy bezpieczny limit 50 e-maili na "
1930
  "godzinę.)"
1931
 
1932
+ #: ../settings/settings-edit.php:388
1933
  msgid "Cron Report"
1934
  msgstr "Raport Crona"
1935
 
1936
+ #: ../settings/settings-edit.php:389
1937
  msgid ""
1938
  "Email to admin whenever a cron URL is triggered from your server.<br "
1939
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1942
  "twojego serwera.<br />Możliwe słowa kluczowe: {{DATE}}, {{SUBJECT}}, "
1943
  "{{COUNT}}"
1944
 
1945
+ #: ../settings/settings-edit.php:400
1946
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1947
  msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
1948
 
1949
+ #: ../settings/settings-edit.php:401
1950
  msgid ""
1951
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1952
  "schedule-cron-emails/?"
1958
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Co to jest "
1959
  "Cron?</a>"
1960
 
1961
+ #: ../settings/settings-edit.php:402
1962
  msgid ""
1963
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1964
  "schedule-cron-emails-in-cpanel/?"
1970
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1971
  "proceduję cron w cPanel</a>"
1972
 
1973
+ #: ../settings/settings-edit.php:403
1974
  msgid ""
1975
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1976
  "schedule-cron-emails-in-parallels-plesk/?"
1982
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
1983
  "proceduję cron w Plesk</a>"
1984
 
1985
+ #: ../settings/settings-edit.php:404
1986
  msgid ""
1987
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1988
  "if-hosting-doesnt-support-cron-jobs/?"
1994
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1995
  "nie obsługuje procedur cron?</a>"
1996
 
1997
+ #: ../settings/settings-edit.php:520
1998
  msgid "Please enter sender of notifications from name."
1999
  msgstr "Proszę podać nadawcę powiadomień po nazwie."
2000
 
2001
+ #: ../settings/settings-edit.php:525
2002
  msgid "Please enter sender of notifications from email."
2003
  msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
2004
 
2005
+ #: ../settings/settings-edit.php:584
2006
  msgid "Settings Saved."
2007
  msgstr "Ustawienia zapisane."
2008
 
2009
+ #: ../settings/settings-edit.php:587
2010
  msgid "Oops, unable to update."
2011
  msgstr "Ups, nie można zaktualizować."
2012
 
2461
  "automatycznie powiadom subskrybentów o nowych wpisach na blogu kiedy tylko "
2462
  "zostaną opublikowane."
2463
 
2464
+ #: ../email-subscribers.php:96
2465
  msgctxt "timezone date format"
2466
  msgid "Y-m-d H:i:s"
2467
  msgstr "Y-m-d H:i:s"
languages/email-subscribers-pt_BR.mo CHANGED
Binary file
languages/email-subscribers-pt_BR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:52 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Portuguese (Brazil)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,19 +22,27 @@ msgstr ""
22
  "X-Poedit-SearchPath-0: ..\n"
23
  "X-Loco-Target-Locale: pt_BR"
24
 
25
- #: ../classes/es-register.php:201
 
 
 
 
 
 
 
 
26
  msgctxt "view-subscriber-enhanced-select"
27
  msgid ""
28
  "Do you want to resend confirmation email? Also please note, this will update "
29
  "subscriber current status to 'Unconfirmed'."
30
  msgstr ""
31
 
32
- #: ../classes/es-register.php:215
33
  msgctxt "notification-enhanced-select"
34
  msgid "Please select notification mail subject. Use templates menu to create new."
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,30 +50,99 @@ msgid ""
42
  "spam/junk folder."
43
  msgstr ""
44
 
45
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  msgid ""
47
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
48
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  msgstr ""
50
 
51
- #: ../classes/es-register.php:728
52
- msgid "Here's how"
53
  msgstr ""
54
 
55
- #: ../classes/es-register.php:728
56
- msgid "Not interested. Dismiss this."
57
  msgstr ""
58
 
59
- #: ../classes/es-register.php:900
60
  #, php-format
61
  msgid "%s for Post Notification: {{POSTTITLE}}"
62
  msgstr ""
63
 
64
- #: ../classes/es-register.php:900
65
  msgid "Available Keyword"
66
  msgstr ""
67
 
68
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
69
  #, php-format
70
  msgid ""
71
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -73,12 +150,12 @@ msgid ""
73
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
74
  msgstr ""
75
 
76
- #: ../classes/es-register.php:979
77
  #, php-format
78
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:1002
82
  #, php-format
83
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
84
  msgstr ""
@@ -205,14 +282,31 @@ msgstr ""
205
  msgid "(Use templates menu to create new)"
206
  msgstr ""
207
 
208
- #: ../sentmail/sentmail-show.php:212
209
  msgid ""
210
  "<strong>Note:</strong> If you delete record for the emails with Status = "
211
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
212
  "deleted too and email will not be sent."
213
  msgstr ""
214
 
215
- #: ../settings/settings-edit.php:566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  msgid "Please enter valid email count."
217
  msgstr ""
218
 
@@ -235,6 +329,145 @@ msgstr ""
235
  msgid "Total Subscribers: "
236
  msgstr ""
237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  #: ../classes/es-common.php:13
239
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
240
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
@@ -279,100 +512,101 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron Job</span>"
279
  msgid "<span style=\"color:#993399;\">Immediately</span>"
280
  msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
281
 
282
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
283
- #: register.php:788
284
  msgid "Email Subscribers"
285
  msgstr "Email Subscribers"
286
 
287
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
288
  #: subscribers/view-subscriber-show.php:242
289
  msgid "Subscribers"
290
  msgstr "Assinantes"
291
 
292
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
293
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
294
  msgid "Templates"
295
  msgstr "Modelos"
296
 
297
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
298
  #: 370 ../notification/notification-show.php:52
299
  msgid "Post Notifications"
300
  msgstr "Notificações de Postagens"
301
 
302
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
303
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
304
  msgid "Newsletters"
305
  msgstr "Newsletters"
306
 
307
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
308
  #: settings/settings-edit.php:42
309
  msgid "Settings"
310
  msgstr "Configurações"
311
 
312
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
313
  #: sentmail/sentmail-show.php:93
314
  msgid "Reports"
315
  msgstr "Relatórios"
316
 
317
- #: ../classes/es-register.php:183
318
  msgid "Help & Info"
319
  msgstr "Ajuda e Informações"
320
 
321
- #: ../classes/es-register.php:184
322
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
323
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda e Informações</span>"
324
 
325
- #: ../classes/es-register.php:195
326
  msgctxt "view-subscriber-enhanced-select"
327
  msgid "Please enter subscriber email address."
328
  msgstr "Por favor, digite o endereço de e-mail do assinante."
329
 
330
- #: ../classes/es-register.php:196
331
  msgctxt "view-subscriber-enhanced-select"
332
  msgid "Please select subscriber email status."
333
  msgstr "Por favor, digite o status do e-mail do assinante."
334
 
335
- #: ../classes/es-register.php:197
336
  msgctxt "view-subscriber-enhanced-select"
337
  msgid "Please select or create group for this subscriber."
338
  msgstr "Por favor, crie um grupo para este assinante."
339
 
340
- #: ../classes/es-register.php:198
341
  msgctxt "view-subscriber-enhanced-select"
342
  msgid "Do you want to delete this record?"
343
  msgstr "Você deseja deletar este registro?"
344
 
345
- #: ../classes/es-register.php:199
346
  msgctxt "view-subscriber-enhanced-select"
347
  msgid "Please select the bulk action."
348
  msgstr "Por favor, selecione uma ação em massa."
349
 
350
- #: ../classes/es-register.php:200
351
  msgctxt "view-subscriber-enhanced-select"
352
  msgid "Are you sure you want to delete selected records?"
353
  msgstr "Tem certeza de que deseja excluir os registros selecionados?"
354
 
355
- #: ../classes/es-register.php:202
356
  msgctxt "view-subscriber-enhanced-select"
357
  msgid "Please select new subscriber group."
358
  msgstr "Por favor, selecione um novo grupo de assinantes."
359
 
360
- #: ../classes/es-register.php:203
361
  msgctxt "view-subscriber-enhanced-select"
362
  msgid "Please select new status for subscribers"
363
  msgstr "Por favor, selecione um novo status para assinantes"
364
 
365
- #: ../classes/es-register.php:204
366
  msgctxt "view-subscriber-enhanced-select"
367
  msgid "Do you want to update subscribers group?"
368
  msgstr "Você deseja atualizar o grupo de assinantes?"
369
 
370
- #: ../classes/es-register.php:205
371
  msgctxt "view-subscriber-enhanced-select"
372
  msgid "Do you want to update subscribers status?"
373
  msgstr "Você deseja atualizar o status do assinante?"
374
 
375
- #: ../classes/es-register.php:206
376
  msgctxt "view-subscriber-enhanced-select"
377
  msgid ""
378
  "Please select only csv file. Please check official website for csv structure."
@@ -381,32 +615,32 @@ msgstr ""
381
  "Por favor, selecione apenas o arquivo CSV. Por favor, verifique o site "
382
  "oficial para a estrutura CSV."
383
 
384
- #: ../classes/es-register.php:214
385
  msgctxt "notification-enhanced-select"
386
  msgid "Please select subscribers group."
387
  msgstr "Por favor, selecione um grupo de assinantes."
388
 
389
- #: ../classes/es-register.php:216
390
  msgctxt "notification-enhanced-select"
391
  msgid "Please select notification status."
392
  msgstr "Por favor, selecione o status de notificação."
393
 
394
- #: ../classes/es-register.php:217
395
  msgctxt "notification-enhanced-select"
396
  msgid "Do you want to delete this record?"
397
  msgstr "Você deseja deletar este registro?"
398
 
399
- #: ../classes/es-register.php:225
400
  msgctxt "sendmail-enhanced-select"
401
  msgid "Please select your mail subject."
402
  msgstr "Por favor, selecione o assunto do seu E-mail."
403
 
404
- #: ../classes/es-register.php:226
405
  msgctxt "sendmail-enhanced-select"
406
  msgid "Please select your mail type."
407
  msgstr "Por favor, selecione o tipo do seu E-mail."
408
 
409
- #: ../classes/es-register.php:227
410
  msgctxt "sendmail-enhanced-select"
411
  msgid ""
412
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -415,57 +649,57 @@ msgstr ""
415
  "Você verificou o grupo selecionado? Se assim for, vamos em frente e envie "
416
  "isso."
417
 
418
- #: ../classes/es-register.php:235
419
  msgctxt "sentmail-enhanced-select"
420
  msgid "Do you want to delete this record?"
421
  msgstr "Você deseja deletar este registro?"
422
 
423
- #: ../classes/es-register.php:236
424
  msgctxt "sentmail-enhanced-select"
425
  msgid "Do you want to delete all records except latest 10?"
426
  msgstr "Você deseja deletar todos os registros exceto os últimos 10?"
427
 
428
- #: ../classes/es-register.php:244
429
  msgctxt "cron-enhanced-select"
430
  msgid "Please select enter number of mails you want to send per hour/trigger."
431
  msgstr "Por favor, digite o número de e-mails que deseja enviar por hora."
432
 
433
- #: ../classes/es-register.php:245
434
  msgctxt "cron-enhanced-select"
435
  msgid "Please enter the mail count, only number."
436
  msgstr "Por favor, digite a contagem de mensagens, apenas o números."
437
 
438
- #: ../classes/es-register.php:258
439
  msgctxt "widget-page-enhanced-select"
440
  msgid "Please enter email address"
441
  msgstr "Por favor, digite um endereço de e-mail"
442
 
443
- #: ../classes/es-register.php:259
444
  msgctxt "widget-page-enhanced-select"
445
  msgid "Successfully Subscribed."
446
  msgstr "Assinado com Sucesso."
447
 
448
- #: ../classes/es-register.php:261
449
  msgctxt "widget-page-enhanced-select"
450
  msgid "Email Address already exists!"
451
  msgstr "Este Endereço de E-mail já existe!"
452
 
453
- #: ../classes/es-register.php:262
454
  msgctxt "widget-page-enhanced-select"
455
  msgid "Oops.. Unexpected error occurred."
456
  msgstr "Oops. Ocorreu um erro inesperado."
457
 
458
- #: ../classes/es-register.php:263
459
  msgctxt "widget-page-enhanced-select"
460
  msgid "Invalid email address"
461
  msgstr "Endereço de e-mail inválido"
462
 
463
- #: ../classes/es-register.php:264
464
  msgctxt "widget-page-enhanced-select"
465
  msgid "Please try after some time"
466
  msgstr "Por favor, tente depois de algum tempo"
467
 
468
- #: ../classes/es-register.php:753
469
  msgid ""
470
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
471
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -477,116 +711,116 @@ msgstr ""
477
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
478
  "&#9733;&#9733;&#9733;&#9733;</a> avaliação. Um enorme obrigado do Icegram!"
479
 
480
- #: ../classes/es-register.php:767
481
  #, php-format
482
  msgid "Email Subscribers version: <strong>%s</strong>"
483
  msgstr "Email Subscribers versão: <strong>%s</strong>"
484
 
485
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
486
  msgid "Add new Template"
487
  msgstr "Adicionar Novo Modelo"
488
 
489
- #: ../classes/es-register.php:780
490
  msgid "Edit Templates"
491
  msgstr "Editar Modelos"
492
 
493
- #: ../classes/es-register.php:781
494
  msgid "New Templates"
495
  msgstr "Novos Modelos"
496
 
497
- #: ../classes/es-register.php:783
498
  msgid "View Templates"
499
  msgstr "Exibir Modelos"
500
 
501
- #: ../classes/es-register.php:784
502
  msgid "Search Templates"
503
  msgstr "Procurar Modelos"
504
 
505
- #: ../classes/es-register.php:785
506
  msgid "No Templates found"
507
  msgstr "Nenhum Modelo encontrado"
508
 
509
- #: ../classes/es-register.php:786
510
  msgid "No Templates found in Trash"
511
  msgstr "Nenhum Modelo encontrado na Lixeira"
512
 
513
- #: ../classes/es-register.php:789
514
  msgid "Thumbnail (For Visual Representation only)"
515
  msgstr "Miniaturas (Para Representação Visual apenas)"
516
 
517
- #: ../classes/es-register.php:790
518
  msgid "Set thumbnail"
519
  msgstr "Definir miniatura"
520
 
521
- #: ../classes/es-register.php:827
522
  msgid "Template Type"
523
  msgstr "Tipo de Modelo"
524
 
525
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
526
  msgid "Thumbnail"
527
  msgstr "Miniatura"
528
 
529
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
530
  #: sentmail/sentmail-show.php:121
531
  msgid "Preview"
532
  msgstr "Visualizar"
533
 
534
- #: ../classes/es-register.php:907
535
  msgid "Select your Email Template Type"
536
  msgstr "Selecione o seu Tipo de Modelo de E-mail"
537
 
538
- #: ../classes/es-register.php:909
539
  msgid "Newsletter"
540
  msgstr "Newsletter"
541
 
542
- #: ../classes/es-register.php:910
543
  msgid "Post Notification"
544
  msgstr "Notificação de Postagem"
545
 
546
- #: ../classes/es-register.php:959
547
  msgid "Preview Template"
548
  msgstr "Visualização do Modelo"
549
 
550
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
551
- #: register.php:994 ../classes/es-register.php:1002
552
  msgid "Available Keywords"
553
  msgstr "Palavras-chave disponíveis"
554
 
555
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
556
  msgid "Name"
557
  msgstr "Nome"
558
 
559
- #: ../classes/es-register.php:1044
560
  msgid "Email *"
561
  msgstr "E-mail *"
562
 
563
- #: ../classes/es-register.php:1053 ../help/help.php:202
564
  msgid "Subscribe"
565
  msgstr "Inscrever"
566
 
567
- #: ../classes/es-register.php:1157
568
  msgid "Widget Title"
569
  msgstr "Título do Widget"
570
 
571
- #: ../classes/es-register.php:1161
572
  msgid "Short description about subscription form"
573
  msgstr "Breve descrição sobre o formulário de inscrição"
574
 
575
- #: ../classes/es-register.php:1165
576
  msgid "Display Name Field"
577
  msgstr "Exibir Campo do Nome"
578
 
579
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
580
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
581
  msgid "YES"
582
  msgstr "SIM"
583
 
584
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
585
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
586
  msgid "NO"
587
  msgstr "NÃO"
588
 
589
- #: ../classes/es-register.php:1172
590
  msgid "Subscriber Group"
591
  msgstr "Grupo do Assinante"
592
 
@@ -952,7 +1186,7 @@ msgstr "Ajuda"
952
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
953
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
954
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
955
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
956
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
957
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
958
  msgid "Select"
@@ -1013,8 +1247,8 @@ msgstr "Adicionar ao Cron Job e enviar e-mails"
1013
  msgid "Disable email notification"
1014
  msgstr "Desabilitar notificação de e-mail"
1015
 
1016
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1017
- #: 291 ../subscribers/view-subscriber-edit.php:191
1018
  msgid "Save"
1019
  msgstr "Salvar"
1020
 
@@ -1137,20 +1371,20 @@ msgstr "Selecione o Tipo de E-mail"
1137
  msgid "Send email via cron job"
1138
  msgstr "Enviar e-mail via Cron Job"
1139
 
1140
- #: ../sendmail/sendmail.php:147
1141
  msgid "Select Subscribers group to Send Email"
1142
  msgstr "Selecione o grupo de Assinantes para Enviar o E-mail"
1143
 
1144
- #: ../sendmail/sendmail.php:179
1145
  msgid "Recipients : 0 "
1146
  msgstr "Destinatários : 0 "
1147
 
1148
- #: ../sendmail/sendmail.php:181
1149
  #, php-format
1150
  msgid "Recipients : %s"
1151
  msgstr "Destinatários : %s"
1152
 
1153
- #: ../sendmail/sendmail.php:184
1154
  msgid ""
1155
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1156
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1161,11 +1395,11 @@ msgstr ""
1161
  "envie os e-mails por meio do Cron Job.</strong><br>Clique na Ajuda para "
1162
  "obter mais informações."
1163
 
1164
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1165
  msgid "Send Email"
1166
  msgstr "Enviar E-mail"
1167
 
1168
- #: ../sendmail/sendmail.php:201
1169
  msgid "Reset"
1170
  msgstr "Resetar"
1171
 
@@ -1457,23 +1691,10 @@ msgstr ""
1457
  msgid "Sent Report Subject"
1458
  msgstr "Assunto do Relatório Enviado"
1459
 
1460
- #: ../settings/settings-edit.php:166
1461
- msgid "Subject for the email report which will be sent to admin."
1462
- msgstr "Assunto para o e-mail de relatório que será enviado ao Administrador."
1463
-
1464
  #: ../settings/settings-edit.php:172
1465
  msgid "Sent Report Content"
1466
  msgstr "Conteúdo do Relatório Enviado"
1467
 
1468
- #: ../settings/settings-edit.php:173
1469
- msgid ""
1470
- "Content for the email report which will be sent to admin.<br />Available "
1471
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1472
- msgstr ""
1473
- "Conteúdo para o relatório de e-mail que será enviado ao Administrador.<br "
1474
- "/>Palavras-chave disponíveis: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1475
- "{{ENDTIME}}"
1476
-
1477
  #: ../settings/settings-edit.php:184
1478
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1479
  msgstr "Assunto do E-mail de Opt-In Duplo (E-mail de Confirmação)"
@@ -1678,23 +1899,23 @@ msgstr ""
1678
  "Este é o URL do seu Cron Job. É um campo de leitura e é aconselhável não "
1679
  "modificá-lo."
1680
 
1681
- #: ../settings/settings-edit.php:376
1682
  msgid "Email Count"
1683
  msgstr "Contagem de e-mail"
1684
 
1685
- #: ../settings/settings-edit.php:377
1686
  msgid "Number of emails that you want to trigger per hour."
1687
  msgstr "Número de e-mails que você deseja disparar por hora."
1688
 
1689
- #: ../settings/settings-edit.php:382
1690
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1691
  msgstr "(O seu host tem limites. Sugerimos 50 e-mails por hora para serem seguros.)"
1692
 
1693
- #: ../settings/settings-edit.php:387
1694
  msgid "Cron Report"
1695
  msgstr "Relatório do Cron Job"
1696
 
1697
- #: ../settings/settings-edit.php:388
1698
  msgid ""
1699
  "Email to admin whenever a cron URL is triggered from your server.<br "
1700
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1703,11 +1924,11 @@ msgstr ""
1703
  "seu servidor.<br />Palavras-chave disponíveis: {{DATE}}, {{SUBJECT}}, "
1704
  "{{COUNT}}"
1705
 
1706
- #: ../settings/settings-edit.php:398
1707
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1708
  msgstr "O que é Cron Job (e-mails automáticos) e como configurar o Cron Job?"
1709
 
1710
- #: ../settings/settings-edit.php:399
1711
  msgid ""
1712
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1713
  "schedule-cron-emails/?"
@@ -1719,7 +1940,7 @@ msgstr ""
1719
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">O que é o "
1720
  "Cron Job?</a>"
1721
 
1722
- #: ../settings/settings-edit.php:400
1723
  msgid ""
1724
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1725
  "schedule-cron-emails-in-cpanel/?"
@@ -1731,7 +1952,7 @@ msgstr ""
1731
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1732
  "o Cron Job no cPanel</a>"
1733
 
1734
- #: ../settings/settings-edit.php:401
1735
  msgid ""
1736
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1737
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1743,7 +1964,7 @@ msgstr ""
1743
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1744
  "o Cron Job no Plesk</a>"
1745
 
1746
- #: ../settings/settings-edit.php:402
1747
  msgid ""
1748
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1749
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1755,19 +1976,19 @@ msgstr ""
1755
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">A sua "
1756
  "hospedagem não suporta trabalhos do Cron Job?</a>"
1757
 
1758
- #: ../settings/settings-edit.php:517
1759
  msgid "Please enter sender of notifications from name."
1760
  msgstr "Por favor, digite o nome do remetente de notificações."
1761
 
1762
- #: ../settings/settings-edit.php:522
1763
  msgid "Please enter sender of notifications from email."
1764
  msgstr "Por favor, digite o e-mail do remetente de notificações."
1765
 
1766
- #: ../settings/settings-edit.php:580
1767
  msgid "Settings Saved."
1768
  msgstr "Configurações Salvas."
1769
 
1770
- #: ../settings/settings-edit.php:583
1771
  msgid "Oops, unable to update."
1772
  msgstr "Oops, não foi possível de atualizar."
1773
 
@@ -2208,7 +2429,7 @@ msgstr ""
2208
  "notifique automaticamente os assinantes sobre novas postagens no blog assim "
2209
  "que forem publicadas."
2210
 
2211
- #: ../email-subscribers.php:95
2212
  msgctxt "timezone date format"
2213
  msgid "Y-m-d H:i:s"
2214
  msgstr "Y-m-d H:i:s"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:23 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Portuguese (Brazil)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
  "X-Loco-Target-Locale: pt_BR"
24
 
25
+ #: ../classes/es-register.php:191
26
+ msgid "Go Pro"
27
+ msgstr ""
28
+
29
+ #: ../classes/es-register.php:192
30
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
31
+ msgstr ""
32
+
33
+ #: ../classes/es-register.php:210
34
  msgctxt "view-subscriber-enhanced-select"
35
  msgid ""
36
  "Do you want to resend confirmation email? Also please note, this will update "
37
  "subscriber current status to 'Unconfirmed'."
38
  msgstr ""
39
 
40
+ #: ../classes/es-register.php:224
41
  msgctxt "notification-enhanced-select"
42
  msgid "Please select notification mail subject. Use templates menu to create new."
43
  msgstr ""
44
 
45
+ #: ../classes/es-register.php:269
46
  msgctxt "widget-page-enhanced-select"
47
  msgid ""
48
  "Your subscription was successful! Kindly check your mailbox and confirm your "
50
  "spam/junk folder."
51
  msgstr ""
52
 
53
+ #: ../classes/es-register.php:699
54
+ msgid "No, I don't like it"
55
+ msgstr ""
56
+
57
+ #: ../classes/es-register.php:705
58
+ msgctxt "timezone date format"
59
+ msgid "Y-m-d"
60
+ msgstr ""
61
+
62
+ #: ../classes/es-register.php:850
63
+ msgid "What do you hate about list building and email marketing?"
64
+ msgstr ""
65
+
66
+ #: ../classes/es-register.php:851
67
+ msgid "Hey, glad to see you!"
68
+ msgstr ""
69
+
70
+ #: ../classes/es-register.php:852
71
+ msgid ""
72
+ "I am on a daring quest to solve your biggest problems around list building "
73
+ "and email marketing. "
74
+ msgstr ""
75
+
76
+ #: ../classes/es-register.php:853
77
+ msgid ""
78
+ "So tell me, when it comes to list building and email marketing, what's your "
79
+ "biggest challenge? What's blocking your progress? "
80
+ msgstr ""
81
+
82
+ #: ../classes/es-register.php:858
83
+ msgid "And what's another big challenge? "
84
+ msgstr ""
85
+
86
+ #: ../classes/es-register.php:862
87
+ msgid "Send my problems..."
88
+ msgstr ""
89
+
90
+ #: ../classes/es-register.php:863
91
+ msgid "No, I don't have problems"
92
+ msgstr ""
93
+
94
+ #: ../classes/es-register.php:865
95
+ msgid "Fill the above field first"
96
+ msgstr ""
97
+
98
+ #: ../classes/es-register.php:874
99
+ msgid "Gosh... I hear you mate... "
100
+ msgstr ""
101
+
102
+ #: ../classes/es-register.php:875
103
  msgid ""
104
+ "Enter your email below, and you will be the first to know when we solve "
105
+ "those problems. "
106
+ msgstr ""
107
+
108
+ #: ../classes/es-register.php:879
109
+ msgid "Nah, I don't like improvements"
110
+ msgstr ""
111
+
112
+ #: ../classes/es-register.php:893
113
+ msgid "I got you."
114
+ msgstr ""
115
+
116
+ #: ../classes/es-register.php:894
117
+ msgid "Will do everything I can to help you. "
118
+ msgstr ""
119
+
120
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
121
+ msgid "Later. "
122
+ msgstr ""
123
+
124
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
125
+ msgid "Andrea Julio "
126
  msgstr ""
127
 
128
+ #: ../classes/es-register.php:902
129
+ msgid "No issues, have a nice day!"
130
  msgstr ""
131
 
132
+ #: ../classes/es-register.php:1020
133
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
134
  msgstr ""
135
 
136
+ #: ../classes/es-register.php:1167
137
  #, php-format
138
  msgid "%s for Post Notification: {{POSTTITLE}}"
139
  msgstr ""
140
 
141
+ #: ../classes/es-register.php:1167
142
  msgid "Available Keyword"
143
  msgstr ""
144
 
145
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
146
  #, php-format
147
  msgid ""
148
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
150
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
151
  msgstr ""
152
 
153
+ #: ../classes/es-register.php:1246
154
  #, php-format
155
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
156
  msgstr ""
157
 
158
+ #: ../classes/es-register.php:1269
159
  #, php-format
160
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
161
  msgstr ""
282
  msgid "(Use templates menu to create new)"
283
  msgstr ""
284
 
285
+ #: ../sentmail/sentmail-show.php:216
286
  msgid ""
287
  "<strong>Note:</strong> If you delete record for the emails with Status = "
288
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
289
  "deleted too and email will not be sent."
290
  msgstr ""
291
 
292
+ #: ../settings/settings-edit.php:166
293
+ msgid ""
294
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
295
+ "only if sending email via immediately)"
296
+ msgstr ""
297
+
298
+ #: ../settings/settings-edit.php:173
299
+ msgid ""
300
+ "Content for the email report which will be sent to admin.<br />Available "
301
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
302
+ "sent only if sending email via immediately)"
303
+ msgstr ""
304
+
305
+ #: ../settings/settings-edit.php:393
306
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
307
+ msgstr ""
308
+
309
+ #: ../settings/settings-edit.php:569
310
  msgid "Please enter valid email count."
311
  msgstr ""
312
 
329
  msgid "Total Subscribers: "
330
  msgstr ""
331
 
332
+ #: ../pricing/pricing.php:157
333
+ msgid "Go a notch higher"
334
+ msgstr ""
335
+
336
+ #: ../pricing/pricing.php:158
337
+ msgid "Get the Email Subscribers Pro Plugin at"
338
+ msgstr ""
339
+
340
+ #: ../pricing/pricing.php:162
341
+ msgid "month"
342
+ msgstr ""
343
+
344
+ #: ../pricing/pricing.php:163
345
+ msgid "Sign up for monthly"
346
+ msgstr ""
347
+
348
+ #: ../pricing/pricing.php:166
349
+ msgid "year"
350
+ msgstr ""
351
+
352
+ #: ../pricing/pricing.php:167
353
+ msgid "Sign up for yearly"
354
+ msgstr ""
355
+
356
+ #: ../pricing/pricing.php:171
357
+ msgid "Get more with Email Subscribers Pro"
358
+ msgstr ""
359
+
360
+ #: ../pricing/pricing.php:173
361
+ msgid "All features of Email Subscribers free plugin + everything below:"
362
+ msgstr ""
363
+
364
+ #: ../pricing/pricing.php:176
365
+ msgid "Protect your list from bot attacks"
366
+ msgstr ""
367
+
368
+ #: ../pricing/pricing.php:177
369
+ msgid "Use "
370
+ msgstr ""
371
+
372
+ #: ../pricing/pricing.php:177
373
+ msgid "captcha"
374
+ msgstr ""
375
+
376
+ #: ../pricing/pricing.php:177
377
+ msgid ""
378
+ "to protect your email list from bots. The simple maths captcha helps "
379
+ "identifying bots from humans and eliminates spam signups."
380
+ msgstr ""
381
+
382
+ #: ../pricing/pricing.php:180
383
+ msgid "Check email status & increase email success rate"
384
+ msgstr ""
385
+
386
+ #: ../pricing/pricing.php:181
387
+ msgid "Double check the status of the emails addresses and increase "
388
+ msgstr ""
389
+
390
+ #: ../pricing/pricing.php:181
391
+ msgid "email success rate"
392
+ msgstr ""
393
+
394
+ #: ../pricing/pricing.php:181
395
+ msgid "of your email campaign. "
396
+ msgstr ""
397
+
398
+ #: ../pricing/pricing.php:187
399
+ msgid "Fullproof email deliverability"
400
+ msgstr ""
401
+
402
+ #: ../pricing/pricing.php:188
403
+ msgid ""
404
+ "Reduce the risk of emails ending in trash or spam. Increase email "
405
+ "deliverability by double checking emails for their "
406
+ msgstr ""
407
+
408
+ #: ../pricing/pricing.php:188
409
+ msgid "spam score"
410
+ msgstr ""
411
+
412
+ #: ../pricing/pricing.php:188
413
+ msgid "before hitting send."
414
+ msgstr ""
415
+
416
+ #: ../pricing/pricing.php:191
417
+ msgid "Track email leads in Google"
418
+ msgstr ""
419
+
420
+ #: ../pricing/pricing.php:192
421
+ msgid "Insert "
422
+ msgstr ""
423
+
424
+ #: ../pricing/pricing.php:192
425
+ msgid "UTM tracking"
426
+ msgstr ""
427
+
428
+ #: ../pricing/pricing.php:192
429
+ msgid ""
430
+ "in all your email CTA’s and track the effectiveness of your emails directly "
431
+ "within Google. Know which/ how many leads landed up from your emails and "
432
+ "tweak emails for better performance."
433
+ msgstr ""
434
+
435
+ #: ../pricing/pricing.php:199
436
+ msgid "Save time, use readymade email templates"
437
+ msgstr ""
438
+
439
+ #: ../pricing/pricing.php:200
440
+ msgid ""
441
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
442
+ "elegant templates</strong> to send your next email campaign."
443
+ msgstr ""
444
+
445
+ #: ../pricing/pricing.php:203
446
+ msgid "Customize confirmation and unsubscribe page"
447
+ msgstr ""
448
+
449
+ #: ../pricing/pricing.php:204
450
+ msgid ""
451
+ "Communicate with subscribers. Redirect them to beautifully designed "
452
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
453
+ msgstr ""
454
+
455
+ #: ../pricing/pricing.php:211
456
+ msgid "Coming soon..."
457
+ msgstr ""
458
+
459
+ #: ../pricing/pricing.php:213
460
+ msgid "Spam testing"
461
+ msgstr ""
462
+
463
+ #: ../pricing/pricing.php:214
464
+ msgid "Bounce handling"
465
+ msgstr ""
466
+
467
+ #: ../pricing/pricing.php:215
468
+ msgid "Advanced reporting"
469
+ msgstr ""
470
+
471
  #: ../classes/es-common.php:13
472
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
473
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
512
  msgid "<span style=\"color:#993399;\">Immediately</span>"
513
  msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
514
 
515
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
516
+ #: register.php:1055
517
  msgid "Email Subscribers"
518
  msgstr "Email Subscribers"
519
 
520
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
521
  #: subscribers/view-subscriber-show.php:242
522
  msgid "Subscribers"
523
  msgstr "Assinantes"
524
 
525
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
526
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
527
+ #: 1049
528
  msgid "Templates"
529
  msgstr "Modelos"
530
 
531
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
532
  #: 370 ../notification/notification-show.php:52
533
  msgid "Post Notifications"
534
  msgstr "Notificações de Postagens"
535
 
536
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
537
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
538
  msgid "Newsletters"
539
  msgstr "Newsletters"
540
 
541
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
542
  #: settings/settings-edit.php:42
543
  msgid "Settings"
544
  msgstr "Configurações"
545
 
546
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
547
  #: sentmail/sentmail-show.php:93
548
  msgid "Reports"
549
  msgstr "Relatórios"
550
 
551
+ #: ../classes/es-register.php:187
552
  msgid "Help & Info"
553
  msgstr "Ajuda e Informações"
554
 
555
+ #: ../classes/es-register.php:188
556
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
557
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda e Informações</span>"
558
 
559
+ #: ../classes/es-register.php:204
560
  msgctxt "view-subscriber-enhanced-select"
561
  msgid "Please enter subscriber email address."
562
  msgstr "Por favor, digite o endereço de e-mail do assinante."
563
 
564
+ #: ../classes/es-register.php:205
565
  msgctxt "view-subscriber-enhanced-select"
566
  msgid "Please select subscriber email status."
567
  msgstr "Por favor, digite o status do e-mail do assinante."
568
 
569
+ #: ../classes/es-register.php:206
570
  msgctxt "view-subscriber-enhanced-select"
571
  msgid "Please select or create group for this subscriber."
572
  msgstr "Por favor, crie um grupo para este assinante."
573
 
574
+ #: ../classes/es-register.php:207
575
  msgctxt "view-subscriber-enhanced-select"
576
  msgid "Do you want to delete this record?"
577
  msgstr "Você deseja deletar este registro?"
578
 
579
+ #: ../classes/es-register.php:208
580
  msgctxt "view-subscriber-enhanced-select"
581
  msgid "Please select the bulk action."
582
  msgstr "Por favor, selecione uma ação em massa."
583
 
584
+ #: ../classes/es-register.php:209
585
  msgctxt "view-subscriber-enhanced-select"
586
  msgid "Are you sure you want to delete selected records?"
587
  msgstr "Tem certeza de que deseja excluir os registros selecionados?"
588
 
589
+ #: ../classes/es-register.php:211
590
  msgctxt "view-subscriber-enhanced-select"
591
  msgid "Please select new subscriber group."
592
  msgstr "Por favor, selecione um novo grupo de assinantes."
593
 
594
+ #: ../classes/es-register.php:212
595
  msgctxt "view-subscriber-enhanced-select"
596
  msgid "Please select new status for subscribers"
597
  msgstr "Por favor, selecione um novo status para assinantes"
598
 
599
+ #: ../classes/es-register.php:213
600
  msgctxt "view-subscriber-enhanced-select"
601
  msgid "Do you want to update subscribers group?"
602
  msgstr "Você deseja atualizar o grupo de assinantes?"
603
 
604
+ #: ../classes/es-register.php:214
605
  msgctxt "view-subscriber-enhanced-select"
606
  msgid "Do you want to update subscribers status?"
607
  msgstr "Você deseja atualizar o status do assinante?"
608
 
609
+ #: ../classes/es-register.php:215
610
  msgctxt "view-subscriber-enhanced-select"
611
  msgid ""
612
  "Please select only csv file. Please check official website for csv structure."
615
  "Por favor, selecione apenas o arquivo CSV. Por favor, verifique o site "
616
  "oficial para a estrutura CSV."
617
 
618
+ #: ../classes/es-register.php:223
619
  msgctxt "notification-enhanced-select"
620
  msgid "Please select subscribers group."
621
  msgstr "Por favor, selecione um grupo de assinantes."
622
 
623
+ #: ../classes/es-register.php:225
624
  msgctxt "notification-enhanced-select"
625
  msgid "Please select notification status."
626
  msgstr "Por favor, selecione o status de notificação."
627
 
628
+ #: ../classes/es-register.php:226
629
  msgctxt "notification-enhanced-select"
630
  msgid "Do you want to delete this record?"
631
  msgstr "Você deseja deletar este registro?"
632
 
633
+ #: ../classes/es-register.php:234
634
  msgctxt "sendmail-enhanced-select"
635
  msgid "Please select your mail subject."
636
  msgstr "Por favor, selecione o assunto do seu E-mail."
637
 
638
+ #: ../classes/es-register.php:235
639
  msgctxt "sendmail-enhanced-select"
640
  msgid "Please select your mail type."
641
  msgstr "Por favor, selecione o tipo do seu E-mail."
642
 
643
+ #: ../classes/es-register.php:236
644
  msgctxt "sendmail-enhanced-select"
645
  msgid ""
646
  "Have you double checked your selected group? If so, let's go ahead and send "
649
  "Você verificou o grupo selecionado? Se assim for, vamos em frente e envie "
650
  "isso."
651
 
652
+ #: ../classes/es-register.php:244
653
  msgctxt "sentmail-enhanced-select"
654
  msgid "Do you want to delete this record?"
655
  msgstr "Você deseja deletar este registro?"
656
 
657
+ #: ../classes/es-register.php:245
658
  msgctxt "sentmail-enhanced-select"
659
  msgid "Do you want to delete all records except latest 10?"
660
  msgstr "Você deseja deletar todos os registros exceto os últimos 10?"
661
 
662
+ #: ../classes/es-register.php:253
663
  msgctxt "cron-enhanced-select"
664
  msgid "Please select enter number of mails you want to send per hour/trigger."
665
  msgstr "Por favor, digite o número de e-mails que deseja enviar por hora."
666
 
667
+ #: ../classes/es-register.php:254
668
  msgctxt "cron-enhanced-select"
669
  msgid "Please enter the mail count, only number."
670
  msgstr "Por favor, digite a contagem de mensagens, apenas o números."
671
 
672
+ #: ../classes/es-register.php:267
673
  msgctxt "widget-page-enhanced-select"
674
  msgid "Please enter email address"
675
  msgstr "Por favor, digite um endereço de e-mail"
676
 
677
+ #: ../classes/es-register.php:268
678
  msgctxt "widget-page-enhanced-select"
679
  msgid "Successfully Subscribed."
680
  msgstr "Assinado com Sucesso."
681
 
682
+ #: ../classes/es-register.php:270
683
  msgctxt "widget-page-enhanced-select"
684
  msgid "Email Address already exists!"
685
  msgstr "Este Endereço de E-mail já existe!"
686
 
687
+ #: ../classes/es-register.php:271
688
  msgctxt "widget-page-enhanced-select"
689
  msgid "Oops.. Unexpected error occurred."
690
  msgstr "Oops. Ocorreu um erro inesperado."
691
 
692
+ #: ../classes/es-register.php:272
693
  msgctxt "widget-page-enhanced-select"
694
  msgid "Invalid email address"
695
  msgstr "Endereço de e-mail inválido"
696
 
697
+ #: ../classes/es-register.php:273
698
  msgctxt "widget-page-enhanced-select"
699
  msgid "Please try after some time"
700
  msgstr "Por favor, tente depois de algum tempo"
701
 
702
+ #: ../classes/es-register.php:698
703
  msgid ""
704
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
705
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
711
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
712
  "&#9733;&#9733;&#9733;&#9733;</a> avaliação. Um enorme obrigado do Icegram!"
713
 
714
+ #: ../classes/es-register.php:1034
715
  #, php-format
716
  msgid "Email Subscribers version: <strong>%s</strong>"
717
  msgstr "Email Subscribers versão: <strong>%s</strong>"
718
 
719
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
720
  msgid "Add new Template"
721
  msgstr "Adicionar Novo Modelo"
722
 
723
+ #: ../classes/es-register.php:1047
724
  msgid "Edit Templates"
725
  msgstr "Editar Modelos"
726
 
727
+ #: ../classes/es-register.php:1048
728
  msgid "New Templates"
729
  msgstr "Novos Modelos"
730
 
731
+ #: ../classes/es-register.php:1050
732
  msgid "View Templates"
733
  msgstr "Exibir Modelos"
734
 
735
+ #: ../classes/es-register.php:1051
736
  msgid "Search Templates"
737
  msgstr "Procurar Modelos"
738
 
739
+ #: ../classes/es-register.php:1052
740
  msgid "No Templates found"
741
  msgstr "Nenhum Modelo encontrado"
742
 
743
+ #: ../classes/es-register.php:1053
744
  msgid "No Templates found in Trash"
745
  msgstr "Nenhum Modelo encontrado na Lixeira"
746
 
747
+ #: ../classes/es-register.php:1056
748
  msgid "Thumbnail (For Visual Representation only)"
749
  msgstr "Miniaturas (Para Representação Visual apenas)"
750
 
751
+ #: ../classes/es-register.php:1057
752
  msgid "Set thumbnail"
753
  msgstr "Definir miniatura"
754
 
755
+ #: ../classes/es-register.php:1094
756
  msgid "Template Type"
757
  msgstr "Tipo de Modelo"
758
 
759
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
760
  msgid "Thumbnail"
761
  msgstr "Miniatura"
762
 
763
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
764
  #: sentmail/sentmail-show.php:121
765
  msgid "Preview"
766
  msgstr "Visualizar"
767
 
768
+ #: ../classes/es-register.php:1174
769
  msgid "Select your Email Template Type"
770
  msgstr "Selecione o seu Tipo de Modelo de E-mail"
771
 
772
+ #: ../classes/es-register.php:1176
773
  msgid "Newsletter"
774
  msgstr "Newsletter"
775
 
776
+ #: ../classes/es-register.php:1177
777
  msgid "Post Notification"
778
  msgstr "Notificação de Postagem"
779
 
780
+ #: ../classes/es-register.php:1226
781
  msgid "Preview Template"
782
  msgstr "Visualização do Modelo"
783
 
784
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
785
+ #: register.php:1261 ../classes/es-register.php:1269
786
  msgid "Available Keywords"
787
  msgstr "Palavras-chave disponíveis"
788
 
789
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
790
  msgid "Name"
791
  msgstr "Nome"
792
 
793
+ #: ../classes/es-register.php:1311
794
  msgid "Email *"
795
  msgstr "E-mail *"
796
 
797
+ #: ../classes/es-register.php:1320 ../help/help.php:202
798
  msgid "Subscribe"
799
  msgstr "Inscrever"
800
 
801
+ #: ../classes/es-register.php:1424
802
  msgid "Widget Title"
803
  msgstr "Título do Widget"
804
 
805
+ #: ../classes/es-register.php:1428
806
  msgid "Short description about subscription form"
807
  msgstr "Breve descrição sobre o formulário de inscrição"
808
 
809
+ #: ../classes/es-register.php:1432
810
  msgid "Display Name Field"
811
  msgstr "Exibir Campo do Nome"
812
 
813
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
814
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
815
  msgid "YES"
816
  msgstr "SIM"
817
 
818
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
819
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
820
  msgid "NO"
821
  msgstr "NÃO"
822
 
823
+ #: ../classes/es-register.php:1439
824
  msgid "Subscriber Group"
825
  msgstr "Grupo do Assinante"
826
 
1186
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1187
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1188
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1189
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1190
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1191
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1192
  msgid "Select"
1247
  msgid "Disable email notification"
1248
  msgstr "Desabilitar notificação de e-mail"
1249
 
1250
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1251
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1252
  msgid "Save"
1253
  msgstr "Salvar"
1254
 
1371
  msgid "Send email via cron job"
1372
  msgstr "Enviar e-mail via Cron Job"
1373
 
1374
+ #: ../sendmail/sendmail.php:148
1375
  msgid "Select Subscribers group to Send Email"
1376
  msgstr "Selecione o grupo de Assinantes para Enviar o E-mail"
1377
 
1378
+ #: ../sendmail/sendmail.php:180
1379
  msgid "Recipients : 0 "
1380
  msgstr "Destinatários : 0 "
1381
 
1382
+ #: ../sendmail/sendmail.php:182
1383
  #, php-format
1384
  msgid "Recipients : %s"
1385
  msgstr "Destinatários : %s"
1386
 
1387
+ #: ../sendmail/sendmail.php:185
1388
  msgid ""
1389
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1390
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1395
  "envie os e-mails por meio do Cron Job.</strong><br>Clique na Ajuda para "
1396
  "obter mais informações."
1397
 
1398
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1399
  msgid "Send Email"
1400
  msgstr "Enviar E-mail"
1401
 
1402
+ #: ../sendmail/sendmail.php:202
1403
  msgid "Reset"
1404
  msgstr "Resetar"
1405
 
1691
  msgid "Sent Report Subject"
1692
  msgstr "Assunto do Relatório Enviado"
1693
 
 
 
 
 
1694
  #: ../settings/settings-edit.php:172
1695
  msgid "Sent Report Content"
1696
  msgstr "Conteúdo do Relatório Enviado"
1697
 
 
 
 
 
 
 
 
 
 
1698
  #: ../settings/settings-edit.php:184
1699
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1700
  msgstr "Assunto do E-mail de Opt-In Duplo (E-mail de Confirmação)"
1899
  "Este é o URL do seu Cron Job. É um campo de leitura e é aconselhável não "
1900
  "modificá-lo."
1901
 
1902
+ #: ../settings/settings-edit.php:377
1903
  msgid "Email Count"
1904
  msgstr "Contagem de e-mail"
1905
 
1906
+ #: ../settings/settings-edit.php:378
1907
  msgid "Number of emails that you want to trigger per hour."
1908
  msgstr "Número de e-mails que você deseja disparar por hora."
1909
 
1910
+ #: ../settings/settings-edit.php:383
1911
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1912
  msgstr "(O seu host tem limites. Sugerimos 50 e-mails por hora para serem seguros.)"
1913
 
1914
+ #: ../settings/settings-edit.php:388
1915
  msgid "Cron Report"
1916
  msgstr "Relatório do Cron Job"
1917
 
1918
+ #: ../settings/settings-edit.php:389
1919
  msgid ""
1920
  "Email to admin whenever a cron URL is triggered from your server.<br "
1921
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1924
  "seu servidor.<br />Palavras-chave disponíveis: {{DATE}}, {{SUBJECT}}, "
1925
  "{{COUNT}}"
1926
 
1927
+ #: ../settings/settings-edit.php:400
1928
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1929
  msgstr "O que é Cron Job (e-mails automáticos) e como configurar o Cron Job?"
1930
 
1931
+ #: ../settings/settings-edit.php:401
1932
  msgid ""
1933
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1934
  "schedule-cron-emails/?"
1940
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">O que é o "
1941
  "Cron Job?</a>"
1942
 
1943
+ #: ../settings/settings-edit.php:402
1944
  msgid ""
1945
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1946
  "schedule-cron-emails-in-cpanel/?"
1952
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1953
  "o Cron Job no cPanel</a>"
1954
 
1955
+ #: ../settings/settings-edit.php:403
1956
  msgid ""
1957
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1958
  "schedule-cron-emails-in-parallels-plesk/?"
1964
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1965
  "o Cron Job no Plesk</a>"
1966
 
1967
+ #: ../settings/settings-edit.php:404
1968
  msgid ""
1969
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1970
  "if-hosting-doesnt-support-cron-jobs/?"
1976
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">A sua "
1977
  "hospedagem não suporta trabalhos do Cron Job?</a>"
1978
 
1979
+ #: ../settings/settings-edit.php:520
1980
  msgid "Please enter sender of notifications from name."
1981
  msgstr "Por favor, digite o nome do remetente de notificações."
1982
 
1983
+ #: ../settings/settings-edit.php:525
1984
  msgid "Please enter sender of notifications from email."
1985
  msgstr "Por favor, digite o e-mail do remetente de notificações."
1986
 
1987
+ #: ../settings/settings-edit.php:584
1988
  msgid "Settings Saved."
1989
  msgstr "Configurações Salvas."
1990
 
1991
+ #: ../settings/settings-edit.php:587
1992
  msgid "Oops, unable to update."
1993
  msgstr "Oops, não foi possível de atualizar."
1994
 
2429
  "notifique automaticamente os assinantes sobre novas postagens no blog assim "
2430
  "que forem publicadas."
2431
 
2432
+ #: ../email-subscribers.php:96
2433
  msgctxt "timezone date format"
2434
  msgid "Y-m-d H:i:s"
2435
  msgstr "Y-m-d H:i:s"
languages/email-subscribers-sv_SE.mo CHANGED
Binary file
languages/email-subscribers-sv_SE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:58 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Swedish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -22,18 +22,95 @@ msgstr ""
22
  "X-Loco-Target-Locale: sv_SE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid ""
27
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
28
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
- #: ../classes/es-register.php:728
32
- msgid "Here's how"
33
  msgstr ""
34
 
35
- #: ../classes/es-register.php:728
36
- msgid "Not interested. Dismiss this."
 
 
 
 
 
 
 
 
37
  msgstr ""
38
 
39
  #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
@@ -41,7 +118,163 @@ msgstr ""
41
  msgid "Subscribers Group to send post notification to"
42
  msgstr ""
43
 
44
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  #: settings/settings-edit.php:42
46
  #, fuzzy
47
  msgid "Settings"
@@ -91,75 +324,76 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
91
  msgid "<span style=\"color:#993399;\">Immediately</span>"
92
  msgstr "<span style=\"color:#993399;\">Omgående</span>"
93
 
94
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
95
- #: register.php:788
96
  msgid "Email Subscribers"
97
  msgstr "Email Subscribers"
98
 
99
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
100
  #: subscribers/view-subscriber-show.php:242
101
  msgid "Subscribers"
102
  msgstr "Prenumeranter"
103
 
104
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
105
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
106
  msgid "Templates"
107
  msgstr "Mallar"
108
 
109
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
110
  #: 370 ../notification/notification-show.php:52
111
  msgid "Post Notifications"
112
  msgstr "Meddelande"
113
 
114
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
115
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
116
  msgid "Newsletters"
117
  msgstr "Nyhetsbrev"
118
 
119
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
120
  #: sentmail/sentmail-show.php:93
121
  msgid "Reports"
122
  msgstr "Rapporter"
123
 
124
- #: ../classes/es-register.php:183
125
  msgid "Help & Info"
126
  msgstr "Hjälp & Information"
127
 
128
- #: ../classes/es-register.php:184
129
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
130
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hjälp & Info</span>"
131
 
132
- #: ../classes/es-register.php:195
133
  msgctxt "view-subscriber-enhanced-select"
134
  msgid "Please enter subscriber email address."
135
  msgstr "Ange din e-postadress."
136
 
137
- #: ../classes/es-register.php:196
138
  msgctxt "view-subscriber-enhanced-select"
139
  msgid "Please select subscriber email status."
140
  msgstr "Ange din e-postadress."
141
 
142
- #: ../classes/es-register.php:197
143
  msgctxt "view-subscriber-enhanced-select"
144
  msgid "Please select or create group for this subscriber."
145
  msgstr "Ange en grupp för denna prenumerant."
146
 
147
- #: ../classes/es-register.php:198
148
  msgctxt "view-subscriber-enhanced-select"
149
  msgid "Do you want to delete this record?"
150
  msgstr "Vill du radera denna post?"
151
 
152
- #: ../classes/es-register.php:199
153
  msgctxt "view-subscriber-enhanced-select"
154
  msgid "Please select the bulk action."
155
  msgstr "Välj uppdateringssätt."
156
 
157
- #: ../classes/es-register.php:200
158
  msgctxt "view-subscriber-enhanced-select"
159
  msgid "Are you sure you want to delete selected records?"
160
  msgstr "Vill du radera valda poster?"
161
 
162
- #: ../classes/es-register.php:201
163
  msgctxt "view-subscriber-enhanced-select"
164
  msgid ""
165
  "Do you want to resend confirmation email? Also please note, this will update "
@@ -168,103 +402,103 @@ msgstr ""
168
  "Vill du skicka bekräftelsemail igen? Observera också att detta kommer att "
169
  "uppdatera abonnentens nuvarande status till 'Ej bekräftad'."
170
 
171
- #: ../classes/es-register.php:202
172
  msgctxt "view-subscriber-enhanced-select"
173
  msgid "Please select new subscriber group."
174
  msgstr "Välj ny prenumerantgrupp."
175
 
176
- #: ../classes/es-register.php:203
177
  msgctxt "view-subscriber-enhanced-select"
178
  msgid "Please select new status for subscribers"
179
  msgstr "Välj ny status för prenumeranterna"
180
 
181
- #: ../classes/es-register.php:204
182
  msgctxt "view-subscriber-enhanced-select"
183
  msgid "Do you want to update subscribers group?"
184
  msgstr "Vill du uppdatera prenumerantgruppen?"
185
 
186
- #: ../classes/es-register.php:205
187
  msgctxt "view-subscriber-enhanced-select"
188
  msgid "Do you want to update subscribers status?"
189
  msgstr "Vill du uppdatera prenumeranternas status?"
190
 
191
- #: ../classes/es-register.php:206
192
  msgctxt "view-subscriber-enhanced-select"
193
  msgid ""
194
  "Please select only csv file. Please check official website for csv structure."
195
  "."
196
  msgstr "Välj en csv-fil. Se vår hemsida för vidare anvisningar."
197
 
198
- #: ../classes/es-register.php:214
199
  msgctxt "notification-enhanced-select"
200
  msgid "Please select subscribers group."
201
  msgstr "Välj prenumerationsgrupp."
202
 
203
- #: ../classes/es-register.php:215
204
  msgctxt "notification-enhanced-select"
205
  msgid "Please select notification mail subject. Use templates menu to create new."
206
  msgstr "Välj anmälan e-ämne. Använd mallar-menyn för att skapa nya."
207
 
208
- #: ../classes/es-register.php:216
209
  msgctxt "notification-enhanced-select"
210
  msgid "Please select notification status."
211
  msgstr "Välj status för nyhetsbrev."
212
 
213
- #: ../classes/es-register.php:217
214
  msgctxt "notification-enhanced-select"
215
  msgid "Do you want to delete this record?"
216
  msgstr "Vill du radera denna post?"
217
 
218
- #: ../classes/es-register.php:225
219
  msgctxt "sendmail-enhanced-select"
220
  msgid "Please select your mail subject."
221
  msgstr "Välj rubrik för ditt mail."
222
 
223
- #: ../classes/es-register.php:226
224
  msgctxt "sendmail-enhanced-select"
225
  msgid "Please select your mail type."
226
  msgstr "Välj typ för ditt mail."
227
 
228
- #: ../classes/es-register.php:227
229
  msgctxt "sendmail-enhanced-select"
230
  msgid ""
231
  "Have you double checked your selected group? If so, let's go ahead and send "
232
  "this."
233
  msgstr "Har du valt grupp att sända till? I så fall - sänd."
234
 
235
- #: ../classes/es-register.php:235
236
  msgctxt "sentmail-enhanced-select"
237
  msgid "Do you want to delete this record?"
238
  msgstr "Villd su radera denna post?"
239
 
240
- #: ../classes/es-register.php:236
241
  msgctxt "sentmail-enhanced-select"
242
  msgid "Do you want to delete all records except latest 10?"
243
  msgstr "Vill du radera alla poster utom de 10 senaste?"
244
 
245
- #: ../classes/es-register.php:244
246
  msgctxt "cron-enhanced-select"
247
  msgid "Please select enter number of mails you want to send per hour/trigger."
248
  msgstr ""
249
  "Välj hur många mail du vill sända per timme. Obs att din operatör kan ha "
250
  "begränsningar för att hindra spam."
251
 
252
- #: ../classes/es-register.php:245
253
  msgctxt "cron-enhanced-select"
254
  msgid "Please enter the mail count, only number."
255
  msgstr "Ange antalet mail. endast siffror."
256
 
257
- #: ../classes/es-register.php:258
258
  msgctxt "widget-page-enhanced-select"
259
  msgid "Please enter email address"
260
  msgstr "Ange e-postadress"
261
 
262
- #: ../classes/es-register.php:259
263
  msgctxt "widget-page-enhanced-select"
264
  msgid "Successfully Subscribed."
265
  msgstr "Prenumeration lyckades."
266
 
267
- #: ../classes/es-register.php:260
268
  msgctxt "widget-page-enhanced-select"
269
  msgid ""
270
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -275,27 +509,27 @@ msgstr ""
275
  "din prenumeration. Om du inte ser e-post inom några minuter, kontrollera i "
276
  "skräppostmappen."
277
 
278
- #: ../classes/es-register.php:261
279
  msgctxt "widget-page-enhanced-select"
280
  msgid "Email Address already exists!"
281
  msgstr "E-postadressen finns redan!"
282
 
283
- #: ../classes/es-register.php:262
284
  msgctxt "widget-page-enhanced-select"
285
  msgid "Oops.. Unexpected error occurred."
286
  msgstr "Oups. Ett oväntat fel inträffade."
287
 
288
- #: ../classes/es-register.php:263
289
  msgctxt "widget-page-enhanced-select"
290
  msgid "Invalid email address"
291
  msgstr "Ogiltig e-postadress"
292
 
293
- #: ../classes/es-register.php:264
294
  msgctxt "widget-page-enhanced-select"
295
  msgid "Please try after some time"
296
  msgstr "Försök igen om en stund"
297
 
298
- #: ../classes/es-register.php:753
299
  msgid ""
300
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
301
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -307,86 +541,86 @@ msgstr ""
307
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
308
  "Icegram i förväg!"
309
 
310
- #: ../classes/es-register.php:767
311
  #, php-format
312
  msgid "Email Subscribers version: <strong>%s</strong>"
313
  msgstr "Email Subscribers version: <strong>%s</strong>"
314
 
315
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
316
  msgid "Add new Template"
317
  msgstr "Lägg till ny mall"
318
 
319
- #: ../classes/es-register.php:780
320
  msgid "Edit Templates"
321
  msgstr "Redigera mallar"
322
 
323
- #: ../classes/es-register.php:781
324
  msgid "New Templates"
325
  msgstr "Nya mallar"
326
 
327
- #: ../classes/es-register.php:783
328
  msgid "View Templates"
329
  msgstr "Lista mallar"
330
 
331
- #: ../classes/es-register.php:784
332
  msgid "Search Templates"
333
  msgstr "Sök mall"
334
 
335
- #: ../classes/es-register.php:785
336
  msgid "No Templates found"
337
  msgstr "Inga mallar funna"
338
 
339
- #: ../classes/es-register.php:786
340
  msgid "No Templates found in Trash"
341
  msgstr "Inga mallar funna i Papperskorgen"
342
 
343
- #: ../classes/es-register.php:789
344
  msgid "Thumbnail (For Visual Representation only)"
345
  msgstr "Thumbnail (Enbart för visuell representation)"
346
 
347
- #: ../classes/es-register.php:790
348
  msgid "Set thumbnail"
349
  msgstr "Välj Thumbnail"
350
 
351
- #: ../classes/es-register.php:827
352
  msgid "Template Type"
353
  msgstr "Mailtyp"
354
 
355
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
356
  msgid "Thumbnail"
357
  msgstr "Thumbnail"
358
 
359
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
360
  #: sentmail/sentmail-show.php:121
361
  msgid "Preview"
362
  msgstr "Granska"
363
 
364
- #: ../classes/es-register.php:900
365
  #, php-format
366
  msgid "%s for Post Notification: {{POSTTITLE}}"
367
  msgstr "%s för Postnotiifiering"
368
 
369
- #: ../classes/es-register.php:900
370
  msgid "Available Keyword"
371
  msgstr "Tillgängliga nyckelord"
372
 
373
- #: ../classes/es-register.php:907
374
  msgid "Select your Email Template Type"
375
  msgstr "Välj Typ för din E-postmall"
376
 
377
- #: ../classes/es-register.php:909
378
  msgid "Newsletter"
379
  msgstr "Nyhetsbrev"
380
 
381
- #: ../classes/es-register.php:910
382
  msgid "Post Notification"
383
  msgstr "Post notiifiering"
384
 
385
- #: ../classes/es-register.php:959
386
  msgid "Preview Template"
387
  msgstr "Förhandsvisa mallar"
388
 
389
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
390
  #, php-format
391
  msgid ""
392
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -397,56 +631,56 @@ msgstr ""
397
  "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
398
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
399
 
400
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
401
- #: register.php:994 ../classes/es-register.php:1002
402
  msgid "Available Keywords"
403
  msgstr "Tillgängliga nyckelord"
404
 
405
- #: ../classes/es-register.php:979
406
  #, php-format
407
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
408
  msgstr "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
409
 
410
- #: ../classes/es-register.php:1002
411
  #, php-format
412
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
413
  msgstr "%s for Nyhetsbrev: {{NAME}}, {{EMAIL}}"
414
 
415
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
416
  msgid "Name"
417
  msgstr "Namn"
418
 
419
- #: ../classes/es-register.php:1044
420
  msgid "Email *"
421
  msgstr "E-post *"
422
 
423
- #: ../classes/es-register.php:1053 ../help/help.php:202
424
  msgid "Subscribe"
425
  msgstr "Prenumerera"
426
 
427
- #: ../classes/es-register.php:1157
428
  msgid "Widget Title"
429
  msgstr "Widget titel"
430
 
431
- #: ../classes/es-register.php:1161
432
  msgid "Short description about subscription form"
433
  msgstr "Kort beskrivning av prenumerationsformulär"
434
 
435
- #: ../classes/es-register.php:1165
436
  msgid "Display Name Field"
437
  msgstr "Visa Namnfältet"
438
 
439
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
440
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
441
  msgid "YES"
442
  msgstr "JA"
443
 
444
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
445
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
446
  msgid "NO"
447
  msgstr "NEJ"
448
 
449
- #: ../classes/es-register.php:1172
450
  msgid "Subscriber Group"
451
  msgstr "Prenumerantgrupp"
452
 
@@ -928,7 +1162,7 @@ msgstr "Hjälp"
928
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
929
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
930
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
931
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
932
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
933
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
934
  msgid "Select"
@@ -994,8 +1228,8 @@ msgstr "Lägg till i Cron och sänd Email via Cron"
994
  msgid "Disable email notification"
995
  msgstr "Inaktivera emailnotifiering"
996
 
997
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
998
- #: 291 ../subscribers/view-subscriber-edit.php:191
999
  msgid "Save"
1000
  msgstr "Spara"
1001
 
@@ -1118,20 +1352,20 @@ msgstr "Välj email-typ"
1118
  msgid "Send email via cron job"
1119
  msgstr "Sänd email via Cron-jobb"
1120
 
1121
- #: ../sendmail/sendmail.php:147
1122
  msgid "Select Subscribers group to Send Email"
1123
  msgstr "Välj prenumerantgrupp att sända email till"
1124
 
1125
- #: ../sendmail/sendmail.php:179
1126
  msgid "Recipients : 0 "
1127
  msgstr "Mottagare: 0 "
1128
 
1129
- #: ../sendmail/sendmail.php:181
1130
  #, php-format
1131
  msgid "Recipients : %s"
1132
  msgstr "Mottagare: %s"
1133
 
1134
- #: ../sendmail/sendmail.php:184
1135
  msgid ""
1136
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1137
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1141,11 +1375,11 @@ msgstr ""
1141
  "du ändrar Mailtyp till Cron och sendre mail via CronJob. a/strongZ<br>Klicka "
1142
  "på Hjälp för mer information."
1143
 
1144
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1145
  msgid "Send Email"
1146
  msgstr "Skicka"
1147
 
1148
- #: ../sendmail/sendmail.php:201
1149
  msgid "Reset"
1150
  msgstr "Återställ"
1151
 
@@ -1264,7 +1498,7 @@ msgstr ""
1264
  "OBS. Klicka på <strong>Optimera Tabell & raderade poster</strong>-knappen "
1265
  "för att radera alla rapporter förutom de 10 senaste."
1266
 
1267
- #: ../sentmail/sentmail-show.php:212
1268
  msgid ""
1269
  "<strong>Note:</strong> If you delete record for the emails with Status = "
1270
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
@@ -1442,22 +1676,10 @@ msgstr ""
1442
  msgid "Sent Report Subject"
1443
  msgstr "Sändrapport Ämne"
1444
 
1445
- #: ../settings/settings-edit.php:166
1446
- msgid "Subject for the email report which will be sent to admin."
1447
- msgstr "Ange Ämne för Sändrapporterna. Det sänds till Admin."
1448
-
1449
  #: ../settings/settings-edit.php:172
1450
  msgid "Sent Report Content"
1451
  msgstr "Sändrapport - Innehåll"
1452
 
1453
- #: ../settings/settings-edit.php:173
1454
- msgid ""
1455
- "Content for the email report which will be sent to admin.<br />Available "
1456
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1457
- msgstr ""
1458
- "Innehåll för Admin-mail som sänds till admins. <b/>Tillgängliga nyckelord;"
1459
- "{{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1460
-
1461
  #: ../settings/settings-edit.php:184
1462
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1463
  msgstr "Double Opt In mailrubrik (Bekräftelsemail)"
@@ -1658,23 +1880,23 @@ msgid ""
1658
  "modify it."
1659
  msgstr "Detta är ditt Cron job URL. Det är readonly och du bör inte ändra det."
1660
 
1661
- #: ../settings/settings-edit.php:376
1662
  msgid "Email Count"
1663
  msgstr "Antal mail"
1664
 
1665
- #: ../settings/settings-edit.php:377
1666
  msgid "Number of emails that you want to trigger per hour."
1667
  msgstr "Antal mail du vill sända per timme."
1668
 
1669
- #: ../settings/settings-edit.php:382
1670
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1671
  msgstr "(Din mailleverantör har begränsningar. vi rekommenderar 50 per timme)"
1672
 
1673
- #: ../settings/settings-edit.php:387
1674
  msgid "Cron Report"
1675
  msgstr "Cronrapport"
1676
 
1677
- #: ../settings/settings-edit.php:388
1678
  msgid ""
1679
  "Email to admin whenever a cron URL is triggered from your server.<br "
1680
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1682,11 +1904,11 @@ msgstr ""
1682
  "Email till Admin när crom URL triggas av din server. <br />Available "
1683
  "Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1684
 
1685
- #: ../settings/settings-edit.php:398
1686
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1687
  msgstr "Vad är Cron och hur görs inställningarna?"
1688
 
1689
- #: ../settings/settings-edit.php:399
1690
  msgid ""
1691
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1692
  "schedule-cron-emails/?"
@@ -1698,7 +1920,7 @@ msgstr ""
1698
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Vad är "
1699
  "Cron?</a>"
1700
 
1701
- #: ../settings/settings-edit.php:400
1702
  msgid ""
1703
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1704
  "schedule-cron-emails-in-cpanel/?"
@@ -1710,7 +1932,7 @@ msgstr ""
1710
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Sät upp "
1711
  "ett cronjobb i cPanel</a>"
1712
 
1713
- #: ../settings/settings-edit.php:401
1714
  msgid ""
1715
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1716
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1722,7 +1944,7 @@ msgstr ""
1722
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Sätt upp "
1723
  "cron job i Plesk</a>"
1724
 
1725
- #: ../settings/settings-edit.php:402
1726
  msgid ""
1727
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1728
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1734,23 +1956,23 @@ msgstr ""
1734
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1735
  "stöder inte cron jobs?</a>"
1736
 
1737
- #: ../settings/settings-edit.php:517
1738
  msgid "Please enter sender of notifications from name."
1739
  msgstr "Ange namnet för notifieringens avsändare."
1740
 
1741
- #: ../settings/settings-edit.php:522
1742
  msgid "Please enter sender of notifications from email."
1743
  msgstr "Ange avsändarens mailadress på email för notifieringar."
1744
 
1745
- #: ../settings/settings-edit.php:566
1746
  msgid "Please enter valid email count."
1747
  msgstr "Välj giltigt mailkonto."
1748
 
1749
- #: ../settings/settings-edit.php:580
1750
  msgid "Settings Saved."
1751
  msgstr "Inställningar sparade."
1752
 
1753
- #: ../settings/settings-edit.php:583
1754
  msgid "Oops, unable to update."
1755
  msgstr "Oups... Det går ej att uppdatera."
1756
 
@@ -2207,7 +2429,7 @@ msgstr ""
2207
  "Lägg till prenumerationsformulär på webbplatsen, sänd HTML-nyhetsbrev och "
2208
  "meddela prenumeranterna automatiskt när en ny bloggpost publiceras."
2209
 
2210
- #: ../email-subscribers.php:95
2211
  msgctxt "timezone date format"
2212
  msgid "Y-m-d H:i:s"
2213
  msgstr "Y-m-d H:i:s"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:30 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Swedish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
22
  "X-Loco-Target-Locale: sv_SE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:191
26
+ msgid "Go Pro"
27
+ msgstr ""
28
+
29
+ #: ../classes/es-register.php:192
30
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
31
+ msgstr ""
32
+
33
+ #: ../classes/es-register.php:699
34
+ msgid "No, I don't like it"
35
+ msgstr ""
36
+
37
+ #: ../classes/es-register.php:705
38
+ msgctxt "timezone date format"
39
+ msgid "Y-m-d"
40
+ msgstr ""
41
+
42
+ #: ../classes/es-register.php:850
43
+ msgid "What do you hate about list building and email marketing?"
44
+ msgstr ""
45
+
46
+ #: ../classes/es-register.php:851
47
+ msgid "Hey, glad to see you!"
48
+ msgstr ""
49
+
50
+ #: ../classes/es-register.php:852
51
+ msgid ""
52
+ "I am on a daring quest to solve your biggest problems around list building "
53
+ "and email marketing. "
54
+ msgstr ""
55
+
56
+ #: ../classes/es-register.php:853
57
+ msgid ""
58
+ "So tell me, when it comes to list building and email marketing, what's your "
59
+ "biggest challenge? What's blocking your progress? "
60
+ msgstr ""
61
+
62
+ #: ../classes/es-register.php:858
63
+ msgid "And what's another big challenge? "
64
+ msgstr ""
65
+
66
+ #: ../classes/es-register.php:862
67
+ msgid "Send my problems..."
68
+ msgstr ""
69
+
70
+ #: ../classes/es-register.php:863
71
+ msgid "No, I don't have problems"
72
+ msgstr ""
73
+
74
+ #: ../classes/es-register.php:865
75
+ msgid "Fill the above field first"
76
+ msgstr ""
77
+
78
+ #: ../classes/es-register.php:874
79
+ msgid "Gosh... I hear you mate... "
80
+ msgstr ""
81
+
82
+ #: ../classes/es-register.php:875
83
  msgid ""
84
+ "Enter your email below, and you will be the first to know when we solve "
85
+ "those problems. "
86
+ msgstr ""
87
+
88
+ #: ../classes/es-register.php:879
89
+ msgid "Nah, I don't like improvements"
90
+ msgstr ""
91
+
92
+ #: ../classes/es-register.php:893
93
+ msgid "I got you."
94
+ msgstr ""
95
+
96
+ #: ../classes/es-register.php:894
97
+ msgid "Will do everything I can to help you. "
98
  msgstr ""
99
 
100
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
101
+ msgid "Later. "
102
  msgstr ""
103
 
104
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
105
+ msgid "Andrea Julio "
106
+ msgstr ""
107
+
108
+ #: ../classes/es-register.php:902
109
+ msgid "No issues, have a nice day!"
110
+ msgstr ""
111
+
112
+ #: ../classes/es-register.php:1020
113
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
114
  msgstr ""
115
 
116
  #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
118
  msgid "Subscribers Group to send post notification to"
119
  msgstr ""
120
 
121
+ #: ../settings/settings-edit.php:166
122
+ msgid ""
123
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
124
+ "only if sending email via immediately)"
125
+ msgstr ""
126
+
127
+ #: ../settings/settings-edit.php:173
128
+ msgid ""
129
+ "Content for the email report which will be sent to admin.<br />Available "
130
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
131
+ "sent only if sending email via immediately)"
132
+ msgstr ""
133
+
134
+ #: ../settings/settings-edit.php:393
135
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
136
+ msgstr ""
137
+
138
+ #: ../pricing/pricing.php:157
139
+ msgid "Go a notch higher"
140
+ msgstr ""
141
+
142
+ #: ../pricing/pricing.php:158
143
+ msgid "Get the Email Subscribers Pro Plugin at"
144
+ msgstr ""
145
+
146
+ #: ../pricing/pricing.php:162
147
+ msgid "month"
148
+ msgstr ""
149
+
150
+ #: ../pricing/pricing.php:163
151
+ msgid "Sign up for monthly"
152
+ msgstr ""
153
+
154
+ #: ../pricing/pricing.php:166
155
+ msgid "year"
156
+ msgstr ""
157
+
158
+ #: ../pricing/pricing.php:167
159
+ msgid "Sign up for yearly"
160
+ msgstr ""
161
+
162
+ #: ../pricing/pricing.php:171
163
+ msgid "Get more with Email Subscribers Pro"
164
+ msgstr ""
165
+
166
+ #: ../pricing/pricing.php:173
167
+ msgid "All features of Email Subscribers free plugin + everything below:"
168
+ msgstr ""
169
+
170
+ #: ../pricing/pricing.php:176
171
+ msgid "Protect your list from bot attacks"
172
+ msgstr ""
173
+
174
+ #: ../pricing/pricing.php:177
175
+ msgid "Use "
176
+ msgstr ""
177
+
178
+ #: ../pricing/pricing.php:177
179
+ msgid "captcha"
180
+ msgstr ""
181
+
182
+ #: ../pricing/pricing.php:177
183
+ msgid ""
184
+ "to protect your email list from bots. The simple maths captcha helps "
185
+ "identifying bots from humans and eliminates spam signups."
186
+ msgstr ""
187
+
188
+ #: ../pricing/pricing.php:180
189
+ msgid "Check email status & increase email success rate"
190
+ msgstr ""
191
+
192
+ #: ../pricing/pricing.php:181
193
+ msgid "Double check the status of the emails addresses and increase "
194
+ msgstr ""
195
+
196
+ #: ../pricing/pricing.php:181
197
+ msgid "email success rate"
198
+ msgstr ""
199
+
200
+ #: ../pricing/pricing.php:181
201
+ msgid "of your email campaign. "
202
+ msgstr ""
203
+
204
+ #: ../pricing/pricing.php:187
205
+ msgid "Fullproof email deliverability"
206
+ msgstr ""
207
+
208
+ #: ../pricing/pricing.php:188
209
+ msgid ""
210
+ "Reduce the risk of emails ending in trash or spam. Increase email "
211
+ "deliverability by double checking emails for their "
212
+ msgstr ""
213
+
214
+ #: ../pricing/pricing.php:188
215
+ msgid "spam score"
216
+ msgstr ""
217
+
218
+ #: ../pricing/pricing.php:188
219
+ msgid "before hitting send."
220
+ msgstr ""
221
+
222
+ #: ../pricing/pricing.php:191
223
+ msgid "Track email leads in Google"
224
+ msgstr ""
225
+
226
+ #: ../pricing/pricing.php:192
227
+ msgid "Insert "
228
+ msgstr ""
229
+
230
+ #: ../pricing/pricing.php:192
231
+ msgid "UTM tracking"
232
+ msgstr ""
233
+
234
+ #: ../pricing/pricing.php:192
235
+ msgid ""
236
+ "in all your email CTA’s and track the effectiveness of your emails directly "
237
+ "within Google. Know which/ how many leads landed up from your emails and "
238
+ "tweak emails for better performance."
239
+ msgstr ""
240
+
241
+ #: ../pricing/pricing.php:199
242
+ msgid "Save time, use readymade email templates"
243
+ msgstr ""
244
+
245
+ #: ../pricing/pricing.php:200
246
+ msgid ""
247
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
248
+ "elegant templates</strong> to send your next email campaign."
249
+ msgstr ""
250
+
251
+ #: ../pricing/pricing.php:203
252
+ msgid "Customize confirmation and unsubscribe page"
253
+ msgstr ""
254
+
255
+ #: ../pricing/pricing.php:204
256
+ msgid ""
257
+ "Communicate with subscribers. Redirect them to beautifully designed "
258
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
259
+ msgstr ""
260
+
261
+ #: ../pricing/pricing.php:211
262
+ msgid "Coming soon..."
263
+ msgstr ""
264
+
265
+ #: ../pricing/pricing.php:213
266
+ msgid "Spam testing"
267
+ msgstr ""
268
+
269
+ #: ../pricing/pricing.php:214
270
+ msgid "Bounce handling"
271
+ msgstr ""
272
+
273
+ #: ../pricing/pricing.php:215
274
+ msgid "Advanced reporting"
275
+ msgstr ""
276
+
277
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
278
  #: settings/settings-edit.php:42
279
  #, fuzzy
280
  msgid "Settings"
324
  msgid "<span style=\"color:#993399;\">Immediately</span>"
325
  msgstr "<span style=\"color:#993399;\">Omgående</span>"
326
 
327
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
328
+ #: register.php:1055
329
  msgid "Email Subscribers"
330
  msgstr "Email Subscribers"
331
 
332
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
333
  #: subscribers/view-subscriber-show.php:242
334
  msgid "Subscribers"
335
  msgstr "Prenumeranter"
336
 
337
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
338
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
339
+ #: 1049
340
  msgid "Templates"
341
  msgstr "Mallar"
342
 
343
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
344
  #: 370 ../notification/notification-show.php:52
345
  msgid "Post Notifications"
346
  msgstr "Meddelande"
347
 
348
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
349
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
350
  msgid "Newsletters"
351
  msgstr "Nyhetsbrev"
352
 
353
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
354
  #: sentmail/sentmail-show.php:93
355
  msgid "Reports"
356
  msgstr "Rapporter"
357
 
358
+ #: ../classes/es-register.php:187
359
  msgid "Help & Info"
360
  msgstr "Hjälp & Information"
361
 
362
+ #: ../classes/es-register.php:188
363
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
364
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hjälp & Info</span>"
365
 
366
+ #: ../classes/es-register.php:204
367
  msgctxt "view-subscriber-enhanced-select"
368
  msgid "Please enter subscriber email address."
369
  msgstr "Ange din e-postadress."
370
 
371
+ #: ../classes/es-register.php:205
372
  msgctxt "view-subscriber-enhanced-select"
373
  msgid "Please select subscriber email status."
374
  msgstr "Ange din e-postadress."
375
 
376
+ #: ../classes/es-register.php:206
377
  msgctxt "view-subscriber-enhanced-select"
378
  msgid "Please select or create group for this subscriber."
379
  msgstr "Ange en grupp för denna prenumerant."
380
 
381
+ #: ../classes/es-register.php:207
382
  msgctxt "view-subscriber-enhanced-select"
383
  msgid "Do you want to delete this record?"
384
  msgstr "Vill du radera denna post?"
385
 
386
+ #: ../classes/es-register.php:208
387
  msgctxt "view-subscriber-enhanced-select"
388
  msgid "Please select the bulk action."
389
  msgstr "Välj uppdateringssätt."
390
 
391
+ #: ../classes/es-register.php:209
392
  msgctxt "view-subscriber-enhanced-select"
393
  msgid "Are you sure you want to delete selected records?"
394
  msgstr "Vill du radera valda poster?"
395
 
396
+ #: ../classes/es-register.php:210
397
  msgctxt "view-subscriber-enhanced-select"
398
  msgid ""
399
  "Do you want to resend confirmation email? Also please note, this will update "
402
  "Vill du skicka bekräftelsemail igen? Observera också att detta kommer att "
403
  "uppdatera abonnentens nuvarande status till 'Ej bekräftad'."
404
 
405
+ #: ../classes/es-register.php:211
406
  msgctxt "view-subscriber-enhanced-select"
407
  msgid "Please select new subscriber group."
408
  msgstr "Välj ny prenumerantgrupp."
409
 
410
+ #: ../classes/es-register.php:212
411
  msgctxt "view-subscriber-enhanced-select"
412
  msgid "Please select new status for subscribers"
413
  msgstr "Välj ny status för prenumeranterna"
414
 
415
+ #: ../classes/es-register.php:213
416
  msgctxt "view-subscriber-enhanced-select"
417
  msgid "Do you want to update subscribers group?"
418
  msgstr "Vill du uppdatera prenumerantgruppen?"
419
 
420
+ #: ../classes/es-register.php:214
421
  msgctxt "view-subscriber-enhanced-select"
422
  msgid "Do you want to update subscribers status?"
423
  msgstr "Vill du uppdatera prenumeranternas status?"
424
 
425
+ #: ../classes/es-register.php:215
426
  msgctxt "view-subscriber-enhanced-select"
427
  msgid ""
428
  "Please select only csv file. Please check official website for csv structure."
429
  "."
430
  msgstr "Välj en csv-fil. Se vår hemsida för vidare anvisningar."
431
 
432
+ #: ../classes/es-register.php:223
433
  msgctxt "notification-enhanced-select"
434
  msgid "Please select subscribers group."
435
  msgstr "Välj prenumerationsgrupp."
436
 
437
+ #: ../classes/es-register.php:224
438
  msgctxt "notification-enhanced-select"
439
  msgid "Please select notification mail subject. Use templates menu to create new."
440
  msgstr "Välj anmälan e-ämne. Använd mallar-menyn för att skapa nya."
441
 
442
+ #: ../classes/es-register.php:225
443
  msgctxt "notification-enhanced-select"
444
  msgid "Please select notification status."
445
  msgstr "Välj status för nyhetsbrev."
446
 
447
+ #: ../classes/es-register.php:226
448
  msgctxt "notification-enhanced-select"
449
  msgid "Do you want to delete this record?"
450
  msgstr "Vill du radera denna post?"
451
 
452
+ #: ../classes/es-register.php:234
453
  msgctxt "sendmail-enhanced-select"
454
  msgid "Please select your mail subject."
455
  msgstr "Välj rubrik för ditt mail."
456
 
457
+ #: ../classes/es-register.php:235
458
  msgctxt "sendmail-enhanced-select"
459
  msgid "Please select your mail type."
460
  msgstr "Välj typ för ditt mail."
461
 
462
+ #: ../classes/es-register.php:236
463
  msgctxt "sendmail-enhanced-select"
464
  msgid ""
465
  "Have you double checked your selected group? If so, let's go ahead and send "
466
  "this."
467
  msgstr "Har du valt grupp att sända till? I så fall - sänd."
468
 
469
+ #: ../classes/es-register.php:244
470
  msgctxt "sentmail-enhanced-select"
471
  msgid "Do you want to delete this record?"
472
  msgstr "Villd su radera denna post?"
473
 
474
+ #: ../classes/es-register.php:245
475
  msgctxt "sentmail-enhanced-select"
476
  msgid "Do you want to delete all records except latest 10?"
477
  msgstr "Vill du radera alla poster utom de 10 senaste?"
478
 
479
+ #: ../classes/es-register.php:253
480
  msgctxt "cron-enhanced-select"
481
  msgid "Please select enter number of mails you want to send per hour/trigger."
482
  msgstr ""
483
  "Välj hur många mail du vill sända per timme. Obs att din operatör kan ha "
484
  "begränsningar för att hindra spam."
485
 
486
+ #: ../classes/es-register.php:254
487
  msgctxt "cron-enhanced-select"
488
  msgid "Please enter the mail count, only number."
489
  msgstr "Ange antalet mail. endast siffror."
490
 
491
+ #: ../classes/es-register.php:267
492
  msgctxt "widget-page-enhanced-select"
493
  msgid "Please enter email address"
494
  msgstr "Ange e-postadress"
495
 
496
+ #: ../classes/es-register.php:268
497
  msgctxt "widget-page-enhanced-select"
498
  msgid "Successfully Subscribed."
499
  msgstr "Prenumeration lyckades."
500
 
501
+ #: ../classes/es-register.php:269
502
  msgctxt "widget-page-enhanced-select"
503
  msgid ""
504
  "Your subscription was successful! Kindly check your mailbox and confirm your "
509
  "din prenumeration. Om du inte ser e-post inom några minuter, kontrollera i "
510
  "skräppostmappen."
511
 
512
+ #: ../classes/es-register.php:270
513
  msgctxt "widget-page-enhanced-select"
514
  msgid "Email Address already exists!"
515
  msgstr "E-postadressen finns redan!"
516
 
517
+ #: ../classes/es-register.php:271
518
  msgctxt "widget-page-enhanced-select"
519
  msgid "Oops.. Unexpected error occurred."
520
  msgstr "Oups. Ett oväntat fel inträffade."
521
 
522
+ #: ../classes/es-register.php:272
523
  msgctxt "widget-page-enhanced-select"
524
  msgid "Invalid email address"
525
  msgstr "Ogiltig e-postadress"
526
 
527
+ #: ../classes/es-register.php:273
528
  msgctxt "widget-page-enhanced-select"
529
  msgid "Please try after some time"
530
  msgstr "Försök igen om en stund"
531
 
532
+ #: ../classes/es-register.php:698
533
  msgid ""
534
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
535
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
541
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
542
  "Icegram i förväg!"
543
 
544
+ #: ../classes/es-register.php:1034
545
  #, php-format
546
  msgid "Email Subscribers version: <strong>%s</strong>"
547
  msgstr "Email Subscribers version: <strong>%s</strong>"
548
 
549
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
550
  msgid "Add new Template"
551
  msgstr "Lägg till ny mall"
552
 
553
+ #: ../classes/es-register.php:1047
554
  msgid "Edit Templates"
555
  msgstr "Redigera mallar"
556
 
557
+ #: ../classes/es-register.php:1048
558
  msgid "New Templates"
559
  msgstr "Nya mallar"
560
 
561
+ #: ../classes/es-register.php:1050
562
  msgid "View Templates"
563
  msgstr "Lista mallar"
564
 
565
+ #: ../classes/es-register.php:1051
566
  msgid "Search Templates"
567
  msgstr "Sök mall"
568
 
569
+ #: ../classes/es-register.php:1052
570
  msgid "No Templates found"
571
  msgstr "Inga mallar funna"
572
 
573
+ #: ../classes/es-register.php:1053
574
  msgid "No Templates found in Trash"
575
  msgstr "Inga mallar funna i Papperskorgen"
576
 
577
+ #: ../classes/es-register.php:1056
578
  msgid "Thumbnail (For Visual Representation only)"
579
  msgstr "Thumbnail (Enbart för visuell representation)"
580
 
581
+ #: ../classes/es-register.php:1057
582
  msgid "Set thumbnail"
583
  msgstr "Välj Thumbnail"
584
 
585
+ #: ../classes/es-register.php:1094
586
  msgid "Template Type"
587
  msgstr "Mailtyp"
588
 
589
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
590
  msgid "Thumbnail"
591
  msgstr "Thumbnail"
592
 
593
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
594
  #: sentmail/sentmail-show.php:121
595
  msgid "Preview"
596
  msgstr "Granska"
597
 
598
+ #: ../classes/es-register.php:1167
599
  #, php-format
600
  msgid "%s for Post Notification: {{POSTTITLE}}"
601
  msgstr "%s för Postnotiifiering"
602
 
603
+ #: ../classes/es-register.php:1167
604
  msgid "Available Keyword"
605
  msgstr "Tillgängliga nyckelord"
606
 
607
+ #: ../classes/es-register.php:1174
608
  msgid "Select your Email Template Type"
609
  msgstr "Välj Typ för din E-postmall"
610
 
611
+ #: ../classes/es-register.php:1176
612
  msgid "Newsletter"
613
  msgstr "Nyhetsbrev"
614
 
615
+ #: ../classes/es-register.php:1177
616
  msgid "Post Notification"
617
  msgstr "Post notiifiering"
618
 
619
+ #: ../classes/es-register.php:1226
620
  msgid "Preview Template"
621
  msgstr "Förhandsvisa mallar"
622
 
623
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
624
  #, php-format
625
  msgid ""
626
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
631
  "{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
632
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
633
 
634
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
635
+ #: register.php:1261 ../classes/es-register.php:1269
636
  msgid "Available Keywords"
637
  msgstr "Tillgängliga nyckelord"
638
 
639
+ #: ../classes/es-register.php:1246
640
  #, php-format
641
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
642
  msgstr "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
643
 
644
+ #: ../classes/es-register.php:1269
645
  #, php-format
646
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
647
  msgstr "%s for Nyhetsbrev: {{NAME}}, {{EMAIL}}"
648
 
649
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
650
  msgid "Name"
651
  msgstr "Namn"
652
 
653
+ #: ../classes/es-register.php:1311
654
  msgid "Email *"
655
  msgstr "E-post *"
656
 
657
+ #: ../classes/es-register.php:1320 ../help/help.php:202
658
  msgid "Subscribe"
659
  msgstr "Prenumerera"
660
 
661
+ #: ../classes/es-register.php:1424
662
  msgid "Widget Title"
663
  msgstr "Widget titel"
664
 
665
+ #: ../classes/es-register.php:1428
666
  msgid "Short description about subscription form"
667
  msgstr "Kort beskrivning av prenumerationsformulär"
668
 
669
+ #: ../classes/es-register.php:1432
670
  msgid "Display Name Field"
671
  msgstr "Visa Namnfältet"
672
 
673
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
674
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
675
  msgid "YES"
676
  msgstr "JA"
677
 
678
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
679
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
680
  msgid "NO"
681
  msgstr "NEJ"
682
 
683
+ #: ../classes/es-register.php:1439
684
  msgid "Subscriber Group"
685
  msgstr "Prenumerantgrupp"
686
 
1162
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1163
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1164
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1165
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1166
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1167
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1168
  msgid "Select"
1228
  msgid "Disable email notification"
1229
  msgstr "Inaktivera emailnotifiering"
1230
 
1231
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1232
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1233
  msgid "Save"
1234
  msgstr "Spara"
1235
 
1352
  msgid "Send email via cron job"
1353
  msgstr "Sänd email via Cron-jobb"
1354
 
1355
+ #: ../sendmail/sendmail.php:148
1356
  msgid "Select Subscribers group to Send Email"
1357
  msgstr "Välj prenumerantgrupp att sända email till"
1358
 
1359
+ #: ../sendmail/sendmail.php:180
1360
  msgid "Recipients : 0 "
1361
  msgstr "Mottagare: 0 "
1362
 
1363
+ #: ../sendmail/sendmail.php:182
1364
  #, php-format
1365
  msgid "Recipients : %s"
1366
  msgstr "Mottagare: %s"
1367
 
1368
+ #: ../sendmail/sendmail.php:185
1369
  msgid ""
1370
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1371
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1375
  "du ändrar Mailtyp till Cron och sendre mail via CronJob. a/strongZ<br>Klicka "
1376
  "på Hjälp för mer information."
1377
 
1378
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1379
  msgid "Send Email"
1380
  msgstr "Skicka"
1381
 
1382
+ #: ../sendmail/sendmail.php:202
1383
  msgid "Reset"
1384
  msgstr "Återställ"
1385
 
1498
  "OBS. Klicka på <strong>Optimera Tabell & raderade poster</strong>-knappen "
1499
  "för att radera alla rapporter förutom de 10 senaste."
1500
 
1501
+ #: ../sentmail/sentmail-show.php:216
1502
  msgid ""
1503
  "<strong>Note:</strong> If you delete record for the emails with Status = "
1504
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
1676
  msgid "Sent Report Subject"
1677
  msgstr "Sändrapport Ämne"
1678
 
 
 
 
 
1679
  #: ../settings/settings-edit.php:172
1680
  msgid "Sent Report Content"
1681
  msgstr "Sändrapport - Innehåll"
1682
 
 
 
 
 
 
 
 
 
1683
  #: ../settings/settings-edit.php:184
1684
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1685
  msgstr "Double Opt In mailrubrik (Bekräftelsemail)"
1880
  "modify it."
1881
  msgstr "Detta är ditt Cron job URL. Det är readonly och du bör inte ändra det."
1882
 
1883
+ #: ../settings/settings-edit.php:377
1884
  msgid "Email Count"
1885
  msgstr "Antal mail"
1886
 
1887
+ #: ../settings/settings-edit.php:378
1888
  msgid "Number of emails that you want to trigger per hour."
1889
  msgstr "Antal mail du vill sända per timme."
1890
 
1891
+ #: ../settings/settings-edit.php:383
1892
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1893
  msgstr "(Din mailleverantör har begränsningar. vi rekommenderar 50 per timme)"
1894
 
1895
+ #: ../settings/settings-edit.php:388
1896
  msgid "Cron Report"
1897
  msgstr "Cronrapport"
1898
 
1899
+ #: ../settings/settings-edit.php:389
1900
  msgid ""
1901
  "Email to admin whenever a cron URL is triggered from your server.<br "
1902
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1904
  "Email till Admin när crom URL triggas av din server. <br />Available "
1905
  "Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1906
 
1907
+ #: ../settings/settings-edit.php:400
1908
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1909
  msgstr "Vad är Cron och hur görs inställningarna?"
1910
 
1911
+ #: ../settings/settings-edit.php:401
1912
  msgid ""
1913
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1914
  "schedule-cron-emails/?"
1920
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Vad är "
1921
  "Cron?</a>"
1922
 
1923
+ #: ../settings/settings-edit.php:402
1924
  msgid ""
1925
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1926
  "schedule-cron-emails-in-cpanel/?"
1932
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Sät upp "
1933
  "ett cronjobb i cPanel</a>"
1934
 
1935
+ #: ../settings/settings-edit.php:403
1936
  msgid ""
1937
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1938
  "schedule-cron-emails-in-parallels-plesk/?"
1944
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Sätt upp "
1945
  "cron job i Plesk</a>"
1946
 
1947
+ #: ../settings/settings-edit.php:404
1948
  msgid ""
1949
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1950
  "if-hosting-doesnt-support-cron-jobs/?"
1956
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1957
  "stöder inte cron jobs?</a>"
1958
 
1959
+ #: ../settings/settings-edit.php:520
1960
  msgid "Please enter sender of notifications from name."
1961
  msgstr "Ange namnet för notifieringens avsändare."
1962
 
1963
+ #: ../settings/settings-edit.php:525
1964
  msgid "Please enter sender of notifications from email."
1965
  msgstr "Ange avsändarens mailadress på email för notifieringar."
1966
 
1967
+ #: ../settings/settings-edit.php:569
1968
  msgid "Please enter valid email count."
1969
  msgstr "Välj giltigt mailkonto."
1970
 
1971
+ #: ../settings/settings-edit.php:584
1972
  msgid "Settings Saved."
1973
  msgstr "Inställningar sparade."
1974
 
1975
+ #: ../settings/settings-edit.php:587
1976
  msgid "Oops, unable to update."
1977
  msgstr "Oups... Det går ej att uppdatera."
1978
 
2429
  "Lägg till prenumerationsformulär på webbplatsen, sänd HTML-nyhetsbrev och "
2430
  "meddela prenumeranterna automatiskt när en ny bloggpost publiceras."
2431
 
2432
+ #: ../email-subscribers.php:96
2433
  msgctxt "timezone date format"
2434
  msgid "Y-m-d H:i:s"
2435
  msgstr "Y-m-d H:i:s"
languages/email-subscribers-tr_TR.mo CHANGED
Binary file
languages/email-subscribers-tr_TR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Mon Jul 02 2018 10:53:55 GMT+0530 (IST)\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Turkish\n"
10
  "Plural-Forms: nplurals=1; plural=0\n"
@@ -22,30 +22,107 @@ msgstr ""
22
  "X-Loco-Target-Locale: tr_TR\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../classes/es-register.php:727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid ""
27
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
28
- "</b>"
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
- #: ../classes/es-register.php:728
32
- msgid "Here's how"
33
  msgstr ""
34
 
35
- #: ../classes/es-register.php:728
36
- msgid "Not interested. Dismiss this."
37
  msgstr ""
38
 
39
- #: ../classes/es-register.php:900
 
 
 
 
 
 
 
 
40
  #, php-format
41
  msgid "%s for Post Notification: {{POSTTITLE}}"
42
  msgstr ""
43
 
44
- #: ../classes/es-register.php:900
45
  msgid "Available Keyword"
46
  msgstr ""
47
 
48
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
49
  #, php-format
50
  msgid ""
51
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -53,7 +130,7 @@ msgid ""
53
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
54
  msgstr ""
55
 
56
- #: ../classes/es-register.php:1002
57
  #, php-format
58
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
59
  msgstr ""
@@ -98,22 +175,178 @@ msgstr ""
98
  msgid "Subscribers Group to send post notification to"
99
  msgstr ""
100
 
101
- #: ../sentmail/sentmail-show.php:212
102
  msgid ""
103
  "<strong>Note:</strong> If you delete record for the emails with Status = "
104
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
105
  "deleted too and email will not be sent."
106
  msgstr ""
107
 
108
- #: ../settings/settings-edit.php:566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  msgid "Please enter valid email count."
110
  msgstr ""
111
 
112
- #: ../email-subscribers.php:95
113
  msgctxt "timezone date format"
114
  msgid "Y-m-d H:i:s"
115
  msgstr ""
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  #: ../classes/es-common.php:13
118
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
119
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Onaylandı</span>"
@@ -159,80 +392,81 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
159
  msgstr "<span style=\"color:#993399;\">Acilen</span>"
160
 
161
  #. Name of the plugin
162
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
163
- #: register.php:788
164
  msgid "Email Subscribers"
165
  msgstr "Email Subscribers"
166
 
167
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
168
  #: subscribers/view-subscriber-show.php:242
169
  msgid "Subscribers"
170
  msgstr "Aboneler"
171
 
172
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
173
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
174
  msgid "Templates"
175
  msgstr "Şablonlar"
176
 
177
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
178
  #: 370 ../notification/notification-show.php:52
179
  msgid "Post Notifications"
180
  msgstr "Gönderi Bildirimleri"
181
 
182
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
183
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
184
  msgid "Newsletters"
185
  msgstr "Bültenler"
186
 
187
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
188
  #: settings/settings-edit.php:42
189
  msgid "Settings"
190
  msgstr "Ayarlar"
191
 
192
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
193
  #: sentmail/sentmail-show.php:93
194
  msgid "Reports"
195
  msgstr "Raporlar"
196
 
197
- #: ../classes/es-register.php:183
198
  msgid "Help & Info"
199
  msgstr "Yardım & Bilgi"
200
 
201
- #: ../classes/es-register.php:184
202
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
203
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Yardım & Bilgi</span>"
204
 
205
- #: ../classes/es-register.php:195
206
  msgctxt "view-subscriber-enhanced-select"
207
  msgid "Please enter subscriber email address."
208
  msgstr "Lütfen abone e-posta adresi giriniz."
209
 
210
- #: ../classes/es-register.php:196
211
  msgctxt "view-subscriber-enhanced-select"
212
  msgid "Please select subscriber email status."
213
  msgstr "Lütfen abone e-posta durumunu seçiniz"
214
 
215
- #: ../classes/es-register.php:197
216
  msgctxt "view-subscriber-enhanced-select"
217
  msgid "Please select or create group for this subscriber."
218
  msgstr "Bu abone için bir grup seçiniz veya oluşturunuz."
219
 
220
- #: ../classes/es-register.php:198
221
  msgctxt "view-subscriber-enhanced-select"
222
  msgid "Do you want to delete this record?"
223
  msgstr "Bu kaydı silmek istiyor musunuz?"
224
 
225
- #: ../classes/es-register.php:199
226
  msgctxt "view-subscriber-enhanced-select"
227
  msgid "Please select the bulk action."
228
  msgstr "Lütfen toplu işlem seçiniz."
229
 
230
- #: ../classes/es-register.php:200
231
  msgctxt "view-subscriber-enhanced-select"
232
  msgid "Are you sure you want to delete selected records?"
233
  msgstr "Seçilen kayıtları silmek istediğinizden emin misiniz?"
234
 
235
- #: ../classes/es-register.php:201
236
  msgctxt "view-subscriber-enhanced-select"
237
  msgid ""
238
  "Do you want to resend confirmation email? Also please note, this will update "
@@ -241,27 +475,27 @@ msgstr ""
241
  "Onay epostasını tekrar mı göndermek istiyorsunuz? Lütfen dikkat edin, bun "
242
  "yaparsanız, abone durumu onaylanmadı olarak güncellenecek."
243
 
244
- #: ../classes/es-register.php:202
245
  msgctxt "view-subscriber-enhanced-select"
246
  msgid "Please select new subscriber group."
247
  msgstr "Lütfen yeni abone grubu seçiniz."
248
 
249
- #: ../classes/es-register.php:203
250
  msgctxt "view-subscriber-enhanced-select"
251
  msgid "Please select new status for subscribers"
252
  msgstr "Lütfen Aboneler için yeni durum seçiniz"
253
 
254
- #: ../classes/es-register.php:204
255
  msgctxt "view-subscriber-enhanced-select"
256
  msgid "Do you want to update subscribers group?"
257
  msgstr "Abonelerin grubunu güncellemek istiyor musunuz?"
258
 
259
- #: ../classes/es-register.php:205
260
  msgctxt "view-subscriber-enhanced-select"
261
  msgid "Do you want to update subscribers status?"
262
  msgstr "Abonelerin durumunu güncellemek mi istiyorsunuz?"
263
 
264
- #: ../classes/es-register.php:206
265
  msgctxt "view-subscriber-enhanced-select"
266
  msgid ""
267
  "Please select only csv file. Please check official website for csv structure."
@@ -270,39 +504,39 @@ msgstr ""
270
  "Lütfen sadece CSV dosyası seçiniz. Lütfen CSV dosya yapısı için resmi site "
271
  "adresini ziyaret ediniz."
272
 
273
- #: ../classes/es-register.php:214
274
  msgctxt "notification-enhanced-select"
275
  msgid "Please select subscribers group."
276
  msgstr "Lütfen abonelerin grubunu seçiniz."
277
 
278
- #: ../classes/es-register.php:215
279
  msgctxt "notification-enhanced-select"
280
  msgid "Please select notification mail subject. Use templates menu to create new."
281
  msgstr ""
282
  "Lütfen eposta bildirim konusunu seçiniz. Yeni oluşturmak için menüden "
283
  "şablonları kullanınız."
284
 
285
- #: ../classes/es-register.php:216
286
  msgctxt "notification-enhanced-select"
287
  msgid "Please select notification status."
288
  msgstr "Lütfen bildirim durumunu seçiniz."
289
 
290
- #: ../classes/es-register.php:217
291
  msgctxt "notification-enhanced-select"
292
  msgid "Do you want to delete this record?"
293
  msgstr "Bu kaydı silmek istiyor musunuz?"
294
 
295
- #: ../classes/es-register.php:225
296
  msgctxt "sendmail-enhanced-select"
297
  msgid "Please select your mail subject."
298
  msgstr "Lütfen e-posta konusunu seçiniz."
299
 
300
- #: ../classes/es-register.php:226
301
  msgctxt "sendmail-enhanced-select"
302
  msgid "Please select your mail type."
303
  msgstr "Lütfen e-posta türünü seçiniz."
304
 
305
- #: ../classes/es-register.php:227
306
  msgctxt "sendmail-enhanced-select"
307
  msgid ""
308
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -311,37 +545,37 @@ msgstr ""
311
  "Seçtiğiniz grubu ikinci kez kontrol ettiniz mi? Eğer öyle ise devam edin ve "
312
  "bunu gönderin."
313
 
314
- #: ../classes/es-register.php:235
315
  msgctxt "sentmail-enhanced-select"
316
  msgid "Do you want to delete this record?"
317
  msgstr "Bu kaydı silmek istiyor musunuz?"
318
 
319
- #: ../classes/es-register.php:236
320
  msgctxt "sentmail-enhanced-select"
321
  msgid "Do you want to delete all records except latest 10?"
322
  msgstr "Son 10 kayıt haricindeki tüm kayıtları silmek istiyor musunuz?"
323
 
324
- #: ../classes/es-register.php:244
325
  msgctxt "cron-enhanced-select"
326
  msgid "Please select enter number of mails you want to send per hour/trigger."
327
  msgstr "Lütfen her saat başı gönderilecek e-posta adedini seçiniz."
328
 
329
- #: ../classes/es-register.php:245
330
  msgctxt "cron-enhanced-select"
331
  msgid "Please enter the mail count, only number."
332
  msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
333
 
334
- #: ../classes/es-register.php:258
335
  msgctxt "widget-page-enhanced-select"
336
  msgid "Please enter email address"
337
  msgstr "Lütfen e-posta adresi giriniz"
338
 
339
- #: ../classes/es-register.php:259
340
  msgctxt "widget-page-enhanced-select"
341
  msgid "Successfully Subscribed."
342
  msgstr "Başarıyla Abone Edildi."
343
 
344
- #: ../classes/es-register.php:260
345
  msgctxt "widget-page-enhanced-select"
346
  msgid ""
347
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -352,27 +586,27 @@ msgstr ""
352
  "onaylayınız. Birkaç dakika içinde onay epostası gelmedi ise lütfen önemsiz "
353
  "epostalar kutusunu kontrol ediniz."
354
 
355
- #: ../classes/es-register.php:261
356
  msgctxt "widget-page-enhanced-select"
357
  msgid "Email Address already exists!"
358
  msgstr "E-posta adresi zaten mevcut!"
359
 
360
- #: ../classes/es-register.php:262
361
  msgctxt "widget-page-enhanced-select"
362
  msgid "Oops.. Unexpected error occurred."
363
  msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
364
 
365
- #: ../classes/es-register.php:263
366
  msgctxt "widget-page-enhanced-select"
367
  msgid "Invalid email address"
368
  msgstr "Geçersiz e-posta adresi"
369
 
370
- #: ../classes/es-register.php:264
371
  msgctxt "widget-page-enhanced-select"
372
  msgid "Please try after some time"
373
  msgstr "Biraz sonra tekrar deneyiniz"
374
 
375
- #: ../classes/es-register.php:753
376
  msgid ""
377
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
378
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -384,121 +618,121 @@ msgstr ""
384
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
385
  "</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
386
 
387
- #: ../classes/es-register.php:767
388
  #, php-format
389
  msgid "Email Subscribers version: <strong>%s</strong>"
390
  msgstr "Eposta Abone versiyonu: <strong>%s</strong>"
391
 
392
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
393
  msgid "Add new Template"
394
  msgstr "Yeni Şablon Ekle"
395
 
396
- #: ../classes/es-register.php:780
397
  msgid "Edit Templates"
398
  msgstr "Şablon Düzenle"
399
 
400
- #: ../classes/es-register.php:781
401
  msgid "New Templates"
402
  msgstr "Yeni Şablon"
403
 
404
- #: ../classes/es-register.php:783
405
  msgid "View Templates"
406
  msgstr "Şablon Görüntüle"
407
 
408
- #: ../classes/es-register.php:784
409
  msgid "Search Templates"
410
  msgstr "Şablon Ara"
411
 
412
- #: ../classes/es-register.php:785
413
  msgid "No Templates found"
414
  msgstr "Şablon bulunamadı"
415
 
416
- #: ../classes/es-register.php:786
417
  msgid "No Templates found in Trash"
418
  msgstr "Çöp kutusunda şablon bulunamadı"
419
 
420
- #: ../classes/es-register.php:789
421
  msgid "Thumbnail (For Visual Representation only)"
422
  msgstr "Küçük resim(Sadece görseli sunum için)"
423
 
424
- #: ../classes/es-register.php:790
425
  msgid "Set thumbnail"
426
  msgstr "Küçük resim ayarla"
427
 
428
- #: ../classes/es-register.php:827
429
  msgid "Template Type"
430
  msgstr "ŞAblon Tipi"
431
 
432
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
433
  msgid "Thumbnail"
434
  msgstr "Küçük Boy"
435
 
436
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
437
  #: sentmail/sentmail-show.php:121
438
  msgid "Preview"
439
  msgstr "Önizleme"
440
 
441
- #: ../classes/es-register.php:907
442
  msgid "Select your Email Template Type"
443
  msgstr "Şablon Tipini Seçiniz"
444
 
445
- #: ../classes/es-register.php:909
446
  msgid "Newsletter"
447
  msgstr "Bülten"
448
 
449
- #: ../classes/es-register.php:910
450
  msgid "Post Notification"
451
  msgstr "Gönderi Bildirimi"
452
 
453
- #: ../classes/es-register.php:959
454
  msgid "Preview Template"
455
  msgstr "Şablon Önizleme"
456
 
457
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
458
- #: register.php:994 ../classes/es-register.php:1002
459
  msgid "Available Keywords"
460
  msgstr "Mevcut Anahtar Kelimeler"
461
 
462
- #: ../classes/es-register.php:979
463
  #, php-format
464
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
465
  msgstr "<br/><br/>%s - Bülten İçin: {{NAME}}, {{EMAIL}}"
466
 
467
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
468
  msgid "Name"
469
  msgstr "Adınız"
470
 
471
- #: ../classes/es-register.php:1044
472
  msgid "Email *"
473
  msgstr "E-posta Adresiniz*"
474
 
475
- #: ../classes/es-register.php:1053 ../help/help.php:202
476
  msgid "Subscribe"
477
  msgstr "Üye Ol"
478
 
479
- #: ../classes/es-register.php:1157
480
  msgid "Widget Title"
481
  msgstr "Bileşen Adı"
482
 
483
- #: ../classes/es-register.php:1161
484
  msgid "Short description about subscription form"
485
  msgstr "Abone formu hakkında kısa açıklama"
486
 
487
- #: ../classes/es-register.php:1165
488
  msgid "Display Name Field"
489
  msgstr "İsim Alanını Göster"
490
 
491
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
492
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
493
  msgid "YES"
494
  msgstr "EVET"
495
 
496
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
497
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
498
  msgid "NO"
499
  msgstr "HAYIR"
500
 
501
- #: ../classes/es-register.php:1172
502
  msgid "Subscriber Group"
503
  msgstr "Abone Grubu"
504
 
@@ -960,7 +1194,7 @@ msgstr "Yardım"
960
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
961
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
962
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
963
- #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
964
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
965
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
966
  msgid "Select"
@@ -1026,8 +1260,8 @@ msgstr "Planlamaya ekle ve planlanmış gönderi ile gönder"
1026
  msgid "Disable email notification"
1027
  msgstr "E-posta bildirimi etkin değil"
1028
 
1029
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1030
- #: 291 ../subscribers/view-subscriber-edit.php:191
1031
  msgid "Save"
1032
  msgstr "Kaydet"
1033
 
@@ -1150,20 +1384,20 @@ msgstr "E-posta Tipini Seçiniz"
1150
  msgid "Send email via cron job"
1151
  msgstr "Planlanmış gönderi ile e-posta gönder"
1152
 
1153
- #: ../sendmail/sendmail.php:147
1154
  msgid "Select Subscribers group to Send Email"
1155
  msgstr "E-posta göndermek için Abone Grubunu seçiniz."
1156
 
1157
- #: ../sendmail/sendmail.php:179
1158
  msgid "Recipients : 0 "
1159
  msgstr "Alıcılar : 0"
1160
 
1161
- #: ../sendmail/sendmail.php:181
1162
  #, php-format
1163
  msgid "Recipients : %s"
1164
  msgstr "Alıcılar : %s"
1165
 
1166
- #: ../sendmail/sendmail.php:184
1167
  msgid ""
1168
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1169
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1174,11 +1408,11 @@ msgstr ""
1174
  "tipini değiştirmenizi öneririz.</strong><br>Daha fazlası için yardım "
1175
  "seçeneğine tıklayınız."
1176
 
1177
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1178
  msgid "Send Email"
1179
  msgstr "E-posta Gönder"
1180
 
1181
- #: ../sendmail/sendmail.php:201
1182
  msgid "Reset"
1183
  msgstr "Sıfırla"
1184
 
@@ -1465,22 +1699,10 @@ msgstr ""
1465
  msgid "Sent Report Subject"
1466
  msgstr "Gönderilen Rapor Konusu"
1467
 
1468
- #: ../settings/settings-edit.php:166
1469
- msgid "Subject for the email report which will be sent to admin."
1470
- msgstr "Yöneticiye gönderilecek e-posta raporu için konu."
1471
-
1472
  #: ../settings/settings-edit.php:172
1473
  msgid "Sent Report Content"
1474
  msgstr "Gönderilen Rapor İçeriği"
1475
 
1476
- #: ../settings/settings-edit.php:173
1477
- msgid ""
1478
- "Content for the email report which will be sent to admin.<br />Available "
1479
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1480
- msgstr ""
1481
- "Yöneticiye gönderilecek e-posta raporunun içeriği. <br /> Kullanılabilir "
1482
- "Anahtar Kelimeler: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1483
-
1484
  #: ../settings/settings-edit.php:184
1485
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1486
  msgstr "Çift Onay Email Konusu (Onay E-postası)"
@@ -1682,25 +1904,25 @@ msgstr ""
1682
  "Bu sizin planlanmış gönderi URL adresinizdir. Bu alan okunabilir bir alandır "
1683
  "ve düzenleme yapılmaması önerilir."
1684
 
1685
- #: ../settings/settings-edit.php:376
1686
  msgid "Email Count"
1687
  msgstr "E-posta sayısı"
1688
 
1689
- #: ../settings/settings-edit.php:377
1690
  msgid "Number of emails that you want to trigger per hour."
1691
  msgstr "Her saat bildirim yapmak istediğiniz e-postaların adedi"
1692
 
1693
- #: ../settings/settings-edit.php:382
1694
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1695
  msgstr ""
1696
  "(Hosting panelinizin limitleri var. Her saat için 50 eposta gönderimini "
1697
  "öneriyoruz.)"
1698
 
1699
- #: ../settings/settings-edit.php:387
1700
  msgid "Cron Report"
1701
  msgstr "Planlanmış İş (CRON) Raporu"
1702
 
1703
- #: ../settings/settings-edit.php:388
1704
  msgid ""
1705
  "Email to admin whenever a cron URL is triggered from your server.<br "
1706
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
@@ -1709,11 +1931,11 @@ msgstr ""
1709
  "eposta gönder. <br />Kullanılabilir Anahtar Kelimeler: {{DATE}}, {{SUBJECT}},"
1710
  " {{COUNT}}"
1711
 
1712
- #: ../settings/settings-edit.php:398
1713
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1714
  msgstr "Planlanmış gönderi (Cron / Otomatik e-postalar) nedir ve nasıl ayarlanır?"
1715
 
1716
- #: ../settings/settings-edit.php:399
1717
  msgid ""
1718
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1719
  "schedule-cron-emails/?"
@@ -1725,7 +1947,7 @@ msgstr ""
1725
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Planlanmış "
1726
  "iş (CRON) nedir?</a>"
1727
 
1728
- #: ../settings/settings-edit.php:400
1729
  msgid ""
1730
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1731
  "schedule-cron-emails-in-cpanel/?"
@@ -1737,7 +1959,7 @@ msgstr ""
1737
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cpanel "
1738
  "için planlanmış iş (CRON) ayarı.</a>"
1739
 
1740
- #: ../settings/settings-edit.php:401
1741
  msgid ""
1742
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1743
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1749,7 +1971,7 @@ msgstr ""
1749
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\"> Plesk "
1750
  "için planlanmış iş (CRON) ayarı.</a>"
1751
 
1752
- #: ../settings/settings-edit.php:402
1753
  msgid ""
1754
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1755
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1761,19 +1983,19 @@ msgstr ""
1761
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1762
  "firmanız planlanmış işlere (CRON) izin veriyor mu?</a>"
1763
 
1764
- #: ../settings/settings-edit.php:517
1765
  msgid "Please enter sender of notifications from name."
1766
  msgstr "Bildirimlerin hangi isimden gönderileceğini giriniz."
1767
 
1768
- #: ../settings/settings-edit.php:522
1769
  msgid "Please enter sender of notifications from email."
1770
  msgstr "Bildirimlerin hangi E-Posta adresinden gönderileceğini giriniz."
1771
 
1772
- #: ../settings/settings-edit.php:580
1773
  msgid "Settings Saved."
1774
  msgstr "Ayarlar Kaydedildi."
1775
 
1776
- #: ../settings/settings-edit.php:583
1777
  msgid "Oops, unable to update."
1778
  msgstr "Bir dakika, güncelleme yapılamadı."
1779
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Fri Jul 20 2018 18:42:26 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Turkish\n"
10
  "Plural-Forms: nplurals=1; plural=0\n"
22
  "X-Loco-Target-Locale: tr_TR\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:191
26
+ msgid "Go Pro"
27
+ msgstr ""
28
+
29
+ #: ../classes/es-register.php:192
30
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
31
+ msgstr ""
32
+
33
+ #: ../classes/es-register.php:699
34
+ msgid "No, I don't like it"
35
+ msgstr ""
36
+
37
+ #: ../classes/es-register.php:705
38
+ msgctxt "timezone date format"
39
+ msgid "Y-m-d"
40
+ msgstr ""
41
+
42
+ #: ../classes/es-register.php:850
43
+ msgid "What do you hate about list building and email marketing?"
44
+ msgstr ""
45
+
46
+ #: ../classes/es-register.php:851
47
+ msgid "Hey, glad to see you!"
48
+ msgstr ""
49
+
50
+ #: ../classes/es-register.php:852
51
+ msgid ""
52
+ "I am on a daring quest to solve your biggest problems around list building "
53
+ "and email marketing. "
54
+ msgstr ""
55
+
56
+ #: ../classes/es-register.php:853
57
+ msgid ""
58
+ "So tell me, when it comes to list building and email marketing, what's your "
59
+ "biggest challenge? What's blocking your progress? "
60
+ msgstr ""
61
+
62
+ #: ../classes/es-register.php:858
63
+ msgid "And what's another big challenge? "
64
+ msgstr ""
65
+
66
+ #: ../classes/es-register.php:862
67
+ msgid "Send my problems..."
68
+ msgstr ""
69
+
70
+ #: ../classes/es-register.php:863
71
+ msgid "No, I don't have problems"
72
+ msgstr ""
73
+
74
+ #: ../classes/es-register.php:865
75
+ msgid "Fill the above field first"
76
+ msgstr ""
77
+
78
+ #: ../classes/es-register.php:874
79
+ msgid "Gosh... I hear you mate... "
80
+ msgstr ""
81
+
82
+ #: ../classes/es-register.php:875
83
  msgid ""
84
+ "Enter your email below, and you will be the first to know when we solve "
85
+ "those problems. "
86
+ msgstr ""
87
+
88
+ #: ../classes/es-register.php:879
89
+ msgid "Nah, I don't like improvements"
90
+ msgstr ""
91
+
92
+ #: ../classes/es-register.php:893
93
+ msgid "I got you."
94
+ msgstr ""
95
+
96
+ #: ../classes/es-register.php:894
97
+ msgid "Will do everything I can to help you. "
98
  msgstr ""
99
 
100
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
101
+ msgid "Later. "
102
  msgstr ""
103
 
104
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
105
+ msgid "Andrea Julio "
106
  msgstr ""
107
 
108
+ #: ../classes/es-register.php:902
109
+ msgid "No issues, have a nice day!"
110
+ msgstr ""
111
+
112
+ #: ../classes/es-register.php:1020
113
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
114
+ msgstr ""
115
+
116
+ #: ../classes/es-register.php:1167
117
  #, php-format
118
  msgid "%s for Post Notification: {{POSTTITLE}}"
119
  msgstr ""
120
 
121
+ #: ../classes/es-register.php:1167
122
  msgid "Available Keyword"
123
  msgstr ""
124
 
125
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
126
  #, php-format
127
  msgid ""
128
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
130
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
131
  msgstr ""
132
 
133
+ #: ../classes/es-register.php:1269
134
  #, php-format
135
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
136
  msgstr ""
175
  msgid "Subscribers Group to send post notification to"
176
  msgstr ""
177
 
178
+ #: ../sentmail/sentmail-show.php:216
179
  msgid ""
180
  "<strong>Note:</strong> If you delete record for the emails with Status = "
181
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
182
  "deleted too and email will not be sent."
183
  msgstr ""
184
 
185
+ #: ../settings/settings-edit.php:166
186
+ msgid ""
187
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
188
+ "only if sending email via immediately)"
189
+ msgstr ""
190
+
191
+ #: ../settings/settings-edit.php:173
192
+ msgid ""
193
+ "Content for the email report which will be sent to admin.<br />Available "
194
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
195
+ "sent only if sending email via immediately)"
196
+ msgstr ""
197
+
198
+ #: ../settings/settings-edit.php:393
199
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
200
+ msgstr ""
201
+
202
+ #: ../settings/settings-edit.php:569
203
  msgid "Please enter valid email count."
204
  msgstr ""
205
 
206
+ #: ../email-subscribers.php:96
207
  msgctxt "timezone date format"
208
  msgid "Y-m-d H:i:s"
209
  msgstr ""
210
 
211
+ #: ../pricing/pricing.php:157
212
+ msgid "Go a notch higher"
213
+ msgstr ""
214
+
215
+ #: ../pricing/pricing.php:158
216
+ msgid "Get the Email Subscribers Pro Plugin at"
217
+ msgstr ""
218
+
219
+ #: ../pricing/pricing.php:162
220
+ msgid "month"
221
+ msgstr ""
222
+
223
+ #: ../pricing/pricing.php:163
224
+ msgid "Sign up for monthly"
225
+ msgstr ""
226
+
227
+ #: ../pricing/pricing.php:166
228
+ msgid "year"
229
+ msgstr ""
230
+
231
+ #: ../pricing/pricing.php:167
232
+ msgid "Sign up for yearly"
233
+ msgstr ""
234
+
235
+ #: ../pricing/pricing.php:171
236
+ msgid "Get more with Email Subscribers Pro"
237
+ msgstr ""
238
+
239
+ #: ../pricing/pricing.php:173
240
+ msgid "All features of Email Subscribers free plugin + everything below:"
241
+ msgstr ""
242
+
243
+ #: ../pricing/pricing.php:176
244
+ msgid "Protect your list from bot attacks"
245
+ msgstr ""
246
+
247
+ #: ../pricing/pricing.php:177
248
+ msgid "Use "
249
+ msgstr ""
250
+
251
+ #: ../pricing/pricing.php:177
252
+ msgid "captcha"
253
+ msgstr ""
254
+
255
+ #: ../pricing/pricing.php:177
256
+ msgid ""
257
+ "to protect your email list from bots. The simple maths captcha helps "
258
+ "identifying bots from humans and eliminates spam signups."
259
+ msgstr ""
260
+
261
+ #: ../pricing/pricing.php:180
262
+ msgid "Check email status & increase email success rate"
263
+ msgstr ""
264
+
265
+ #: ../pricing/pricing.php:181
266
+ msgid "Double check the status of the emails addresses and increase "
267
+ msgstr ""
268
+
269
+ #: ../pricing/pricing.php:181
270
+ msgid "email success rate"
271
+ msgstr ""
272
+
273
+ #: ../pricing/pricing.php:181
274
+ msgid "of your email campaign. "
275
+ msgstr ""
276
+
277
+ #: ../pricing/pricing.php:187
278
+ msgid "Fullproof email deliverability"
279
+ msgstr ""
280
+
281
+ #: ../pricing/pricing.php:188
282
+ msgid ""
283
+ "Reduce the risk of emails ending in trash or spam. Increase email "
284
+ "deliverability by double checking emails for their "
285
+ msgstr ""
286
+
287
+ #: ../pricing/pricing.php:188
288
+ msgid "spam score"
289
+ msgstr ""
290
+
291
+ #: ../pricing/pricing.php:188
292
+ msgid "before hitting send."
293
+ msgstr ""
294
+
295
+ #: ../pricing/pricing.php:191
296
+ msgid "Track email leads in Google"
297
+ msgstr ""
298
+
299
+ #: ../pricing/pricing.php:192
300
+ msgid "Insert "
301
+ msgstr ""
302
+
303
+ #: ../pricing/pricing.php:192
304
+ msgid "UTM tracking"
305
+ msgstr ""
306
+
307
+ #: ../pricing/pricing.php:192
308
+ msgid ""
309
+ "in all your email CTA’s and track the effectiveness of your emails directly "
310
+ "within Google. Know which/ how many leads landed up from your emails and "
311
+ "tweak emails for better performance."
312
+ msgstr ""
313
+
314
+ #: ../pricing/pricing.php:199
315
+ msgid "Save time, use readymade email templates"
316
+ msgstr ""
317
+
318
+ #: ../pricing/pricing.php:200
319
+ msgid ""
320
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
321
+ "elegant templates</strong> to send your next email campaign."
322
+ msgstr ""
323
+
324
+ #: ../pricing/pricing.php:203
325
+ msgid "Customize confirmation and unsubscribe page"
326
+ msgstr ""
327
+
328
+ #: ../pricing/pricing.php:204
329
+ msgid ""
330
+ "Communicate with subscribers. Redirect them to beautifully designed "
331
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
332
+ msgstr ""
333
+
334
+ #: ../pricing/pricing.php:211
335
+ msgid "Coming soon..."
336
+ msgstr ""
337
+
338
+ #: ../pricing/pricing.php:213
339
+ msgid "Spam testing"
340
+ msgstr ""
341
+
342
+ #: ../pricing/pricing.php:214
343
+ msgid "Bounce handling"
344
+ msgstr ""
345
+
346
+ #: ../pricing/pricing.php:215
347
+ msgid "Advanced reporting"
348
+ msgstr ""
349
+
350
  #: ../classes/es-common.php:13
351
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
352
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Onaylandı</span>"
392
  msgstr "<span style=\"color:#993399;\">Acilen</span>"
393
 
394
  #. Name of the plugin
395
+ #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
396
+ #: register.php:1055
397
  msgid "Email Subscribers"
398
  msgstr "Email Subscribers"
399
 
400
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
401
  #: subscribers/view-subscriber-show.php:242
402
  msgid "Subscribers"
403
  msgstr "Aboneler"
404
 
405
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
406
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
407
+ #: 1049
408
  msgid "Templates"
409
  msgstr "Şablonlar"
410
 
411
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
412
  #: 370 ../notification/notification-show.php:52
413
  msgid "Post Notifications"
414
  msgstr "Gönderi Bildirimleri"
415
 
416
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
417
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
418
  msgid "Newsletters"
419
  msgstr "Bültenler"
420
 
421
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
422
  #: settings/settings-edit.php:42
423
  msgid "Settings"
424
  msgstr "Ayarlar"
425
 
426
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
427
  #: sentmail/sentmail-show.php:93
428
  msgid "Reports"
429
  msgstr "Raporlar"
430
 
431
+ #: ../classes/es-register.php:187
432
  msgid "Help & Info"
433
  msgstr "Yardım & Bilgi"
434
 
435
+ #: ../classes/es-register.php:188
436
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
437
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Yardım & Bilgi</span>"
438
 
439
+ #: ../classes/es-register.php:204
440
  msgctxt "view-subscriber-enhanced-select"
441
  msgid "Please enter subscriber email address."
442
  msgstr "Lütfen abone e-posta adresi giriniz."
443
 
444
+ #: ../classes/es-register.php:205
445
  msgctxt "view-subscriber-enhanced-select"
446
  msgid "Please select subscriber email status."
447
  msgstr "Lütfen abone e-posta durumunu seçiniz"
448
 
449
+ #: ../classes/es-register.php:206
450
  msgctxt "view-subscriber-enhanced-select"
451
  msgid "Please select or create group for this subscriber."
452
  msgstr "Bu abone için bir grup seçiniz veya oluşturunuz."
453
 
454
+ #: ../classes/es-register.php:207
455
  msgctxt "view-subscriber-enhanced-select"
456
  msgid "Do you want to delete this record?"
457
  msgstr "Bu kaydı silmek istiyor musunuz?"
458
 
459
+ #: ../classes/es-register.php:208
460
  msgctxt "view-subscriber-enhanced-select"
461
  msgid "Please select the bulk action."
462
  msgstr "Lütfen toplu işlem seçiniz."
463
 
464
+ #: ../classes/es-register.php:209
465
  msgctxt "view-subscriber-enhanced-select"
466
  msgid "Are you sure you want to delete selected records?"
467
  msgstr "Seçilen kayıtları silmek istediğinizden emin misiniz?"
468
 
469
+ #: ../classes/es-register.php:210
470
  msgctxt "view-subscriber-enhanced-select"
471
  msgid ""
472
  "Do you want to resend confirmation email? Also please note, this will update "
475
  "Onay epostasını tekrar mı göndermek istiyorsunuz? Lütfen dikkat edin, bun "
476
  "yaparsanız, abone durumu onaylanmadı olarak güncellenecek."
477
 
478
+ #: ../classes/es-register.php:211
479
  msgctxt "view-subscriber-enhanced-select"
480
  msgid "Please select new subscriber group."
481
  msgstr "Lütfen yeni abone grubu seçiniz."
482
 
483
+ #: ../classes/es-register.php:212
484
  msgctxt "view-subscriber-enhanced-select"
485
  msgid "Please select new status for subscribers"
486
  msgstr "Lütfen Aboneler için yeni durum seçiniz"
487
 
488
+ #: ../classes/es-register.php:213
489
  msgctxt "view-subscriber-enhanced-select"
490
  msgid "Do you want to update subscribers group?"
491
  msgstr "Abonelerin grubunu güncellemek istiyor musunuz?"
492
 
493
+ #: ../classes/es-register.php:214
494
  msgctxt "view-subscriber-enhanced-select"
495
  msgid "Do you want to update subscribers status?"
496
  msgstr "Abonelerin durumunu güncellemek mi istiyorsunuz?"
497
 
498
+ #: ../classes/es-register.php:215
499
  msgctxt "view-subscriber-enhanced-select"
500
  msgid ""
501
  "Please select only csv file. Please check official website for csv structure."
504
  "Lütfen sadece CSV dosyası seçiniz. Lütfen CSV dosya yapısı için resmi site "
505
  "adresini ziyaret ediniz."
506
 
507
+ #: ../classes/es-register.php:223
508
  msgctxt "notification-enhanced-select"
509
  msgid "Please select subscribers group."
510
  msgstr "Lütfen abonelerin grubunu seçiniz."
511
 
512
+ #: ../classes/es-register.php:224
513
  msgctxt "notification-enhanced-select"
514
  msgid "Please select notification mail subject. Use templates menu to create new."
515
  msgstr ""
516
  "Lütfen eposta bildirim konusunu seçiniz. Yeni oluşturmak için menüden "
517
  "şablonları kullanınız."
518
 
519
+ #: ../classes/es-register.php:225
520
  msgctxt "notification-enhanced-select"
521
  msgid "Please select notification status."
522
  msgstr "Lütfen bildirim durumunu seçiniz."
523
 
524
+ #: ../classes/es-register.php:226
525
  msgctxt "notification-enhanced-select"
526
  msgid "Do you want to delete this record?"
527
  msgstr "Bu kaydı silmek istiyor musunuz?"
528
 
529
+ #: ../classes/es-register.php:234
530
  msgctxt "sendmail-enhanced-select"
531
  msgid "Please select your mail subject."
532
  msgstr "Lütfen e-posta konusunu seçiniz."
533
 
534
+ #: ../classes/es-register.php:235
535
  msgctxt "sendmail-enhanced-select"
536
  msgid "Please select your mail type."
537
  msgstr "Lütfen e-posta türünü seçiniz."
538
 
539
+ #: ../classes/es-register.php:236
540
  msgctxt "sendmail-enhanced-select"
541
  msgid ""
542
  "Have you double checked your selected group? If so, let's go ahead and send "
545
  "Seçtiğiniz grubu ikinci kez kontrol ettiniz mi? Eğer öyle ise devam edin ve "
546
  "bunu gönderin."
547
 
548
+ #: ../classes/es-register.php:244
549
  msgctxt "sentmail-enhanced-select"
550
  msgid "Do you want to delete this record?"
551
  msgstr "Bu kaydı silmek istiyor musunuz?"
552
 
553
+ #: ../classes/es-register.php:245
554
  msgctxt "sentmail-enhanced-select"
555
  msgid "Do you want to delete all records except latest 10?"
556
  msgstr "Son 10 kayıt haricindeki tüm kayıtları silmek istiyor musunuz?"
557
 
558
+ #: ../classes/es-register.php:253
559
  msgctxt "cron-enhanced-select"
560
  msgid "Please select enter number of mails you want to send per hour/trigger."
561
  msgstr "Lütfen her saat başı gönderilecek e-posta adedini seçiniz."
562
 
563
+ #: ../classes/es-register.php:254
564
  msgctxt "cron-enhanced-select"
565
  msgid "Please enter the mail count, only number."
566
  msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
567
 
568
+ #: ../classes/es-register.php:267
569
  msgctxt "widget-page-enhanced-select"
570
  msgid "Please enter email address"
571
  msgstr "Lütfen e-posta adresi giriniz"
572
 
573
+ #: ../classes/es-register.php:268
574
  msgctxt "widget-page-enhanced-select"
575
  msgid "Successfully Subscribed."
576
  msgstr "Başarıyla Abone Edildi."
577
 
578
+ #: ../classes/es-register.php:269
579
  msgctxt "widget-page-enhanced-select"
580
  msgid ""
581
  "Your subscription was successful! Kindly check your mailbox and confirm your "
586
  "onaylayınız. Birkaç dakika içinde onay epostası gelmedi ise lütfen önemsiz "
587
  "epostalar kutusunu kontrol ediniz."
588
 
589
+ #: ../classes/es-register.php:270
590
  msgctxt "widget-page-enhanced-select"
591
  msgid "Email Address already exists!"
592
  msgstr "E-posta adresi zaten mevcut!"
593
 
594
+ #: ../classes/es-register.php:271
595
  msgctxt "widget-page-enhanced-select"
596
  msgid "Oops.. Unexpected error occurred."
597
  msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
598
 
599
+ #: ../classes/es-register.php:272
600
  msgctxt "widget-page-enhanced-select"
601
  msgid "Invalid email address"
602
  msgstr "Geçersiz e-posta adresi"
603
 
604
+ #: ../classes/es-register.php:273
605
  msgctxt "widget-page-enhanced-select"
606
  msgid "Please try after some time"
607
  msgstr "Biraz sonra tekrar deneyiniz"
608
 
609
+ #: ../classes/es-register.php:698
610
  msgid ""
611
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
612
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
618
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
619
  "</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
620
 
621
+ #: ../classes/es-register.php:1034
622
  #, php-format
623
  msgid "Email Subscribers version: <strong>%s</strong>"
624
  msgstr "Eposta Abone versiyonu: <strong>%s</strong>"
625
 
626
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
627
  msgid "Add new Template"
628
  msgstr "Yeni Şablon Ekle"
629
 
630
+ #: ../classes/es-register.php:1047
631
  msgid "Edit Templates"
632
  msgstr "Şablon Düzenle"
633
 
634
+ #: ../classes/es-register.php:1048
635
  msgid "New Templates"
636
  msgstr "Yeni Şablon"
637
 
638
+ #: ../classes/es-register.php:1050
639
  msgid "View Templates"
640
  msgstr "Şablon Görüntüle"
641
 
642
+ #: ../classes/es-register.php:1051
643
  msgid "Search Templates"
644
  msgstr "Şablon Ara"
645
 
646
+ #: ../classes/es-register.php:1052
647
  msgid "No Templates found"
648
  msgstr "Şablon bulunamadı"
649
 
650
+ #: ../classes/es-register.php:1053
651
  msgid "No Templates found in Trash"
652
  msgstr "Çöp kutusunda şablon bulunamadı"
653
 
654
+ #: ../classes/es-register.php:1056
655
  msgid "Thumbnail (For Visual Representation only)"
656
  msgstr "Küçük resim(Sadece görseli sunum için)"
657
 
658
+ #: ../classes/es-register.php:1057
659
  msgid "Set thumbnail"
660
  msgstr "Küçük resim ayarla"
661
 
662
+ #: ../classes/es-register.php:1094
663
  msgid "Template Type"
664
  msgstr "ŞAblon Tipi"
665
 
666
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
667
  msgid "Thumbnail"
668
  msgstr "Küçük Boy"
669
 
670
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
671
  #: sentmail/sentmail-show.php:121
672
  msgid "Preview"
673
  msgstr "Önizleme"
674
 
675
+ #: ../classes/es-register.php:1174
676
  msgid "Select your Email Template Type"
677
  msgstr "Şablon Tipini Seçiniz"
678
 
679
+ #: ../classes/es-register.php:1176
680
  msgid "Newsletter"
681
  msgstr "Bülten"
682
 
683
+ #: ../classes/es-register.php:1177
684
  msgid "Post Notification"
685
  msgstr "Gönderi Bildirimi"
686
 
687
+ #: ../classes/es-register.php:1226
688
  msgid "Preview Template"
689
  msgstr "Şablon Önizleme"
690
 
691
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
692
+ #: register.php:1261 ../classes/es-register.php:1269
693
  msgid "Available Keywords"
694
  msgstr "Mevcut Anahtar Kelimeler"
695
 
696
+ #: ../classes/es-register.php:1246
697
  #, php-format
698
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
699
  msgstr "<br/><br/>%s - Bülten İçin: {{NAME}}, {{EMAIL}}"
700
 
701
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
702
  msgid "Name"
703
  msgstr "Adınız"
704
 
705
+ #: ../classes/es-register.php:1311
706
  msgid "Email *"
707
  msgstr "E-posta Adresiniz*"
708
 
709
+ #: ../classes/es-register.php:1320 ../help/help.php:202
710
  msgid "Subscribe"
711
  msgstr "Üye Ol"
712
 
713
+ #: ../classes/es-register.php:1424
714
  msgid "Widget Title"
715
  msgstr "Bileşen Adı"
716
 
717
+ #: ../classes/es-register.php:1428
718
  msgid "Short description about subscription form"
719
  msgstr "Abone formu hakkında kısa açıklama"
720
 
721
+ #: ../classes/es-register.php:1432
722
  msgid "Display Name Field"
723
  msgstr "İsim Alanını Göster"
724
 
725
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
726
  #: settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
727
  msgid "YES"
728
  msgstr "EVET"
729
 
730
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
731
  #: settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
732
  msgid "NO"
733
  msgstr "HAYIR"
734
 
735
+ #: ../classes/es-register.php:1439
736
  msgid "Subscriber Group"
737
  msgstr "Abone Grubu"
738
 
1194
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1195
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1196
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1197
+ #: sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1198
  #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1199
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1200
  msgid "Select"
1260
  msgid "Disable email notification"
1261
  msgstr "E-posta bildirimi etkin değil"
1262
 
1263
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1264
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1265
  msgid "Save"
1266
  msgstr "Kaydet"
1267
 
1384
  msgid "Send email via cron job"
1385
  msgstr "Planlanmış gönderi ile e-posta gönder"
1386
 
1387
+ #: ../sendmail/sendmail.php:148
1388
  msgid "Select Subscribers group to Send Email"
1389
  msgstr "E-posta göndermek için Abone Grubunu seçiniz."
1390
 
1391
+ #: ../sendmail/sendmail.php:180
1392
  msgid "Recipients : 0 "
1393
  msgstr "Alıcılar : 0"
1394
 
1395
+ #: ../sendmail/sendmail.php:182
1396
  #, php-format
1397
  msgid "Recipients : %s"
1398
  msgstr "Alıcılar : %s"
1399
 
1400
+ #: ../sendmail/sendmail.php:185
1401
  msgid ""
1402
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1403
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1408
  "tipini değiştirmenizi öneririz.</strong><br>Daha fazlası için yardım "
1409
  "seçeneğine tıklayınız."
1410
 
1411
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1412
  msgid "Send Email"
1413
  msgstr "E-posta Gönder"
1414
 
1415
+ #: ../sendmail/sendmail.php:202
1416
  msgid "Reset"
1417
  msgstr "Sıfırla"
1418
 
1699
  msgid "Sent Report Subject"
1700
  msgstr "Gönderilen Rapor Konusu"
1701
 
 
 
 
 
1702
  #: ../settings/settings-edit.php:172
1703
  msgid "Sent Report Content"
1704
  msgstr "Gönderilen Rapor İçeriği"
1705
 
 
 
 
 
 
 
 
 
1706
  #: ../settings/settings-edit.php:184
1707
  msgid "Double Opt-In Email Subject (Confirmation Email)"
1708
  msgstr "Çift Onay Email Konusu (Onay E-postası)"
1904
  "Bu sizin planlanmış gönderi URL adresinizdir. Bu alan okunabilir bir alandır "
1905
  "ve düzenleme yapılmaması önerilir."
1906
 
1907
+ #: ../settings/settings-edit.php:377
1908
  msgid "Email Count"
1909
  msgstr "E-posta sayısı"
1910
 
1911
+ #: ../settings/settings-edit.php:378
1912
  msgid "Number of emails that you want to trigger per hour."
1913
  msgstr "Her saat bildirim yapmak istediğiniz e-postaların adedi"
1914
 
1915
+ #: ../settings/settings-edit.php:383
1916
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1917
  msgstr ""
1918
  "(Hosting panelinizin limitleri var. Her saat için 50 eposta gönderimini "
1919
  "öneriyoruz.)"
1920
 
1921
+ #: ../settings/settings-edit.php:388
1922
  msgid "Cron Report"
1923
  msgstr "Planlanmış İş (CRON) Raporu"
1924
 
1925
+ #: ../settings/settings-edit.php:389
1926
  msgid ""
1927
  "Email to admin whenever a cron URL is triggered from your server.<br "
1928
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1931
  "eposta gönder. <br />Kullanılabilir Anahtar Kelimeler: {{DATE}}, {{SUBJECT}},"
1932
  " {{COUNT}}"
1933
 
1934
+ #: ../settings/settings-edit.php:400
1935
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1936
  msgstr "Planlanmış gönderi (Cron / Otomatik e-postalar) nedir ve nasıl ayarlanır?"
1937
 
1938
+ #: ../settings/settings-edit.php:401
1939
  msgid ""
1940
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1941
  "schedule-cron-emails/?"
1947
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Planlanmış "
1948
  "iş (CRON) nedir?</a>"
1949
 
1950
+ #: ../settings/settings-edit.php:402
1951
  msgid ""
1952
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1953
  "schedule-cron-emails-in-cpanel/?"
1959
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cpanel "
1960
  "için planlanmış iş (CRON) ayarı.</a>"
1961
 
1962
+ #: ../settings/settings-edit.php:403
1963
  msgid ""
1964
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1965
  "schedule-cron-emails-in-parallels-plesk/?"
1971
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\"> Plesk "
1972
  "için planlanmış iş (CRON) ayarı.</a>"
1973
 
1974
+ #: ../settings/settings-edit.php:404
1975
  msgid ""
1976
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1977
  "if-hosting-doesnt-support-cron-jobs/?"
1983
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1984
  "firmanız planlanmış işlere (CRON) izin veriyor mu?</a>"
1985
 
1986
+ #: ../settings/settings-edit.php:520
1987
  msgid "Please enter sender of notifications from name."
1988
  msgstr "Bildirimlerin hangi isimden gönderileceğini giriniz."
1989
 
1990
+ #: ../settings/settings-edit.php:525
1991
  msgid "Please enter sender of notifications from email."
1992
  msgstr "Bildirimlerin hangi E-Posta adresinden gönderileceğini giriniz."
1993
 
1994
+ #: ../settings/settings-edit.php:584
1995
  msgid "Settings Saved."
1996
  msgstr "Ayarlar Kaydedildi."
1997
 
1998
+ #: ../settings/settings-edit.php:587
1999
  msgid "Oops, unable to update."
2000
  msgstr "Bir dakika, güncelleme yapılamadı."
2001
 
languages/email-subscribers.pot CHANGED
@@ -2,10 +2,10 @@
2
  #, fuzzy
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 3.5.3\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
- "POT-Revision-Date: Mon Jul 02 2018 10:53:07 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
@@ -68,181 +68,190 @@ msgstr ""
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:788
73
  msgid "Email Subscribers"
74
  msgstr ""
75
 
76
- #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
77
  #: /subscribers/view-subscriber-show.php:242
78
  msgid "Subscribers"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
82
- #: register.php:776 ../classes/es-register.php:777 ../classes/es-register.php:782
 
83
  msgid "Templates"
84
  msgstr ""
85
 
86
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
87
  #: 370 ../notification/notification-show.php:52
88
  msgid "Post Notifications"
89
  msgstr ""
90
 
91
- #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
92
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
93
  msgid "Newsletters"
94
  msgstr ""
95
 
96
- #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
97
  #: /settings/settings-edit.php:42
98
  msgid "Settings"
99
  msgstr ""
100
 
101
- #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
102
  #: /sentmail/sentmail-show.php:93
103
  msgid "Reports"
104
  msgstr ""
105
 
106
- #: ../classes/es-register.php:183
107
  msgid "Help & Info"
108
  msgstr ""
109
 
110
- #: ../classes/es-register.php:184
111
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
112
  msgstr ""
113
 
114
- #: ../classes/es-register.php:195
 
 
 
 
 
 
 
 
115
  msgctxt "view-subscriber-enhanced-select"
116
  msgid "Please enter subscriber email address."
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:196
120
  msgctxt "view-subscriber-enhanced-select"
121
  msgid "Please select subscriber email status."
122
  msgstr ""
123
 
124
- #: ../classes/es-register.php:197
125
  msgctxt "view-subscriber-enhanced-select"
126
  msgid "Please select or create group for this subscriber."
127
  msgstr ""
128
 
129
- #: ../classes/es-register.php:198
130
  msgctxt "view-subscriber-enhanced-select"
131
  msgid "Do you want to delete this record?"
132
  msgstr ""
133
 
134
- #: ../classes/es-register.php:199
135
  msgctxt "view-subscriber-enhanced-select"
136
  msgid "Please select the bulk action."
137
  msgstr ""
138
 
139
- #: ../classes/es-register.php:200
140
  msgctxt "view-subscriber-enhanced-select"
141
  msgid "Are you sure you want to delete selected records?"
142
  msgstr ""
143
 
144
- #: ../classes/es-register.php:201
145
  msgctxt "view-subscriber-enhanced-select"
146
  msgid ""
147
  "Do you want to resend confirmation email? Also please note, this will update "
148
  "subscriber current status to 'Unconfirmed'."
149
  msgstr ""
150
 
151
- #: ../classes/es-register.php:202
152
  msgctxt "view-subscriber-enhanced-select"
153
  msgid "Please select new subscriber group."
154
  msgstr ""
155
 
156
- #: ../classes/es-register.php:203
157
  msgctxt "view-subscriber-enhanced-select"
158
  msgid "Please select new status for subscribers"
159
  msgstr ""
160
 
161
- #: ../classes/es-register.php:204
162
  msgctxt "view-subscriber-enhanced-select"
163
  msgid "Do you want to update subscribers group?"
164
  msgstr ""
165
 
166
- #: ../classes/es-register.php:205
167
  msgctxt "view-subscriber-enhanced-select"
168
  msgid "Do you want to update subscribers status?"
169
  msgstr ""
170
 
171
- #: ../classes/es-register.php:206
172
  msgctxt "view-subscriber-enhanced-select"
173
  msgid ""
174
  "Please select only csv file. Please check official website for csv structure."
175
  "."
176
  msgstr ""
177
 
178
- #: ../classes/es-register.php:214
179
  msgctxt "notification-enhanced-select"
180
  msgid "Please select subscribers group."
181
  msgstr ""
182
 
183
- #: ../classes/es-register.php:215
184
  msgctxt "notification-enhanced-select"
185
  msgid "Please select notification mail subject. Use templates menu to create new."
186
  msgstr ""
187
 
188
- #: ../classes/es-register.php:216
189
  msgctxt "notification-enhanced-select"
190
  msgid "Please select notification status."
191
  msgstr ""
192
 
193
- #: ../classes/es-register.php:217
194
  msgctxt "notification-enhanced-select"
195
  msgid "Do you want to delete this record?"
196
  msgstr ""
197
 
198
- #: ../classes/es-register.php:225
199
  msgctxt "sendmail-enhanced-select"
200
  msgid "Please select your mail subject."
201
  msgstr ""
202
 
203
- #: ../classes/es-register.php:226
204
  msgctxt "sendmail-enhanced-select"
205
  msgid "Please select your mail type."
206
  msgstr ""
207
 
208
- #: ../classes/es-register.php:227
209
  msgctxt "sendmail-enhanced-select"
210
  msgid ""
211
  "Have you double checked your selected group? If so, let's go ahead and send "
212
  "this."
213
  msgstr ""
214
 
215
- #: ../classes/es-register.php:235
216
  msgctxt "sentmail-enhanced-select"
217
  msgid "Do you want to delete this record?"
218
  msgstr ""
219
 
220
- #: ../classes/es-register.php:236
221
  msgctxt "sentmail-enhanced-select"
222
  msgid "Do you want to delete all records except latest 10?"
223
  msgstr ""
224
 
225
- #: ../classes/es-register.php:244
226
  msgctxt "cron-enhanced-select"
227
  msgid "Please select enter number of mails you want to send per hour/trigger."
228
  msgstr ""
229
 
230
- #: ../classes/es-register.php:245
231
  msgctxt "cron-enhanced-select"
232
  msgid "Please enter the mail count, only number."
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,128 +259,197 @@ msgid ""
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:727
274
  msgid ""
275
- "<b style=\"text-color: #000000\">Want to protect your email list using captcha?"
276
- "</b>"
 
 
277
  msgstr ""
278
 
279
- #: ../classes/es-register.php:728
280
- msgid "Here's how"
281
  msgstr ""
282
 
283
- #: ../classes/es-register.php:728
284
- msgid "Not interested. Dismiss this."
 
285
  msgstr ""
286
 
287
- #: ../classes/es-register.php:753
 
 
 
 
 
 
 
 
288
  msgid ""
289
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
290
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
291
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
292
- "</a> rating. A huge thank you from Icegram in advance!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  msgstr ""
294
 
295
- #: ../classes/es-register.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  #, php-format
297
  msgid "Email Subscribers version: <strong>%s</strong>"
298
  msgstr ""
299
 
300
- #: ../classes/es-register.php:778 ../classes/es-register.php:779
301
  msgid "Add new Template"
302
  msgstr ""
303
 
304
- #: ../classes/es-register.php:780
305
  msgid "Edit Templates"
306
  msgstr ""
307
 
308
- #: ../classes/es-register.php:781
309
  msgid "New Templates"
310
  msgstr ""
311
 
312
- #: ../classes/es-register.php:783
313
  msgid "View Templates"
314
  msgstr ""
315
 
316
- #: ../classes/es-register.php:784
317
  msgid "Search Templates"
318
  msgstr ""
319
 
320
- #: ../classes/es-register.php:785
321
  msgid "No Templates found"
322
  msgstr ""
323
 
324
- #: ../classes/es-register.php:786
325
  msgid "No Templates found in Trash"
326
  msgstr ""
327
 
328
- #: ../classes/es-register.php:789
329
  msgid "Thumbnail (For Visual Representation only)"
330
  msgstr ""
331
 
332
- #: ../classes/es-register.php:790
333
  msgid "Set thumbnail"
334
  msgstr ""
335
 
336
- #: ../classes/es-register.php:827
337
  msgid "Template Type"
338
  msgstr ""
339
 
340
- #: ../classes/es-register.php:828 ../settings/settings-edit.php:124
341
  msgid "Thumbnail"
342
  msgstr ""
343
 
344
- #: ../classes/es-register.php:878 ../sentmail/sentmail-show.php:108 ..
345
  #: /sentmail/sentmail-show.php:121
346
  msgid "Preview"
347
  msgstr ""
348
 
349
- #: ../classes/es-register.php:900
350
  #, php-format
351
  msgid "%s for Post Notification: {{POSTTITLE}}"
352
  msgstr ""
353
 
354
- #: ../classes/es-register.php:900
355
  msgid "Available Keyword"
356
  msgstr ""
357
 
358
- #: ../classes/es-register.php:907
359
  msgid "Select your Email Template Type"
360
  msgstr ""
361
 
362
- #: ../classes/es-register.php:909
363
  msgid "Newsletter"
364
  msgstr ""
365
 
366
- #: ../classes/es-register.php:910
367
  msgid "Post Notification"
368
  msgstr ""
369
 
370
- #: ../classes/es-register.php:959
371
  msgid "Preview Template"
372
  msgstr ""
373
 
374
- #: ../classes/es-register.php:978 ../classes/es-register.php:994
375
  #, php-format
376
  msgid ""
377
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -379,56 +457,56 @@ msgid ""
379
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
380
  msgstr ""
381
 
382
- #: ../classes/es-register.php:978 ../classes/es-register.php:979 ../classes/es-
383
- #: register.php:994 ../classes/es-register.php:1002
384
  msgid "Available Keywords"
385
  msgstr ""
386
 
387
- #: ../classes/es-register.php:979
388
  #, php-format
389
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
390
  msgstr ""
391
 
392
- #: ../classes/es-register.php:1002
393
  #, php-format
394
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
395
  msgstr ""
396
 
397
- #: ../classes/es-register.php:1037 ../subscribers/view-subscriber-show.php:289
398
  msgid "Name"
399
  msgstr ""
400
 
401
- #: ../classes/es-register.php:1044
402
  msgid "Email *"
403
  msgstr ""
404
 
405
- #: ../classes/es-register.php:1053 ../help/help.php:202
406
  msgid "Subscribe"
407
  msgstr ""
408
 
409
- #: ../classes/es-register.php:1157
410
  msgid "Widget Title"
411
  msgstr ""
412
 
413
- #: ../classes/es-register.php:1161
414
  msgid "Short description about subscription form"
415
  msgstr ""
416
 
417
- #: ../classes/es-register.php:1165
418
  msgid "Display Name Field"
419
  msgstr ""
420
 
421
- #: ../classes/es-register.php:1167 ../settings/settings-edit.php:143 ..
422
  #: /settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
423
  msgid "YES"
424
  msgstr ""
425
 
426
- #: ../classes/es-register.php:1168 ../settings/settings-edit.php:144 ..
427
  #: /settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
428
  msgid "NO"
429
  msgstr ""
430
 
431
- #: ../classes/es-register.php:1172
432
  msgid "Subscriber Group"
433
  msgstr ""
434
 
@@ -877,7 +955,7 @@ msgstr ""
877
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
878
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
879
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
880
- #: /sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
881
  #: /subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
882
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
883
  msgid "Select"
@@ -943,8 +1021,8 @@ msgstr ""
943
  msgid "Disable email notification"
944
  msgstr ""
945
 
946
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
947
- #: 291 ../subscribers/view-subscriber-edit.php:191
948
  msgid "Save"
949
  msgstr ""
950
 
@@ -1065,31 +1143,31 @@ msgstr ""
1065
  msgid "Send email via cron job"
1066
  msgstr ""
1067
 
1068
- #: ../sendmail/sendmail.php:147
1069
  msgid "Select Subscribers group to Send Email"
1070
  msgstr ""
1071
 
1072
- #: ../sendmail/sendmail.php:179
1073
  msgid "Recipients : 0 "
1074
  msgstr ""
1075
 
1076
- #: ../sendmail/sendmail.php:181
1077
  #, php-format
1078
  msgid "Recipients : %s"
1079
  msgstr ""
1080
 
1081
- #: ../sendmail/sendmail.php:184
1082
  msgid ""
1083
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1084
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1085
  "</strong><br>Click on Help for more information."
1086
  msgstr ""
1087
 
1088
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1089
  msgid "Send Email"
1090
  msgstr ""
1091
 
1092
- #: ../sendmail/sendmail.php:201
1093
  msgid "Reset"
1094
  msgstr ""
1095
 
@@ -1201,7 +1279,7 @@ msgid ""
1201
  "button to delete all reports except latest 10."
1202
  msgstr ""
1203
 
1204
- #: ../sentmail/sentmail-show.php:212
1205
  msgid ""
1206
  "<strong>Note:</strong> If you delete record for the emails with Status = "
1207
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
@@ -1363,7 +1441,9 @@ msgid "Sent Report Subject"
1363
  msgstr ""
1364
 
1365
  #: ../settings/settings-edit.php:166
1366
- msgid "Subject for the email report which will be sent to admin."
 
 
1367
  msgstr ""
1368
 
1369
  #: ../settings/settings-edit.php:172
@@ -1373,7 +1453,8 @@ msgstr ""
1373
  #: ../settings/settings-edit.php:173
1374
  msgid ""
1375
  "Content for the email report which will be sent to admin.<br />Available "
1376
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
 
1377
  msgstr ""
1378
 
1379
  #: ../settings/settings-edit.php:184
@@ -1547,33 +1628,37 @@ msgid ""
1547
  "modify it."
1548
  msgstr ""
1549
 
1550
- #: ../settings/settings-edit.php:376
1551
  msgid "Email Count"
1552
  msgstr ""
1553
 
1554
- #: ../settings/settings-edit.php:377
1555
  msgid "Number of emails that you want to trigger per hour."
1556
  msgstr ""
1557
 
1558
- #: ../settings/settings-edit.php:382
1559
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1560
  msgstr ""
1561
 
1562
- #: ../settings/settings-edit.php:387
1563
  msgid "Cron Report"
1564
  msgstr ""
1565
 
1566
- #: ../settings/settings-edit.php:388
1567
  msgid ""
1568
  "Email to admin whenever a cron URL is triggered from your server.<br "
1569
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1570
  msgstr ""
1571
 
1572
- #: ../settings/settings-edit.php:398
 
 
 
 
1573
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1574
  msgstr ""
1575
 
1576
- #: ../settings/settings-edit.php:399
1577
  msgid ""
1578
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1579
  "schedule-cron-emails/?"
@@ -1581,7 +1666,7 @@ msgid ""
1581
  "Cron?</a>"
1582
  msgstr ""
1583
 
1584
- #: ../settings/settings-edit.php:400
1585
  msgid ""
1586
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1587
  "schedule-cron-emails-in-cpanel/?"
@@ -1589,7 +1674,7 @@ msgid ""
1589
  "job in cPanel</a>"
1590
  msgstr ""
1591
 
1592
- #: ../settings/settings-edit.php:401
1593
  msgid ""
1594
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1595
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -1597,7 +1682,7 @@ msgid ""
1597
  "job in Plesk</a>"
1598
  msgstr ""
1599
 
1600
- #: ../settings/settings-edit.php:402
1601
  msgid ""
1602
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1603
  "if-hosting-doesnt-support-cron-jobs/?"
@@ -1605,23 +1690,23 @@ msgid ""
1605
  "does not support cron jobs?</a>"
1606
  msgstr ""
1607
 
1608
- #: ../settings/settings-edit.php:517
1609
  msgid "Please enter sender of notifications from name."
1610
  msgstr ""
1611
 
1612
- #: ../settings/settings-edit.php:522
1613
  msgid "Please enter sender of notifications from email."
1614
  msgstr ""
1615
 
1616
- #: ../settings/settings-edit.php:566
1617
  msgid "Please enter valid email count."
1618
  msgstr ""
1619
 
1620
- #: ../settings/settings-edit.php:580
1621
  msgid "Settings Saved."
1622
  msgstr ""
1623
 
1624
- #: ../settings/settings-edit.php:583
1625
  msgid "Oops, unable to update."
1626
  msgstr ""
1627
 
@@ -2069,7 +2154,146 @@ msgid ""
2069
  "notify subscribers about new blog posts once it is published."
2070
  msgstr ""
2071
 
2072
- #: ../email-subscribers.php:95
2073
  msgctxt "timezone date format"
2074
  msgid "Y-m-d H:i:s"
2075
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  #, fuzzy
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
+ "POT-Revision-Date: Fri Jul 20 2018 18:41:42 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:166 ../classes/es-register.php:167 ../classes/es-
72
+ #: register.php:1055
73
  msgid "Email Subscribers"
74
  msgstr ""
75
 
76
+ #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
77
  #: /subscribers/view-subscriber-show.php:242
78
  msgid "Subscribers"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
82
+ #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
83
+ #: 1049
84
  msgid "Templates"
85
  msgstr ""
86
 
87
+ #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
88
  #: 370 ../notification/notification-show.php:52
89
  msgid "Post Notifications"
90
  msgstr ""
91
 
92
+ #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
93
  #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
94
  msgid "Newsletters"
95
  msgstr ""
96
 
97
+ #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
98
  #: /settings/settings-edit.php:42
99
  msgid "Settings"
100
  msgstr ""
101
 
102
+ #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
103
  #: /sentmail/sentmail-show.php:93
104
  msgid "Reports"
105
  msgstr ""
106
 
107
+ #: ../classes/es-register.php:187
108
  msgid "Help & Info"
109
  msgstr ""
110
 
111
+ #: ../classes/es-register.php:188
112
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
113
  msgstr ""
114
 
115
+ #: ../classes/es-register.php:191
116
+ msgid "Go Pro"
117
+ msgstr ""
118
+
119
+ #: ../classes/es-register.php:192
120
+ msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
121
+ msgstr ""
122
+
123
+ #: ../classes/es-register.php:204
124
  msgctxt "view-subscriber-enhanced-select"
125
  msgid "Please enter subscriber email address."
126
  msgstr ""
127
 
128
+ #: ../classes/es-register.php:205
129
  msgctxt "view-subscriber-enhanced-select"
130
  msgid "Please select subscriber email status."
131
  msgstr ""
132
 
133
+ #: ../classes/es-register.php:206
134
  msgctxt "view-subscriber-enhanced-select"
135
  msgid "Please select or create group for this subscriber."
136
  msgstr ""
137
 
138
+ #: ../classes/es-register.php:207
139
  msgctxt "view-subscriber-enhanced-select"
140
  msgid "Do you want to delete this record?"
141
  msgstr ""
142
 
143
+ #: ../classes/es-register.php:208
144
  msgctxt "view-subscriber-enhanced-select"
145
  msgid "Please select the bulk action."
146
  msgstr ""
147
 
148
+ #: ../classes/es-register.php:209
149
  msgctxt "view-subscriber-enhanced-select"
150
  msgid "Are you sure you want to delete selected records?"
151
  msgstr ""
152
 
153
+ #: ../classes/es-register.php:210
154
  msgctxt "view-subscriber-enhanced-select"
155
  msgid ""
156
  "Do you want to resend confirmation email? Also please note, this will update "
157
  "subscriber current status to 'Unconfirmed'."
158
  msgstr ""
159
 
160
+ #: ../classes/es-register.php:211
161
  msgctxt "view-subscriber-enhanced-select"
162
  msgid "Please select new subscriber group."
163
  msgstr ""
164
 
165
+ #: ../classes/es-register.php:212
166
  msgctxt "view-subscriber-enhanced-select"
167
  msgid "Please select new status for subscribers"
168
  msgstr ""
169
 
170
+ #: ../classes/es-register.php:213
171
  msgctxt "view-subscriber-enhanced-select"
172
  msgid "Do you want to update subscribers group?"
173
  msgstr ""
174
 
175
+ #: ../classes/es-register.php:214
176
  msgctxt "view-subscriber-enhanced-select"
177
  msgid "Do you want to update subscribers status?"
178
  msgstr ""
179
 
180
+ #: ../classes/es-register.php:215
181
  msgctxt "view-subscriber-enhanced-select"
182
  msgid ""
183
  "Please select only csv file. Please check official website for csv structure."
184
  "."
185
  msgstr ""
186
 
187
+ #: ../classes/es-register.php:223
188
  msgctxt "notification-enhanced-select"
189
  msgid "Please select subscribers group."
190
  msgstr ""
191
 
192
+ #: ../classes/es-register.php:224
193
  msgctxt "notification-enhanced-select"
194
  msgid "Please select notification mail subject. Use templates menu to create new."
195
  msgstr ""
196
 
197
+ #: ../classes/es-register.php:225
198
  msgctxt "notification-enhanced-select"
199
  msgid "Please select notification status."
200
  msgstr ""
201
 
202
+ #: ../classes/es-register.php:226
203
  msgctxt "notification-enhanced-select"
204
  msgid "Do you want to delete this record?"
205
  msgstr ""
206
 
207
+ #: ../classes/es-register.php:234
208
  msgctxt "sendmail-enhanced-select"
209
  msgid "Please select your mail subject."
210
  msgstr ""
211
 
212
+ #: ../classes/es-register.php:235
213
  msgctxt "sendmail-enhanced-select"
214
  msgid "Please select your mail type."
215
  msgstr ""
216
 
217
+ #: ../classes/es-register.php:236
218
  msgctxt "sendmail-enhanced-select"
219
  msgid ""
220
  "Have you double checked your selected group? If so, let's go ahead and send "
221
  "this."
222
  msgstr ""
223
 
224
+ #: ../classes/es-register.php:244
225
  msgctxt "sentmail-enhanced-select"
226
  msgid "Do you want to delete this record?"
227
  msgstr ""
228
 
229
+ #: ../classes/es-register.php:245
230
  msgctxt "sentmail-enhanced-select"
231
  msgid "Do you want to delete all records except latest 10?"
232
  msgstr ""
233
 
234
+ #: ../classes/es-register.php:253
235
  msgctxt "cron-enhanced-select"
236
  msgid "Please select enter number of mails you want to send per hour/trigger."
237
  msgstr ""
238
 
239
+ #: ../classes/es-register.php:254
240
  msgctxt "cron-enhanced-select"
241
  msgid "Please enter the mail count, only number."
242
  msgstr ""
243
 
244
+ #: ../classes/es-register.php:267
245
  msgctxt "widget-page-enhanced-select"
246
  msgid "Please enter email address"
247
  msgstr ""
248
 
249
+ #: ../classes/es-register.php:268
250
  msgctxt "widget-page-enhanced-select"
251
  msgid "Successfully Subscribed."
252
  msgstr ""
253
 
254
+ #: ../classes/es-register.php:269
255
  msgctxt "widget-page-enhanced-select"
256
  msgid ""
257
  "Your subscription was successful! Kindly check your mailbox and confirm your "
259
  "spam/junk folder."
260
  msgstr ""
261
 
262
+ #: ../classes/es-register.php:270
263
  msgctxt "widget-page-enhanced-select"
264
  msgid "Email Address already exists!"
265
  msgstr ""
266
 
267
+ #: ../classes/es-register.php:271
268
  msgctxt "widget-page-enhanced-select"
269
  msgid "Oops.. Unexpected error occurred."
270
  msgstr ""
271
 
272
+ #: ../classes/es-register.php:272
273
  msgctxt "widget-page-enhanced-select"
274
  msgid "Invalid email address"
275
  msgstr ""
276
 
277
+ #: ../classes/es-register.php:273
278
  msgctxt "widget-page-enhanced-select"
279
  msgid "Please try after some time"
280
  msgstr ""
281
 
282
+ #: ../classes/es-register.php:698
283
  msgid ""
284
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
285
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
286
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
287
+ "</a> rating. A huge thank you from Icegram in advance!"
288
  msgstr ""
289
 
290
+ #: ../classes/es-register.php:699
291
+ msgid "No, I don't like it"
292
  msgstr ""
293
 
294
+ #: ../classes/es-register.php:705
295
+ msgctxt "timezone date format"
296
+ msgid "Y-m-d"
297
  msgstr ""
298
 
299
+ #: ../classes/es-register.php:850
300
+ msgid "What do you hate about list building and email marketing?"
301
+ msgstr ""
302
+
303
+ #: ../classes/es-register.php:851
304
+ msgid "Hey, glad to see you!"
305
+ msgstr ""
306
+
307
+ #: ../classes/es-register.php:852
308
  msgid ""
309
+ "I am on a daring quest to solve your biggest problems around list building "
310
+ "and email marketing. "
311
+ msgstr ""
312
+
313
+ #: ../classes/es-register.php:853
314
+ msgid ""
315
+ "So tell me, when it comes to list building and email marketing, what's your "
316
+ "biggest challenge? What's blocking your progress? "
317
+ msgstr ""
318
+
319
+ #: ../classes/es-register.php:858
320
+ msgid "And what's another big challenge? "
321
+ msgstr ""
322
+
323
+ #: ../classes/es-register.php:862
324
+ msgid "Send my problems..."
325
+ msgstr ""
326
+
327
+ #: ../classes/es-register.php:863
328
+ msgid "No, I don't have problems"
329
+ msgstr ""
330
+
331
+ #: ../classes/es-register.php:865
332
+ msgid "Fill the above field first"
333
+ msgstr ""
334
+
335
+ #: ../classes/es-register.php:874
336
+ msgid "Gosh... I hear you mate... "
337
+ msgstr ""
338
+
339
+ #: ../classes/es-register.php:875
340
+ msgid ""
341
+ "Enter your email below, and you will be the first to know when we solve "
342
+ "those problems. "
343
+ msgstr ""
344
+
345
+ #: ../classes/es-register.php:879
346
+ msgid "Nah, I don't like improvements"
347
  msgstr ""
348
 
349
+ #: ../classes/es-register.php:893
350
+ msgid "I got you."
351
+ msgstr ""
352
+
353
+ #: ../classes/es-register.php:894
354
+ msgid "Will do everything I can to help you. "
355
+ msgstr ""
356
+
357
+ #: ../classes/es-register.php:896 ../classes/es-register.php:904
358
+ msgid "Later. "
359
+ msgstr ""
360
+
361
+ #: ../classes/es-register.php:898 ../classes/es-register.php:906
362
+ msgid "Andrea Julio "
363
+ msgstr ""
364
+
365
+ #: ../classes/es-register.php:902
366
+ msgid "No issues, have a nice day!"
367
+ msgstr ""
368
+
369
+ #: ../classes/es-register.php:1020
370
+ msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
371
+ msgstr ""
372
+
373
+ #: ../classes/es-register.php:1034
374
  #, php-format
375
  msgid "Email Subscribers version: <strong>%s</strong>"
376
  msgstr ""
377
 
378
+ #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
379
  msgid "Add new Template"
380
  msgstr ""
381
 
382
+ #: ../classes/es-register.php:1047
383
  msgid "Edit Templates"
384
  msgstr ""
385
 
386
+ #: ../classes/es-register.php:1048
387
  msgid "New Templates"
388
  msgstr ""
389
 
390
+ #: ../classes/es-register.php:1050
391
  msgid "View Templates"
392
  msgstr ""
393
 
394
+ #: ../classes/es-register.php:1051
395
  msgid "Search Templates"
396
  msgstr ""
397
 
398
+ #: ../classes/es-register.php:1052
399
  msgid "No Templates found"
400
  msgstr ""
401
 
402
+ #: ../classes/es-register.php:1053
403
  msgid "No Templates found in Trash"
404
  msgstr ""
405
 
406
+ #: ../classes/es-register.php:1056
407
  msgid "Thumbnail (For Visual Representation only)"
408
  msgstr ""
409
 
410
+ #: ../classes/es-register.php:1057
411
  msgid "Set thumbnail"
412
  msgstr ""
413
 
414
+ #: ../classes/es-register.php:1094
415
  msgid "Template Type"
416
  msgstr ""
417
 
418
+ #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
419
  msgid "Thumbnail"
420
  msgstr ""
421
 
422
+ #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
423
  #: /sentmail/sentmail-show.php:121
424
  msgid "Preview"
425
  msgstr ""
426
 
427
+ #: ../classes/es-register.php:1167
428
  #, php-format
429
  msgid "%s for Post Notification: {{POSTTITLE}}"
430
  msgstr ""
431
 
432
+ #: ../classes/es-register.php:1167
433
  msgid "Available Keyword"
434
  msgstr ""
435
 
436
+ #: ../classes/es-register.php:1174
437
  msgid "Select your Email Template Type"
438
  msgstr ""
439
 
440
+ #: ../classes/es-register.php:1176
441
  msgid "Newsletter"
442
  msgstr ""
443
 
444
+ #: ../classes/es-register.php:1177
445
  msgid "Post Notification"
446
  msgstr ""
447
 
448
+ #: ../classes/es-register.php:1226
449
  msgid "Preview Template"
450
  msgstr ""
451
 
452
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
453
  #, php-format
454
  msgid ""
455
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
457
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
458
  msgstr ""
459
 
460
+ #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
461
+ #: register.php:1261 ../classes/es-register.php:1269
462
  msgid "Available Keywords"
463
  msgstr ""
464
 
465
+ #: ../classes/es-register.php:1246
466
  #, php-format
467
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
468
  msgstr ""
469
 
470
+ #: ../classes/es-register.php:1269
471
  #, php-format
472
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
473
  msgstr ""
474
 
475
+ #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
476
  msgid "Name"
477
  msgstr ""
478
 
479
+ #: ../classes/es-register.php:1311
480
  msgid "Email *"
481
  msgstr ""
482
 
483
+ #: ../classes/es-register.php:1320 ../help/help.php:202
484
  msgid "Subscribe"
485
  msgstr ""
486
 
487
+ #: ../classes/es-register.php:1424
488
  msgid "Widget Title"
489
  msgstr ""
490
 
491
+ #: ../classes/es-register.php:1428
492
  msgid "Short description about subscription form"
493
  msgstr ""
494
 
495
+ #: ../classes/es-register.php:1432
496
  msgid "Display Name Field"
497
  msgstr ""
498
 
499
+ #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
500
  #: /settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
501
  msgid "YES"
502
  msgstr ""
503
 
504
+ #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
505
  #: /settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
506
  msgid "NO"
507
  msgstr ""
508
 
509
+ #: ../classes/es-register.php:1439
510
  msgid "Subscriber Group"
511
  msgstr ""
512
 
955
  #: ../notification/notification-add.php:125 ../notification/notification-add.php:
956
  #: 149 ../notification/notification-edit.php:136 ../notification/notification-
957
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
958
+ #: /sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
959
  #: /subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
960
  #: import.php:193 ../subscribers/view-subscriber-sync.php:119
961
  msgid "Select"
1021
  msgid "Disable email notification"
1022
  msgstr ""
1023
 
1024
+ #: ../notification/notification-add.php:255 ../notification/notification-edit.php:
1025
+ #: 292 ../subscribers/view-subscriber-edit.php:191
1026
  msgid "Save"
1027
  msgstr ""
1028
 
1143
  msgid "Send email via cron job"
1144
  msgstr ""
1145
 
1146
+ #: ../sendmail/sendmail.php:148
1147
  msgid "Select Subscribers group to Send Email"
1148
  msgstr ""
1149
 
1150
+ #: ../sendmail/sendmail.php:180
1151
  msgid "Recipients : 0 "
1152
  msgstr ""
1153
 
1154
+ #: ../sendmail/sendmail.php:182
1155
  #, php-format
1156
  msgid "Recipients : %s"
1157
  msgstr ""
1158
 
1159
+ #: ../sendmail/sendmail.php:185
1160
  msgid ""
1161
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1162
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1163
  "</strong><br>Click on Help for more information."
1164
  msgstr ""
1165
 
1166
+ #: ../sendmail/sendmail.php:197 ../sendmail/sendmail.php:199
1167
  msgid "Send Email"
1168
  msgstr ""
1169
 
1170
+ #: ../sendmail/sendmail.php:202
1171
  msgid "Reset"
1172
  msgstr ""
1173
 
1279
  "button to delete all reports except latest 10."
1280
  msgstr ""
1281
 
1282
+ #: ../sentmail/sentmail-show.php:216
1283
  msgid ""
1284
  "<strong>Note:</strong> If you delete record for the emails with Status = "
1285
  "<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will be "
1441
  msgstr ""
1442
 
1443
  #: ../settings/settings-edit.php:166
1444
+ msgid ""
1445
+ "Subject for the email report which will be sent to admin.<br />(Will be sent "
1446
+ "only if sending email via immediately)"
1447
  msgstr ""
1448
 
1449
  #: ../settings/settings-edit.php:172
1453
  #: ../settings/settings-edit.php:173
1454
  msgid ""
1455
  "Content for the email report which will be sent to admin.<br />Available "
1456
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
1457
+ "sent only if sending email via immediately)"
1458
  msgstr ""
1459
 
1460
  #: ../settings/settings-edit.php:184
1628
  "modify it."
1629
  msgstr ""
1630
 
1631
+ #: ../settings/settings-edit.php:377
1632
  msgid "Email Count"
1633
  msgstr ""
1634
 
1635
+ #: ../settings/settings-edit.php:378
1636
  msgid "Number of emails that you want to trigger per hour."
1637
  msgstr ""
1638
 
1639
+ #: ../settings/settings-edit.php:383
1640
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1641
  msgstr ""
1642
 
1643
+ #: ../settings/settings-edit.php:388
1644
  msgid "Cron Report"
1645
  msgstr ""
1646
 
1647
+ #: ../settings/settings-edit.php:389
1648
  msgid ""
1649
  "Email to admin whenever a cron URL is triggered from your server.<br "
1650
  "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1651
  msgstr ""
1652
 
1653
+ #: ../settings/settings-edit.php:393
1654
+ msgid "Enabling this will send a cron report email on every successfully cron hit"
1655
+ msgstr ""
1656
+
1657
+ #: ../settings/settings-edit.php:400
1658
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1659
  msgstr ""
1660
 
1661
+ #: ../settings/settings-edit.php:401
1662
  msgid ""
1663
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1664
  "schedule-cron-emails/?"
1666
  "Cron?</a>"
1667
  msgstr ""
1668
 
1669
+ #: ../settings/settings-edit.php:402
1670
  msgid ""
1671
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1672
  "schedule-cron-emails-in-cpanel/?"
1674
  "job in cPanel</a>"
1675
  msgstr ""
1676
 
1677
+ #: ../settings/settings-edit.php:403
1678
  msgid ""
1679
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1680
  "schedule-cron-emails-in-parallels-plesk/?"
1682
  "job in Plesk</a>"
1683
  msgstr ""
1684
 
1685
+ #: ../settings/settings-edit.php:404
1686
  msgid ""
1687
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1688
  "if-hosting-doesnt-support-cron-jobs/?"
1690
  "does not support cron jobs?</a>"
1691
  msgstr ""
1692
 
1693
+ #: ../settings/settings-edit.php:520
1694
  msgid "Please enter sender of notifications from name."
1695
  msgstr ""
1696
 
1697
+ #: ../settings/settings-edit.php:525
1698
  msgid "Please enter sender of notifications from email."
1699
  msgstr ""
1700
 
1701
+ #: ../settings/settings-edit.php:569
1702
  msgid "Please enter valid email count."
1703
  msgstr ""
1704
 
1705
+ #: ../settings/settings-edit.php:584
1706
  msgid "Settings Saved."
1707
  msgstr ""
1708
 
1709
+ #: ../settings/settings-edit.php:587
1710
  msgid "Oops, unable to update."
1711
  msgstr ""
1712
 
2154
  "notify subscribers about new blog posts once it is published."
2155
  msgstr ""
2156
 
2157
+ #: ../email-subscribers.php:96
2158
  msgctxt "timezone date format"
2159
  msgid "Y-m-d H:i:s"
2160
  msgstr ""
2161
+
2162
+ #: ../pricing/pricing.php:157
2163
+ msgid "Go a notch higher"
2164
+ msgstr ""
2165
+
2166
+ #: ../pricing/pricing.php:158
2167
+ msgid "Get the Email Subscribers Pro Plugin at"
2168
+ msgstr ""
2169
+
2170
+ #: ../pricing/pricing.php:162
2171
+ msgid "month"
2172
+ msgstr ""
2173
+
2174
+ #: ../pricing/pricing.php:163
2175
+ msgid "Sign up for monthly"
2176
+ msgstr ""
2177
+
2178
+ #: ../pricing/pricing.php:166
2179
+ msgid "year"
2180
+ msgstr ""
2181
+
2182
+ #: ../pricing/pricing.php:167
2183
+ msgid "Sign up for yearly"
2184
+ msgstr ""
2185
+
2186
+ #: ../pricing/pricing.php:171
2187
+ msgid "Get more with Email Subscribers Pro"
2188
+ msgstr ""
2189
+
2190
+ #: ../pricing/pricing.php:173
2191
+ msgid "All features of Email Subscribers free plugin + everything below:"
2192
+ msgstr ""
2193
+
2194
+ #: ../pricing/pricing.php:176
2195
+ msgid "Protect your list from bot attacks"
2196
+ msgstr ""
2197
+
2198
+ #: ../pricing/pricing.php:177
2199
+ msgid "Use "
2200
+ msgstr ""
2201
+
2202
+ #: ../pricing/pricing.php:177
2203
+ msgid "captcha"
2204
+ msgstr ""
2205
+
2206
+ #: ../pricing/pricing.php:177
2207
+ msgid ""
2208
+ "to protect your email list from bots. The simple maths captcha helps "
2209
+ "identifying bots from humans and eliminates spam signups."
2210
+ msgstr ""
2211
+
2212
+ #: ../pricing/pricing.php:180
2213
+ msgid "Check email status & increase email success rate"
2214
+ msgstr ""
2215
+
2216
+ #: ../pricing/pricing.php:181
2217
+ msgid "Double check the status of the emails addresses and increase "
2218
+ msgstr ""
2219
+
2220
+ #: ../pricing/pricing.php:181
2221
+ msgid "email success rate"
2222
+ msgstr ""
2223
+
2224
+ #: ../pricing/pricing.php:181
2225
+ msgid "of your email campaign. "
2226
+ msgstr ""
2227
+
2228
+ #: ../pricing/pricing.php:187
2229
+ msgid "Fullproof email deliverability"
2230
+ msgstr ""
2231
+
2232
+ #: ../pricing/pricing.php:188
2233
+ msgid ""
2234
+ "Reduce the risk of emails ending in trash or spam. Increase email "
2235
+ "deliverability by double checking emails for their "
2236
+ msgstr ""
2237
+
2238
+ #: ../pricing/pricing.php:188
2239
+ msgid "spam score"
2240
+ msgstr ""
2241
+
2242
+ #: ../pricing/pricing.php:188
2243
+ msgid "before hitting send."
2244
+ msgstr ""
2245
+
2246
+ #: ../pricing/pricing.php:191
2247
+ msgid "Track email leads in Google"
2248
+ msgstr ""
2249
+
2250
+ #: ../pricing/pricing.php:192
2251
+ msgid "Insert "
2252
+ msgstr ""
2253
+
2254
+ #: ../pricing/pricing.php:192
2255
+ msgid "UTM tracking"
2256
+ msgstr ""
2257
+
2258
+ #: ../pricing/pricing.php:192
2259
+ msgid ""
2260
+ "in all your email CTA’s and track the effectiveness of your emails directly "
2261
+ "within Google. Know which/ how many leads landed up from your emails and "
2262
+ "tweak emails for better performance."
2263
+ msgstr ""
2264
+
2265
+ #: ../pricing/pricing.php:199
2266
+ msgid "Save time, use readymade email templates"
2267
+ msgstr ""
2268
+
2269
+ #: ../pricing/pricing.php:200
2270
+ msgid ""
2271
+ "Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
2272
+ "elegant templates</strong> to send your next email campaign."
2273
+ msgstr ""
2274
+
2275
+ #: ../pricing/pricing.php:203
2276
+ msgid "Customize confirmation and unsubscribe page"
2277
+ msgstr ""
2278
+
2279
+ #: ../pricing/pricing.php:204
2280
+ msgid ""
2281
+ "Communicate with subscribers. Redirect them to beautifully designed "
2282
+ "<strong>confirmation and unsubscribe pages</strong> on your website."
2283
+ msgstr ""
2284
+
2285
+ #: ../pricing/pricing.php:211
2286
+ msgid "Coming soon..."
2287
+ msgstr ""
2288
+
2289
+ #: ../pricing/pricing.php:213
2290
+ msgid "Spam testing"
2291
+ msgstr ""
2292
+
2293
+ #: ../pricing/pricing.php:214
2294
+ msgid "Bounce handling"
2295
+ msgstr ""
2296
+
2297
+ #: ../pricing/pricing.php:215
2298
+ msgid "Advanced reporting"
2299
+ msgstr ""
notification/notification-add.php CHANGED
@@ -245,6 +245,7 @@ if ( ! defined( 'ABSPATH' ) ) {
245
  <option value='Cron'><?php echo __( 'Add to cron and send email via cron job', ES_TDOMAIN );?></option>
246
  <option value='Disable'><?php echo __( 'Disable email notification', ES_TDOMAIN ); ?></option>
247
  </select>
 
248
  </td>
249
  </tr>
250
  </tbody>
245
  <option value='Cron'><?php echo __( 'Add to cron and send email via cron job', ES_TDOMAIN );?></option>
246
  <option value='Disable'><?php echo __( 'Disable email notification', ES_TDOMAIN ); ?></option>
247
  </select>
248
+ <?php do_action('es_after_email_sent_option'); ?>
249
  </td>
250
  </tr>
251
  </tbody>
notification/notification-edit.php CHANGED
@@ -281,6 +281,7 @@ if ( ! defined( 'ABSPATH' ) ) {
281
  <option value='Cron' <?php if($form['es_note_status']=='Cron') { echo 'selected="selected"' ; } ?>><?php echo __( 'Add to cron and send email via cron job', ES_TDOMAIN ); ?></option>
282
  <option value='Disable' <?php if($form['es_note_status']=='Disable') { echo 'selected="selected"' ; } ?>><?php echo __( 'Disable email notification', ES_TDOMAIN ); ?></option>
283
  </select>
 
284
  </td>
285
  </tr>
286
  </tbody>
281
  <option value='Cron' <?php if($form['es_note_status']=='Cron') { echo 'selected="selected"' ; } ?>><?php echo __( 'Add to cron and send email via cron job', ES_TDOMAIN ); ?></option>
282
  <option value='Disable' <?php if($form['es_note_status']=='Disable') { echo 'selected="selected"' ; } ?>><?php echo __( 'Disable email notification', ES_TDOMAIN ); ?></option>
283
  </select>
284
+ <?php do_action('es_after_email_sent_option'); ?>
285
  </td>
286
  </tr>
287
  </tbody>
pricing/pricing.php ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
+ ?>
9
+ <style type="text/css">
10
+ body {
11
+ background-color: transparent;
12
+ font-family: Roboto, sans-serif;
13
+ line-height: 1.2em;
14
+ }
15
+ .about-wrap.es {
16
+ max-width: 100%;
17
+ }
18
+ .wrap.about-wrap {
19
+ margin: 25px 70px 0 70px;
20
+ }
21
+ .es_main_heading {
22
+ font-size: 2em;
23
+ color: #5e646a;
24
+ text-align: center;
25
+ font-weight: 600;
26
+ margin: 1em auto;
27
+ }
28
+ .es_pro_heading {
29
+ font-size: 1.5em;
30
+ color: #5e646a;
31
+ text-align: center;
32
+ font-weight: 600;
33
+ }
34
+ .row {
35
+ padding: 1em !important;
36
+ margin: 1em !important;
37
+ clear: both;
38
+ position: relative;
39
+ }
40
+ .es_featured_column_container {
41
+ display: -webkit-box;
42
+ display: -webkit-flex;
43
+ display: -ms-flexbox;
44
+ display: flex;
45
+ max-width: 900px;
46
+ margin-right: auto;
47
+ margin-left: auto;
48
+ padding-right: 2em;
49
+ padding-left: 2em;
50
+ }
51
+ .column_one_half {
52
+ width: 40%;
53
+ padding: 1em;
54
+ margin: 0 1em;
55
+ background-color: #fff;
56
+ border: 1px solid rgba(0, 0, 0, 0.1);
57
+ text-align: center;
58
+ color: rgba(0, 0, 0, 0.75);
59
+ }
60
+ .last {
61
+ margin-right: 0;
62
+ }
63
+ .last.es_save_price:before {
64
+ content: url(../wp-content/plugins/email-subscribers/images/es_save.png);
65
+ margin-top: -2.1em;
66
+ margin-left: 9em;
67
+ position: absolute;
68
+ z-index: 50;
69
+ }
70
+ .es_monthly_price,
71
+ .es_yearly_price {
72
+ margin: 1.5em 0;
73
+ color: #1e73be;
74
+ font-size: 2em;
75
+ }
76
+ .es_monthly_price b,
77
+ .es_yearly_price b {
78
+ font-family: 'Abril Fatface', cursive;
79
+ font-size: 3em;
80
+ color: #1e73be;
81
+ }
82
+ .es_button {
83
+ background: #03a025;
84
+ border-color: #03a025;
85
+ color: #FFFFFF !important;
86
+ padding: 15px 32px;
87
+ text-align: center;
88
+ text-decoration: none;
89
+ display: inline-block;
90
+ font-size: 16px;
91
+ margin: 4px 2px;
92
+ cursor: pointer;
93
+ }
94
+ .es_button:hover {
95
+ background: #00870c;
96
+ border-color: #00870c;
97
+ color: #FFFFFF;
98
+ }
99
+ .es_pro_feature {
100
+ text-align: center;
101
+ font-size: 2em;
102
+ font-weight: 600;
103
+ line-height: 1.2em;
104
+ }
105
+ .pricing__headline {
106
+ font-size: 1.5em;
107
+ font-weight: 600;
108
+ color: #555;
109
+ text-align: center;
110
+ line-height: 1.5em;
111
+ margin: 0 auto 1em;
112
+ }
113
+ aside {
114
+ display: block;
115
+ padding: 1.41575em;
116
+ margin: 1.618em auto;
117
+ width: 15%;
118
+ margin: 0 auto;
119
+ position: relative;
120
+ color: rgba(0, 0, 0, 0.95);
121
+ text-align: center;
122
+ }
123
+ li {
124
+ text-align: left;
125
+ }
126
+ ul.checkmark li {
127
+ list-style-type: none;
128
+ padding: 0.25em 0 0 2.35em;
129
+ position: relative;
130
+ margin-bottom: 0.618em;
131
+ }
132
+ ul.checkmark li:before {
133
+ content: " ";
134
+ display: block;
135
+ position: absolute;
136
+ top: .5em;
137
+ border: solid 0.618em rgba(68, 173, 105, 0.2);
138
+ border-radius: 0.618em;
139
+ left: 0.5em;
140
+ }
141
+ ul.checkmark li:after {
142
+ content: " ";
143
+ display: block;
144
+ position: absolute;
145
+ top: 0.5em;
146
+ width: 0.25em;
147
+ height: 0.6em;
148
+ border: solid #44ad69;
149
+ border-width: 0 0.15em 0.15em 0;
150
+ left: 1em;
151
+ margin-top: 0.1em;
152
+ transform: rotate(50deg);
153
+ }
154
+ </style>
155
+
156
+ <div class="wrap about-wrap es">
157
+ <div class="es_main_heading"><?php _e('Go a notch higher', ES_TDOMAIN); ?></div>
158
+ <div class="es_pro_heading"><?php _e('Get the Email Subscribers Pro Plugin at', ES_TDOMAIN); ?></div>
159
+ <div class="row">
160
+ <div class="es_featured_column_container">
161
+ <div class="column_one_half">
162
+ <div class="es_monthly_price"><b>$12/</b><?php _e('month', ES_TDOMAIN); ?></div>
163
+ <a href="https://www.icegram.com/?buy-now=39043&amp;qty=1&amp;coupon=&amp;with-cart=1&amp;page=5" target="_blank" rel="noopener" class="es_button"><?php _e('Sign up for monthly', ES_TDOMAIN); ?></a>
164
+ </div>
165
+ <div class="column_one_half last es_save_price">
166
+ <div class="es_yearly_price"><b>$120/</b><?php _e('year', ES_TDOMAIN); ?></div>
167
+ <a href="https://www.icegram.com/?buy-now=39944&amp;qty=1&amp;coupon=&amp;with-cart=1&amp;page=5" target="_blank" rel="noopener" class="es_button"><?php _e('Sign up for yearly', ES_TDOMAIN); ?></a>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ <div class="es_pro_feature"><?php _e('Get more with Email Subscribers Pro', ES_TDOMAIN); ?></div>
172
+ <div class="row">
173
+ <div class="pricing__headline"><?php _e('All features of Email Subscribers free plugin + everything below:', ES_TDOMAIN); ?></div>
174
+ <div class="es_featured_column_container">
175
+ <div class="column_one_half">
176
+ <h4><strong><?php _e('Protect your list from bot attacks', ES_TDOMAIN); ?></strong></h4>
177
+ <p style="text-align: left;"><?php _e('Use ', ES_TDOMAIN); ?><strong><?php _e('captcha', ES_TDOMAIN); ?></strong> <?php _e('to protect your email list from bots. The simple maths captcha helps identifying bots from humans and eliminates spam signups.', ES_TDOMAIN); ?></p>
178
+ </div>
179
+ <div class="column_one_half last">
180
+ <h4><strong><?php _e('Check email status & increase email success rate', ES_TDOMAIN); ?></strong></h4>
181
+ <p style="text-align: left;"><?php _e('Double check the status of the emails addresses and increase ', ES_TDOMAIN); ?><strong><?php _e('email success rate', ES_TDOMAIN); ?></strong> <?php _e('of your email campaign. ', ES_TDOMAIN); ?></p>
182
+ </div>
183
+ </div>
184
+ <div class="row">
185
+ <div class="es_featured_column_container">
186
+ <div class="column_one_half">
187
+ <h4><strong><?php _e('Fullproof email deliverability', ES_TDOMAIN); ?></strong></h4>
188
+ <p style="text-align: left;"><?php _e('Reduce the risk of emails ending in trash or spam. Increase email deliverability by double checking emails for their ', ES_TDOMAIN); ?><strong><?php _e('spam score', ES_TDOMAIN); ?></strong> <?php _e('before hitting send.', ES_TDOMAIN); ?></p>
189
+ </div>
190
+ <div class="column_one_half last">
191
+ <h4><strong><?php _e('Track email leads in Google', ES_TDOMAIN); ?></strong></h4>
192
+ <p style="text-align: left;"><?php _e('Insert ', ES_TDOMAIN); ?><strong><?php _e('UTM tracking', ES_TDOMAIN); ?></strong> <?php _e('in all your email CTA’s and track the effectiveness of your emails directly within Google. Know which/ how many leads landed up from your emails and tweak emails for better performance.', ES_TDOMAIN); ?></p>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ <div class="row">
197
+ <div class="es_featured_column_container">
198
+ <div class="column_one_half">
199
+ <h4><strong><?php _e('Save time, use readymade email templates', ES_TDOMAIN); ?></strong></h4>
200
+ <p style="text-align: left;"><?php _e('Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use elegant templates</strong> to send your next email campaign.', ES_TDOMAIN); ?></p>
201
+ </div>
202
+ <div class="column_one_half last">
203
+ <h4><strong><?php _e('Customize confirmation and unsubscribe page', ES_TDOMAIN); ?></strong></h4>
204
+ <p style="text-align: left;"><?php _e('Communicate with subscribers. Redirect them to beautifully designed <strong>confirmation and unsubscribe pages</strong> on your website.', ES_TDOMAIN); ?></p>
205
+ </div>
206
+ </div>
207
+ </div>
208
+ </div>
209
+ <aside>
210
+ <details>
211
+ <summary> <span style="font-size: 1.2em;"><?php _e('Coming soon...', ES_TDOMAIN); ?></span></summary>
212
+ <ul class="checkmark">
213
+ <li><?php _e('Spam testing', ES_TDOMAIN); ?></li>
214
+ <li><?php _e('Bounce handling', ES_TDOMAIN); ?></li>
215
+ <li><?php _e('Advanced reporting', ES_TDOMAIN); ?></li>
216
+ </ul>
217
+ </details>
218
+ </aside>
219
+ </div>
query/db_delivery.php CHANGED
@@ -137,7 +137,16 @@ class es_cls_delivery {
137
  ORDER BY es_deliver_id
138
  LIMIT 0, $limit", array( "Cron", "In Queue", $sentguid ) );
139
  $arrRes = $wpdb->get_results( $query, ARRAY_A );
140
-
 
 
 
 
 
 
 
 
 
141
  return $arrRes;
142
 
143
  }
137
  ORDER BY es_deliver_id
138
  LIMIT 0, $limit", array( "Cron", "In Queue", $sentguid ) );
139
  $arrRes = $wpdb->get_results( $query, ARRAY_A );
140
+ if(count($arrRes) > 0){
141
+ foreach ($arrRes as $res) {
142
+ $ids[] = $res['es_deliver_id'];
143
+ }
144
+ $id_str = implode(",", $ids);
145
+ $update_sql = $wpdb->prepare( "UPDATE {$wpdb->prefix}es_deliverreport
146
+ SET es_deliver_sentstatus = %s
147
+ WHERE es_deliver_id IN (%s)", "Sending", $id_str );
148
+ $wpdb->query( $update_sql );
149
+ }
150
  return $arrRes;
151
 
152
  }
query/db_optimize.php CHANGED
@@ -16,7 +16,7 @@ class es_cls_optimize {
16
  $sSql = $wpdb->prepare( "DELETE
17
  FROM {$wpdb->prefix}es_sentdetails
18
  WHERE 1 = %d
19
- ORDER BY es_sent_id ASC LIMIT".$delete, 1 );
20
  $wpdb->query( $sSql );
21
  }
22
 
16
  $sSql = $wpdb->prepare( "DELETE
17
  FROM {$wpdb->prefix}es_sentdetails
18
  WHERE 1 = %d
19
+ ORDER BY es_sent_id ASC LIMIT ".$delete, 1 );
20
  $wpdb->query( $sSql );
21
  }
22
 
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Email Subscribers & Newsletters ===
2
- Contributors: icegram, niravmehta, Mansi Shah, sandhyam, storeapps, akash123dhawade, Tarun.Parswani, ravioza
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
4
  Author URI: https://www.icegram.com/
5
- Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.9
7
- Tested up to: 4.9.6
8
- Stable tag: 3.5.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -119,6 +119,26 @@ Don’t believe it? Have a look at the review section. The support guys are frie
119
  > Had 3 questions about the plugin, got extensive support with each one. Continue doing what you’re doing! Thanks a lot! 5/5
120
  > - [DomLaurin](https://wordpress.org/support/topic/lightning-support/)
121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  **Get more benefits by using Email Subscribers with these free plugins**
123
 
124
  **Email Subscribers - Group Selector**
@@ -321,6 +341,15 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
321
 
322
  == Changelog ==
323
 
 
 
 
 
 
 
 
 
 
324
  = 3.5.3 (02.07.2018) =
325
 
326
  * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
@@ -807,6 +836,15 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
807
 
808
  == Upgrade Notice ==
809
 
 
 
 
 
 
 
 
 
 
810
  = 3.5.3 (02.07.2018) =
811
 
812
  * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
1
  === Email Subscribers & Newsletters ===
2
+ Contributors: icegram, niravmehta, Mansi Shah, sandhyam, storeapps, akash123dhawade, Tarun.Parswani, malayladu
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
4
  Author URI: https://www.icegram.com/
5
+ Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.9
7
+ Tested up to: 4.9.7
8
+ Stable tag: 3.5.4
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
119
  > Had 3 questions about the plugin, got extensive support with each one. Continue doing what you’re doing! Thanks a lot! 5/5
120
  > - [DomLaurin](https://wordpress.org/support/topic/lightning-support/)
121
 
122
+ **More Advanced Features**
123
+
124
+ Check out [Email Subscribers Pro](https://www.icegram.com/email-subscribers-pricing/) to get these features :
125
+
126
+ * **Protect your list from bot attacks** - Use captcha to protect your email list from bots. The simple maths captcha helps identifying bots from humans and eliminates spam signups.
127
+
128
+ * **Newsletter email templates** - Elegant newsletter templates to keep your leads engaged with your content
129
+
130
+ * **Offer & promotional email templates** - High converting ready-to-use templates for any occasion, events or holiday season.
131
+
132
+ * **New blogpost notification email templates** - Awesome templates that will encourage subscribers to read your blog post
133
+
134
+ * **List cleanup** - Free your list from fraudulent, invalid email addresses to ensure maximum deliverability rate.
135
+
136
+ * **Spam testing** - Get your email’s subject line and content scanned thoroughly so that it reaches your subscriber’s inbox and not elsewhere.
137
+
138
+ * **Easy utm tracking** - Track success of your email marketing campaigns easily
139
+
140
+ * **Customize confirmation and unsubscribe page** - Communicate with subscribers. Redirect them to beautifully designed confirmation and unsubscribe pages on your website.
141
+
142
  **Get more benefits by using Email Subscribers with these free plugins**
143
 
144
  **Email Subscribers - Group Selector**
341
 
342
  == Changelog ==
343
 
344
+ = 3.5.4 (23.07.2018) =
345
+
346
+ * New: Added option to disable cron email sent to Admin
347
+ * Fix: 'Optimize Table & Delete Records' button not deleting any reports
348
+ * Fix: 'In Queue' notice showing multiple times on Reports tab
349
+ * Update: Sent Report email will be now sent only if sending email immediately
350
+ * Update: POT file
351
+ * Localization: Made all translation files up-to-date with latest POT file
352
+
353
  = 3.5.3 (02.07.2018) =
354
 
355
  * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
836
 
837
  == Upgrade Notice ==
838
 
839
+ = 3.5.4 (23.07.2018) =
840
+
841
+ * New: Added option to disable cron email sent to Admin
842
+ * Fix: 'Optimize Table & Delete Records' button not deleting any reports
843
+ * Fix: 'In Queue' notice showing multiple times on Reports tab
844
+ * Update: Sent Report email will be now sent only if sending email immediately
845
+ * Update: POT file
846
+ * Localization: Made all translation files up-to-date with latest POT file
847
+
848
  = 3.5.3 (02.07.2018) =
849
 
850
  * Fix: Notices on Subscribers -> Sync page (Illegal string offset ‘es_registered’ & ‘es_registered_group’)
sendmail/sendmail.php CHANGED
@@ -139,6 +139,7 @@ if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
139
  <option value='Immediately' <?php if($es_sent_type == 'Immediately') { echo "selected='selected'" ; } ?>><?php echo __( 'Send email immediately', ES_TDOMAIN ); ?></option>
140
  <option value='Cron' <?php if($es_sent_type == 'Cron') { echo "selected='selected'" ; } ?>><?php echo __( 'Send email via cron job', ES_TDOMAIN ); ?></option>
141
  </select>
 
142
  </td>
143
  </tr>
144
  <tr>
139
  <option value='Immediately' <?php if($es_sent_type == 'Immediately') { echo "selected='selected'" ; } ?>><?php echo __( 'Send email immediately', ES_TDOMAIN ); ?></option>
140
  <option value='Cron' <?php if($es_sent_type == 'Cron') { echo "selected='selected'" ; } ?>><?php echo __( 'Send email via cron job', ES_TDOMAIN ); ?></option>
141
  </select>
142
+ <?php do_action('es_after_email_sent_option'); ?>
143
  </td>
144
  </tr>
145
  <tr>
sentmail/sentmail-show.php CHANGED
@@ -204,15 +204,18 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
204
  <?php
205
  }
206
 
207
- foreach ( $myData as $my_data ) {
208
- if ( $my_data['es_sent_status'] == 'In Queue' ) {
209
- ?>
210
- <br>
211
- <p>
212
- <?php echo __( '<strong>Note:</strong> If you delete record for the emails with Status = <span style="color:#FF0000;">In Queue</span>, then cron job in queue will be deleted too and email will not be sent.', ES_TDOMAIN ); ?>
213
- </p>
214
- <?php
215
- }
 
 
 
216
  }
217
  ?>
218
  </div>
204
  <?php
205
  }
206
 
207
+ global $wpdb;
208
+ $in_queue = 'In Queue';
209
+ $query = $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}es_sentdetails WHERE es_sent_status = %s LIMIT 0, 1", $in_queue );
210
+ $report_id = $wpdb->get_col( $query );
211
+
212
+ if ( !empty( $report_id ) ) {
213
+ ?>
214
+ <br>
215
+ <p>
216
+ <?php echo __( '<strong>Note:</strong> If you delete record for the emails with Status = <span style="color:#FF0000;">In Queue</span>, then cron job in queue will be deleted too and email will not be sent.', ES_TDOMAIN ); ?>
217
+ </p>
218
+ <?php
219
  }
220
  ?>
221
  </div>
settings/settings-edit.php CHANGED
@@ -163,14 +163,14 @@ if ( ! class_exists( 'ES_Settings' ) ) {
163
  <tr class="es-admin active-settings">
164
  <th scope="row">
165
  <label for="elp"><?php echo __( 'Sent Report Subject', ES_TDOMAIN ); ?>
166
- <p class="description"><?php echo __( 'Subject for the email report which will be sent to admin.', ES_TDOMAIN ); ?></p></label>
167
  </th>
168
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($this->form['ig_es_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
169
  </tr>
170
  <tr class="es-admin active-settings">
171
  <th scope="row">
172
  <label for="elp"><?php echo __( 'Sent Report Content', ES_TDOMAIN ); ?>
173
- <p class="description"><?php echo __( 'Content for the email report which will be sent to admin.<br />Available Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}', ES_TDOMAIN ); ?></p></label>
174
  </th>
175
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($this->form['ig_es_sentreport'])); ?></textarea></td>
176
  </tr>
@@ -371,6 +371,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
371
  <input type="text" name="es_cron_url" id="es_cron_url" value="<?php echo $this->form['ig_es_cronurl']; ?>" size="68" readonly />
372
  </td>
373
  </tr>
 
374
  <tr class="es-cron hidden">
375
  <th scope="row">
376
  <label for="tag-image"><?php echo __( 'Email Count', ES_TDOMAIN ); ?>
@@ -389,6 +390,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
389
  </label>
390
  </th>
391
  <td>
 
392
  <textarea size="100" id="es_cron_adminmail" rows="7" cols="72" name="es_cron_adminmail"><?php echo esc_html(stripslashes($this->form['ig_es_cron_adminmail'])); ?></textarea>
393
  </td>
394
  </tr>
@@ -504,6 +506,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
504
  $es_cron_adminmail = get_option('ig_es_cron_adminmail');
505
  }
506
  $form['ig_es_cron_adminmail'] = $es_cron_adminmail;
 
507
 
508
  // Form submitted, check & update the data in options table
509
  if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
@@ -570,7 +573,8 @@ if ( ! class_exists( 'ES_Settings' ) ) {
570
  }
571
 
572
  $form['ig_es_cron_adminmail'] = isset($_POST['es_cron_adminmail']) ? $_POST['es_cron_adminmail'] : '';
573
-
 
574
  // No errors found, we can add the settings to the options
575
  if ($es_error_found == FALSE) {
576
  $action = "";
163
  <tr class="es-admin active-settings">
164
  <th scope="row">
165
  <label for="elp"><?php echo __( 'Sent Report Subject', ES_TDOMAIN ); ?>
166
+ <p class="description"><?php echo __( 'Subject for the email report which will be sent to admin.<br />(Will be sent only if sending email via immediately)', ES_TDOMAIN ); ?></p></label>
167
  </th>
168
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($this->form['ig_es_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
169
  </tr>
170
  <tr class="es-admin active-settings">
171
  <th scope="row">
172
  <label for="elp"><?php echo __( 'Sent Report Content', ES_TDOMAIN ); ?>
173
+ <p class="description"><?php echo __( 'Content for the email report which will be sent to admin.<br />Available Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be sent only if sending email via immediately)', ES_TDOMAIN ); ?></p></label>
174
  </th>
175
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($this->form['ig_es_sentreport'])); ?></textarea></td>
176
  </tr>
371
  <input type="text" name="es_cron_url" id="es_cron_url" value="<?php echo $this->form['ig_es_cronurl']; ?>" size="68" readonly />
372
  </td>
373
  </tr>
374
+ <?php do_action('es_after_cron_url', $this->form); ?>
375
  <tr class="es-cron hidden">
376
  <th scope="row">
377
  <label for="tag-image"><?php echo __( 'Email Count', ES_TDOMAIN ); ?>
390
  </label>
391
  </th>
392
  <td>
393
+ <label><input type="checkbox" name="ig_es_enable_cron_adminmail" value="yes" <?php ( !empty( $this->form['ig_es_enable_cron_adminmail'] ) ) ? checked( $this->form['ig_es_enable_cron_adminmail'], 'yes' ) : ''; ?>/><?php echo __( 'Enabling this will send a cron report email on every successfully cron hit', ES_TDOMAIN ); ?></label><br/><br/>
394
  <textarea size="100" id="es_cron_adminmail" rows="7" cols="72" name="es_cron_adminmail"><?php echo esc_html(stripslashes($this->form['ig_es_cron_adminmail'])); ?></textarea>
395
  </td>
396
  </tr>
506
  $es_cron_adminmail = get_option('ig_es_cron_adminmail');
507
  }
508
  $form['ig_es_cron_adminmail'] = $es_cron_adminmail;
509
+ $form['ig_es_enable_cron_adminmail'] = get_option('ig_es_enable_cron_adminmail', 'yes');
510
 
511
  // Form submitted, check & update the data in options table
512
  if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
573
  }
574
 
575
  $form['ig_es_cron_adminmail'] = isset($_POST['es_cron_adminmail']) ? $_POST['es_cron_adminmail'] : '';
576
+ $ig_es_enable_cron_adminmail = (!empty($_POST['ig_es_enable_cron_adminmail']) && $_POST['ig_es_enable_cron_adminmail'] === 'yes') ? 'yes' : 'no';
577
+ $form['ig_es_enable_cron_adminmail'] = $ig_es_enable_cron_adminmail;
578
  // No errors found, we can add the settings to the options
579
  if ($es_error_found == FALSE) {
580
  $action = "";