Better Notifications for WordPress - Version 1.8.5

Version Description

  • 18th December 2020 =
  • New: Shortcode - [user_old_email] and [user_new_email] can now be used in 'User Email Changed - For User' and 'User Email Changed - For Admin' notifications.
  • Fixed: 'User Role Changed' notifications weren't being sent out when editing users using bulk edit when plugins that allowed multiple user roles were being used.
  • Fixed: Numerous issues with Privacy notifications, including emails not sending and shortcodes not working.
  • Fixed: Conditional Notifications fields were showing on incorrect notifications if that add-on was being used.
  • Fixed: POT file regenerated to account for missing translatable strings.
  • Have a Merry Christmas and a happy New Year. Thanks for using BNFW :)
Download this release

Release Info

Developer voltronik
Plugin Icon 128x128 Better Notifications for WordPress
Version 1.8.5
Comparing to
See all releases

Code changes from version 1.8.4 to 1.8.5

README.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: voltronik
3
  Donate link: https://betternotificationsforwp.com/donate/
4
  Tags: notification, email, alert, message, notify, send, HTML, customize, bulk, trigger, CC, BCC
5
  Requires at least: 4.8
6
- Tested up to: 5.5.1
7
  Requires PHP: 5.6
8
- Stable tag: 1.8.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -241,6 +241,14 @@ Yes, of course! The plugin is completely translation-friendly and if you send me
241
 
242
  == Changelog ==
243
 
 
 
 
 
 
 
 
 
244
  = 1.8.4 - 12th August 2020 =
245
  * Fixed: In certain situations, the password reset key would get modified when using the User Lost Password - For User notification.
246
  * Fixed: An issue in the Custom Fields add-on where the Send to Author checkbox did not send a User Custom Field Updated notification to the user.
3
  Donate link: https://betternotificationsforwp.com/donate/
4
  Tags: notification, email, alert, message, notify, send, HTML, customize, bulk, trigger, CC, BCC
5
  Requires at least: 4.8
6
+ Tested up to: 5.6
7
  Requires PHP: 5.6
8
+ Stable tag: 1.8.5
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
241
 
242
  == Changelog ==
243
 
244
+ = 1.8.5 - 18th December 2020 =
245
+ * New: Shortcode - [user_old_email] and [user_new_email] can now be used in 'User Email Changed - For User' and 'User Email Changed - For Admin' notifications.
246
+ * Fixed: 'User Role Changed' notifications weren't being sent out when editing users using bulk edit when plugins that allowed multiple user roles were being used.
247
+ * Fixed: Numerous issues with Privacy notifications, including emails not sending and shortcodes not working.
248
+ * Fixed: Conditional Notifications fields were showing on incorrect notifications if that add-on was being used.
249
+ * Fixed: POT file regenerated to account for missing translatable strings.
250
+ * Have a Merry Christmas and a happy New Year. Thanks for using BNFW :)
251
+
252
  = 1.8.4 - 12th August 2020 =
253
  * Fixed: In certain situations, the password reset key would get modified when using the User Lost Password - For User notification.
254
  * Fixed: An issue in the Custom Fields add-on where the Send to Author checkbox did not send a User Custom Field Updated notification to the user.
bnfw.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Better Notifications for WP
5
  * Plugin URI: https://wordpress.org/plugins/bnfw/
6
  * Description: Supercharge your WordPress notifications using a WYSIWYG editor and shortcodes. Default and new notifications available. Add more power with Add-ons.
7
- * Version: 1.8.4
8
  * Requires at least: 4.8
9
  * Requires PHP: 5.6
10
  * Author: Made with Fuel
@@ -16,7 +16,7 @@
16
  */
17
 
18
  /**
19
- * Copyright © 2020 Made with Fuel Ltd. (hello@betternotificationsforwp.com)
20
  * This program is free software; you can redistribute it and/or modify
21
  * it under the terms of the GNU General Public License, version 2, as
22
  * published by the Free Software Foundation.
@@ -28,1328 +28,1452 @@
28
  * along with this program; if not, write to the Free Software
29
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30
  */
31
-
32
  class BNFW {
33
 
34
- /**
35
- * Constructor.
36
- *
37
- * @since 1.0
38
- */
39
- function __construct() {
40
- $this->load_textdomain();
41
- $this->includes();
42
- $this->hooks();
43
-
44
- /**
45
- * BNFW Notification.
46
- *
47
- * @var \BNFW_Notification
48
- */
49
- $this->notifier = new BNFW_Notification;
50
-
51
- /**
52
- * BNFW Engine.
53
- *
54
- * @var \BNFW_Engine
55
- */
56
- $this->engine = new BNFW_Engine;
57
- }
58
-
59
- /**
60
- * Factory method to return the instance of the class.
61
- *
62
- * Makes sure that only one instance is created.
63
- *
64
- * @return \BNFW Instance of the class.
65
- */
66
- public static function factory() {
67
- static $instance = false;
68
- if ( ! $instance ) {
69
- $instance = new self();
70
- }
71
- return $instance;
72
- }
73
-
74
- /**
75
- * Loads the plugin language files
76
- *
77
- * @since 1.0
78
- */
79
- public function load_textdomain() {
80
- // Load localization domain
81
- $this->translations = dirname( plugin_basename( __FILE__ ) ) . '/languages/';
82
- load_plugin_textdomain( 'bnfw', false, $this->translations );
83
- }
84
-
85
- /**
86
- * Include required files.
87
- *
88
- * @since 1.0
89
- */
90
- public function includes() {
91
-
92
- // Load license related classes
93
- if ( ! class_exists( 'EDD_SL_Plugin_Updater' ) ) {
94
- require_once 'includes/libraries/EDD_SL_Plugin_Updater.php';
95
- }
96
-
97
- include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
98
-
99
- require_once 'vendor/persist-admin-notices-dismissal/persist-admin-notices-dismissal.php';
100
-
101
- require_once 'includes/license/class-bnfw-license.php';
102
- require_once 'includes/license/class-bnfw-license-setting.php';
103
-
104
- // Load Engine
105
- require_once 'includes/engine/class-bnfw-engine.php';
106
- require_once 'includes/overrides.php';
107
-
108
- // Load notification post type and notification helpers
109
- require_once 'includes/admin/class-bnfw-notification.php';
110
- require_once 'includes/notification/post-notification.php';
111
-
112
- // Helpers
113
- require_once 'includes/helpers/helpers.php';
114
- require_once 'includes/helpers/ajax-helpers.php';
115
-
116
- // Load Admin Pages
117
- if ( is_admin() ) {
118
- require_once 'includes/admin/bnfw-settings.php';
119
- }
120
- }
121
-
122
- /**
123
- * Register Hooks.
124
- *
125
- * @since 1.0
126
- */
127
- public function hooks() {
128
- global $wp_version;
129
-
130
- register_activation_hook( __FILE__, array( $this, 'activate' ) );
131
-
132
- add_action( 'admin_init', array( 'PAnD', 'init' ) );
133
- add_action( 'admin_init', array( $this, 'add_capability_to_admin' ) );
134
-
135
- add_action( 'draft_to_private' , array( $this, 'private_post' ) );
136
- add_action( 'future_to_private' , array( $this, 'private_post' ) );
137
- add_action( 'pending_to_private' , array( $this, 'private_post' ) );
138
- add_action( 'publish_to_private' , array( $this, 'private_post' ) );
139
-
140
- add_action( 'wp_insert_post' , array( $this, 'insert_post' ), 10, 3 );
141
-
142
- add_action( 'publish_to_trash' , array( $this, 'trash_post' ));
143
-
144
- add_action( 'auto-draft_to_publish' , array( $this, 'publish_post' ) );
145
- add_action( 'draft_to_publish' , array( $this, 'publish_post' ) );
146
- add_action( 'future_to_publish' , array( $this, 'publish_post' ) );
147
- add_action( 'pending_to_publish' , array( $this, 'publish_post' ) );
148
- add_action( 'private_to_publish' , array( $this, 'publish_post' ) );
149
  // add_action( 'acf/submit_form' , array( $this, 'acf_submit_form' ), 10, 2 );
150
 
151
- add_action( 'publish_to_publish' , array( $this, 'update_post' ) );
152
- add_action( 'private_to_private' , array( $this, 'update_post' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
 
154
- add_action( 'add_attachment' , array( $this, 'new_publish_media_notification' ), 10, 1 );
155
- add_action( 'edit_attachment' , array( $this, 'media_attachment_data_update_notification' ), 10 );
 
156
 
157
- add_action( 'transition_post_status' , array( $this, 'on_post_transition' ), 10, 3 );
 
 
158
 
159
- add_action( 'init' , array( $this, 'custom_post_type_hooks' ), 100 );
160
- add_action( 'create_term' , array( $this, 'create_term' ), 10, 3 );
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
- add_action( 'transition_comment_status' , array( $this, 'on_comment_status_change' ), 10, 3 );
163
- add_action( 'comment_post' , array( $this, 'comment_post' ) );
164
- add_action( 'trackback_post' , array( $this, 'trackback_post' ) );
165
- add_action( 'pingback_post' , array( $this, 'pingback_post' ) );
166
 
167
- add_action( 'user_register' , array( $this, 'user_register' ) );
 
 
 
 
 
 
 
 
168
 
169
- add_action( 'user_register' , array( $this, 'welcome_email' ) );
 
 
 
170
 
171
- if ( is_plugin_active('members/members.php') ) {
172
- add_action( 'profile_update' , array( $this, 'user_role_added' ), 10, 2 );
173
- }else{
174
- add_action( 'set_user_role' , array( $this, 'user_role_changed' ), 10, 3 );
 
 
 
 
 
175
  }
176
 
177
- add_action( 'wp_login' , array( $this, 'user_login' ),10,2);
178
-
179
- if ( version_compare( $wp_version, '4.4', '>=' ) ) {
180
- add_filter( 'retrieve_password_title', array( $this, 'change_password_email_title' ), 10, 3 );
181
- } else {
182
- add_filter( 'retrieve_password_title', array( $this, 'change_password_email_title' ) );
183
- }
184
- add_action( 'lostpassword_post' , array( $this, 'on_lost_password' ) );
185
- add_filter( 'retrieve_password_message' , array( $this, 'change_password_email_message' ), 10, 4 );
186
-
187
- add_action( 'after_password_reset' , array( $this, 'on_password_reset' ) );
188
-
189
- add_filter( 'send_password_change_email', array( $this, 'should_password_changed_email_be_sent' ), 10, 3 );
190
- add_filter( 'password_change_email' , array( $this, 'on_password_changed' ), 10, 2 );
191
-
192
- add_filter( 'send_email_change_email' , array( $this, 'should_email_changed_email_be_sent' ), 10, 3 );
193
- add_filter( 'email_change_email' , array( $this, 'on_email_changed' ), 10, 2 );
194
- add_filter( 'new_user_email_content' , array( $this, 'on_email_changing' ), 10, 2 );
195
-
196
- add_filter( 'auto_core_update_email' , array( $this, 'on_core_updated' ), 10, 4 );
197
-
198
- add_filter( 'user_request_action_email_content', array( $this, 'handle_user_request_email_content' ), 10, 2 );
199
- add_filter( 'user_request_action_email_subject', array( $this, 'handle_user_request_email_subject' ), 10, 3 );
200
-
201
- add_filter( 'user_confirmed_action_email_content', array( $this, 'handle_user_confirmed_action_email_content' ), 10, 2 );
202
-
203
- add_filter( 'wp_privacy_personal_data_email_content', array( $this, 'handle_data_export_email_content' ), 10, 2 );
204
-
205
- add_filter( 'user_erasure_complete_email_subject', array( $this, 'handle_erasure_complete_email_subject' ), 10, 3 );
206
- add_filter( 'user_confirmed_action_email_content', array( $this, 'handle_erasure_complete_email_content' ), 10, 2 );
207
-
208
- add_filter( 'plugin_action_links' , array( $this, 'plugin_action_links' ), 10, 4 );
209
- add_action( 'shutdown' , array( $this, 'on_shutdown' ) );
210
- }
211
-
212
- /**
213
- * Add 'bnfw' capability to admin.
214
- */
215
- public function add_capability_to_admin() {
216
- $admins = get_role( 'administrator' );
217
-
218
- if ( is_null( $admins ) ) {
219
- return;
220
- }
221
-
222
- if ( ! $admins->has_cap( 'bnfw' ) ) {
223
- $admins->add_cap( 'bnfw' );
224
- }
225
- }
226
-
227
- /**
228
- * On post transition.
229
- *
230
- * @param string $new_status New post status.
231
- * @param string $old_status Old post status.
232
- * @param \WP_Post $post Post object.
233
- */
234
- public function on_post_transition( $new_status, $old_status, $post ) {
235
- if ( ! is_a( $post, 'WP_Post' ) ) {
236
- return;
237
- }
238
-
239
- if ( 'pending' === $old_status ) {
240
- return;
241
- }
242
-
243
- if ( 'pending' !== $new_status ) {
244
- return;
245
- }
246
-
247
- $this->on_post_pending( $post->ID, $post );
248
- }
249
-
250
- /**
251
- * Setup hooks for custom post types.
252
- *
253
- * @since 1.2
254
- */
255
- function custom_post_type_hooks() {
256
- $post_types = get_post_types( array( 'public' => true ), 'names' );
257
- $post_types = array_diff( $post_types, array( BNFW_Notification::POST_TYPE ) );
258
-
259
- foreach ( $post_types as $post_type ) {
260
- add_action( 'future_' . $post_type, array( $this, 'on_post_scheduled' ), 10, 2 );
261
- }
262
- }
263
-
264
- /**
265
- * importer
266
- */
267
- public function activate() {
268
- require_once dirname( __FILE__ ) . '/includes/import.php';
269
- $importer = new BNFW_Import;
270
- $importer->import();
271
- }
272
-
273
- /**
274
- * Add 'Settings' link below BNFW in Plugins list.
275
- *
276
- * @since 1.0
277
- * @param unknown $links
278
- * @param unknown $file
279
- * @return unknown
280
- */
281
- public function plugin_action_links( $links, $file ) {
282
- $plugin_file = 'bnfw/bnfw.php';
283
- if ( $file == $plugin_file ) {
284
- $settings_link = '<a href="' . esc_url( admin_url( 'edit.php?post_type=bnfw_notification&page=bnfw-settings' ) ) . '">' . esc_html__( 'Settings', 'bnfw' ) . '</a>';
285
- array_unshift( $links, $settings_link );
286
- }
287
- return $links;
288
- }
289
-
290
- /**
291
- * When a new term is created.
292
- *
293
- * @since 1.0
294
- * @param int $term_id
295
- * @param int $tt_id
296
- * @param string $taxonomy
297
- */
298
- public function create_term( $term_id, $tt_id, $taxonomy ) {
299
- $this->send_notification( 'newterm-' . $taxonomy, $term_id );
300
- }
301
-
302
- /**
303
- * Fires when a post is created for the first time.
304
- *
305
- * @param int $post_id Post ID
306
- * @param object $post Post object
307
- * @param bool $update Whether this is an existing post being updated or not.
308
- *
309
- * @since 1.3.1
310
- */
311
- public function insert_post( $post_id, $post, $update ) {
312
- // Some themes like P2, directly insert posts into DB.
313
- $insert_post_themes = apply_filters( 'bnfw_insert_post_themes', array( 'P2', 'Syncope' ) );
314
- $current_theme = wp_get_theme();
315
-
316
- /**
317
- * Whether to trigger insert post hook.
318
- *
319
- * @since 1.4
320
- */
321
- $trigger_insert_post = apply_filters( 'bnfw_trigger_insert_post', false, $post_id, $update );
322
-
323
- if ( in_array( $current_theme->get( 'Name' ), $insert_post_themes ) || $trigger_insert_post ) {
324
- $this->handle_inserted_post( $post_id, $update );
325
- }
326
- }
327
-
328
- /**
329
- * Trigger New Post published notification for ACF forms.
330
- *
331
- * @param string $form ACF Form.
332
- * @param int $post_id Post ID.
333
- */
334
- public function acf_submit_form( $form, $post_id ) {
335
- $this->handle_inserted_post( $post_id );
336
- }
337
-
338
- /**
339
- * Trigger correct notifications for inserted posts.
340
- *
341
- * @param int $post_id Post id.
342
- * @param bool $update Whether the post was updated.
343
- *
344
- * @since 1.6.7
345
- */
346
- private function handle_inserted_post( $post_id, $update ) {
347
- $post = get_post( $post_id );
348
-
349
- if ( ! is_a( $post, 'WP_Post' ) ) {
350
- return;
351
- }
352
-
353
- switch ( $post->post_status ) {
354
- case 'publish':
355
- if ( $update ) {
356
- $this->update_post( $post );
357
- } else {
358
- $this->publish_post( $post );
359
- }
360
- break;
361
-
362
- case 'private':
363
- $this->private_post( $post );
364
- break;
365
-
366
- case 'pending':
367
- $this->on_post_pending( $post_id, $post );
368
- break;
369
-
370
- case 'future':
371
- $this->on_post_scheduled( $post_id, $post );
372
- break;
373
- }
374
- }
375
-
376
- /**
377
- * Fires when a post is created for the first time.
378
- *
379
- * @since 1.0
380
- * @param object $post Post Object
381
- */
382
- function publish_post( $post ) {
383
- $post_id = $post->ID;
384
- $post_type = $post->post_type;
385
-
386
- if ( BNFW_Notification::POST_TYPE != $post_type ) {
387
- $this->send_notification_async( 'new-' . $post_type, $post_id );
388
- }
389
- }
390
-
391
- /**
392
- * Fires when a private post is created.
393
- *
394
- * @since 1.6
395
- * @param object $post Post Object
396
- */
397
- public function private_post( $post ) {
398
- $post_id = $post->ID;
399
- $post_type = $post->post_type;
400
-
401
- if ( BNFW_Notification::POST_TYPE != $post_type ) {
402
- $this->send_notification_async( 'private-' . $post_type, $post_id );
403
- }
404
- }
405
-
406
- /**
407
- * Fires when a post is updated.
408
- *
409
- * @since 1.0
410
- * @param unknown $post
411
- */
412
- public function update_post( $post ) {
413
- if ( $this->is_metabox_request() ) {
414
- return;
415
- }
416
-
417
- $post_id = $post->ID;
418
- $post_type = $post->post_type;
419
-
420
- if ( BNFW_Notification::POST_TYPE != $post_type ) {
421
- $this->send_notification_async( 'update-' . $post_type, $post_id );
422
- }
423
- }
424
 
 
 
 
 
425
 
426
  /**
427
  * Fires when a post is moved publish to trash.
428
  *
429
  */
430
- public function trash_post($post) {
431
- if ($this->is_metabox_request()) {
432
  return;
433
  }
434
- $post_id = $post->ID;
435
  $post_type = $post->post_type;
436
 
437
- if (BNFW_Notification::POST_TYPE != $post_type) {
438
- $this->send_notification_async('trash-' . $post_type, $post_id);
439
  }
440
  }
441
 
442
- /**
443
- * Fires when a post is pending for review.
444
- *
445
- * @since 1.1
446
- * @param int $post_id Post ID
447
- * @param object $post Post object
448
- */
449
- public function on_post_pending( $post_id, $post ) {
450
- if ( $this->is_metabox_request() ) {
451
- return;
452
- }
 
 
453
 
454
- $post_type = $post->post_type;
 
 
 
455
 
456
- if ( BNFW_Notification::POST_TYPE != $post_type ) {
457
- $this->send_notification_async( 'pending-' . $post_type, $post_id );
458
- }
459
- }
 
 
 
460
 
 
 
 
 
461
 
462
- /**
463
- * On Media Published.
464
- *
465
- * @param int $post_id Attachment post id.
466
- */
 
 
 
 
 
 
467
 
468
- public function new_publish_media_notification( $post_id ) {
469
- $post_type = get_post_type($post_id);
 
 
 
 
 
 
 
 
 
 
470
 
471
- if (BNFW_Notification::POST_TYPE != $post_type && $post_type == 'attachment') {
472
- $this->send_notification_async( 'new-media', $post_id );
473
- }
474
- }
475
 
476
- /**
477
- * On Media Attachment Data Update.
478
- *
479
- * @param int $post_id Attachment post id.
480
- */
481
-
482
- public function media_attachment_data_update_notification($post_id ) {
483
- $post_type = get_post_type($post_id);
484
- if (BNFW_Notification::POST_TYPE != $post_type && $post_type == 'attachment') {
485
- $this->send_notification_async( 'update-media', $post_id );
486
- }
487
- }
488
-
489
- /**
490
- * Fires when a post is scheduled.
491
- *
492
- * @since 1.1.5
493
- * @param int $post_id Post ID
494
- * @param object $post Post object
495
- */
496
- function on_post_scheduled( $post_id, $post ) {
497
- // Rest request also triggers the same hook. We can ignore it.
498
- if ( defined( 'REST_REQUEST' ) && REST_REQUEST ) {
499
- return;
500
- }
501
-
502
- $post_type = $post->post_type;
503
-
504
- if ( BNFW_Notification::POST_TYPE != $post_type ) {
505
- $this->send_notification_async( 'future-' . $post_type, $post_id );
506
- }
507
- }
508
-
509
- /**
510
- * When the status of a comment is changed.
511
- *
512
- * @param string $new_status New status.
513
- * @param string $old_status Old status.
514
- * @param \WP_Comment $comment Comment.
515
- */
516
- public function on_comment_status_change( $new_status, $old_status, $comment ) {
517
- if ( 'approved' !== $new_status ) {
518
- return;
519
- }
520
-
521
- $post = get_post( $comment->comment_post_ID );
522
-
523
- $notification_type = 'approve-'.$post->post_type.'-comment';
524
-
525
- $this->send_notification( $notification_type, $comment->comment_ID );
526
-
527
- // Send new comment notification after comment approve
528
- $notification_type = 'new-comment'; // old notification name
529
-
530
- if ( 'post' != $post->post_type ) {
531
- $notification_type = 'comment-' . $post->post_type;
532
- }
533
-
534
- $this->send_notification( $notification_type, $comment->comment_ID );
535
-
536
- // Send comment reply notification after comment approve.
537
- $this->commentsReply($comment->comment_ID);
538
- }
539
-
540
- /**
541
- * Send notification for new comments
542
- *
543
- * @since 1.0
544
- * @param int $comment_id
545
- */
546
- public function comment_post( $comment_id ) {
547
- $the_comment = get_comment( $comment_id );
548
- $post = get_post( $the_comment->comment_post_ID );
549
-
550
- if ( '1' !== $the_comment->comment_approved ) {
551
- if ( $this->can_send_comment_notification( $the_comment ) ) {
552
- $notification_type = 'moderate-' . $post->post_type . '-comment';
553
- $this->send_notification( $notification_type, $comment_id );
554
- }
555
- } else {
556
- $notification_type = 'new-comment'; // old notification name
557
-
558
- if ( 'post' != $post->post_type ) {
559
- $notification_type = 'comment-' . $post->post_type;
560
- }
561
-
562
- $this->send_notification( $notification_type, $comment_id );
563
-
564
- // comment reply notification.
565
- $this->commentsReply($comment_id);
566
- }
567
- }
568
 
569
- /**
570
- * Send notification for comments reply
571
- *
572
- * @since 1.0
573
- * @param int $comment_id
574
- */
575
- public function commentsReply($comment_id) {
576
- $the_comment = get_comment( $comment_id );
577
- $post = get_post( $the_comment->comment_post_ID );
578
-
579
- // comment reply notification.
580
- if ( $this->can_send_comment_notification( $the_comment ) ) {
581
- if ( $the_comment->comment_parent > 0 ) {
582
- $notification_type = 'reply-comment'; // old notification name
583
- if ( 'post' != $post->post_type ) {
584
- $notification_type = 'commentreply-' . $post->post_type;
585
- }
586
- $notifications = $this->notifier->get_notifications( $notification_type );
587
- if ( count( $notifications ) > 0 ) {
588
- $parent = get_comment( $the_comment->comment_parent );
589
- if ( $parent->comment_author_email != $the_comment->comment_author_email ) {
590
- foreach ( $notifications as $notification ) {
591
- $this->engine->send_comment_reply_email( $this->notifier->read_settings( $notification->ID ), $the_comment, $parent );
592
- }
593
- }
594
- }
595
- }
596
- }
597
- }
598
-
599
- /**
600
- * Send notification for new trackback
601
- *
602
- * @since 1.0
603
- * @param unknown $comment_id
604
- */
605
- function trackback_post( $comment_id ) {
606
- $the_comment = get_comment( $comment_id );
607
- if ( $this->can_send_comment_notification( $the_comment ) ) {
608
- $this->send_notification( 'new-trackback', $comment_id );
609
- }
610
- }
611
-
612
- /**
613
- * Send notification for new pingbacks
614
- *
615
- * @since 1.0
616
- * @param unknown $comment_id
617
- */
618
- function pingback_post( $comment_id ) {
619
- $the_comment = get_comment( $comment_id );
620
- if ( $this->can_send_comment_notification( $the_comment ) ) {
621
- $this->send_notification( 'new-pingback', $comment_id );
622
- }
623
- }
624
-
625
- /**
626
- * Send notification for lost password.
627
- *
628
- * @since 1.0
629
- */
630
- function on_lost_password() {
631
- $user_login = sanitize_text_field( $_POST['user_login'] );
632
- $user = get_user_by( 'login', $user_login );
633
- if ( $user ) {
634
- $this->send_notification( 'admin-password', $user->ID );
635
- }
636
- }
637
-
638
- /**
639
- * Change the title of the password reset email that is sent to the user.
640
- *
641
- * @since 1.1
642
- *
643
- * @param string $title
644
- * @param string $user_login
645
- * @param string $user_data
646
- *
647
- * @return string
648
- */
649
- public function change_password_email_title( $title, $user_login = '', $user_data = '' ) {
650
- $notifications = $this->notifier->get_notifications( 'user-password' );
651
- if ( count( $notifications ) > 0 ) {
652
- // Ideally there should be only one notification for this type.
653
- // If there are multiple notification then we will read data about only the last one
654
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
655
-
656
- if ( '' === $user_data ) {
657
- return $this->engine->handle_shortcodes( $setting['subject'], 'user-password', $user_data->ID );
658
- } else {
659
- return $this->engine->handle_shortcodes( $setting['subject'], 'user-password', $user_data->ID );
660
- }
661
- }
662
-
663
- return $title;
664
- }
665
-
666
- /**
667
- * Change the message of the password reset email.
668
- *
669
- * @since 1.1
670
- *
671
- * @param string $message
672
- * @param string $key
673
- * @param string $user_login
674
- * @param string $user_data
675
- *
676
- * @return string
677
- */
678
- public function change_password_email_message( $message, $key, $user_login = '', $user_data = '' ) {
679
- $notifications = $this->notifier->get_notifications( 'user-password' );
680
- if ( count( $notifications ) > 0 ) {
681
- // Ideally there should be only one notification for this type.
682
- // If there are multiple notification then we will read data about only the last one
683
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
684
-
685
- $message = $this->engine->handle_password_reset_shortcodes( $setting, $key, $user_login, $user_data );
686
-
687
- if ( 'html' == $setting['email-formatting'] ) {
688
- add_filter( 'wp_mail_content_type', array( $this, 'set_html_content_type' ) );
689
- if ( 'true' !== $setting['disable-autop'] ) {
690
- $message = wpautop( $message );
691
- }
692
- } else {
693
- add_filter( 'wp_mail_content_type', array( $this, 'set_text_content_type' ) );
694
- if('text' == $setting['email-formatting'] ){
695
- $message = strip_tags($message);
696
- }
697
- }
698
- } else {
699
- if ( $this->notifier->notification_exists( 'user-password', false ) ) {
700
- // disabled notification exists, so disable the email by returning empty string.
701
- return '';
702
- }
703
- }
704
-
705
- return $message;
706
- }
707
-
708
- /**
709
- * On Password reset.
710
- *
711
- * @param WP_User $user User who's password was changed.
712
- */
713
- public function on_password_reset( $user ) {
714
- $notifications = $this->notifier->get_notifications( 'password-changed' );
715
- foreach ( $notifications as $notification ) {
716
- $this->engine->send_password_changed_email( $this->notifier->read_settings( $notification->ID ), $user );
717
- }
718
- }
719
-
720
- /**
721
- * Should the password changed email be sent?
722
- *
723
- * @param $send
724
- * @param $user
725
- * @param $userdata
726
- *
727
- * @return bool
728
- */
729
- public function should_password_changed_email_be_sent( $send, $user, $userdata ) {
730
- $bnfw = BNFW::factory();
731
-
732
- if ( ! $send ) {
733
- return $send;
734
- }
735
-
736
- return ! $bnfw->notifier->is_notification_disabled( 'password-changed' );
737
- }
738
-
739
- /**
740
- * On Password Changed.
741
- *
742
- * @since 1.6
743
- *
744
- * @param array $email_data Email Data.
745
- * @param array $user User data.
746
- *
747
- * @return array Modified Email Data
748
- */
749
- public function on_password_changed( $email_data, $user ) {
750
- return $this->handle_filtered_data_notification( 'password-changed', $email_data, $user['ID'] );
751
- }
752
-
753
- /**
754
- * Should the email changed email be sent?
755
- *
756
- * @param $send
757
- * @param $user
758
- * @param $userdata
759
- *
760
- * @return bool
761
- */
762
- public function should_email_changed_email_be_sent( $send, $user, $userdata ) {
763
- $bnfw = BNFW::factory();
764
-
765
- if ( $bnfw->notifier->notification_exists( 'admin-email-changed', false ) ) {
766
- $notifications = $bnfw->notifier->get_notifications( 'admin-email-changed' );
767
-
768
- if ( count( $notifications ) > 0 ) {
769
- // Ideally there should be only one notification for this type.
770
- // If there are multiple notification then we will read data about only the last one
771
- $bnfw->engine->send_notification( $bnfw->notifier->read_settings( end( $notifications )->ID ), $user['ID'] );
772
- }
773
- }
774
-
775
- if ( ! $send ) {
776
- return $send;
777
- }
778
-
779
- return ! $bnfw->notifier->is_notification_disabled( 'email-changed' );
780
- }
781
-
782
- /**
783
- * On Email Changed.
784
- *
785
- * @since 1.6
786
- *
787
- * @param array $email_data Email Data.
788
- * @param array $user User data.
789
- *
790
- * @return array Modified Email Data
791
- */
792
- public function on_email_changed( $email_data, $user ) {
793
- return $this->handle_filtered_data_notification( 'email-changed', $email_data, $user['ID'] );
794
- }
795
-
796
- public function on_email_changing( $email_text, $new_user_details ) {
797
- $notification_name = 'email-changing';
798
-
799
- $notifications = $this->notifier->get_notifications( $notification_name );
800
- if ( count( $notifications ) > 0 ) {
801
- // Ideally there should be only one notification for this type.
802
- // If there are multiple notification then we will read data about only the last one
803
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
804
-
805
- $email_text = $this->engine->handle_shortcodes( $setting['message'], $setting['notification'], $new_user_details['newemail'] );
806
- $email_text = $this->engine->handle_global_user_shortcodes( $email_text, $new_user_details['newemail'] );
807
- $email_text = str_replace( '[email_change_confirmation_link]', esc_url( admin_url( 'profile.php?newuseremail=' . $new_user_details['hash'] ) ), $email_text );
808
-
809
- }
810
-
811
- return $email_text;
812
- }
813
-
814
- /**
815
- * Send notification on core updated event.
816
- *
817
- * @since 1.6
818
- *
819
- * @param array $email_data Email Data.
820
- * @param string $type The type of email being sent. Can be one of
821
- * 'success', 'fail', 'manual', 'critical'.
822
- * @param object $core_update The update offer that was attempted.
823
- * @param mixed $result The result for the core update. Can be WP_Error.
824
- *
825
- * @return array Modified Email Data.
826
- */
827
- public function on_core_updated( $email_data, $type, $core_update, $result ) {
828
- $notifications = $this->notifier->get_notifications( 'core-updated' );
829
- if ( count( $notifications ) > 0 ) {
830
- // Ideally there should be only one notification for this type.
831
- // If there are multiple notification then we will read data about only the last one
832
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
833
-
834
- $email_data = $this->engine->handle_core_updated_notification( $email_data, $setting, $type );
835
- }
836
-
837
- return $email_data;
838
- }
839
-
840
- /**
841
- * Process User update notifications.
842
- *
843
- * @since 1.6
844
- *
845
- * @param string $notification_name Notification Name.
846
- * @param array $email_data Email Data.
847
- * @param string|int $extra_data User Id.
848
- *
849
- * @return array Modified Email Data.
850
- */
851
- private function handle_filtered_data_notification( $notification_name, $email_data, $extra_data ) {
852
- $notifications = $this->notifier->get_notifications( $notification_name );
853
- if ( count( $notifications ) > 0 ) {
854
- // Ideally there should be only one notification for this type.
855
- // If there are multiple notification then we will read data about only the last one
856
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
857
-
858
- $email_data = $this->engine->handle_filtered_data_notification( $email_data, $setting, $extra_data );
859
- }
860
-
861
- return $email_data;
862
- }
863
-
864
- /**
865
- * Set the email formatting to HTML.
866
- *
867
- * @since 1.4
868
- */
869
- public function set_html_content_type() {
870
- return 'text/html';
871
- }
872
-
873
- /**
874
- * Set the email formatting to text.
875
- *
876
- * @since 1.4
877
- */
878
- public function set_text_content_type() {
879
- return 'text/plain';
880
- }
881
-
882
- /**
883
- * Send notification for new users.
884
- *
885
- * @since 1.0
886
- * @param int $user_id
887
- */
888
- public function user_register( $user_id ) {
889
- $this->send_notification( 'admin-user', $user_id );
890
- }
891
-
892
- /**
893
- * Send notification for user when user login.
894
- *
895
- * @since 1.0
896
- * @param string $user_name
897
- * @param object $user_data User object.
898
- */
899
- public function user_login( $user_name, $user_data ) {
900
- $user_id = $user_data->ID;
901
- $notifications = $this->notifier->get_notifications( 'user-login' );
902
 
903
- foreach ( $notifications as $notification ) {
904
- $this->engine->send_user_login_email( $this->notifier->read_settings( $notification->ID ), get_userdata( $user_id ) );
905
- }
906
 
907
- $this->user_login_admin_notification($user_id);
908
- }
909
 
910
- /**
911
- * Send notification for admin when user login.
912
- *
913
- * @since 1.0
914
- * @param int $user_id
915
- */
916
- public function user_login_admin_notification( $user_id ) {
917
- $notifications = $this->notifier->get_notifications( 'admin-user-login' );
918
 
919
- foreach ( $notifications as $notification ) {
920
- $this->engine->send_user_login_email_for_admin( $this->notifier->read_settings( $notification->ID ), get_userdata( $user_id ) );
921
- }
922
- }
923
-
924
- /**
925
- * Send notification about new users to site admin.
926
- *
927
- * @since 1.7.1
928
- *
929
- * @param array $email_data Email details.
930
- * @param WP_User $user User object.
931
- * @param string $blogname Blog name.
932
- *
933
- * @return array Modified email details.
934
- */
935
- public function handle_user_registered_admin_email( $email_data, $user, $blogname ) {
936
- return $this->handle_filtered_data_notification( 'admin-user', $email_data, $user->ID );
937
- }
938
-
939
- /**
940
- * New User - Post-registration Email
941
- *
942
- * @since 1.1
943
- * @param int $user_id New user id
944
- */
945
- public function welcome_email( $user_id ) {
946
- $notifications = $this->notifier->get_notifications( 'welcome-email' );
947
- foreach ( $notifications as $notification ) {
948
- $this->engine->send_registration_email( $this->notifier->read_settings( $notification->ID ), get_userdata( $user_id ) );
949
- }
950
- }
951
-
952
- /**
953
- * Send notification when a user role changes.
954
- *
955
- * @since 1.3.9
956
- *
957
- * @param int $user_id User ID
958
- * @param string $new_role New User role
959
- * @param array $old_roles Old User role
960
- */
961
- public function user_role_changed( $user_id, $new_role, $old_roles ) {
962
- if ( ! empty( $old_roles ) ) {
963
- $notifications = $this->notifier->get_notifications( 'user-role' );
964
- foreach ( $notifications as $notification ) {
965
-
966
- /**
967
- * Trigger User Role Changed - For User notification.
968
- *
969
- * @since 1.6.5
970
- */
971
- if ( apply_filters( 'bnfw_trigger_user-role_notification', true, $notification, $new_role, $old_roles ) ) {
972
- $this->engine->send_user_role_changed_email(
973
- $this->notifier->read_settings( $notification->ID ),
974
- $user_id,
975
- $old_roles[0],
976
- $new_role
977
- );
978
- }
979
- }
980
-
981
- $notifications = $this->notifier->get_notifications( 'admin-role' );
982
- foreach ( $notifications as $notification ) {
983
-
984
- /**
985
- * Trigger User Role Changed - For User notification.
986
- *
987
- * @since 1.6.5
988
- */
989
- if ( apply_filters( 'bnfw_trigger_admin-role_notification', true, $notification, $new_role, $old_roles ) ) {
990
- $setting = $this->notifier->read_settings( $notification->ID );
991
- $setting['message'] = $this->engine->handle_user_role_shortcodes( $setting['message'], $old_roles[0], $new_role );
992
- $setting['subject'] = $this->engine->handle_user_role_shortcodes( $setting['subject'], $old_roles[0], $new_role );
993
-
994
- $this->engine->send_notification( $setting, $user_id );
995
- }
996
- }
997
- }
998
- }
999
-
1000
- /**
1001
- * Send notification when a user role added support User Role Editor by Members Plugin.
1002
- *
1003
- * @since 1.3.9
1004
- *
1005
- * @param int $user_id User ID
1006
- * @param string $new_role New User role
1007
- * @param array $old_roles Old User role
1008
- */
1009
- public function user_role_added( $user_id, $old_user_data ) {
1010
-
1011
- if(isset($_POST['members_user_roles']) && !empty($_POST['members_user_roles'])){
1012
- // Get the current user roles.
1013
- $old_roles = (array) $old_user_data->roles;
1014
-
1015
- // Sanitize the posted roles.
1016
- $new_roles = array_map( 'members_sanitize_role', $_POST['members_user_roles'] );
1017
-
1018
- sort($old_roles);
1019
- sort($new_roles);
1020
- $old_roles_str = implode('', $old_roles);
1021
- $new_roles_str = implode('', $new_roles);
1022
- if ( ! empty( $old_roles ) && $old_roles_str !== $new_roles_str) {
1023
- $notifications = $this->notifier->get_notifications( 'user-role' );
1024
- foreach ( $notifications as $notification ) {
1025
-
1026
- /**
1027
- * Trigger User Role Changed - For User notification.
1028
- *
1029
- * @since 1.6.5
1030
- */
1031
- if ( apply_filters( 'bnfw_trigger_user-role-added_notification', true, $notification, $new_roles, $old_roles ) ) {
1032
- $this->engine->send_user_role_added_email(
1033
- $this->notifier->read_settings( $notification->ID ),
1034
- $user_id,
1035
- $old_roles,
1036
- $new_roles
1037
- );
1038
- }
1039
- }
1040
-
1041
- $notifications = $this->notifier->get_notifications( 'admin-role' );
1042
- foreach ( $notifications as $notification ) {
1043
-
1044
- /**
1045
- * Trigger User Role Changed - For User notification.
1046
- *
1047
- * @since 1.6.5
1048
- */
1049
- if ( apply_filters( 'bnfw_trigger_user-role-added_notification', true, $notification, $new_roles, $old_roles ) ) {
1050
- $setting = $this->notifier->read_settings( $notification->ID );
1051
- $setting['message'] = $this->engine->handle_user_added_role_shortcodes( $setting['message'], $old_roles, $new_roles );
1052
- $setting['subject'] = $this->engine->handle_user_added_role_shortcodes( $setting['subject'], $old_roles, $new_roles );
1053
-
1054
- $this->engine->send_notification( $setting, $user_id );
1055
- }
1056
- }
1057
- }
1058
- }
1059
- }
1060
 
1061
- /**
1062
- * Sanitizes a role name. This is a wrapper for the `sanitize_key()` WordPress function. Only
1063
- * alphanumeric characters and underscores are allowed. Hyphens are also replaced with underscores.
1064
- *
1065
- * @since 1.0.0
1066
- * @access public
1067
- * @return int
1068
- */
1069
- function members_sanitize_role( $role ) {
1070
-
1071
- $_role = strtolower( $role );
1072
- $_role = preg_replace( '/[^a-z0-9_\-\s]/', '', $_role );
1073
-
1074
- return apply_filters( 'members_sanitize_role', str_replace( ' ', '_', $_role ), $role );
1075
- }
1076
-
1077
- /**
1078
- * Send notification based on type and ref id
1079
- *
1080
- * @since 1.0
1081
- * @param string $type Notification type.
1082
- * @param mixed $ref_id Reference data.
1083
- */
1084
- public function send_notification( $type, $ref_id ) {
1085
- $notifications = $this->notifier->get_notifications( $type );
1086
- foreach ( $notifications as $notification ) {
1087
- $this->engine->send_notification( $this->notifier->read_settings( $notification->ID ), $ref_id );
1088
- }
1089
- }
1090
-
1091
- /**
1092
- * Send notification async based on type and ref id.
1093
- *
1094
- * @param string $type Notification type.
1095
- * @param mixed $ref_id Reference data.
1096
- */
1097
- public function send_notification_async( $type, $ref_id ) {
1098
- $notifications = $this->notifier->get_notifications( $type, false );
1099
- foreach ( $notifications as $notification ) {
1100
- $transient = get_transient( 'bnfw-async-notifications' );
1101
- if ( ! is_array( $transient ) ) {
1102
- $transient = array();
1103
- }
1104
-
1105
- $notification_data = array(
1106
- 'ref_id' => $ref_id,
1107
- 'notification_id' => $notification->ID,
1108
- 'notification_type' => $type,
1109
- );
1110
-
1111
- if ( ! in_array( $notification_data, $transient ) ) {
1112
- $transient[] = $notification_data;
1113
- set_transient( 'bnfw-async-notifications', $transient, 600 );
1114
- }
1115
- }
1116
- }
1117
-
1118
- /**
1119
- * Can send comment notification or not
1120
- *
1121
- * @since 1.0
1122
- * @param unknown $comment
1123
- * @return unknown
1124
- */
1125
- private function can_send_comment_notification( $comment ) {
1126
- // Returns false if the comment is marked as spam AND admin has enabled suppression of spam
1127
- $suppress_spam = get_option( 'bnfw_suppress_spam' );
1128
- if ( '1' === $suppress_spam && ( 0 === strcmp( $comment->comment_approved, 'spam' ) ) ) {
1129
- return false;
1130
- }
1131
- return true;
1132
- }
1133
-
1134
- /**
1135
- * Handle user request email content.
1136
- *
1137
- * @param string $content Content.
1138
- * @param array $email_data Email data.
1139
- *
1140
- * @return string Modified content.
1141
- */
1142
- public function handle_user_request_email_content( $content, $email_data ) {
1143
- $field = 'message';
1144
- $new_content = '';
1145
-
1146
- switch ( $email_data['description'] ) {
1147
- case 'Export Personal Data':
1148
- $notification_name = 'ca-export-data';
1149
- $new_content = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1150
- break;
1151
- case 'Erase Personal Data':
1152
- $notification_name = 'ca-erase-data';
1153
- $new_content = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1154
- break;
1155
- }
1156
-
1157
- if(!empty($new_content)){
1158
- return $new_content;
1159
- }else{
1160
- return $content;
1161
- }
1162
- }
1163
-
1164
- /**
1165
- * Handle user request email subject.
1166
- *
1167
- * @param string $subject Subject
1168
- * @param string $blogname Blog name
1169
- * @param array $email_data Email data.
1170
- *
1171
- * @return string Modified subject.
1172
- */
1173
- public function handle_user_request_email_subject( $subject, $blogname, $email_data ) {
1174
- $field = 'subject';
1175
- $new_subject = '';
1176
-
1177
- switch ( $email_data['description'] ) {
1178
- case 'Export Personal Data':
1179
- $notification_name = 'ca-export-data';
1180
- $new_subject = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1181
- break;
1182
- case 'Erase Personal Data':
1183
- $notification_name = 'ca-erase-data';
1184
- $new_subject = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1185
- break;
1186
- }
1187
- if(!empty($new_subject)){
1188
- return $new_subject;
1189
- }else{
1190
- return $subject;
1191
  }
1192
- }
1193
-
1194
- /**
1195
- * Handle user confirmed action email content.
1196
- *
1197
- * @param string $content Content.
1198
- * @param array $email_data Email data.
1199
- *
1200
- * @return string Modified content.
1201
- */
1202
- public function handle_user_confirmed_action_email_content( $content, $email_data ) {
1203
- $field = 'message';
1204
- $new_content = '';
1205
-
1206
- switch ( $email_data['description'] ) {
1207
- case 'Export Personal Data':
1208
- $notification_name = 'uc-export-data';
1209
- $new_content = $this->handle_user_confirmed_action_notification( $notification_name, $field, $email_data );
1210
- break;
1211
- case 'Erase Personal Data':
1212
- $notification_name = 'uc-erase-data';
1213
- $new_content = $this->handle_user_confirmed_action_notification( $notification_name, $field, $email_data );
1214
- break;
1215
- }
1216
-
1217
- if(!empty($new_content)){
1218
- return $new_content;
1219
- }else{
1220
- return $content;
1221
  }
1222
- }
1223
-
1224
- /**
1225
- * Handle data exported email content.
1226
- *
1227
- * @param string $content Content.
1228
- * @param int $request_id
1229
- *
1230
- * @return string Modified content.
1231
- */
1232
- public function handle_data_export_email_content( $content, $request_id ) {
1233
- $field = 'message';
1234
- $notification_name = 'data-export';
1235
- $new_content = '';
1236
-
1237
- $notifications = $this->notifier->get_notifications( $notification_name );
1238
- if ( count( $notifications ) > 0 ) {
1239
- // Ideally there should be only one notification for this type.
1240
- // If there are multiple notification then we will read data about only the last one
1241
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
1242
-
1243
- $new_content = $this->engine->handle_data_export_email_shortcodes( $setting[ $field ], $setting, $request_id );
1244
- }
1245
-
1246
- if(!empty($new_content)){
1247
- return $new_content;
1248
- }else{
1249
- return $content;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1250
  }
1251
- }
1252
-
1253
- public function handle_erasure_complete_email_subject( $subject, $sitename, $email_data ) {
1254
- return $this->handle_erasure_complete_email_notification( 'subject', $subject, $email_data );
1255
- }
1256
-
1257
- public function handle_erasure_complete_email_content( $content, $email_data ) {
1258
- if ( isset( $email_data['privacy_policy_url'] ) ) {
1259
- return $this->handle_erasure_complete_email_notification( 'message', $content, $email_data );
1260
- }
1261
-
1262
- return $content;
1263
- }
1264
-
1265
- protected function handle_erasure_complete_email_notification( $field, $content, $email_data ) {
1266
- $notification_name = 'data-erased';
1267
- $new_content = '';
1268
- $notifications = $this->notifier->get_notifications( $notification_name );
1269
- if ( count( $notifications ) > 0 ) {
1270
- // Ideally there should be only one notification for this type.
1271
- // If there are multiple notification then we will read data about only the last one
1272
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
1273
- $new_content = $this->engine->handle_shortcodes( $setting[ $field ], $notification_name, $email_data );
1274
- }
1275
- if(!empty($new_content)){
1276
- return $new_content;
1277
- }else{
1278
- return $content;
1279
  }
1280
- }
1281
-
1282
- /**
1283
- * Send notification emails on shutdown.
1284
- */
1285
- public function on_shutdown() {
1286
- if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
1287
- return;
1288
- }
1289
-
1290
- $transient = get_transient( 'bnfw-async-notifications' );
1291
- if ( is_array( $transient ) ) {
1292
- delete_transient( 'bnfw-async-notifications' );
1293
- foreach ( $transient as $id_pairs ) {
1294
- $this->engine->send_notification( $this->notifier->read_settings( $id_pairs['notification_id'] ), $id_pairs['ref_id'] );
1295
- }
1296
- }
1297
- }
1298
-
1299
- /**
1300
- * Handle user request notification.
1301
- *
1302
- * @param string $notification_name Notification name.
1303
- * @param string $field Field name.
1304
- * @param array $email_data Email data.
1305
- *
1306
- * @return string Content.
1307
- */
1308
- protected function handle_user_request_notification( $notification_name, $field, $email_data ) {
1309
- $notifications = $this->notifier->get_notifications( $notification_name );
1310
- if ( count( $notifications ) > 0 ) {
1311
- // Ideally there should be only one notification for this type.
1312
- // If there are multiple notification then we will read data about only the last one
1313
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
1314
-
1315
- return $this->engine->handle_user_request_email_shortcodes( $setting[ $field ], $setting, $email_data );
1316
- }
1317
-
1318
- return '';
1319
- }
1320
-
1321
- /**
1322
- * Handle user confirmed action notification.
1323
- *
1324
- * @param string $notification_name Notification name.
1325
- * @param string $field Field name.
1326
- * @param array $email_data Email data.
1327
- *
1328
- * @return string Content.
1329
- */
1330
- protected function handle_user_confirmed_action_notification( $notification_name, $field, $email_data ) {
1331
- $notifications = $this->notifier->get_notifications( $notification_name );
1332
- if ( count( $notifications ) > 0 ) {
1333
- // Ideally there should be only one notification for this type.
1334
- // If there are multiple notification then we will read data about only the last one
1335
- $setting = $this->notifier->read_settings( end( $notifications )->ID );
1336
-
1337
- return $this->engine->handle_user_confirmed_action_email_shortcodes( $setting[ $field ], $setting, $email_data );
1338
- }
1339
-
1340
- return '';
1341
- }
1342
-
1343
- /**
1344
- * Is this a metabox request?
1345
- *
1346
- * Block editor sends duplicate requests on post update.
1347
- *
1348
- * @return bool True if metabox request, False otherwise.
1349
- */
1350
- protected function is_metabox_request() {
1351
- return ( isset( $_GET['meta-box-loader'] ) || isset( $_GET['meta_box'] ) );
1352
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1353
  }
1354
 
1355
  /* ------------------------------------------------------------------------ *
4
  * Plugin Name: Better Notifications for WP
5
  * Plugin URI: https://wordpress.org/plugins/bnfw/
6
  * Description: Supercharge your WordPress notifications using a WYSIWYG editor and shortcodes. Default and new notifications available. Add more power with Add-ons.
7
+ * Version: 1.8.5
8
  * Requires at least: 4.8
9
  * Requires PHP: 5.6
10
  * Author: Made with Fuel
16
  */
17
 
18
  /**
19
+ * Copyright © 2021 Made with Fuel Ltd. (hello@betternotificationsforwp.com)
20
  * This program is free software; you can redistribute it and/or modify
21
  * it under the terms of the GNU General Public License, version 2, as
22
  * published by the Free Software Foundation.
28
  * along with this program; if not, write to the Free Software
29
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30
  */
 
31
  class BNFW {
32
 
33
+ /**
34
+ * Constructor.
35
+ *
36
+ * @since 1.0
37
+ */
38
+ function __construct() {
39
+ $this->load_textdomain();
40
+ $this->includes();
41
+ $this->hooks();
42
+
43
+ /**
44
+ * BNFW Notification.
45
+ *
46
+ * @var \BNFW_Notification
47
+ */
48
+ $this->notifier = new BNFW_Notification;
49
+
50
+ /**
51
+ * BNFW Engine.
52
+ *
53
+ * @var \BNFW_Engine
54
+ */
55
+ $this->engine = new BNFW_Engine;
56
+ }
57
+
58
+ /**
59
+ * Factory method to return the instance of the class.
60
+ *
61
+ * Makes sure that only one instance is created.
62
+ *
63
+ * @return \BNFW Instance of the class.
64
+ */
65
+ public static function factory() {
66
+ static $instance = false;
67
+ if ( ! $instance ) {
68
+ $instance = new self();
69
+ }
70
+ return $instance;
71
+ }
72
+
73
+ /**
74
+ * Loads the plugin language files
75
+ *
76
+ * @since 1.0
77
+ */
78
+ public function load_textdomain() {
79
+ // Load localization domain
80
+ $this->translations = dirname( plugin_basename( __FILE__ ) ) . '/languages/';
81
+ load_plugin_textdomain( 'bnfw', false, $this->translations );
82
+ }
83
+
84
+ /**
85
+ * Include required files.
86
+ *
87
+ * @since 1.0
88
+ */
89
+ public function includes() {
90
+
91
+ // Load license related classes
92
+ if ( ! class_exists( 'EDD_SL_Plugin_Updater' ) ) {
93
+ require_once 'includes/libraries/EDD_SL_Plugin_Updater.php';
94
+ }
95
+
96
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
97
+
98
+ require_once 'vendor/persist-admin-notices-dismissal/persist-admin-notices-dismissal.php';
99
+
100
+ require_once 'includes/license/class-bnfw-license.php';
101
+ require_once 'includes/license/class-bnfw-license-setting.php';
102
+
103
+ // Load Engine
104
+ require_once 'includes/engine/class-bnfw-engine.php';
105
+ require_once 'includes/overrides.php';
106
+
107
+ // Load notification post type and notification helpers
108
+ require_once 'includes/admin/class-bnfw-notification.php';
109
+ require_once 'includes/notification/post-notification.php';
110
+
111
+ // Helpers
112
+ require_once 'includes/helpers/helpers.php';
113
+ require_once 'includes/helpers/ajax-helpers.php';
114
+
115
+ // Load Admin Pages
116
+ if ( is_admin() ) {
117
+ require_once 'includes/admin/bnfw-settings.php';
118
+ }
119
+ }
120
+
121
+ /**
122
+ * Register Hooks.
123
+ *
124
+ * @since 1.0
125
+ */
126
+ public function hooks() {
127
+ global $wp_version;
128
+
129
+ register_activation_hook( __FILE__, array( $this, 'activate' ) );
130
+
131
+ add_action( 'admin_init', array( 'PAnD', 'init' ) );
132
+ add_action( 'admin_init', array( $this, 'add_capability_to_admin' ) );
133
+
134
+ add_action( 'draft_to_private', array( $this, 'private_post' ) );
135
+ add_action( 'future_to_private', array( $this, 'private_post' ) );
136
+ add_action( 'pending_to_private', array( $this, 'private_post' ) );
137
+ add_action( 'publish_to_private', array( $this, 'private_post' ) );
138
+
139
+ add_action( 'wp_insert_post', array( $this, 'insert_post' ), 10, 3 );
140
+
141
+ add_action( 'publish_to_trash', array( $this, 'trash_post' ) );
142
+
143
+ add_action( 'auto-draft_to_publish', array( $this, 'publish_post' ) );
144
+ add_action( 'draft_to_publish', array( $this, 'publish_post' ) );
145
+ add_action( 'future_to_publish', array( $this, 'publish_post' ) );
146
+ add_action( 'pending_to_publish', array( $this, 'publish_post' ) );
147
+ add_action( 'private_to_publish', array( $this, 'publish_post' ) );
148
  // add_action( 'acf/submit_form' , array( $this, 'acf_submit_form' ), 10, 2 );
149
 
150
+ add_action( 'publish_to_publish', array( $this, 'update_post' ) );
151
+ add_action( 'private_to_private', array( $this, 'update_post' ) );
152
+
153
+ add_action( 'add_attachment', array( $this, 'new_publish_media_notification' ), 10, 1 );
154
+ add_action( 'edit_attachment', array( $this, 'media_attachment_data_update_notification' ), 10 );
155
+
156
+ add_action( 'transition_post_status', array( $this, 'on_post_transition' ), 10, 3 );
157
+
158
+ add_action( 'init', array( $this, 'custom_post_type_hooks' ), 100 );
159
+ add_action( 'create_term', array( $this, 'create_term' ), 10, 3 );
160
+
161
+ add_action( 'transition_comment_status', array( $this, 'on_comment_status_change' ), 10, 3 );
162
+ add_action( 'comment_post', array( $this, 'comment_post' ) );
163
+ add_action( 'trackback_post', array( $this, 'trackback_post' ) );
164
+ add_action( 'pingback_post', array( $this, 'pingback_post' ) );
165
+
166
+ add_action( 'user_register', array( $this, 'user_register' ) );
167
+
168
+ add_action( 'user_register', array( $this, 'welcome_email' ) );
169
+
170
+ if ( is_plugin_active( 'members/members.php' ) ) {
171
+
172
+ add_action('add_user_role', array($this,'user_role_added_from_member_plugin'), 10, 2);
173
+ add_action('remove_user_role', array($this,'user_role_removed_from_member_plugin'), 10, 2);
174
+ add_action('set_user_role', array( $this, 'user_role_changed' ), 10, 3 );
175
+
176
+ add_action( 'profile_update', array( $this, 'user_role_added' ), 10, 2 );
177
+ } else {
178
+ add_action( 'set_user_role', array( $this, 'user_role_changed' ), 10, 3 );
179
+ }
180
+
181
+
182
+
183
+ add_action( 'wp_login', array( $this, 'user_login' ), 10, 2 );
184
+
185
+ if ( version_compare( $wp_version, '4.4', '>=' ) ) {
186
+ add_filter( 'retrieve_password_title', array( $this, 'change_password_email_title' ), 10, 3 );
187
+ } else {
188
+ add_filter( 'retrieve_password_title', array( $this, 'change_password_email_title' ) );
189
+ }
190
+ add_action( 'lostpassword_post', array( $this, 'on_lost_password' ) );
191
+ add_filter( 'retrieve_password_message', array( $this, 'change_password_email_message' ), 10, 4 );
192
+
193
+ add_action( 'after_password_reset', array( $this, 'on_password_reset' ) );
194
+
195
+ add_filter( 'send_password_change_email', array( $this, 'should_password_changed_email_be_sent' ), 10, 3 );
196
+ add_filter( 'password_change_email', array( $this, 'on_password_changed' ), 10, 2 );
197
+
198
+ add_filter( 'send_email_change_email', array( $this, 'should_email_changed_email_be_sent' ), 10, 3 );
199
+ add_filter( 'email_change_email', array( $this, 'on_email_changed' ), 10, 3 );
200
+ add_filter( 'new_user_email_content', array( $this, 'on_email_changing' ), 10, 2 );
201
+
202
+ add_filter( 'auto_core_update_email', array( $this, 'on_core_updated' ), 10, 4 );
203
+
204
+ add_filter( 'user_request_action_email_content', array( $this, 'handle_user_request_email_content' ), 10, 2 );
205
+ add_filter( 'user_request_action_email_subject', array( $this, 'handle_user_request_email_subject' ), 10, 3 );
206
+
207
+ add_filter( 'user_confirmed_action_email_content', array( $this, 'handle_user_confirmed_action_email_content' ), 10, 2 );
208
+
209
+ add_filter( 'wp_privacy_personal_data_email_content', array( $this, 'handle_data_export_email_content' ), 10, 3 );
210
+
211
+ add_filter( 'user_erasure_complete_email_subject', array( $this, 'handle_erasure_complete_email_subject' ), 10, 3 );
212
+ add_filter( 'user_confirmed_action_email_content', array( $this, 'handle_erasure_complete_email_content' ), 10, 2 );
213
+
214
+ add_filter( 'plugin_action_links', array( $this, 'plugin_action_links' ), 10, 4 );
215
+ add_action( 'shutdown', array( $this, 'on_shutdown' ) );
216
+ }
217
+
218
+ /**
219
+ * Add 'bnfw' capability to admin.
220
+ */
221
+ public function add_capability_to_admin() {
222
+ $admins = get_role( 'administrator' );
223
+
224
+ if ( is_null( $admins ) ) {
225
+ return;
226
+ }
227
+
228
+ if ( ! $admins->has_cap( 'bnfw' ) ) {
229
+ $admins->add_cap( 'bnfw' );
230
+ }
231
+ }
232
+
233
+ /**
234
+ * On post transition.
235
+ *
236
+ * @param string $new_status New post status.
237
+ * @param string $old_status Old post status.
238
+ * @param \WP_Post $post Post object.
239
+ */
240
+ public function on_post_transition( $new_status, $old_status, $post ) {
241
+ if ( ! is_a( $post, 'WP_Post' ) ) {
242
+ return;
243
+ }
244
+
245
+ if ( 'pending' === $old_status ) {
246
+ return;
247
+ }
248
+
249
+ if ( 'pending' !== $new_status ) {
250
+ return;
251
+ }
252
+
253
+ $this->on_post_pending( $post->ID, $post );
254
+ }
255
+
256
+ /**
257
+ * Setup hooks for custom post types.
258
+ *
259
+ * @since 1.2
260
+ */
261
+ function custom_post_type_hooks() {
262
+ $post_types = get_post_types( array( 'public' => true ), 'names' );
263
+ $post_types = array_diff( $post_types, array( BNFW_Notification::POST_TYPE ) );
264
+
265
+ foreach ( $post_types as $post_type ) {
266
+ add_action( 'future_' . $post_type, array( $this, 'on_post_scheduled' ), 10, 2 );
267
+ }
268
+ }
269
+
270
+ /**
271
+ * importer
272
+ */
273
+ public function activate() {
274
+ require_once dirname( __FILE__ ) . '/includes/import.php';
275
+ $importer = new BNFW_Import;
276
+ $importer->import();
277
+ }
278
+
279
+ /**
280
+ * Add 'Settings' link below BNFW in Plugins list.
281
+ *
282
+ * @since 1.0
283
+ * @param unknown $links
284
+ * @param unknown $file
285
+ * @return unknown
286
+ */
287
+ public function plugin_action_links( $links, $file ) {
288
+ $plugin_file = 'bnfw/bnfw.php';
289
+ if ( $file == $plugin_file ) {
290
+ $settings_link = '<a href="' . esc_url( admin_url( 'edit.php?post_type=bnfw_notification&page=bnfw-settings' ) ) . '">' . esc_html__( 'Settings', 'bnfw' ) . '</a>';
291
+ array_unshift( $links, $settings_link );
292
+ }
293
+ return $links;
294
+ }
295
+
296
+ /**
297
+ * When a new term is created.
298
+ *
299
+ * @since 1.0
300
+ * @param int $term_id
301
+ * @param int $tt_id
302
+ * @param string $taxonomy
303
+ */
304
+ public function create_term( $term_id, $tt_id, $taxonomy ) {
305
+ $this->send_notification( 'newterm-' . $taxonomy, $term_id );
306
+ }
307
+
308
+ /**
309
+ * Fires when a post is created for the first time.
310
+ *
311
+ * @param int $post_id Post ID
312
+ * @param object $post Post object
313
+ * @param bool $update Whether this is an existing post being updated or not.
314
+ *
315
+ * @since 1.3.1
316
+ */
317
+ public function insert_post( $post_id, $post, $update ) {
318
+ // Some themes like P2, directly insert posts into DB.
319
+ $insert_post_themes = apply_filters( 'bnfw_insert_post_themes', array( 'P2', 'Syncope' ) );
320
+ $current_theme = wp_get_theme();
321
+
322
+ /**
323
+ * Whether to trigger insert post hook.
324
+ *
325
+ * @since 1.4
326
+ */
327
+ $trigger_insert_post = apply_filters( 'bnfw_trigger_insert_post', false, $post_id, $update );
328
+
329
+ if ( in_array( $current_theme->get( 'Name' ), $insert_post_themes ) || $trigger_insert_post ) {
330
+ $this->handle_inserted_post( $post_id, $update );
331
+ }
332
+ }
333
+
334
+ /**
335
+ * Trigger New Post published notification for ACF forms.
336
+ *
337
+ * @param string $form ACF Form.
338
+ * @param int $post_id Post ID.
339
+ */
340
+ public function acf_submit_form( $form, $post_id ) {
341
+ $this->handle_inserted_post( $post_id );
342
+ }
343
+
344
+ /**
345
+ * Trigger correct notifications for inserted posts.
346
+ *
347
+ * @param int $post_id Post id.
348
+ * @param bool $update Whether the post was updated.
349
+ *
350
+ * @since 1.6.7
351
+ */
352
+ private function handle_inserted_post( $post_id, $update ) {
353
+ $post = get_post( $post_id );
354
+
355
+ if ( ! is_a( $post, 'WP_Post' ) ) {
356
+ return;
357
+ }
358
+
359
+ switch ( $post->post_status ) {
360
+ case 'publish':
361
+ if ( $update ) {
362
+ $this->update_post( $post );
363
+ } else {
364
+ $this->publish_post( $post );
365
+ }
366
+ break;
367
 
368
+ case 'private':
369
+ $this->private_post( $post );
370
+ break;
371
 
372
+ case 'pending':
373
+ $this->on_post_pending( $post_id, $post );
374
+ break;
375
 
376
+ case 'future':
377
+ $this->on_post_scheduled( $post_id, $post );
378
+ break;
379
+ }
380
+ }
381
+
382
+ /**
383
+ * Fires when a post is created for the first time.
384
+ *
385
+ * @since 1.0
386
+ * @param object $post Post Object
387
+ */
388
+ function publish_post( $post ) {
389
+ $post_id = $post->ID;
390
+ $post_type = $post->post_type;
391
 
392
+ if ( BNFW_Notification::POST_TYPE != $post_type ) {
393
+ $this->send_notification_async( 'new-' . $post_type, $post_id );
394
+ }
395
+ }
396
 
397
+ /**
398
+ * Fires when a private post is created.
399
+ *
400
+ * @since 1.6
401
+ * @param object $post Post Object
402
+ */
403
+ public function private_post( $post ) {
404
+ $post_id = $post->ID;
405
+ $post_type = $post->post_type;
406
 
407
+ if ( BNFW_Notification::POST_TYPE != $post_type ) {
408
+ $this->send_notification_async( 'private-' . $post_type, $post_id );
409
+ }
410
+ }
411
 
412
+ /**
413
+ * Fires when a post is updated.
414
+ *
415
+ * @since 1.0
416
+ * @param unknown $post
417
+ */
418
+ public function update_post( $post ) {
419
+ if ( $this->is_metabox_request() ) {
420
+ return;
421
  }
422
 
423
+ $post_id = $post->ID;
424
+ $post_type = $post->post_type;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
 
426
+ if ( BNFW_Notification::POST_TYPE != $post_type ) {
427
+ $this->send_notification_async( 'update-' . $post_type, $post_id );
428
+ }
429
+ }
430
 
431
  /**
432
  * Fires when a post is moved publish to trash.
433
  *
434
  */
435
+ public function trash_post( $post ) {
436
+ if ( $this->is_metabox_request() ) {
437
  return;
438
  }
439
+ $post_id = $post->ID;
440
  $post_type = $post->post_type;
441
 
442
+ if ( BNFW_Notification::POST_TYPE != $post_type ) {
443
+ $this->send_notification_async( 'trash-' . $post_type, $post_id );
444
  }
445
  }
446
 
447
+ /**
448
+ * Fires when a post is pending for review.
449
+ *
450
+ * @since 1.1
451
+ * @param int $post_id Post ID
452
+ * @param object $post Post object
453
+ */
454
+ public function on_post_pending( $post_id, $post ) {
455
+ if ( $this->is_metabox_request() ) {
456
+ return;
457
+ }
458
+
459
+ $post_type = $post->post_type;
460
 
461
+ if ( BNFW_Notification::POST_TYPE != $post_type ) {
462
+ $this->send_notification_async( 'pending-' . $post_type, $post_id );
463
+ }
464
+ }
465
 
466
+ /**
467
+ * On Media Published.
468
+ *
469
+ * @param int $post_id Attachment post id.
470
+ */
471
+ public function new_publish_media_notification( $post_id ) {
472
+ $post_type = get_post_type( $post_id );
473
 
474
+ if ( BNFW_Notification::POST_TYPE != $post_type && $post_type == 'attachment' ) {
475
+ $this->send_notification_async( 'new-media', $post_id );
476
+ }
477
+ }
478
 
479
+ /**
480
+ * On Media Attachment Data Update.
481
+ *
482
+ * @param int $post_id Attachment post id.
483
+ */
484
+ public function media_attachment_data_update_notification( $post_id ) {
485
+ $post_type = get_post_type( $post_id );
486
+ if ( BNFW_Notification::POST_TYPE != $post_type && $post_type == 'attachment' ) {
487
+ $this->send_notification_async( 'update-media', $post_id );
488
+ }
489
+ }
490
 
491
+ /**
492
+ * Fires when a post is scheduled.
493
+ *
494
+ * @since 1.1.5
495
+ * @param int $post_id Post ID
496
+ * @param object $post Post object
497
+ */
498
+ function on_post_scheduled( $post_id, $post ) {
499
+ // Rest request also triggers the same hook. We can ignore it.
500
+ if ( defined( 'REST_REQUEST' ) && REST_REQUEST ) {
501
+ return;
502
+ }
503
 
504
+ $post_type = $post->post_type;
 
 
 
505
 
506
+ if ( BNFW_Notification::POST_TYPE != $post_type ) {
507
+ $this->send_notification_async( 'future-' . $post_type, $post_id );
508
+ }
509
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
 
511
+ /**
512
+ * When the status of a comment is changed.
513
+ *
514
+ * @param string $new_status New status.
515
+ * @param string $old_status Old status.
516
+ * @param \WP_Comment $comment Comment.
517
+ */
518
+ public function on_comment_status_change( $new_status, $old_status, $comment ) {
519
+ if ( 'approved' !== $new_status ) {
520
+ return;
521
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
 
523
+ $post = get_post( $comment->comment_post_ID );
 
 
524
 
525
+ $notification_type = 'approve-' . $post->post_type . '-comment';
 
526
 
527
+ $this->send_notification( $notification_type, $comment->comment_ID );
 
 
 
 
 
 
 
528
 
529
+ // Send new comment notification after comment approve
530
+ $notification_type = 'new-comment'; // old notification name
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
 
532
+ if ( 'post' != $post->post_type ) {
533
+ $notification_type = 'comment-' . $post->post_type;
534
+ }
535
+
536
+ $this->send_notification( $notification_type, $comment->comment_ID );
537
+
538
+ // Send comment reply notification after comment approve.
539
+ $this->commentsReply( $comment->comment_ID );
540
+ }
541
+
542
+ /**
543
+ * Send notification for new comments
544
+ *
545
+ * @since 1.0
546
+ * @param int $comment_id
547
+ */
548
+ public function comment_post( $comment_id ) {
549
+ $the_comment = get_comment( $comment_id );
550
+ $post = get_post( $the_comment->comment_post_ID );
551
+
552
+ if ( '1' !== $the_comment->comment_approved ) {
553
+ if ( $this->can_send_comment_notification( $the_comment ) ) {
554
+ $notification_type = 'moderate-' . $post->post_type . '-comment';
555
+ $this->send_notification( $notification_type, $comment_id );
556
+ }
557
+ } else {
558
+ $notification_type = 'new-comment'; // old notification name
559
+
560
+ if ( 'post' != $post->post_type ) {
561
+ $notification_type = 'comment-' . $post->post_type;
562
+ }
563
+
564
+ $this->send_notification( $notification_type, $comment_id );
565
+
566
+ // comment reply notification.
567
+ $this->commentsReply( $comment_id );
568
+ }
569
+ }
570
+
571
+ /**
572
+ * Send notification for comments reply
573
+ *
574
+ * @since 1.0
575
+ * @param int $comment_id
576
+ */
577
+ public function commentsReply( $comment_id ) {
578
+ $the_comment = get_comment( $comment_id );
579
+ $post = get_post( $the_comment->comment_post_ID );
580
+
581
+ // comment reply notification.
582
+ if ( $this->can_send_comment_notification( $the_comment ) ) {
583
+ if ( $the_comment->comment_parent > 0 ) {
584
+ $notification_type = 'reply-comment'; // old notification name
585
+ if ( 'post' != $post->post_type ) {
586
+ $notification_type = 'commentreply-' . $post->post_type;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
  }
588
+ $notifications = $this->notifier->get_notifications( $notification_type );
589
+ if ( count( $notifications ) > 0 ) {
590
+ $parent = get_comment( $the_comment->comment_parent );
591
+ if ( $parent->comment_author_email != $the_comment->comment_author_email ) {
592
+ foreach ( $notifications as $notification ) {
593
+ $this->engine->send_comment_reply_email( $this->notifier->read_settings( $notification->ID ), $the_comment, $parent );
594
+ }
595
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
596
  }
597
+ }
598
+ }
599
+ }
600
+
601
+ /**
602
+ * Send notification for new trackback
603
+ *
604
+ * @since 1.0
605
+ * @param unknown $comment_id
606
+ */
607
+ function trackback_post( $comment_id ) {
608
+ $the_comment = get_comment( $comment_id );
609
+ if ( $this->can_send_comment_notification( $the_comment ) ) {
610
+ $this->send_notification( 'new-trackback', $comment_id );
611
+ }
612
+ }
613
+
614
+ /**
615
+ * Send notification for new pingbacks
616
+ *
617
+ * @since 1.0
618
+ * @param unknown $comment_id
619
+ */
620
+ function pingback_post( $comment_id ) {
621
+ $the_comment = get_comment( $comment_id );
622
+ if ( $this->can_send_comment_notification( $the_comment ) ) {
623
+ $this->send_notification( 'new-pingback', $comment_id );
624
+ }
625
+ }
626
+
627
+ /**
628
+ * Send notification for lost password.
629
+ *
630
+ * @since 1.0
631
+ */
632
+ function on_lost_password() {
633
+ $user_login = sanitize_text_field( $_POST[ 'user_login' ] );
634
+ $user = get_user_by( 'login', $user_login );
635
+ if ( $user ) {
636
+ $this->send_notification( 'admin-password', $user->ID );
637
+ }
638
+ }
639
+
640
+ /**
641
+ * Change the title of the password reset email that is sent to the user.
642
+ *
643
+ * @since 1.1
644
+ *
645
+ * @param string $title
646
+ * @param string $user_login
647
+ * @param string $user_data
648
+ *
649
+ * @return string
650
+ */
651
+ public function change_password_email_title( $title, $user_login = '',
652
+ $user_data = '' ) {
653
+ $notifications = $this->notifier->get_notifications( 'user-password' );
654
+ if ( count( $notifications ) > 0 ) {
655
+ // Ideally there should be only one notification for this type.
656
+ // If there are multiple notification then we will read data about only the last one
657
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
658
+
659
+ if ( '' === $user_data ) {
660
+ return $this->engine->handle_shortcodes( $setting[ 'subject' ], 'user-password', $user_data->ID );
661
+ } else {
662
+ return $this->engine->handle_shortcodes( $setting[ 'subject' ], 'user-password', $user_data->ID );
663
+ }
664
+ }
665
+
666
+ return $title;
667
+ }
668
+
669
+ /**
670
+ * Change the message of the password reset email.
671
+ *
672
+ * @since 1.1
673
+ *
674
+ * @param string $message
675
+ * @param string $key
676
+ * @param string $user_login
677
+ * @param string $user_data
678
+ *
679
+ * @return string
680
+ */
681
+ public function change_password_email_message( $message, $key,
682
+ $user_login = '',
683
+ $user_data = '' ) {
684
+ $notifications = $this->notifier->get_notifications( 'user-password' );
685
+ if ( count( $notifications ) > 0 ) {
686
+ // Ideally there should be only one notification for this type.
687
+ // If there are multiple notification then we will read data about only the last one
688
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
689
+
690
+ $message = $this->engine->handle_password_reset_shortcodes( $setting, $key, $user_login, $user_data );
691
+
692
+ if ( 'html' == $setting[ 'email-formatting' ] ) {
693
+ add_filter( 'wp_mail_content_type', array( $this, 'set_html_content_type' ) );
694
+ if ( 'true' !== $setting[ 'disable-autop' ] ) {
695
+ $message = wpautop( $message );
696
  }
697
+ } else {
698
+ add_filter( 'wp_mail_content_type', array( $this, 'set_text_content_type' ) );
699
+ if ( 'text' == $setting[ 'email-formatting' ] ) {
700
+ $message = strip_tags( $message );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
701
  }
702
+ }
703
+ } else {
704
+ if ( $this->notifier->notification_exists( 'user-password', false ) ) {
705
+ // disabled notification exists, so disable the email by returning empty string.
706
+ return '';
707
+ }
708
+ }
709
+
710
+ return $message;
711
+ }
712
+
713
+ /**
714
+ * On Password reset.
715
+ *
716
+ * @param WP_User $user User who's password was changed.
717
+ */
718
+ public function on_password_reset( $user ) {
719
+ $notifications = $this->notifier->get_notifications( 'password-changed' );
720
+ foreach ( $notifications as $notification ) {
721
+ $this->engine->send_password_changed_email( $this->notifier->read_settings( $notification->ID ), $user );
722
+ }
723
+ }
724
+
725
+ /**
726
+ * Should the password changed email be sent?
727
+ *
728
+ * @param $send
729
+ * @param $user
730
+ * @param $userdata
731
+ *
732
+ * @return bool
733
+ */
734
+ public function should_password_changed_email_be_sent( $send, $user,
735
+ $userdata ) {
736
+ $bnfw = BNFW::factory();
737
+
738
+ if ( ! $send ) {
739
+ return $send;
740
+ }
741
+
742
+ return ! $bnfw->notifier->is_notification_disabled( 'password-changed' );
743
+ }
744
+
745
+ /**
746
+ * On Password Changed.
747
+ *
748
+ * @since 1.6
749
+ *
750
+ * @param array $email_data Email Data.
751
+ * @param array $user User data.
752
+ *
753
+ * @return array Modified Email Data
754
+ */
755
+ public function on_password_changed( $email_data, $user ) {
756
+ return $this->handle_filtered_data_notification( 'password-changed', $email_data, $user[ 'ID' ] );
757
+ }
758
+
759
+ /**
760
+ * Should the email changed email be sent?
761
+ *
762
+ * @param $send
763
+ * @param $user
764
+ * @param $userdata
765
+ *
766
+ * @return bool
767
+ */
768
+ public function should_email_changed_email_be_sent( $send, $user_old_data,
769
+ $user_new_data ) {
770
+ $bnfw = BNFW::factory();
771
+
772
+ if ( $bnfw->notifier->notification_exists( 'admin-email-changed', false ) ) {
773
+ $notifications = $bnfw->notifier->get_notifications( 'admin-email-changed' );
774
+
775
+ if ( count( $notifications ) > 0 ) {
776
+ // Ideally there should be only one notification for this type.
777
+ // If there are multiple notification then we will read data about only the last one
778
+ $setting = $bnfw->notifier->read_settings( end( $notifications )->ID );
779
+ $notification_disabled = apply_filters( 'bnfw_notification_disabled', ( 'true' === $setting[ 'disabled' ] ), $id, $setting );
780
+
781
+ if ( ! $notification_disabled ) {
782
+
783
+ $setting[ 'message' ] = str_replace( '[user_old_email]', $user_old_data[ 'user_email' ], $setting[ 'message' ] );
784
+ $setting[ 'message' ] = str_replace( '[user_new_email]', $user_new_data[ 'user_email' ], $setting[ 'message' ] );
785
+ $bnfw->engine->send_notification( $setting, $user_old_data[ 'ID' ] );
786
+ }
787
+ }
788
+ }
789
+
790
+ if ( ! $send ) {
791
+ return $send;
792
+ }
793
+
794
+ return ! $bnfw->notifier->is_notification_disabled( 'email-changed' );
795
+ }
796
+
797
+ /**
798
+ * On Email Changed.
799
+ *
800
+ * @since 1.6
801
+ *
802
+ * @param array $email_data Email Data.
803
+ * @param array $user User data.
804
+ *
805
+ * @return array Modified Email Data
806
+ */
807
+ public function on_email_changed( $email_data, $user_old_data,
808
+ $user_new_data ) {
809
+
810
+ $email = $this->handle_filtered_data_notification( 'email-changed', $email_data, $user_old_data[ 'ID' ] );
811
+ $email[ 'message' ] = str_replace( '[user_old_email]', $user_old_data[ 'user_email' ], $email[ 'message' ] );
812
+ $email[ 'message' ] = str_replace( '[user_new_email]', $user_new_data[ 'user_email' ], $email[ 'message' ] );
813
+ return $email;
814
+ }
815
+
816
+ public function on_email_changing( $email_text, $new_user_details ) {
817
+ $notification_name = 'email-changing';
818
+
819
+ $notifications = $this->notifier->get_notifications( $notification_name );
820
+ if ( count( $notifications ) > 0 ) {
821
+ // Ideally there should be only one notification for this type.
822
+ // If there are multiple notification then we will read data about only the last one
823
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
824
+
825
+ $email_text = $this->engine->handle_shortcodes( $setting[ 'message' ], $setting[ 'notification' ], $new_user_details[ 'newemail' ] );
826
+ $email_text = $this->engine->handle_global_user_shortcodes( $email_text, $new_user_details[ 'newemail' ] );
827
+ $email_text = str_replace( '[email_change_confirmation_link]', esc_url( admin_url( 'profile.php?newuseremail=' . $new_user_details[ 'hash' ] ) ), $email_text );
828
+ }
829
+
830
+ return $email_text;
831
+ }
832
+
833
+ /**
834
+ * Send notification on core updated event.
835
+ *
836
+ * @since 1.6
837
+ *
838
+ * @param array $email_data Email Data.
839
+ * @param string $type The type of email being sent. Can be one of
840
+ * 'success', 'fail', 'manual', 'critical'.
841
+ * @param object $core_update The update offer that was attempted.
842
+ * @param mixed $result The result for the core update. Can be WP_Error.
843
+ *
844
+ * @return array Modified Email Data.
845
+ */
846
+ public function on_core_updated( $email_data, $type, $core_update, $result ) {
847
+ $notifications = $this->notifier->get_notifications( 'core-updated' );
848
+ if ( count( $notifications ) > 0 ) {
849
+ // Ideally there should be only one notification for this type.
850
+ // If there are multiple notification then we will read data about only the last one
851
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
852
+
853
+ $email_data = $this->engine->handle_core_updated_notification( $email_data, $setting, $type );
854
+ }
855
+
856
+ return $email_data;
857
+ }
858
+
859
+ /**
860
+ * Process User update notifications.
861
+ *
862
+ * @since 1.6
863
+ *
864
+ * @param string $notification_name Notification Name.
865
+ * @param array $email_data Email Data.
866
+ * @param string|int $extra_data User Id.
867
+ *
868
+ * @return array Modified Email Data.
869
+ */
870
+ private function handle_filtered_data_notification( $notification_name,
871
+ $email_data, $extra_data ) {
872
+ $notifications = $this->notifier->get_notifications( $notification_name );
873
+ if ( count( $notifications ) > 0 ) {
874
+ // Ideally there should be only one notification for this type.
875
+ // If there are multiple notification then we will read data about only the last one
876
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
877
+
878
+ $email_data = $this->engine->handle_filtered_data_notification( $email_data, $setting, $extra_data );
879
+ }
880
+
881
+ return $email_data;
882
+ }
883
+
884
+ /**
885
+ * Set the email formatting to HTML.
886
+ *
887
+ * @since 1.4
888
+ */
889
+ public function set_html_content_type() {
890
+ return 'text/html';
891
+ }
892
+
893
+ /**
894
+ * Set the email formatting to text.
895
+ *
896
+ * @since 1.4
897
+ */
898
+ public function set_text_content_type() {
899
+ return 'text/plain';
900
+ }
901
+
902
+ /**
903
+ * Send notification for new users.
904
+ *
905
+ * @since 1.0
906
+ * @param int $user_id
907
+ */
908
+ public function user_register( $user_id ) {
909
+ $this->send_notification( 'admin-user', $user_id );
910
+ }
911
+
912
+ /**
913
+ * Send notification for user when user login.
914
+ *
915
+ * @since 1.0
916
+ * @param string $user_name
917
+ * @param object $user_data User object.
918
+ */
919
+ public function user_login( $user_name, $user_data ) {
920
+ $user_id = $user_data->ID;
921
+ $notifications = $this->notifier->get_notifications( 'user-login' );
922
+
923
+ foreach ( $notifications as $notification ) {
924
+ $this->engine->send_user_login_email( $this->notifier->read_settings( $notification->ID ), get_userdata( $user_id ) );
925
+ }
926
+
927
+ $this->user_login_admin_notification( $user_id );
928
+ }
929
+
930
+ /**
931
+ * Send notification for admin when user login.
932
+ *
933
+ * @since 1.0
934
+ * @param int $user_id
935
+ */
936
+ public function user_login_admin_notification( $user_id ) {
937
+ $notifications = $this->notifier->get_notifications( 'admin-user-login' );
938
+
939
+ foreach ( $notifications as $notification ) {
940
+ $this->engine->send_user_login_email_for_admin( $this->notifier->read_settings( $notification->ID ), get_userdata( $user_id ) );
941
+ }
942
+ }
943
+
944
+ /**
945
+ * Send notification about new users to site admin.
946
+ *
947
+ * @since 1.7.1
948
+ *
949
+ * @param array $email_data Email details.
950
+ * @param WP_User $user User object.
951
+ * @param string $blogname Blog name.
952
+ *
953
+ * @return array Modified email details.
954
+ */
955
+ public function handle_user_registered_admin_email( $email_data, $user,
956
+ $blogname ) {
957
+ return $this->handle_filtered_data_notification( 'admin-user', $email_data, $user->ID );
958
+ }
959
+
960
+ /**
961
+ * New User - Post-registration Email
962
+ *
963
+ * @since 1.1
964
+ * @param int $user_id New user id
965
+ */
966
+ public function welcome_email( $user_id ) {
967
+ $notifications = $this->notifier->get_notifications( 'welcome-email' );
968
+ foreach ( $notifications as $notification ) {
969
+ $this->engine->send_registration_email( $this->notifier->read_settings( $notification->ID ), get_userdata( $user_id ) );
970
+ }
971
+ }
972
+
973
+ /**
974
+ * Send notification when a user role changes.
975
+ *
976
+ * @since 1.3.9
977
+ *
978
+ * @param int $user_id User ID
979
+ * @param string $new_role New User role
980
+ * @param array $old_roles Old User role
981
+ */
982
+ public function user_role_changed( $user_id, $new_role, $old_roles ) {
983
+ if ( ! empty( $old_roles ) ) {
984
+ $notifications = $this->notifier->get_notifications( 'user-role' );
985
+ foreach ( $notifications as $notification ) {
986
+
987
+ /**
988
+ * Trigger User Role Changed - For User notification.
989
+ *
990
+ * @since 1.6.5
991
+ */
992
+ if ( apply_filters( 'bnfw_trigger_user-role_notification', true, $notification, $new_role, $old_roles ) ) {
993
+ $this->engine->send_user_role_changed_email(
994
+ $this->notifier->read_settings( $notification->ID ),
995
+ $user_id,
996
+ $old_roles[ 0 ],
997
+ $new_role
998
+ );
999
+ }
1000
+ }
1001
+
1002
+ $notifications = $this->notifier->get_notifications( 'admin-role' );
1003
+ foreach ( $notifications as $notification ) {
1004
+
1005
+ /**
1006
+ * Trigger User Role Changed - For User notification.
1007
+ *
1008
+ * @since 1.6.5
1009
+ */
1010
+ if ( apply_filters( 'bnfw_trigger_admin-role_notification', true, $notification, $new_role, $old_roles ) ) {
1011
+ $setting = $this->notifier->read_settings( $notification->ID );
1012
+ $setting[ 'message' ] = $this->engine->handle_user_role_shortcodes( $setting[ 'message' ], $old_roles[ 0 ], $new_role );
1013
+ $setting[ 'subject' ] = $this->engine->handle_user_role_shortcodes( $setting[ 'subject' ], $old_roles[ 0 ], $new_role );
1014
+
1015
+ $this->engine->send_notification( $setting, $user_id );
1016
+ }
1017
+ }
1018
+ }
1019
+ }
1020
+
1021
+ /**
1022
+ * Send notification when a user role added through Members Plugin.
1023
+ *
1024
+ * @since 1.8.4
1025
+ *
1026
+ * @param int $user_id User ID
1027
+ * @param string $new_role New User role
1028
+ *
1029
+ */
1030
+ public function user_role_added_from_member_plugin($user_id, $new_role){
1031
+
1032
+ global $pagenow;
1033
+
1034
+ if($pagenow != 'users.php')
1035
+ return;
1036
+
1037
+ if(!$user_id)
1038
+ return;
1039
+
1040
+ $notifications = $this->notifier->get_notifications( 'user-role' );
1041
+
1042
+ foreach ( $notifications as $notification ) {
1043
+
1044
+ if ( apply_filters( 'bnfw_trigger_user-role_notification', true, $notification, $new_role, null ) ) {
1045
+ $this->engine->send_user_role_changed_email(
1046
+ $this->notifier->read_settings( $notification->ID ),
1047
+ $user_id,
1048
+ null,
1049
+ $new_role
1050
+ );
1051
+ }
1052
+ }
1053
+
1054
+ $notifications_admin = $this->notifier->get_notifications( 'admin-role' );
1055
+ foreach ( $notifications_admin as $notification ) {
1056
+ if ( apply_filters( 'bnfw_trigger_admin-role_notification', true, $notification, $new_role, null ) ) {
1057
+ $setting = $this->notifier->read_settings( $notification->ID );
1058
+ $setting[ 'message' ] = $this->engine->handle_user_role_shortcodes( $setting[ 'message' ], null, $new_role );
1059
+ $setting[ 'subject' ] = $this->engine->handle_user_role_shortcodes( $setting[ 'subject' ], null, $new_role );
1060
+
1061
+ $this->engine->send_notification( $setting, $user_id );
1062
+ }
1063
+ }
1064
+
1065
+ }
1066
+
1067
+ /**
1068
+ * Send notification when a user role removed through Members Plugin.
1069
+ *
1070
+ * @since 1.8.4
1071
+ *
1072
+ * @param int $user_id User ID
1073
+ * @param string $old_role New User role
1074
+ *
1075
+ */
1076
+ public function user_role_removed_from_member_plugin($user_id, $old_role){
1077
+ global $pagenow;
1078
+
1079
+ if($pagenow != 'users.php')
1080
+ return;
1081
+
1082
+ if(!$user_id)
1083
+ return;
1084
+
1085
+ $notifications = $this->notifier->get_notifications( 'user-role' );
1086
+
1087
+ foreach ( $notifications as $notification ) {
1088
+ if ( apply_filters( 'bnfw_trigger_user-role_notification', true, $notification, null, array($old_role) ) ) {
1089
+ $this->engine->send_user_role_changed_email(
1090
+ $this->notifier->read_settings( $notification->ID ),
1091
+ $user_id,
1092
+ $old_role,
1093
+ null
1094
+ );
1095
+ }
1096
+ }
1097
+
1098
+ $notifications_admin = $this->notifier->get_notifications( 'admin-role' );
1099
+ foreach ( $notifications_admin as $notification ) {
1100
+ if ( apply_filters( 'bnfw_trigger_admin-role_notification', true, $notification, null, array($old_role) ) ) {
1101
+ $setting = $this->notifier->read_settings( $notification->ID );
1102
+ $setting[ 'message' ] = $this->engine->handle_user_role_shortcodes( $setting[ 'message' ], $old_role, null );
1103
+ $setting[ 'subject' ] = $this->engine->handle_user_role_shortcodes( $setting[ 'subject' ], $old_role, null );
1104
+
1105
+
1106
+
1107
+ $this->engine->send_notification( $setting, $user_id );
1108
+ }
1109
+ }
1110
+
1111
+ }
1112
+
1113
+ /**
1114
+ * Send notification when a user role added support User Role Editor by Members Plugin.
1115
+ *
1116
+ * @since 1.3.9
1117
+ *
1118
+ * @param int $user_id User ID
1119
+ * @param string $new_role New User role
1120
+ * @param array $old_roles Old User role
1121
+ */
1122
+ public function user_role_added( $user_id, $old_user_data ) {
1123
+
1124
+ if ( isset( $_POST[ 'members_user_roles' ] ) && ! empty( $_POST[ 'members_user_roles' ] ) ) {
1125
+ // Get the current user roles.
1126
+ $old_roles = (array) $old_user_data->roles;
1127
+
1128
+ // Sanitize the posted roles.
1129
+ $new_roles = array_map( 'members_sanitize_role', $_POST[ 'members_user_roles' ] );
1130
+
1131
+ sort( $old_roles );
1132
+ sort( $new_roles );
1133
+ $old_roles_str = implode( '', $old_roles );
1134
+ $new_roles_str = implode( '', $new_roles );
1135
+ if ( ! empty( $old_roles ) && $old_roles_str !== $new_roles_str ) {
1136
+ $notifications = $this->notifier->get_notifications( 'user-role' );
1137
+ foreach ( $notifications as $notification ) {
1138
+
1139
+ /**
1140
+ * Trigger User Role Changed - For User notification.
1141
+ *
1142
+ * @since 1.6.5
1143
+ */
1144
+ if ( apply_filters( 'bnfw_trigger_user-role-added_notification', true, $notification, $new_roles, $old_roles ) ) {
1145
+ $this->engine->send_user_role_added_email(
1146
+ $this->notifier->read_settings( $notification->ID ),
1147
+ $user_id,
1148
+ $old_roles,
1149
+ $new_roles
1150
+ );
1151
+ }
1152
+ }
1153
+
1154
+ $notifications = $this->notifier->get_notifications( 'admin-role' );
1155
+ foreach ( $notifications as $notification ) {
1156
+
1157
+ /**
1158
+ * Trigger User Role Changed - For User notification.
1159
+ *
1160
+ * @since 1.6.5
1161
+ */
1162
+ if ( apply_filters( 'bnfw_trigger_user-role-added_notification', true, $notification, $new_roles, $old_roles ) ) {
1163
+ $setting = $this->notifier->read_settings( $notification->ID );
1164
+ $setting[ 'message' ] = $this->engine->handle_user_added_role_shortcodes( $setting[ 'message' ], $old_roles, $new_roles );
1165
+ $setting[ 'subject' ] = $this->engine->handle_user_added_role_shortcodes( $setting[ 'subject' ], $old_roles, $new_roles );
1166
+
1167
+ $this->engine->send_notification( $setting, $user_id );
1168
+ }
1169
+ }
1170
+ }
1171
+ }
1172
+ }
1173
+
1174
+ /**
1175
+ * Sanitizes a role name. This is a wrapper for the `sanitize_key()` WordPress function. Only
1176
+ * alphanumeric characters and underscores are allowed. Hyphens are also replaced with underscores.
1177
+ *
1178
+ * @since 1.0.0
1179
+ * @access public
1180
+ * @return int
1181
+ */
1182
+ function members_sanitize_role( $role ) {
1183
+
1184
+ $_role = strtolower( $role );
1185
+ $_role = preg_replace( '/[^a-z0-9_\-\s]/', '', $_role );
1186
+
1187
+ return apply_filters( 'members_sanitize_role', str_replace( ' ', '_', $_role ), $role );
1188
+ }
1189
+
1190
+ /**
1191
+ * Send notification based on type and ref id
1192
+ *
1193
+ * @since 1.0
1194
+ * @param string $type Notification type.
1195
+ * @param mixed $ref_id Reference data.
1196
+ */
1197
+ public function send_notification( $type, $ref_id ) {
1198
+ $notifications = $this->notifier->get_notifications( $type );
1199
+ foreach ( $notifications as $notification ) {
1200
+ $this->engine->send_notification( $this->notifier->read_settings( $notification->ID ), $ref_id );
1201
+ }
1202
+ }
1203
+
1204
+ /**
1205
+ * Send notification async based on type and ref id.
1206
+ *
1207
+ * @param string $type Notification type.
1208
+ * @param mixed $ref_id Reference data.
1209
+ */
1210
+ public function send_notification_async( $type, $ref_id ) {
1211
+ $notifications = $this->notifier->get_notifications( $type, false );
1212
+ foreach ( $notifications as $notification ) {
1213
+ $transient = get_transient( 'bnfw-async-notifications' );
1214
+ if ( ! is_array( $transient ) ) {
1215
+ $transient = array();
1216
+ }
1217
+
1218
+ $notification_data = array(
1219
+ 'ref_id' => $ref_id,
1220
+ 'notification_id' => $notification->ID,
1221
+ 'notification_type' => $type,
1222
+ );
1223
+
1224
+ if ( ! in_array( $notification_data, $transient ) ) {
1225
+ $transient[] = $notification_data;
1226
+ set_transient( 'bnfw-async-notifications', $transient, 600 );
1227
+ }
1228
+ }
1229
+ }
1230
+
1231
+ /**
1232
+ * Can send comment notification or not
1233
+ *
1234
+ * @since 1.0
1235
+ * @param unknown $comment
1236
+ * @return unknown
1237
+ */
1238
+ private function can_send_comment_notification( $comment ) {
1239
+ // Returns false if the comment is marked as spam AND admin has enabled suppression of spam
1240
+ $suppress_spam = get_option( 'bnfw_suppress_spam' );
1241
+ if ( '1' === $suppress_spam && ( 0 === strcmp( $comment->comment_approved, 'spam' ) ) ) {
1242
+ return false;
1243
+ }
1244
+ return true;
1245
+ }
1246
+
1247
+ /**
1248
+ * Handle user request email content.
1249
+ *
1250
+ * @param string $content Content.
1251
+ * @param array $email_data Email data.
1252
+ *
1253
+ * @return string Modified content.
1254
+ */
1255
+ public function handle_user_request_email_content( $content, $email_data ) {
1256
+ $field = 'message';
1257
+ $new_content = '';
1258
+
1259
+ switch ( $email_data[ 'description' ] ) {
1260
+ case 'Export Personal Data':
1261
+ $notification_name = 'ca-export-data';
1262
+ $new_content = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1263
+ break;
1264
+ case 'Erase Personal Data':
1265
+ $notification_name = 'ca-erase-data';
1266
+ $new_content = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1267
+ break;
1268
+ }
1269
+
1270
+ if ( ! empty( $new_content ) ) {
1271
+ return $new_content;
1272
+ } else {
1273
+ return $content;
1274
+ }
1275
+ }
1276
+
1277
+ /**
1278
+ * Handle user request email subject.
1279
+ *
1280
+ * @param string $subject Subject
1281
+ * @param string $blogname Blog name
1282
+ * @param array $email_data Email data.
1283
+ *
1284
+ * @return string Modified subject.
1285
+ */
1286
+ public function handle_user_request_email_subject( $subject, $blogname,
1287
+ $email_data ) {
1288
+ $field = 'subject';
1289
+ $new_subject = '';
1290
+
1291
+ switch ( $email_data[ 'description' ] ) {
1292
+ case 'Export Personal Data':
1293
+ $notification_name = 'ca-export-data';
1294
+ $new_subject = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1295
+ break;
1296
+ case 'Erase Personal Data':
1297
+ $notification_name = 'ca-erase-data';
1298
+ $new_subject = $this->handle_user_request_notification( $notification_name, $field, $email_data );
1299
+ break;
1300
+ }
1301
+ if ( ! empty( $new_subject ) ) {
1302
+ return $new_subject;
1303
+ } else {
1304
+ return $subject;
1305
+ }
1306
+ }
1307
+
1308
+ /**
1309
+ * Handle user confirmed action email content.
1310
+ *
1311
+ * @param string $content Content.
1312
+ * @param array $email_data Email data.
1313
+ *
1314
+ * @return string Modified content.
1315
+ */
1316
+ public function handle_user_confirmed_action_email_content( $content,
1317
+ $email_data ) {
1318
+ $field = 'message';
1319
+ $new_content = '';
1320
+
1321
+ switch ( $email_data[ 'description' ] ) {
1322
+ case 'Export Personal Data':
1323
+ $notification_name = 'uc-export-data';
1324
+ $new_content = $this->handle_user_confirmed_action_notification( $notification_name, $field, $email_data );
1325
+ break;
1326
+ case 'Erase Personal Data':
1327
+ $notification_name = 'uc-erase-data';
1328
+ $new_content = $this->handle_user_confirmed_action_notification( $notification_name, $field, $email_data );
1329
+ break;
1330
+ }
1331
+
1332
+ if ( ! empty( $new_content ) ) {
1333
+ return $new_content;
1334
+ } else {
1335
+ return $content;
1336
+ }
1337
+ }
1338
+
1339
+ /**
1340
+ * Handle data exported email content.
1341
+ *
1342
+ * @param string $content Content.
1343
+ * @param int $request_id
1344
+ *
1345
+ * @return string Modified content.
1346
+ */
1347
+ public function handle_data_export_email_content( $content, $request_id,$email_data ) {
1348
+
1349
+ $field = 'message';
1350
+ $notification_name = 'data-export';
1351
+ $new_content = '';
1352
+
1353
+ $notifications = $this->notifier->get_notifications( $notification_name );
1354
+ if ( count( $notifications ) > 0 ) {
1355
+ // Ideally there should be only one notification for this type.
1356
+ // If there are multiple notification then we will read data about only the last one
1357
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
1358
+
1359
+ $new_content = $this->engine->handle_data_export_email_shortcodes( $setting[ $field ], $setting, $request_id );
1360
+ $new_content = $this->engine->handle_global_user_shortcodes( $new_content, $email_data['message_recipient'] );
1361
+ }
1362
+
1363
+ if ( ! empty( $new_content ) ) {
1364
+ return $new_content;
1365
+ } else {
1366
+ return $content;
1367
+ }
1368
+ }
1369
+
1370
+ public function handle_erasure_complete_email_subject( $subject, $sitename,
1371
+ $email_data ) {
1372
+ return $this->handle_erasure_complete_email_notification( 'subject', $subject, $email_data );
1373
+ }
1374
+
1375
+ public function handle_erasure_complete_email_content( $content, $email_data ) {
1376
+ if ( isset( $email_data[ 'privacy_policy_url' ] ) ) {
1377
+ return $this->handle_erasure_complete_email_notification( 'message', $content, $email_data );
1378
+ }
1379
+
1380
+ return $content;
1381
+ }
1382
+
1383
+ protected function handle_erasure_complete_email_notification( $field,
1384
+ $content,
1385
+ $email_data ) {
1386
+ $notification_name = 'data-erased';
1387
+ $new_content = '';
1388
+ $notifications = $this->notifier->get_notifications( $notification_name );
1389
+ if ( count( $notifications ) > 0 ) {
1390
+ // Ideally there should be only one notification for this type.
1391
+ // If there are multiple notification then we will read data about only the last one
1392
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
1393
+ $new_content = $this->engine->handle_shortcodes( $setting[ $field ], $notification_name, $email_data );
1394
+ }
1395
+ if ( ! empty( $new_content ) ) {
1396
+ return $new_content;
1397
+ } else {
1398
+ return $content;
1399
+ }
1400
+ }
1401
+
1402
+ /**
1403
+ * Send notification emails on shutdown.
1404
+ */
1405
+ public function on_shutdown() {
1406
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
1407
+ return;
1408
+ }
1409
+
1410
+ $transient = get_transient( 'bnfw-async-notifications' );
1411
+ if ( is_array( $transient ) ) {
1412
+ delete_transient( 'bnfw-async-notifications' );
1413
+ foreach ( $transient as $id_pairs ) {
1414
+ $this->engine->send_notification( $this->notifier->read_settings( $id_pairs[ 'notification_id' ] ), $id_pairs[ 'ref_id' ] );
1415
+ }
1416
+ }
1417
+ }
1418
+
1419
+ /**
1420
+ * Handle user request notification.
1421
+ *
1422
+ * @param string $notification_name Notification name.
1423
+ * @param string $field Field name.
1424
+ * @param array $email_data Email data.
1425
+ *
1426
+ * @return string Content.
1427
+ */
1428
+ protected function handle_user_request_notification( $notification_name,
1429
+ $field, $email_data ) {
1430
+ $notifications = $this->notifier->get_notifications( $notification_name );
1431
+ if ( count( $notifications ) > 0 ) {
1432
+ // Ideally there should be only one notification for this type.
1433
+ // If there are multiple notification then we will read data about only the last one
1434
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
1435
+
1436
+ return $this->engine->handle_user_request_email_shortcodes( $setting[ $field ], $setting, $email_data );
1437
+ }
1438
+
1439
+ return '';
1440
+ }
1441
+
1442
+ /**
1443
+ * Handle user confirmed action notification.
1444
+ *
1445
+ * @param string $notification_name Notification name.
1446
+ * @param string $field Field name.
1447
+ * @param array $email_data Email data.
1448
+ *
1449
+ * @return string Content.
1450
+ */
1451
+ protected function handle_user_confirmed_action_notification( $notification_name,
1452
+ $field,
1453
+ $email_data ) {
1454
+ $notifications = $this->notifier->get_notifications( $notification_name );
1455
+ if ( count( $notifications ) > 0 ) {
1456
+ // Ideally there should be only one notification for this type.
1457
+ // If there are multiple notification then we will read data about only the last one
1458
+ $setting = $this->notifier->read_settings( end( $notifications )->ID );
1459
+
1460
+ return $this->engine->handle_user_confirmed_action_email_shortcodes( $setting[ $field ], $setting, $email_data );
1461
+ }
1462
+
1463
+ return '';
1464
+ }
1465
+
1466
+ /**
1467
+ * Is this a metabox request?
1468
+ *
1469
+ * Block editor sends duplicate requests on post update.
1470
+ *
1471
+ * @return bool True if metabox request, False otherwise.
1472
+ */
1473
+ protected function is_metabox_request() {
1474
+ return ( isset( $_GET[ 'meta-box-loader' ] ) || isset( $_GET[ 'meta_box' ] ) );
1475
+ }
1476
+
1477
  }
1478
 
1479
  /* ------------------------------------------------------------------------ *
includes/engine/class-bnfw-engine.php CHANGED
@@ -49,9 +49,11 @@ class BNFW_Engine {
49
  *
50
  * @since 1.3.6
51
  */
 
52
  $notification_disabled = apply_filters( 'bnfw_notification_disabled', ( 'true' === $setting[ 'disabled' ] ), $id, $setting );
53
 
54
  if ( ! $notification_disabled ) {
 
55
  $subject = $this->handle_shortcodes( $setting[ 'subject' ], $setting[ 'notification' ], $id );
56
  $message = $this->handle_shortcodes( $setting[ 'message' ], $setting[ 'notification' ], $id );
57
  $emails = $this->get_emails( $setting, $id );
@@ -519,6 +521,7 @@ class BNFW_Engine {
519
  * @return string Processed string.
520
  */
521
  public function handle_shortcodes( $message, $notification, $extra_data ) {
 
522
  switch ( $notification ) {
523
  case 'new-comment':
524
  case 'new-trackback':
@@ -699,7 +702,9 @@ class BNFW_Engine {
699
  $message = $this->user_shortcodes( $message, $user->ID, 'email_' );
700
  }
701
 
702
- $message = str_replace( '[global_user_email]', $email, $message );
 
 
703
 
704
  return $message;
705
  }
@@ -1450,6 +1455,9 @@ class BNFW_Engine {
1450
 
1451
  protected function data_export_shortcodes( $message, $request_id ) {
1452
  $export_file_url = get_post_meta( $request_id, '_export_file_url', true );
 
 
 
1453
  $message = str_replace( '[data_privacy_download_url]', $export_file_url, $message );
1454
 
1455
  $expiration = apply_filters( 'wp_privacy_export_expiration', 3 * DAY_IN_SECONDS );
@@ -1460,7 +1468,9 @@ class BNFW_Engine {
1460
  }
1461
 
1462
  protected function data_erased_shortcodes( $message, $extra_data ) {
1463
- $message = str_replace( '[privacy_policy_url]', $extra_data[ 'privacy_policy_url' ], $message );
 
 
1464
  $message = str_replace( '[sitename]', $extra_data[ 'sitename' ], $message );
1465
 
1466
  return $message;
@@ -1547,4 +1557,36 @@ class BNFW_Engine {
1547
  return 'text/plain';
1548
  }
1549
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1550
  }
49
  *
50
  * @since 1.3.6
51
  */
52
+
53
  $notification_disabled = apply_filters( 'bnfw_notification_disabled', ( 'true' === $setting[ 'disabled' ] ), $id, $setting );
54
 
55
  if ( ! $notification_disabled ) {
56
+
57
  $subject = $this->handle_shortcodes( $setting[ 'subject' ], $setting[ 'notification' ], $id );
58
  $message = $this->handle_shortcodes( $setting[ 'message' ], $setting[ 'notification' ], $id );
59
  $emails = $this->get_emails( $setting, $id );
521
  * @return string Processed string.
522
  */
523
  public function handle_shortcodes( $message, $notification, $extra_data ) {
524
+
525
  switch ( $notification ) {
526
  case 'new-comment':
527
  case 'new-trackback':
702
  $message = $this->user_shortcodes( $message, $user->ID, 'email_' );
703
  }
704
 
705
+ $message = str_replace( '[privacy_policy_url]', get_privacy_policy_url(), $message );
706
+
707
+ $message = str_replace( array('[global_user_email]','[user_email]'), $email, $message );
708
 
709
  return $message;
710
  }
1455
 
1456
  protected function data_export_shortcodes( $message, $request_id ) {
1457
  $export_file_url = get_post_meta( $request_id, '_export_file_url', true );
1458
+
1459
+ $export_file_url = 'Download File: '.$this->get_export_downloadable_url($request_id);
1460
+
1461
  $message = str_replace( '[data_privacy_download_url]', $export_file_url, $message );
1462
 
1463
  $expiration = apply_filters( 'wp_privacy_export_expiration', 3 * DAY_IN_SECONDS );
1468
  }
1469
 
1470
  protected function data_erased_shortcodes( $message, $extra_data ) {
1471
+ $privacy_policy_url = (!isset($extra_data[ 'privacy_policy_url' ]))? get_privacy_policy_url() : $extra_data[ 'privacy_policy_url' ];
1472
+
1473
+ $message = str_replace( '[privacy_policy_url]', $privacy_policy_url, $message );
1474
  $message = str_replace( '[sitename]', $extra_data[ 'sitename' ], $message );
1475
 
1476
  return $message;
1557
  return 'text/plain';
1558
  }
1559
 
1560
+ /**
1561
+ * Get user's download URL from data export request
1562
+ *
1563
+ * @since 1.8.4
1564
+ * @param int $user_email
1565
+ * @return string $download_url | string error message
1566
+ */
1567
+ public function get_export_downloadable_url($request_id = null){
1568
+ if(!$request_id)
1569
+ return;
1570
+
1571
+ global $wpdb;
1572
+ $table = $wpdb->prefix.'posts';
1573
+ $query = 'SELECT ID FROM '.$table.' WHERE `post_type` = "user_request" AND `ID` = '.$request_id;
1574
+
1575
+ $query = apply_filters('export_downloadable_url_query',$query,$request_id);
1576
+
1577
+ $get_id = $wpdb->get_var($query);
1578
+
1579
+ $file = get_post_meta($get_id,'_export_file_name',true);
1580
+ $upload_url = wp_upload_dir();
1581
+ $dl_url = $upload_url['baseurl'].'/wp-personal-data-exports/'.$file;
1582
+
1583
+ $dl_url = apply_filters('export_downloadable_url_return',$dl_url);
1584
+
1585
+ if($dl_url)
1586
+ return $dl_url;
1587
+ else
1588
+ return __('Error: Download link is not available please contact support');
1589
+
1590
+ }
1591
+
1592
  }
languages/bnfw-de_DE.mo CHANGED
Binary file
languages/bnfw-de_DE.po CHANGED
@@ -1,446 +1,1026 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Better Notifications for WP 1.3.3\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
5
- "POT-Creation-Date: 2015-08-11 05:30:23+00:00\n"
6
- "PO-Revision-Date: Tue May 17 2016 15:27:35 GMT+0200 (CEST)\n"
7
- "Last-Translator: Michael <michael.schroettle@tpm-systems.eu>\n"
8
- "Language-Team: LANGUAGE <LL@li.org>\n"
9
- "Language: German\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SearchPath-0: ../../plugins/bnfw\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Loco-Target-Locale: de_DE\n"
23
- "X-Generator: Loco - https://localise.biz/"
24
-
25
- #: includes/admin/bnfw-settings.php:14
26
- #: includes/admin/class-bnfw-notification.php:120
27
- msgid "Notification Settings"
28
- msgstr "Benachrichtigungs-Einstellungen"
29
-
30
- #: includes/admin/bnfw-settings.php:15
31
- msgid "Settings"
32
- msgstr "Einstellungen"
33
-
34
- #: includes/admin/bnfw-settings.php:36
35
- msgid "BNFW Settings"
36
- msgstr "BNFW Einstellungen"
37
-
38
- #: includes/admin/bnfw-settings.php:77
39
- msgid "Suppress SPAM comment notification"
40
- msgstr "SPAM Kommentar Benachrichtigung unterdrücken"
41
-
42
- #: includes/admin/bnfw-settings.php:82
43
- msgid "Don't send notifications for comments marked as SPAM by Akismet"
44
- msgstr ""
45
- "Sende keine Benachrichtigung für Kommentare, die von Akismet als SPAM "
46
- "markiert wurden"
47
-
48
- #: includes/admin/bnfw-settings.php:95
49
- msgid "Default Email Format"
50
- msgstr "Voreingestelltes Email-Format"
51
-
52
- #: includes/admin/bnfw-settings.php:100
53
- msgid ""
54
- "This will apply to all emails sent out via WordPress, even those from other "
55
- "plugins. For more details, please see the <a href=\"https://wordpress."
56
- "org/plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
57
- msgstr ""
58
- "Dies wird angewendet auf alle Mails, die über WordPress versendet werden, "
59
- "auch von anderen Plugins. Weitere Details in den <a href=\"https://wordpress."
60
- "org/plugins/bnfw/faq/\" target=\"_blank\">BNFW FAQ</a>."
61
-
62
- #: includes/admin/bnfw-settings.php:143
63
- #: includes/admin/class-bnfw-notification.php:252
64
- msgid "HTML Formatting"
65
- msgstr "HTML Formatierung"
66
-
67
- #: includes/admin/bnfw-settings.php:147
68
- #: includes/admin/class-bnfw-notification.php:257
69
- msgid "Plain Text"
70
- msgstr "Nur Text"
71
-
72
- #: includes/admin/class-bnfw-notification.php:45
73
- #: includes/admin/class-bnfw-notification.php:48
74
- #: includes/admin/class-bnfw-notification.php:49
75
- msgid "Notifications"
76
- msgstr "Notifications"
77
-
78
- #: includes/admin/class-bnfw-notification.php:46
79
- msgid "Notification"
80
- msgstr "Benachrichtigung"
81
-
82
- #: includes/admin/class-bnfw-notification.php:47
83
- msgid "Add New"
84
- msgstr "Neue erstellen"
85
-
86
- #: includes/admin/class-bnfw-notification.php:50
87
- msgid "Add New Notification"
88
- msgstr "Neue Benachrichtigung erstellen"
89
-
90
- #: includes/admin/class-bnfw-notification.php:51
91
- msgid "Edit Notification"
92
- msgstr "Benachrichtigung bearbeiten"
93
-
94
- #: includes/admin/class-bnfw-notification.php:52
95
- msgid "New Notification"
96
- msgstr "Neue Benachrichtigung"
97
-
98
- #: includes/admin/class-bnfw-notification.php:53
99
- msgid "View Notification"
100
- msgstr "Benachrichtigung anzeigen"
101
-
102
- #: includes/admin/class-bnfw-notification.php:54
103
- msgid "Search Notifications"
104
- msgstr "Benachrichtung suchen"
105
-
106
- #: includes/admin/class-bnfw-notification.php:55
107
- msgid "No Notifications found"
108
- msgstr "Keine Benachrichtigung gefunden"
109
-
110
- #: includes/admin/class-bnfw-notification.php:56
111
- msgid "No Notifications found in trash"
112
- msgstr "Keine Benachrichtigung im Papierkorb gefunden"
113
-
114
- #: includes/admin/class-bnfw-notification.php:57
115
- msgid "All Notifications"
116
- msgstr "Alle Benachrichtigungen"
117
-
118
- #: includes/admin/class-bnfw-notification.php:128
119
- msgid "Save Notification"
120
- msgstr "Benachrichtigung speichern"
121
-
122
- #: includes/admin/class-bnfw-notification.php:156
123
- msgid "Notification For"
124
- msgstr "Benachrichtigung für"
125
-
126
- #: includes/admin/class-bnfw-notification.php:161
127
- msgid "New Comment / Awaiting Moderation"
128
- msgstr "Neuer Kommentar / wartet auf Moderation"
129
-
130
- #: includes/admin/class-bnfw-notification.php:162
131
- #: includes/admin/class-bnfw-notification.php:769
132
- msgid "New Trackback"
133
- msgstr "Neuer Trackback"
134
-
135
- #: includes/admin/class-bnfw-notification.php:163
136
- #: includes/admin/class-bnfw-notification.php:772
137
- msgid "New Pingback"
138
- msgstr "Neuer Pingback"
139
-
140
- #: includes/admin/class-bnfw-notification.php:164
141
- #: includes/admin/class-bnfw-notification.php:781
142
- msgid "Lost Password - For Admin"
143
- msgstr "Passwort verloren - für Admin"
144
-
145
- #: includes/admin/class-bnfw-notification.php:165
146
- msgid "New User Registration - For Admin"
147
- msgstr "Neuen Benutzer Registrieren - für Admin"
148
-
149
- #: includes/admin/class-bnfw-notification.php:168
150
- #: includes/admin/class-bnfw-notification.php:778
151
- msgid "Lost Password - For User"
152
- msgstr "Passwort vergessen - für Benutzer"
153
-
154
- #: includes/admin/class-bnfw-notification.php:169
155
- msgid "New User Registration - For User"
156
- msgstr "Neuen Benutzer registrieren - für Benutzer"
157
-
158
- #: includes/admin/class-bnfw-notification.php:170
159
- msgid "New User - Welcome Email"
160
- msgstr "Neuer Benutzer - Willkommens Email"
161
-
162
- #: includes/admin/class-bnfw-notification.php:171
163
- #: includes/admin/class-bnfw-notification.php:775
164
- msgid "Comment Reply"
165
- msgstr "Antwort auf Kommentar"
166
-
167
- #: includes/admin/class-bnfw-notification.php:174
168
- #: includes/admin/class-bnfw-notification.php:793
169
- msgid "New Post Published"
170
- msgstr "Neuer Beitrag veröffentlicht"
171
-
172
- #: includes/admin/class-bnfw-notification.php:175
173
- #: includes/admin/class-bnfw-notification.php:796
174
- msgid "Post Updated"
175
- msgstr "Beitrag aktualisiert"
176
-
177
- #: includes/admin/class-bnfw-notification.php:176
178
- #: includes/admin/class-bnfw-notification.php:799
179
- msgid "Post Pending Review"
180
- msgstr "Beitrag mit ausstehender Überprüfung"
181
-
182
- #: includes/admin/class-bnfw-notification.php:177
183
- #: includes/admin/class-bnfw-notification.php:802
184
- msgid "Post Scheduled"
185
- msgstr "geplanter Beitrag"
186
-
187
- #: includes/admin/class-bnfw-notification.php:178
188
- #: includes/admin/class-bnfw-notification.php:805
189
- msgid "New Category"
190
- msgstr "Neue Kategorie"
191
-
192
- #: includes/admin/class-bnfw-notification.php:179
193
- #: includes/admin/class-bnfw-notification.php:808
194
- msgid "New Tag"
195
- msgstr "Neuer Tag"
196
-
197
- #: includes/admin/class-bnfw-notification.php:182
198
- msgid "New Page Published"
199
- msgstr "Neue Seite publiziert"
200
-
201
- #: includes/admin/class-bnfw-notification.php:183
202
- msgid "Page Updated"
203
- msgstr "Seite aktualisiert"
204
-
205
- #: includes/admin/class-bnfw-notification.php:184
206
- msgid "Page Pending Review"
207
- msgstr "Seite mit ausstehender Überprüfung"
208
-
209
- #: includes/admin/class-bnfw-notification.php:185
210
- msgid "Page Scheduled"
211
- msgstr "geplante Seite"
212
-
213
- #: includes/admin/class-bnfw-notification.php:186
214
- msgid "Page - New Comment"
215
- msgstr "Seite - neuer Kommentar"
216
-
217
- #: includes/admin/class-bnfw-notification.php:200
218
- msgid "Custom Post Type"
219
- msgstr "Benutzerdefinierter Beitrags-Typ"
220
-
221
- #: includes/admin/class-bnfw-notification.php:201
222
- #: includes/admin/class-bnfw-notification.php:821
223
- msgid "New "
224
- msgstr "Neu"
225
-
226
- #: includes/admin/class-bnfw-notification.php:202
227
- msgid "Update "
228
- msgstr "Aktualisieren"
229
-
230
- #: includes/admin/class-bnfw-notification.php:203
231
- msgid "Pending Review"
232
- msgstr "Überprüfung ausstehend"
233
-
234
- #: includes/admin/class-bnfw-notification.php:204
235
- msgid "Scheduled"
236
- msgstr "Geplant"
237
-
238
- #: includes/admin/class-bnfw-notification.php:205
239
- #: includes/admin/class-bnfw-notification.php:766
240
- msgid "New Comment"
241
- msgstr "Neuer Kommentar"
242
-
243
- #: includes/admin/class-bnfw-notification.php:219
244
- msgid "Custom Taxonomy"
245
- msgstr "Benutzerdefinierte Taxonomie"
246
-
247
- #: includes/admin/class-bnfw-notification.php:224
248
- msgid "New"
249
- msgstr "Neu"
250
-
251
- #: includes/admin/class-bnfw-notification.php:240
252
- msgid ""
253
- "This notification doesn't support additional email fields or shortcodes in "
254
- "the subject line."
255
- msgstr ""
256
- "Diese Benachrichtigung unterstützt keine zusätzlichen Email-Felder oder "
257
- "Shortcodes in der Betreffzeile."
258
-
259
- #: includes/admin/class-bnfw-notification.php:247
260
- msgid "Email Formatting"
261
- msgstr "Email-Format"
262
-
263
- #: includes/admin/class-bnfw-notification.php:264 includes/tmp.php:3
264
- msgid "Additional Email Fields"
265
- msgstr "Zusätzliche Email-Felder"
266
-
267
- #: includes/admin/class-bnfw-notification.php:268 includes/tmp.php:7
268
- msgid "Show additional email fields"
269
- msgstr "Zeige zusätzliche Email-Felder"
270
-
271
- #: includes/admin/class-bnfw-notification.php:274 includes/tmp.php:13
272
- msgid "From Name and Email"
273
- msgstr "Absendername und Email"
274
-
275
- #: includes/admin/class-bnfw-notification.php:284 includes/tmp.php:23
276
- msgid "CC"
277
- msgstr "CC"
278
-
279
- #: includes/admin/class-bnfw-notification.php:296 includes/tmp.php:34
280
- msgid "BCC"
281
- msgstr "BCC"
282
-
283
- #: includes/admin/class-bnfw-notification.php:311
284
- msgid "Send this notification to the Post Author only"
285
- msgstr "Sende diese Benachrichtigung nur an den Beitrags-Autor"
286
-
287
- #: includes/admin/class-bnfw-notification.php:318
288
- msgid "Send To"
289
- msgstr "Sende an"
290
-
291
- #: includes/admin/class-bnfw-notification.php:332
292
- msgid "Disable this Notification for the User that triggered it"
293
- msgstr "Deaktiviere diese Benachrichtigung für den Benutzer, der sie ausgelöst hat"
294
-
295
- #: includes/admin/class-bnfw-notification.php:339
296
- #: includes/admin/class-bnfw-notification.php:692
297
- msgid "Subject"
298
- msgstr "Betreff"
299
-
300
- #: includes/admin/class-bnfw-notification.php:348
301
- msgid "Message Body"
302
- msgstr "Nachrichten-Text"
303
-
304
- #: includes/admin/class-bnfw-notification.php:352
305
- msgid ""
306
- "Looking for help with shortcodes? Click here to see which ones you can use "
307
- "with the selected notification."
308
- msgstr ""
309
- "Hilfe mit Shortcodes benötigt? Klick hier zum Anzeigen, welche für die "
310
- "gewählte Benachrichtigung verfügbar sind."
311
-
312
- #: includes/admin/class-bnfw-notification.php:490
313
- msgid "Test Notification Sent."
314
- msgstr "Test Benachrichtigung gesendet"
315
-
316
- #: includes/admin/class-bnfw-notification.php:567
317
- msgid "Notification saved."
318
- msgstr "Benachrichtigung gespeichert"
319
-
320
- #: includes/admin/class-bnfw-notification.php:585
321
- #: includes/admin/class-bnfw-notification.php:621
322
- #: includes/admin/class-bnfw-notification.php:622
323
- msgid "Save"
324
- msgstr "Speichern"
325
-
326
- #: includes/admin/class-bnfw-notification.php:595
327
- msgid "Disable Notification"
328
- msgstr "Benachrichtigung deaktiviert"
329
-
330
- #: includes/admin/class-bnfw-notification.php:601
331
- msgid "Send Me a Test Email"
332
- msgstr "Sende mir eine Test Email"
333
-
334
- #: includes/admin/class-bnfw-notification.php:611
335
- msgid "Delete Permanently"
336
- msgstr "Dauerhaft löschen"
337
-
338
- #: includes/admin/class-bnfw-notification.php:613
339
- msgid "Move to Trash"
340
- msgstr "In den Papierkorb"
341
-
342
- #: includes/admin/class-bnfw-notification.php:690
343
- msgid "Notification Type"
344
- msgstr "Benachrichtigungs Type"
345
-
346
- #: includes/admin/class-bnfw-notification.php:691
347
- msgid "Enabled?"
348
- msgstr "Aktiviert?"
349
-
350
- #: includes/admin/class-bnfw-notification.php:693
351
- msgid "User Roles / Users"
352
- msgstr "Rolle / Benutzer"
353
-
354
- #: includes/admin/class-bnfw-notification.php:784
355
- msgid "User Registration - For User"
356
- msgstr "Benutzer-Registrierung"
357
-
358
- #: includes/admin/class-bnfw-notification.php:787
359
- msgid "New User - Welcome email"
360
- msgstr "Neuer Benutzer - Willkommens-Email"
361
-
362
- #: includes/admin/class-bnfw-notification.php:790
363
- msgid "User Registration - For Admin"
364
- msgstr "Benutzer-Registrierung"
365
-
366
- #: includes/admin/class-bnfw-notification.php:824
367
- msgid "Updated "
368
- msgstr "Aktualisiert"
369
-
370
- #: includes/admin/class-bnfw-notification.php:827
371
- msgid " Pending Review"
372
- msgstr "Überprüfung ausstehend"
373
-
374
- #: includes/admin/class-bnfw-notification.php:830
375
- msgid " Scheduled"
376
- msgstr "Geplant"
377
-
378
- #: includes/admin/class-bnfw-notification.php:833
379
- msgid " Comment"
380
- msgstr "Kommentar"
381
-
382
- #: includes/admin/class-bnfw-notification.php:836
383
- msgid "New term in "
384
- msgstr "Neuer Begriff in"
385
-
386
- #: includes/import.php:60
387
- msgid " for "
388
- msgstr "für"
389
-
390
- #: includes/import.php:60
391
- msgid " (Auto Imported)"
392
- msgstr "(Auto-importiert)"
393
-
394
- #: includes/overrides.php:25
395
- #, c-format
396
- msgid "New user registration on your site %s:"
397
- msgstr "Neue Benutzerregistrierung auf Ihrer Seite %s:"
398
-
399
- #: includes/overrides.php:26 includes/overrides.php:42
400
- #, c-format
401
- msgid "Username: %s"
402
- msgstr "Benutzername: %s"
403
-
404
- #: includes/overrides.php:27
405
- #, c-format
406
- msgid "E-mail: %s"
407
- msgstr "Email: %s"
408
-
409
- #: includes/overrides.php:29
410
- #, c-format
411
- msgid "[%s] New User Registration"
412
- msgstr "[%s] Neue Benutzerregistrierung"
413
-
414
- #: includes/overrides.php:43
415
- #, c-format
416
- msgid "Password: %s"
417
- msgstr "Passwort: %s"
418
-
419
- #: includes/overrides.php:46
420
- #, c-format
421
- msgid "[%s] Your username and password"
422
- msgstr "[%s] Ihr Benutzername und Passwort"
423
-
424
- #. Plugin Name of the plugin/theme
425
- msgid "Better Notifications for WP"
426
- msgstr "Better Notifications for WP"
427
-
428
- #. Plugin URI of the plugin/theme
429
- msgid "http://wordpress.org/plugins/bnfw/"
430
- msgstr "http://wordpress.org/plugins/bnfw/"
431
-
432
- #. Description of the plugin/theme
433
- msgid ""
434
- "Send customisable HTML emails to your users for different WordPress "
435
- "notifications."
436
- msgstr ""
437
- "Anpassbare HTML Emails für die verschiedensten WordPress Mitteilungen an "
438
- "Ihre Benutzer versenden."
439
-
440
- #. Author of the plugin/theme
441
- msgid "Made with Fuel"
442
- msgstr "Made with Fuel"
443
-
444
- #. Author URI of the plugin/theme
445
- msgid "https://betternotificationsforwp.com/"
446
- msgstr "https://betternotificationsforwp.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Better Notifications for WP 1.3.3\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
5
+ "POT-Creation-Date: 2020-11-27 21:34+0800\n"
6
+ "PO-Revision-Date: 2020-11-28 00:02+0800\n"
7
+ "Last-Translator: Michael <michael.schroettle@tpm-systems.eu>\n"
8
+ "Language-Team: \n"
9
+ "Language: de\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Loco-Target-Locale: de_DE\n"
22
+ "X-Generator: Poedit 2.2\n"
23
+ "X-Poedit-SearchPath-0: ../../plugins/bnfw\n"
24
+
25
+ #: bnfw.php:283 includes/admin/bnfw-settings.php:15
26
+ msgid "Settings"
27
+ msgstr "Einstellungen"
28
+
29
+ #: includes/admin/bnfw-settings.php:14
30
+ #: includes/admin/class-bnfw-notification.php:129
31
+ msgid "Notification Settings"
32
+ msgstr "Benachrichtigungs-Einstellungen"
33
+
34
+ #: includes/admin/bnfw-settings.php:38
35
+ msgid "BNFW Settings"
36
+ msgstr "BNFW Einstellungen"
37
+
38
+ #: includes/admin/bnfw-settings.php:46
39
+ msgid "Save Settings"
40
+ msgstr "Einstellungen speichern"
41
+
42
+ #: includes/admin/bnfw-settings.php:73
43
+ msgid "Documentation"
44
+ msgstr ""
45
+
46
+ #: includes/admin/bnfw-settings.php:80
47
+ msgid "Premium Add-ons"
48
+ msgstr ""
49
+
50
+ #: includes/admin/bnfw-settings.php:87
51
+ msgid "Priority Support"
52
+ msgstr ""
53
+
54
+ #: includes/admin/bnfw-settings.php:150
55
+ msgid "Suppress SPAM comment notification"
56
+ msgstr "SPAM Kommentar Benachrichtigung unterdrücken"
57
+
58
+ #: includes/admin/bnfw-settings.php:150
59
+ msgid ""
60
+ "Comments that are correctly marked as SPAM by a 3rd party plugin (such as "
61
+ "Akismet) will not generate a notification if this is ticked."
62
+ msgstr ""
63
+
64
+ #: includes/admin/bnfw-settings.php:155
65
+ msgid "Don't send notifications for comments marked as SPAM"
66
+ msgstr ""
67
+ "Senden Sie keine Benachrichtigungen für Kommentare, die als SPAM "
68
+ "gekennzeichnet sind"
69
+
70
+ #: includes/admin/bnfw-settings.php:167
71
+ msgid "Default Email Format"
72
+ msgstr "Voreingestelltes Email-Format"
73
+
74
+ #: includes/admin/bnfw-settings.php:167
75
+ msgid ""
76
+ "This will apply to all emails sent out via WordPress, even those from other "
77
+ "plugins. For more details, please see the "
78
+ msgstr ""
79
+ "Dies gilt für alle E-Mails, die über WordPress gesendet werden, auch für E-"
80
+ "Mails von anderen Plugins. Weitere Details finden Sie in der"
81
+
82
+ #: includes/admin/bnfw-settings.php:181
83
+ msgid "Enable Content Shortcodes?"
84
+ msgstr ""
85
+
86
+ #: includes/admin/bnfw-settings.php:181
87
+ msgid "Shortcodes in the post/page content are disabled by default."
88
+ msgstr ""
89
+
90
+ #: includes/admin/bnfw-settings.php:186
91
+ msgid "Enable shortcode output in the page/post content"
92
+ msgstr ""
93
+
94
+ #: includes/admin/bnfw-settings.php:198
95
+ msgid "Allow Usage Tracking?"
96
+ msgstr ""
97
+
98
+ #: includes/admin/bnfw-settings.php:203
99
+ msgid ""
100
+ "Allow Better Notifications for WP to anonymously track how this plugin is "
101
+ "used and help make the plugin better."
102
+ msgstr ""
103
+
104
+ #: includes/admin/bnfw-settings.php:251
105
+ #: includes/admin/class-bnfw-notification.php:433
106
+ msgid "HTML Formatting"
107
+ msgstr "HTML Formatierung"
108
+
109
+ #: includes/admin/bnfw-settings.php:256
110
+ #: includes/admin/class-bnfw-notification.php:439
111
+ msgid "Plain Text"
112
+ msgstr "Nur Text"
113
+
114
+ #: includes/admin/class-bnfw-notification.php:52
115
+ #: includes/admin/class-bnfw-notification.php:55
116
+ #: includes/admin/class-bnfw-notification.php:56
117
+ msgid "Notifications"
118
+ msgstr "Notifications"
119
+
120
+ #: includes/admin/class-bnfw-notification.php:53
121
+ msgid "Notification"
122
+ msgstr "Benachrichtigung"
123
+
124
+ #: includes/admin/class-bnfw-notification.php:54
125
+ msgid "Add New"
126
+ msgstr "Neue erstellen"
127
+
128
+ #: includes/admin/class-bnfw-notification.php:57
129
+ msgid "Add New Notification"
130
+ msgstr "Neue Benachrichtigung erstellen"
131
+
132
+ #: includes/admin/class-bnfw-notification.php:58
133
+ msgid "Edit Notification"
134
+ msgstr "Benachrichtigung bearbeiten"
135
+
136
+ #: includes/admin/class-bnfw-notification.php:59
137
+ msgid "New Notification"
138
+ msgstr "Neue Benachrichtigung"
139
+
140
+ #: includes/admin/class-bnfw-notification.php:60
141
+ msgid "View Notification"
142
+ msgstr "Benachrichtigung anzeigen"
143
+
144
+ #: includes/admin/class-bnfw-notification.php:61
145
+ msgid "Search Notifications"
146
+ msgstr "Benachrichtung suchen"
147
+
148
+ #: includes/admin/class-bnfw-notification.php:62
149
+ msgid "No Notifications found"
150
+ msgstr "Keine Benachrichtigung gefunden"
151
+
152
+ #: includes/admin/class-bnfw-notification.php:63
153
+ msgid "No Notifications found in trash"
154
+ msgstr "Keine Benachrichtigung im Papierkorb gefunden"
155
+
156
+ #: includes/admin/class-bnfw-notification.php:64
157
+ msgid "All Notifications"
158
+ msgstr "Alle Benachrichtigungen"
159
+
160
+ #: includes/admin/class-bnfw-notification.php:138
161
+ msgid "Save Notification"
162
+ msgstr "Benachrichtigung speichern"
163
+
164
+ #: includes/admin/class-bnfw-notification.php:186
165
+ msgid "Notification For"
166
+ msgstr "Benachrichtigung für"
167
+
168
+ #: includes/admin/class-bnfw-notification.php:187
169
+ msgid ""
170
+ "E.g. If you select \"New Post Published\" from the list on the right, this "
171
+ "notification will be sent when a new post is published."
172
+ msgstr ""
173
+
174
+ #: includes/admin/class-bnfw-notification.php:191
175
+ msgid "Select the notification type"
176
+ msgstr "Wählen Sie den Benachrichtigungstyp"
177
+
178
+ #: includes/admin/class-bnfw-notification.php:192
179
+ msgid "Admin"
180
+ msgstr ""
181
+
182
+ #: includes/admin/class-bnfw-notification.php:194
183
+ #: includes/admin/class-bnfw-notification.php:1302
184
+ msgid "New User Registration - For Admin"
185
+ msgstr "Neuen Benutzer Registrieren - für Admin"
186
+
187
+ #: includes/admin/class-bnfw-notification.php:196
188
+ #: includes/admin/class-bnfw-notification.php:1269
189
+ msgid "User Lost Password - For Admin"
190
+ msgstr "Benutzer Passwort verloren - Für Admin"
191
+
192
+ #: includes/admin/class-bnfw-notification.php:198
193
+ #: includes/admin/class-bnfw-notification.php:1272
194
+ msgid "Password Changed - For Admin"
195
+ msgstr "Passwort geändert - Für Admin"
196
+
197
+ #: includes/admin/class-bnfw-notification.php:200
198
+ #: includes/admin/class-bnfw-notification.php:1275
199
+ msgid "User Email Changed - For Admin"
200
+ msgstr "Benutzer-E-Mail geändert - Für Admin"
201
+
202
+ #: includes/admin/class-bnfw-notification.php:202
203
+ #: includes/admin/class-bnfw-notification.php:1308
204
+ msgid "User Role Changed - For Admin"
205
+ msgstr "Benutzerrolle geändert - Für Admin"
206
+
207
+ #: includes/admin/class-bnfw-notification.php:204
208
+ #: includes/admin/class-bnfw-notification.php:1296
209
+ msgid "User Logged In - For Admin"
210
+ msgstr "Benutzer angemeldet - Für Admin"
211
+
212
+ #: includes/admin/class-bnfw-notification.php:206
213
+ #: includes/admin/class-bnfw-notification.php:1287
214
+ msgid "WordPress Core Automatic Background Updates"
215
+ msgstr ""
216
+
217
+ #: includes/admin/class-bnfw-notification.php:210
218
+ #: includes/admin/class-bnfw-notification.php:1344
219
+ msgid "Privacy - Confirm Action: Export Data Request - For Admin"
220
+ msgstr ""
221
+
222
+ #: includes/admin/class-bnfw-notification.php:214
223
+ #: includes/admin/class-bnfw-notification.php:1347
224
+ msgid "Privacy - Confirm Action: Erase Data Request - For Admin"
225
+ msgstr ""
226
+
227
+ #: includes/admin/class-bnfw-notification.php:222
228
+ msgid "Transactional"
229
+ msgstr ""
230
+
231
+ #: includes/admin/class-bnfw-notification.php:224
232
+ #: includes/admin/class-bnfw-notification.php:1290
233
+ msgid "New User Registration - For User"
234
+ msgstr "Neuen Benutzer registrieren - für Benutzer"
235
+
236
+ #: includes/admin/class-bnfw-notification.php:226
237
+ #: includes/admin/class-bnfw-notification.php:1299
238
+ msgid "New User - Post-registration Email"
239
+ msgstr "Neuer Benutzer - E-Mail nach der Registrierung"
240
+
241
+ #: includes/admin/class-bnfw-notification.php:228
242
+ #: includes/admin/class-bnfw-notification.php:1266
243
+ msgid "User Lost Password - For User"
244
+ msgstr "Benutzer Passwort verloren - Für Benutzer"
245
+
246
+ #: includes/admin/class-bnfw-notification.php:230
247
+ #: includes/admin/class-bnfw-notification.php:1278
248
+ msgid "Password Changed - For User"
249
+ msgstr "Passwort geändert - Für Benutzer"
250
+
251
+ #: includes/admin/class-bnfw-notification.php:232
252
+ #: includes/admin/class-bnfw-notification.php:1281
253
+ msgid "User Email Changed Confirmation - For User"
254
+ msgstr "Benutzer-E-Mail-Bestätigung geändert - Für Benutzer"
255
+
256
+ #: includes/admin/class-bnfw-notification.php:235
257
+ #: includes/admin/class-bnfw-notification.php:1284
258
+ msgid "User Email Changed - For User"
259
+ msgstr "Benutzer-E-Mail geändert - Für Benutzer"
260
+
261
+ #: includes/admin/class-bnfw-notification.php:237
262
+ #: includes/admin/class-bnfw-notification.php:1305
263
+ msgid "User Role Changed - For User"
264
+ msgstr "Benutzerrolle geändert - Für Benutzer"
265
+
266
+ #: includes/admin/class-bnfw-notification.php:239
267
+ #: includes/admin/class-bnfw-notification.php:1293
268
+ msgid "User Logged In - For User"
269
+ msgstr "Benutzer angemeldet - Für Benutzer"
270
+
271
+ #: includes/admin/class-bnfw-notification.php:241
272
+ #: includes/admin/class-bnfw-notification.php:375
273
+ #: includes/admin/class-bnfw-notification.php:1263
274
+ msgid "Comment Reply"
275
+ msgstr "Antwort auf Kommentar"
276
+
277
+ #: includes/admin/class-bnfw-notification.php:245
278
+ msgid "Privacy - Confirm Action: Export Data Request - For User"
279
+ msgstr ""
280
+
281
+ #: includes/admin/class-bnfw-notification.php:249
282
+ msgid "Privacy - Confirm Action: Erase Data Request - For User"
283
+ msgstr ""
284
+
285
+ #: includes/admin/class-bnfw-notification.php:253
286
+ #: includes/admin/class-bnfw-notification.php:1350
287
+ msgid "Privacy - Data Export - For User"
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-bnfw-notification.php:257
291
+ #: includes/admin/class-bnfw-notification.php:1353
292
+ msgid "Privacy - Data Erased - For User"
293
+ msgstr ""
294
+
295
+ #: includes/admin/class-bnfw-notification.php:267
296
+ #: includes/admin/class-bnfw-notification.php:1311
297
+ msgid "New Post Published"
298
+ msgstr "Neuer Beitrag veröffentlicht"
299
+
300
+ #: includes/admin/class-bnfw-notification.php:269
301
+ #: includes/admin/class-bnfw-notification.php:1314
302
+ msgid "Post Updated"
303
+ msgstr "Beitrag aktualisiert"
304
+
305
+ #: includes/admin/class-bnfw-notification.php:271
306
+ #: includes/admin/class-bnfw-notification.php:1317
307
+ msgid "Post Pending Review"
308
+ msgstr "Beitrag mit ausstehender Überprüfung"
309
+
310
+ #: includes/admin/class-bnfw-notification.php:273
311
+ #: includes/admin/class-bnfw-notification.php:1320
312
+ msgid "New Private Post"
313
+ msgstr ""
314
+
315
+ #: includes/admin/class-bnfw-notification.php:275
316
+ #: includes/admin/class-bnfw-notification.php:1323
317
+ msgid "Post Scheduled"
318
+ msgstr "geplanter Beitrag"
319
+
320
+ #: includes/admin/class-bnfw-notification.php:277
321
+ #: includes/admin/class-bnfw-notification.php:1326
322
+ msgid "Published Post Moved to Trash"
323
+ msgstr "Veröffentlichter Beitrag in den Papierkorb verschoben"
324
+
325
+ #: includes/admin/class-bnfw-notification.php:279
326
+ #: includes/admin/class-bnfw-notification.php:367
327
+ #: includes/admin/class-bnfw-notification.php:1248
328
+ msgid "New Comment"
329
+ msgstr "Neuer Kommentar"
330
+
331
+ #: includes/admin/class-bnfw-notification.php:282
332
+ #: includes/admin/class-bnfw-notification.php:369
333
+ #: includes/admin/class-bnfw-notification.php:1254
334
+ #: includes/admin/class-bnfw-notification.php:1407
335
+ msgid "New Comment Awaiting Moderation"
336
+ msgstr "Neuer Kommentar wartet auf Moderation"
337
+
338
+ #: includes/admin/class-bnfw-notification.php:285
339
+ #: includes/admin/class-bnfw-notification.php:1251
340
+ msgid "Post - Comment Approved"
341
+ msgstr ""
342
+
343
+ #: includes/admin/class-bnfw-notification.php:288
344
+ #: includes/admin/class-bnfw-notification.php:1332
345
+ msgid "New Category"
346
+ msgstr "Neue Kategorie"
347
+
348
+ #: includes/admin/class-bnfw-notification.php:290
349
+ #: includes/admin/class-bnfw-notification.php:1335
350
+ msgid "New Tag"
351
+ msgstr "Neuer Tag"
352
+
353
+ #: includes/admin/class-bnfw-notification.php:292
354
+ #: includes/admin/class-bnfw-notification.php:1257
355
+ msgid "New Trackback"
356
+ msgstr "Neuer Trackback"
357
+
358
+ #: includes/admin/class-bnfw-notification.php:294
359
+ #: includes/admin/class-bnfw-notification.php:1260
360
+ msgid "New Pingback"
361
+ msgstr "Neuer Pingback"
362
+
363
+ #: includes/admin/class-bnfw-notification.php:301
364
+ #: includes/admin/class-bnfw-notification.php:1329
365
+ msgid "New Page Published"
366
+ msgstr "Neue Seite publiziert"
367
+
368
+ #: includes/admin/class-bnfw-notification.php:303
369
+ msgid "Page Updated"
370
+ msgstr "Seite aktualisiert"
371
+
372
+ #: includes/admin/class-bnfw-notification.php:305
373
+ msgid "Page Pending Review"
374
+ msgstr "Seite mit ausstehender Überprüfung"
375
+
376
+ #: includes/admin/class-bnfw-notification.php:307
377
+ msgid "New Private Page"
378
+ msgstr ""
379
+
380
+ #: includes/admin/class-bnfw-notification.php:309
381
+ msgid "Page Scheduled"
382
+ msgstr "geplante Seite"
383
+
384
+ #: includes/admin/class-bnfw-notification.php:311
385
+ msgid "Page - New Comment"
386
+ msgstr "Seite - neuer Kommentar"
387
+
388
+ #: includes/admin/class-bnfw-notification.php:313
389
+ msgid "Page - New Comment Awaiting Moderation"
390
+ msgstr "Seite - Neuer Kommentar wartet auf Moderation"
391
+
392
+ #: includes/admin/class-bnfw-notification.php:316
393
+ #: includes/admin/class-bnfw-notification.php:1365
394
+ msgid "Page - Comment Approved"
395
+ msgstr "Seite - Kommentar genehmigt"
396
+
397
+ #: includes/admin/class-bnfw-notification.php:319
398
+ msgid "Page - Comment Reply"
399
+ msgstr "Seite - Kommentar Antworten"
400
+
401
+ #: includes/admin/class-bnfw-notification.php:326
402
+ #: includes/admin/class-bnfw-notification.php:1356
403
+ msgid "New Media Published"
404
+ msgstr "Neue Medien veröffentlicht"
405
+
406
+ #: includes/admin/class-bnfw-notification.php:328
407
+ #: includes/admin/class-bnfw-notification.php:1359
408
+ msgid "Media Updated"
409
+ msgstr "Medien aktualisiert"
410
+
411
+ #: includes/admin/class-bnfw-notification.php:330
412
+ #: includes/admin/class-bnfw-notification.php:1362
413
+ msgid "Media - New Comment"
414
+ msgstr "Medien - Neuer Kommentar"
415
+
416
+ #: includes/admin/class-bnfw-notification.php:332
417
+ #: includes/admin/class-bnfw-notification.php:1368
418
+ msgid "Media - Comment Approved"
419
+ msgstr ""
420
+
421
+ #: includes/admin/class-bnfw-notification.php:335
422
+ #: includes/admin/class-bnfw-notification.php:1371
423
+ msgid "Media - New Comment Awaiting Moderation"
424
+ msgstr "Medien - Neuer Kommentar wartet auf Moderation"
425
+
426
+ #: includes/admin/class-bnfw-notification.php:337
427
+ #: includes/admin/class-bnfw-notification.php:1374
428
+ msgid "Media - Comment Reply"
429
+ msgstr "Medien - Kommentar Antworten"
430
+
431
+ #: includes/admin/class-bnfw-notification.php:355
432
+ msgid "Custom Post Type"
433
+ msgstr "Benutzerdefinierter Beitrags-Typ"
434
+
435
+ #: includes/admin/class-bnfw-notification.php:357
436
+ #: includes/admin/class-bnfw-notification.php:1389
437
+ msgid "New "
438
+ msgstr "Neu"
439
+
440
+ #: includes/admin/class-bnfw-notification.php:357
441
+ msgid " Published"
442
+ msgstr "Veröffentlicht"
443
+
444
+ #: includes/admin/class-bnfw-notification.php:359
445
+ msgid "Updated"
446
+ msgstr "Aktualisiert"
447
+
448
+ #: includes/admin/class-bnfw-notification.php:361
449
+ msgid "Pending Review"
450
+ msgstr "Überprüfung ausstehend"
451
+
452
+ #: includes/admin/class-bnfw-notification.php:363
453
+ #: includes/admin/class-bnfw-notification.php:1401
454
+ msgid "New Private "
455
+ msgstr ""
456
+
457
+ #: includes/admin/class-bnfw-notification.php:365
458
+ msgid "Scheduled"
459
+ msgstr "Geplant"
460
+
461
+ #: includes/admin/class-bnfw-notification.php:372
462
+ msgid "Comment Approved"
463
+ msgstr "Kommentar genehmigt"
464
+
465
+ #: includes/admin/class-bnfw-notification.php:394
466
+ msgid "Custom Taxonomy"
467
+ msgstr "Benutzerdefinierte Taxonomie"
468
+
469
+ #: includes/admin/class-bnfw-notification.php:400
470
+ msgid "New"
471
+ msgstr "Neu"
472
+
473
+ #: includes/admin/class-bnfw-notification.php:419
474
+ msgid ""
475
+ "This notification doesn't support additional email fields due to a "
476
+ "limitation in WordPress."
477
+ msgstr ""
478
+ "Diese Benachrichtigung unterstützt keine zusätzlichen E-Mail-Felder aufgrund "
479
+ "einer Einschränkung in WordPress."
480
+
481
+ #: includes/admin/class-bnfw-notification.php:426
482
+ msgid "Email Formatting"
483
+ msgstr "Email-Format"
484
+
485
+ #: includes/admin/class-bnfw-notification.php:427
486
+ msgid ""
487
+ "How do you want to format the sent email? HTML is recommended as it'll show "
488
+ "images and links correctly."
489
+ msgstr ""
490
+
491
+ #: includes/admin/class-bnfw-notification.php:448
492
+ msgid "Additional Email Fields"
493
+ msgstr "Zusätzliche Email-Felder"
494
+
495
+ #: includes/admin/class-bnfw-notification.php:449
496
+ msgid ""
497
+ "This should be fairly self explanatory but if you're unsure, tick this "
498
+ "checkbox and have a look at the available options. You can always untick it "
499
+ "again should you decide you don't need to use it."
500
+ msgstr ""
501
+
502
+ #: includes/admin/class-bnfw-notification.php:454
503
+ msgid "Set \"From\" Name & Email, Reply To, CC, BCC"
504
+ msgstr ""
505
+
506
+ #: includes/admin/class-bnfw-notification.php:461
507
+ msgid "From Name and Email"
508
+ msgstr "Absendername und Email"
509
+
510
+ #: includes/admin/class-bnfw-notification.php:462
511
+ msgid ""
512
+ "If you want to send the email from your site name and email address instead "
513
+ "of the default \"WordPress\" from \"wordpress@domain.com\", this is where "
514
+ "you can do it."
515
+ msgstr ""
516
+
517
+ #: includes/admin/class-bnfw-notification.php:466
518
+ msgid "Site Name"
519
+ msgstr ""
520
+
521
+ #: includes/admin/class-bnfw-notification.php:468
522
+ msgid "Site Email"
523
+ msgstr ""
524
+
525
+ #: includes/admin/class-bnfw-notification.php:475
526
+ msgid "Reply To"
527
+ msgstr ""
528
+
529
+ #: includes/admin/class-bnfw-notification.php:476
530
+ msgid ""
531
+ "If you want any replies to your email notification to go to another person, "
532
+ "fill in this box with their name and email address."
533
+ msgstr ""
534
+
535
+ #: includes/admin/class-bnfw-notification.php:480
536
+ msgid "Name"
537
+ msgstr ""
538
+
539
+ #: includes/admin/class-bnfw-notification.php:482
540
+ msgid "Email"
541
+ msgstr "Email"
542
+
543
+ #: includes/admin/class-bnfw-notification.php:488
544
+ msgid "CC"
545
+ msgstr "CC"
546
+
547
+ #: includes/admin/class-bnfw-notification.php:489
548
+ msgid "Publicly copy in any other users or user roles to this email."
549
+ msgstr ""
550
+
551
+ #: includes/admin/class-bnfw-notification.php:494
552
+ #: includes/admin/class-bnfw-notification.php:508
553
+ #: includes/admin/class-bnfw-notification.php:557
554
+ #: includes/admin/class-bnfw-notification.php:575
555
+ msgid "Select User Roles / Users"
556
+ msgstr "Wählen Sie Benutzerrollen / Benutzer"
557
+
558
+ #: includes/admin/class-bnfw-notification.php:502
559
+ msgid "BCC"
560
+ msgstr "BCC"
561
+
562
+ #: includes/admin/class-bnfw-notification.php:503
563
+ msgid "Privately copy in any other users or user roles to this email."
564
+ msgstr ""
565
+
566
+ #: includes/admin/class-bnfw-notification.php:518
567
+ msgid "Send to Author"
568
+ msgstr ""
569
+
570
+ #: includes/admin/class-bnfw-notification.php:519
571
+ msgid ""
572
+ "E.g. If you want a new post published notification to go to the post author, "
573
+ "tick this box."
574
+ msgstr ""
575
+
576
+ #: includes/admin/class-bnfw-notification.php:526
577
+ msgid "Send this notification to the Author"
578
+ msgstr "Senden Sie diese Benachrichtigung an den Autor"
579
+
580
+ #: includes/admin/class-bnfw-notification.php:536
581
+ msgid ""
582
+ "E.g. If you're an editor and regularly update your posts, you might not want "
583
+ "to be emailed about this all the time. Ticking this box will prevent you "
584
+ "from receiving emails about your own changes."
585
+ msgstr ""
586
+
587
+ #: includes/admin/class-bnfw-notification.php:542
588
+ msgid "Do not send this Notification to the User that triggered it"
589
+ msgstr ""
590
+ "Senden Sie diese Benachrichtigung nicht an den Benutzer, der sie ausgelöst "
591
+ "hat"
592
+
593
+ #: includes/admin/class-bnfw-notification.php:551
594
+ msgid "Send To"
595
+ msgstr "Sende an"
596
+
597
+ #: includes/admin/class-bnfw-notification.php:552
598
+ msgid "Choose the users and/or user roles to send this email notification to."
599
+ msgstr ""
600
+
601
+ #: includes/admin/class-bnfw-notification.php:565
602
+ msgid "Except For"
603
+ msgstr ""
604
+
605
+ #: includes/admin/class-bnfw-notification.php:568
606
+ msgid ""
607
+ "Choose the users and/or user roles that this notification should not be sent "
608
+ "to."
609
+ msgstr ""
610
+
611
+ #: includes/admin/class-bnfw-notification.php:593
612
+ msgid ""
613
+ "You have chosen to send this notification to over 200 users. Please check "
614
+ "the email sending rate limit at your host before sending."
615
+ msgstr ""
616
+
617
+ #: includes/admin/class-bnfw-notification.php:603
618
+ #: includes/admin/class-bnfw-notification.php:1129
619
+ msgid "Subject"
620
+ msgstr "Betreff"
621
+
622
+ #: includes/admin/class-bnfw-notification.php:604
623
+ msgid "Notification subject. You can use "
624
+ msgstr "Benachrichtigungsgegenstand. Sie können verwenden"
625
+
626
+ #: includes/admin/class-bnfw-notification.php:604
627
+ #: includes/admin/class-bnfw-notification.php:618
628
+ msgid " here."
629
+ msgstr ""
630
+
631
+ #: includes/admin/class-bnfw-notification.php:617
632
+ msgid "Message Body"
633
+ msgstr "Nachrichten-Text"
634
+
635
+ #: includes/admin/class-bnfw-notification.php:618
636
+ msgid "Notification message. You can use "
637
+ msgstr "Benachrichtigungsgegenstand. Sie können verwenden"
638
+
639
+ #: includes/admin/class-bnfw-notification.php:626
640
+ msgid "Need some more help?"
641
+ msgstr ""
642
+
643
+ #: includes/admin/class-bnfw-notification.php:636
644
+ msgid "Insert Default Content"
645
+ msgstr "Standardinhalt einfügen"
646
+
647
+ #: includes/admin/class-bnfw-notification.php:640
648
+ msgid "Read Documentation"
649
+ msgstr ""
650
+
651
+ #: includes/admin/class-bnfw-notification.php:644
652
+ msgid "Find Shortcodes"
653
+ msgstr ""
654
+
655
+ #: includes/admin/class-bnfw-notification.php:655
656
+ msgid ""
657
+ "Stop additional paragraph and line break HTML from being inserted into my "
658
+ "notifications"
659
+ msgstr ""
660
+
661
+ #: includes/admin/class-bnfw-notification.php:710
662
+ msgid ""
663
+ "You must choose at least one User or User Role to send the notification to "
664
+ "before you can save"
665
+ msgstr ""
666
+
667
+ #: includes/admin/class-bnfw-notification.php:825
668
+ msgid "Test Notification Sent."
669
+ msgstr "Test Benachrichtigung gesendet"
670
+
671
+ #: includes/admin/class-bnfw-notification.php:915
672
+ msgid "Notification saved."
673
+ msgstr "Benachrichtigung gespeichert"
674
+
675
+ #: includes/admin/class-bnfw-notification.php:934
676
+ #: includes/admin/class-bnfw-notification.php:992
677
+ #: includes/admin/class-bnfw-notification.php:994
678
+ msgid "Save"
679
+ msgstr "Speichern"
680
+
681
+ #: includes/admin/class-bnfw-notification.php:942
682
+ msgid ""
683
+ "Use this to enable or disable notifications. If you want to disable a "
684
+ "default WordPress notification, just create it on the left, then disable it "
685
+ "here."
686
+ msgstr ""
687
+
688
+ #: includes/admin/class-bnfw-notification.php:949
689
+ msgid "Notification Enabled"
690
+ msgstr "Benachrichtigung aktiviert"
691
+
692
+ #: includes/admin/class-bnfw-notification.php:956
693
+ msgid "Notification Disabled"
694
+ msgstr "Benachrichtigung deaktiviert"
695
+
696
+ #: includes/admin/class-bnfw-notification.php:967
697
+ msgid "Send Me a Test Email"
698
+ msgstr "Sende mir eine Test Email"
699
+
700
+ #: includes/admin/class-bnfw-notification.php:969
701
+ msgid ""
702
+ "This will send you (the currently logged in user) a notification so that you "
703
+ "can check for any issues with formatting – it’s doesn't mean that a "
704
+ "notification will send correctly in the future. You can read about how to "
705
+ "improve email delivery"
706
+ msgstr ""
707
+
708
+ #: includes/admin/class-bnfw-notification.php:969
709
+ msgid "here"
710
+ msgstr ""
711
+
712
+ #: includes/admin/class-bnfw-notification.php:969
713
+ msgid ". Shortcodes will not be replaced with content."
714
+ msgstr ""
715
+
716
+ #: includes/admin/class-bnfw-notification.php:980
717
+ msgid "Delete Permanently"
718
+ msgstr "Dauerhaft löschen"
719
+
720
+ #: includes/admin/class-bnfw-notification.php:982
721
+ msgid "Move to Trash"
722
+ msgstr "In den Papierkorb"
723
+
724
+ #: includes/admin/class-bnfw-notification.php:1127
725
+ msgid "Notification Type"
726
+ msgstr "Benachrichtigungs Type"
727
+
728
+ #: includes/admin/class-bnfw-notification.php:1128
729
+ msgid "Enabled?"
730
+ msgstr "Aktiviert?"
731
+
732
+ #: includes/admin/class-bnfw-notification.php:1130
733
+ msgid "User Roles / Users"
734
+ msgstr "Rolle / Benutzer"
735
+
736
+ #: includes/admin/class-bnfw-notification.php:1131
737
+ msgid "Excluded User Roles / Users"
738
+ msgstr "Ausgeschlossene Benutzerrollen / Benutzer"
739
+
740
+ #: includes/admin/class-bnfw-notification.php:1172
741
+ msgid ", Post Author"
742
+ msgstr ""
743
+
744
+ #: includes/admin/class-bnfw-notification.php:1338
745
+ msgid "Privacy – Confirm Action: Export Data Request – For User"
746
+ msgstr ""
747
+
748
+ #: includes/admin/class-bnfw-notification.php:1341
749
+ msgid "Privacy – Confirm Action: Erase Data Request – For User"
750
+ msgstr ""
751
+
752
+ #: includes/admin/class-bnfw-notification.php:1389
753
+ msgid "Published"
754
+ msgstr "Veröffentlicht"
755
+
756
+ #: includes/admin/class-bnfw-notification.php:1392
757
+ msgid "Updated "
758
+ msgstr "Aktualisiert"
759
+
760
+ #: includes/admin/class-bnfw-notification.php:1395
761
+ msgid " Pending Review"
762
+ msgstr "Überprüfung ausstehend"
763
+
764
+ #: includes/admin/class-bnfw-notification.php:1398
765
+ msgid " Scheduled"
766
+ msgstr "Geplant"
767
+
768
+ #: includes/admin/class-bnfw-notification.php:1404
769
+ msgid " Comment"
770
+ msgstr "Kommentar"
771
+
772
+ #: includes/admin/class-bnfw-notification.php:1410
773
+ msgid " Comment Reply"
774
+ msgstr "Kommentar Antworten"
775
+
776
+ #: includes/admin/class-bnfw-notification.php:1413
777
+ msgid " Comment Approved"
778
+ msgstr "Kommentar genehmigt"
779
+
780
+ #: includes/admin/class-bnfw-notification.php:1418
781
+ msgid "New Term"
782
+ msgstr "Neuer Begriff"
783
+
784
+ #: includes/admin/class-bnfw-notification.php:1420
785
+ msgid "New Term in "
786
+ msgstr "Neuer Begriff in"
787
+
788
+ #: includes/admin/class-bnfw-notification.php:1440
789
+ msgid "Enable Notifications"
790
+ msgstr "Benachrichtigungen aktivieren"
791
+
792
+ #: includes/admin/class-bnfw-notification.php:1441
793
+ msgid "Disable Notifications"
794
+ msgstr "Benachrichtigungen ausschalten"
795
+
796
+ #: includes/admin/class-bnfw-notification.php:1502
797
+ msgid "Enable Notification"
798
+ msgstr "Aktiviere Benachrichtigungen"
799
+
800
+ #: includes/admin/class-bnfw-notification.php:1510
801
+ msgid "Disable Notification"
802
+ msgstr "Benachrichtigung deaktiviert"
803
+
804
+ #: includes/admin/class-bnfw-notification.php:1568
805
+ msgid "Enabled 1 Notification."
806
+ msgstr "Aktiviert 1 Benachrichtigung."
807
+
808
+ #: includes/admin/class-bnfw-notification.php:1572
809
+ msgid "Disabled 1 Notification."
810
+ msgstr "Deaktiviert 1 Benachrichtigung."
811
+
812
+ #: includes/admin/class-bnfw-notification.php:1578
813
+ #, php-format
814
+ msgid "Enabled %s Notification."
815
+ msgid_plural "Enabled %s Notifications."
816
+ msgstr[0] "%s Benachrichtigung aktiviert."
817
+ msgstr[1] "%s Benachrichtigungen aktiviert."
818
+
819
+ #: includes/admin/class-bnfw-notification.php:1588
820
+ #, php-format
821
+ msgid "Disabled %s Notification."
822
+ msgid_plural "Disabled %s Notifications."
823
+ msgstr[0] "%s Benachrichtigungen deaktiviert."
824
+ msgstr[1] "%s Benachrichtigungen deaktiviert."
825
+
826
+ #: includes/admin/class-bnfw-notification.php:1602
827
+ msgid ""
828
+ "If you send out notifications with BNFW but don't receive them, you may need "
829
+ "to install an SMTP plugin to <a href=\"https://betternotificationsforwp.com/"
830
+ "documentation/getting-started/how-to-improve-email-delivery/\" target="
831
+ "\"_blank\">improve email deliverability</a>. I recommend using <a href="
832
+ "\"https://wordpress.org/plugins/post-smtp/\" target=\"_blank\">Post SMTP</a> "
833
+ "as it's easy to set-up or <a href=\"https://wordpress.org/plugins/email-log/"
834
+ "\" target=\"_blank\">Email Log</a> to just log and view emails that are sent."
835
+ msgstr ""
836
+
837
+ #: includes/engine/class-bnfw-engine.php:18
838
+ msgid "Test Email:"
839
+ msgstr "Test-Email:"
840
+
841
+ #: includes/engine/class-bnfw-engine.php:19
842
+ msgid ""
843
+ "This is a test email. All shortcodes below will show in place but not be "
844
+ "replaced with content."
845
+ msgstr ""
846
+
847
+ #: includes/engine/class-bnfw-engine.php:1583
848
+ msgid "Error: Download link is not available please contact support"
849
+ msgstr ""
850
+
851
+ #: includes/helpers/ajax-helpers.php:34 includes/helpers/helpers.php:38
852
+ msgid "User Roles"
853
+ msgstr "Benutzerregeln"
854
+
855
+ #: includes/helpers/ajax-helpers.php:57 includes/helpers/helpers.php:59
856
+ #: includes/helpers/helpers.php:64
857
+ msgid "Users"
858
+ msgstr ""
859
+
860
+ #: includes/helpers/helpers.php:103
861
+ msgid "Non WordPress Users"
862
+ msgstr ""
863
+
864
+ #: includes/import.php:69
865
+ msgid " for "
866
+ msgstr "für"
867
+
868
+ #: includes/import.php:69
869
+ msgid " (Auto Imported)"
870
+ msgstr "(Auto-importiert)"
871
+
872
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:228
873
+ #, php-format
874
+ msgid ""
875
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
876
+ msgstr ""
877
+
878
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:236
879
+ #, php-format
880
+ msgid ""
881
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
882
+ "or %5$supdate now%6$s."
883
+ msgstr ""
884
+
885
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
886
+ msgid "You do not have permission to install plugin updates"
887
+ msgstr ""
888
+
889
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
890
+ msgid "Error"
891
+ msgstr ""
892
+
893
+ #: includes/license/class-bnfw-license-setting.php:18
894
+ #: includes/license/class-bnfw-license-setting.php:19
895
+ msgid "Add-on Licenses"
896
+ msgstr ""
897
+
898
+ #: includes/license/class-bnfw-license-setting.php:38
899
+ msgid "BNFW Add-on Licenses"
900
+ msgstr ""
901
+
902
+ #: includes/license/class-bnfw-license-setting.php:47
903
+ msgid "Save License"
904
+ msgstr ""
905
+
906
+ #: includes/license/class-bnfw-license-setting.php:55
907
+ msgid ""
908
+ "<br>You have no BNFW Premium Add-ons installed yet.<br>You can buy add-ons "
909
+ "from the <a href=\""
910
+ msgstr ""
911
+
912
+ #: includes/license/class-bnfw-license-setting.php:130
913
+ msgid "Deactivate License"
914
+ msgstr ""
915
+
916
+ #: includes/license/class-bnfw-license.php:140
917
+ #, php-format
918
+ msgid "%1$s License Key"
919
+ msgstr ""
920
+
921
+ #: includes/overrides.php:41 includes/overrides.php:135
922
+ #, php-format
923
+ msgid "New user registration on your site %s:"
924
+ msgstr "Neue Benutzerregistrierung auf Ihrer Seite %s:"
925
+
926
+ #: includes/overrides.php:42 includes/overrides.php:117
927
+ #: includes/overrides.php:136 includes/overrides.php:152
928
+ #, php-format
929
+ msgid "Username: %s"
930
+ msgstr "Benutzername: %s"
931
+
932
+ #: includes/overrides.php:43 includes/overrides.php:137
933
+ #, php-format
934
+ msgid "E-mail: %s"
935
+ msgstr "Email: %s"
936
+
937
+ #. translators: Password change notification email subject. %s: Site title
938
+ #: includes/overrides.php:48 includes/overrides.php:139
939
+ #, php-format
940
+ msgid "[%s] New User Registration"
941
+ msgstr "[%s] Neue Benutzerregistrierung"
942
+
943
+ #: includes/overrides.php:118
944
+ msgid "To set your password, visit the following address:"
945
+ msgstr ""
946
+
947
+ #: includes/overrides.php:123
948
+ #, php-format
949
+ msgid "[%s] Your username and password info"
950
+ msgstr "[%s] Ihr Benutzername und Passwort"
951
+
952
+ #: includes/overrides.php:153
953
+ #, php-format
954
+ msgid "Password: %s"
955
+ msgstr "Passwort: %s"
956
+
957
+ #: includes/overrides.php:156
958
+ #, php-format
959
+ msgid "[%s] Your username and password"
960
+ msgstr "[%s] Ihr Benutzername und Passwort"
961
+
962
+ #. translators: %s: user name
963
+ #: includes/overrides.php:184
964
+ #, php-format
965
+ msgid "Password changed for user: %s"
966
+ msgstr "Passwort für Benutzer geändert:%s"
967
+
968
+ #. translators: %s: site title
969
+ #: includes/overrides.php:189
970
+ #, php-format
971
+ msgid "[%s] Password Changed"
972
+ msgstr ""
973
+
974
+ #. Plugin Name of the plugin/theme
975
+ msgid "Better Notifications for WP"
976
+ msgstr "Better Notifications for WP"
977
+
978
+ #. Plugin URI of the plugin/theme
979
+ #, fuzzy
980
+ #| msgid "http://wordpress.org/plugins/bnfw/"
981
+ msgid "https://wordpress.org/plugins/bnfw/"
982
+ msgstr "http://wordpress.org/plugins/bnfw/"
983
+
984
+ #. Description of the plugin/theme
985
+ msgid ""
986
+ "Supercharge your WordPress notifications using a WYSIWYG editor and "
987
+ "shortcodes. Default and new notifications available. Add more power with Add-"
988
+ "ons."
989
+ msgstr ""
990
+
991
+ #. Author of the plugin/theme
992
+ msgid "Made with Fuel"
993
+ msgstr "Made with Fuel"
994
+
995
+ #. Author URI of the plugin/theme
996
+ msgid "https://madewithfuel.com/"
997
+ msgstr ""
998
+
999
+ #~ msgid "New User - Welcome Email"
1000
+ #~ msgstr "Neuer Benutzer - Willkommens Email"
1001
+
1002
+ #~ msgid "Update "
1003
+ #~ msgstr "Aktualisieren"
1004
+
1005
+ #~ msgid "Show additional email fields"
1006
+ #~ msgstr "Zeige zusätzliche Email-Felder"
1007
+
1008
+ #~ msgid ""
1009
+ #~ "Looking for help with shortcodes? Click here to see which ones you can "
1010
+ #~ "use with the selected notification."
1011
+ #~ msgstr ""
1012
+ #~ "Hilfe mit Shortcodes benötigt? Klick hier zum Anzeigen, welche für die "
1013
+ #~ "gewählte Benachrichtigung verfügbar sind."
1014
+
1015
+ #~ msgid "New User - Welcome email"
1016
+ #~ msgstr "Neuer Benutzer - Willkommens-Email"
1017
+
1018
+ #~ msgid ""
1019
+ #~ "Send customisable HTML emails to your users for different WordPress "
1020
+ #~ "notifications."
1021
+ #~ msgstr ""
1022
+ #~ "Anpassbare HTML Emails für die verschiedensten WordPress Mitteilungen an "
1023
+ #~ "Ihre Benutzer versenden."
1024
+
1025
+ #~ msgid "https://betternotificationsforwp.com/"
1026
+ #~ msgstr "https://betternotificationsforwp.com/"
languages/bnfw-es_ES.mo CHANGED
Binary file
languages/bnfw-es_ES.po CHANGED
@@ -2,310 +2,1019 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Better Notifications for WP 1.3.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
5
- "POT-Creation-Date: 2015-08-11 05:30:23+00:00\n"
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
- "PO-Revision-Date: 2019-09-12 00:50-0300\n"
10
- "Language-Team: \n"
11
- "X-Generator: Poedit 2.2.3\n"
12
- "Last-Translator: \n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "Language: es\n"
15
 
16
- msgid " (Auto Imported)"
17
- msgstr " (auto importación)"
 
18
 
19
- msgid " Comment"
20
- msgstr " Comentario"
 
 
21
 
22
- msgid " Pending Review"
23
- msgstr " Reseña pendiente"
 
24
 
25
- msgid " Scheduled"
26
- msgstr " Programado"
 
27
 
28
- msgid " for "
29
- msgstr " para "
 
30
 
31
- msgid "Add New"
32
- msgstr "Añadir nuevo"
 
33
 
34
- msgid "Add New Notification"
35
- msgstr "Añadir nuevo aviso"
 
36
 
37
- msgid "Additional Email Fields"
38
- msgstr "Campos de email adicionales"
 
39
 
40
- msgid "All Notifications"
41
- msgstr "Todas las notificaciones"
 
 
 
42
 
43
- msgid "BCC"
44
- msgstr "BCC"
 
45
 
46
- msgid "BNFW Settings"
47
- msgstr "Ajsutes de BNFW"
 
48
 
49
- msgid "Better Notifications for WP"
50
- msgstr "Better Notifications for WP"
 
 
 
 
 
 
 
 
 
 
 
51
 
52
- msgid "CC"
53
- msgstr "CC"
 
54
 
55
- msgid "Comment Reply"
56
- msgstr "Respuesta a comentario"
 
57
 
58
- msgid "Custom Post Type"
59
- msgstr "Custom Post Type"
 
60
 
61
- msgid "Custom Taxonomy"
62
- msgstr "Custom Taxonomy"
 
63
 
64
- msgid "Default Email Format"
65
- msgstr "Formato de email predeterminado"
 
 
 
66
 
67
- msgid "Delete Permanently"
68
- msgstr "Borrar definitivamente"
 
 
69
 
70
- msgid "Disable Notification"
71
- msgstr "Desactivar notificación"
 
 
72
 
73
- msgid "Disable this Notification for the User that triggered it"
74
- msgstr "Desactivar esta notificación para el usuario que la ha activado"
 
 
 
75
 
76
- msgid "Don't send notifications for comments marked as SPAM by Akismet"
77
- msgstr "No enviar notificaciones por comentarios que Akismet considere SPAM"
 
78
 
79
- msgid "E-mail: %s"
80
- msgstr "Email: %s"
 
81
 
 
 
 
 
 
82
  msgid "Edit Notification"
83
  msgstr "Editar notificación"
84
 
85
- msgid "Email Formatting"
86
- msgstr "Email Formatting"
 
87
 
88
- msgid "Enabled?"
89
- msgstr "Habilitado?"
 
90
 
91
- msgid "From Name and Email"
92
- msgstr "Nombre y email \"De\""
 
93
 
94
- msgid "HTML Formatting"
95
- msgstr "Formato HTML"
 
 
 
 
 
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  msgid ""
98
- "Looking for help with shortcodes? Click here to see which ones you can use "
99
- "with the selected notification."
100
  msgstr ""
101
- "Buscando ayuda con shortcodes? Click aquí para ver cuales puedes usar con la "
102
- "notificación seleccionada."
103
 
104
- msgid "Lost Password - For Admin"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  msgstr "No recuerdo la clave - para Admin"
106
 
107
- msgid "Lost Password - For User"
108
- msgstr "Clave perdida - para Usuario"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
 
110
- msgid "Made with Fuel"
111
- msgstr "Hecho con Fuel"
 
 
112
 
113
- msgid "Message Body"
114
- msgstr "Cuerpo del mensaje"
 
 
115
 
116
- msgid "Move to Trash"
117
- msgstr "Enviar a la papelera"
 
118
 
119
- msgid "New"
120
- msgstr "Nuevo"
 
 
121
 
122
- msgid "New "
123
- msgstr "Nuevo "
 
 
124
 
125
- msgid "New Category"
126
- msgstr "Nueva categoría"
 
 
127
 
128
- msgid "New Comment"
129
- msgstr "Nuevo comentario"
 
 
130
 
131
- msgid "New Comment / Awaiting Moderation"
132
- msgstr "Nuevo comentario / Esperando moderación"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
 
134
- msgid "New Notification"
135
- msgstr "Nueva notificación"
 
136
 
137
- msgid "New Page Published"
138
- msgstr "Nueva página publicada"
 
139
 
140
- msgid "New Pingback"
141
- msgstr "Nuevo Pingback"
 
 
 
 
 
 
 
142
 
 
 
143
  msgid "New Post Published"
144
  msgstr "Nuevo post publicado"
145
 
146
- msgid "New Tag"
147
- msgstr "Nueva etiqueta"
148
-
149
- msgid "New Trackback"
150
- msgstr "Nuevo Trackback"
151
-
152
- msgid "New User - Welcome Email"
153
- msgstr "Nuevo Usuario - Email de bienvenida"
154
 
155
- msgid "New User - Welcome email"
156
- msgstr "Nuevo usuario - Email de bienvenida"
 
 
157
 
158
- msgid "New User Registration - For Admin"
159
- msgstr "Nuevo usuario registrado - para Admin"
 
 
160
 
161
- msgid "New User Registration - For User"
162
- msgstr "Nuevo usuario registrado - para Usuario"
 
 
163
 
164
- msgid "New term in "
165
- msgstr "Nuevo término en "
 
 
166
 
167
- msgid "New user registration on your site %s:"
168
- msgstr "Nuevo usuario registrado en tu sitio %s:"
 
 
 
169
 
170
- msgid "No Notifications found"
171
- msgstr "No hemos encontrado notificaciones"
 
 
 
 
172
 
173
- msgid "No Notifications found in trash"
174
- msgstr "No encontramos notificaciones en la Papelera"
 
 
175
 
176
- msgid "Notification"
177
- msgstr "Notificación"
 
 
178
 
179
- msgid "Notification For"
180
- msgstr "Notificación por"
 
 
181
 
182
- msgid "Notification Type"
183
- msgstr "Tipo de notificación"
 
 
184
 
185
- msgid "Notification saved."
186
- msgstr "Notificación guardada."
 
 
187
 
188
- msgid "Notifications"
189
- msgstr "Notificaciones"
 
 
190
 
191
- msgid "Page - New Comment"
192
- msgstr "Página - Nuevo comentario"
 
193
 
 
194
  msgid "Page Pending Review"
195
  msgstr "Página pendiente de reseña"
196
 
 
 
 
 
 
197
  msgid "Page Scheduled"
198
  msgstr "Página programada"
199
 
200
- msgid "Page Updated"
201
- msgstr "Página actualizada"
 
202
 
203
- msgid "Password: %s"
204
- msgstr "Clave: %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
 
206
- msgid "Pending Review"
207
- msgstr "Reseña pendiente"
 
 
208
 
209
- msgid "Plain Text"
210
- msgstr "Texto plano"
 
 
211
 
212
- msgid "Post Pending Review"
213
- msgstr "Post pendiente de reseña"
 
214
 
215
- msgid "Post Scheduled"
216
- msgstr "Post programado"
 
 
217
 
218
- msgid "Post Updated"
219
- msgstr "Post actualizado"
 
220
 
221
- msgid "Save"
222
- msgstr "Guardar"
 
223
 
224
- msgid "Save Notification"
225
- msgstr "Guardar notificacion"
 
226
 
 
 
 
 
 
 
227
  msgid "Scheduled"
228
  msgstr "Programado"
229
 
230
- msgid "Search Notifications"
231
- msgstr "Buscar notificaciones"
 
232
 
233
- msgid "Send Me a Test Email"
234
- msgstr "Enviarme un email de prueba"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
 
 
 
 
 
 
236
  msgid "Send To"
237
  msgstr "Enviar A"
238
 
239
- msgid ""
240
- "Send customisable HTML emails to your users for different WordPress "
241
- "notifications."
242
  msgstr ""
243
- "Enviar emails HTML configurables a tus usuarios por distintas notificaciones "
244
- "de WordPress."
245
 
246
- msgid "Send this notification to the Post Author only"
247
- msgstr "Enviar esta notificación solo a los autores de Post"
 
248
 
249
- msgid "Settings"
250
- msgstr "Ajustes"
 
 
 
251
 
252
- msgid "Show additional email fields"
253
- msgstr "Mostrar campos de email adicionales"
 
 
 
254
 
 
 
255
  msgid "Subject"
256
  msgstr "Asunto"
257
 
258
- msgid "Suppress SPAM comment notification"
259
- msgstr "Excluir notificaciones de comentarios marcados como SPAM"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
 
 
 
 
 
 
 
 
261
  msgid "Test Notification Sent."
262
  msgstr "Test de notificación enviado."
263
 
 
 
 
 
 
 
 
 
 
 
 
264
  msgid ""
265
- "This notification doesn't support additional email fields or shortcodes in "
266
- "the subject line."
 
267
  msgstr ""
268
- "Esta notificación no acepta campos de email adicionales o shortcodes en la "
269
- "línea Asunto."
270
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  msgid ""
272
- "This will apply to all emails sent out via WordPress, even those from other "
273
- "plugins. For more details, please see the <a href=\"https://wordpress.org/"
274
- "plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
 
275
  msgstr ""
276
- "Esto aplicará a todos los emails enviados vía WordPress, incluso desde otros "
277
- "plugins. Para más detalles, por favor mira <a href=\"https://wordpress.org/"
278
- "plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
279
 
280
- msgid "Update "
281
- msgstr "Actualizar "
 
282
 
283
- msgid "Updated "
284
- msgstr "Actualizado "
 
285
 
286
- msgid "User Registration - For Admin"
287
- msgstr "Registración de usuario - para Admin"
 
 
 
 
 
288
 
289
- msgid "User Registration - For User"
290
- msgstr "Registración de usuario - para Usuarios"
 
291
 
 
 
 
 
 
292
  msgid "User Roles / Users"
293
  msgstr "Roles de Usuario / Usuarios"
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  msgid "Username: %s"
296
  msgstr "Nombre de Usuario: %s"
297
 
298
- msgid "View Notification"
299
- msgstr "Ver notificación"
 
 
300
 
 
 
 
301
  msgid "[%s] New User Registration"
302
  msgstr "[%s] Registro de nuevo usuario"
303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  msgid "[%s] Your username and password"
305
  msgstr "[%s] Tu nombre de usuario y clave"
306
 
307
- msgid "http://wordpress.org/plugins/bnfw/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
  msgstr "http://wordpress.org/plugins/bnfw/"
309
 
310
- msgid "https://betternotificationsforwp.com/"
311
- msgstr "https://betternotificationsforwp.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Better Notifications for WP 1.3.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
5
+ "POT-Creation-Date: 2020-11-27 21:34+0800\n"
6
+ "PO-Revision-Date: 2020-11-28 00:01+0800\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "Language: es\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2\n"
 
 
 
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
15
 
16
+ #: bnfw.php:283 includes/admin/bnfw-settings.php:15
17
+ msgid "Settings"
18
+ msgstr "Ajustes"
19
 
20
+ #: includes/admin/bnfw-settings.php:14
21
+ #: includes/admin/class-bnfw-notification.php:129
22
+ msgid "Notification Settings"
23
+ msgstr "Configuración de las notificaciones"
24
 
25
+ #: includes/admin/bnfw-settings.php:38
26
+ msgid "BNFW Settings"
27
+ msgstr "Ajsutes de BNFW"
28
 
29
+ #: includes/admin/bnfw-settings.php:46
30
+ msgid "Save Settings"
31
+ msgstr "AjustesGuardar ajustes"
32
 
33
+ #: includes/admin/bnfw-settings.php:73
34
+ msgid "Documentation"
35
+ msgstr ""
36
 
37
+ #: includes/admin/bnfw-settings.php:80
38
+ msgid "Premium Add-ons"
39
+ msgstr ""
40
 
41
+ #: includes/admin/bnfw-settings.php:87
42
+ msgid "Priority Support"
43
+ msgstr ""
44
 
45
+ #: includes/admin/bnfw-settings.php:150
46
+ msgid "Suppress SPAM comment notification"
47
+ msgstr "Excluir notificaciones de comentarios marcados como SPAM"
48
 
49
+ #: includes/admin/bnfw-settings.php:150
50
+ msgid ""
51
+ "Comments that are correctly marked as SPAM by a 3rd party plugin (such as "
52
+ "Akismet) will not generate a notification if this is ticked."
53
+ msgstr ""
54
 
55
+ #: includes/admin/bnfw-settings.php:155
56
+ msgid "Don't send notifications for comments marked as SPAM"
57
+ msgstr "No envíe notificaciones de comentarios marcados como SPAM"
58
 
59
+ #: includes/admin/bnfw-settings.php:167
60
+ msgid "Default Email Format"
61
+ msgstr "Formato de email predeterminado"
62
 
63
+ #: includes/admin/bnfw-settings.php:167
64
+ #, fuzzy
65
+ #| msgid ""
66
+ #| "This will apply to all emails sent out via WordPress, even those from "
67
+ #| "other plugins. For more details, please see the <a href=\"https://"
68
+ #| "wordpress.org/plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
69
+ msgid ""
70
+ "This will apply to all emails sent out via WordPress, even those from other "
71
+ "plugins. For more details, please see the "
72
+ msgstr ""
73
+ "Esto aplicará a todos los emails enviados vía WordPress, incluso desde otros "
74
+ "plugins. Para más detalles, por favor mira <a href=\"https://wordpress.org/"
75
+ "plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
76
 
77
+ #: includes/admin/bnfw-settings.php:181
78
+ msgid "Enable Content Shortcodes?"
79
+ msgstr ""
80
 
81
+ #: includes/admin/bnfw-settings.php:181
82
+ msgid "Shortcodes in the post/page content are disabled by default."
83
+ msgstr ""
84
 
85
+ #: includes/admin/bnfw-settings.php:186
86
+ msgid "Enable shortcode output in the page/post content"
87
+ msgstr ""
88
 
89
+ #: includes/admin/bnfw-settings.php:198
90
+ msgid "Allow Usage Tracking?"
91
+ msgstr ""
92
 
93
+ #: includes/admin/bnfw-settings.php:203
94
+ msgid ""
95
+ "Allow Better Notifications for WP to anonymously track how this plugin is "
96
+ "used and help make the plugin better."
97
+ msgstr ""
98
 
99
+ #: includes/admin/bnfw-settings.php:251
100
+ #: includes/admin/class-bnfw-notification.php:433
101
+ msgid "HTML Formatting"
102
+ msgstr "Formato HTML"
103
 
104
+ #: includes/admin/bnfw-settings.php:256
105
+ #: includes/admin/class-bnfw-notification.php:439
106
+ msgid "Plain Text"
107
+ msgstr "Texto plano"
108
 
109
+ #: includes/admin/class-bnfw-notification.php:52
110
+ #: includes/admin/class-bnfw-notification.php:55
111
+ #: includes/admin/class-bnfw-notification.php:56
112
+ msgid "Notifications"
113
+ msgstr "Notificaciones"
114
 
115
+ #: includes/admin/class-bnfw-notification.php:53
116
+ msgid "Notification"
117
+ msgstr "Notificación"
118
 
119
+ #: includes/admin/class-bnfw-notification.php:54
120
+ msgid "Add New"
121
+ msgstr "Añadir nuevo"
122
 
123
+ #: includes/admin/class-bnfw-notification.php:57
124
+ msgid "Add New Notification"
125
+ msgstr "Añadir nuevo aviso"
126
+
127
+ #: includes/admin/class-bnfw-notification.php:58
128
  msgid "Edit Notification"
129
  msgstr "Editar notificación"
130
 
131
+ #: includes/admin/class-bnfw-notification.php:59
132
+ msgid "New Notification"
133
+ msgstr "Nueva notificación"
134
 
135
+ #: includes/admin/class-bnfw-notification.php:60
136
+ msgid "View Notification"
137
+ msgstr "Ver notificación"
138
 
139
+ #: includes/admin/class-bnfw-notification.php:61
140
+ msgid "Search Notifications"
141
+ msgstr "Buscar notificaciones"
142
 
143
+ #: includes/admin/class-bnfw-notification.php:62
144
+ msgid "No Notifications found"
145
+ msgstr "No hemos encontrado notificaciones"
146
+
147
+ #: includes/admin/class-bnfw-notification.php:63
148
+ msgid "No Notifications found in trash"
149
+ msgstr "No encontramos notificaciones en la Papelera"
150
 
151
+ #: includes/admin/class-bnfw-notification.php:64
152
+ msgid "All Notifications"
153
+ msgstr "Todas las notificaciones"
154
+
155
+ #: includes/admin/class-bnfw-notification.php:138
156
+ msgid "Save Notification"
157
+ msgstr "Guardar notificacion"
158
+
159
+ #: includes/admin/class-bnfw-notification.php:186
160
+ msgid "Notification For"
161
+ msgstr "Notificación por"
162
+
163
+ #: includes/admin/class-bnfw-notification.php:187
164
  msgid ""
165
+ "E.g. If you select \"New Post Published\" from the list on the right, this "
166
+ "notification will be sent when a new post is published."
167
  msgstr ""
 
 
168
 
169
+ #: includes/admin/class-bnfw-notification.php:191
170
+ msgid "Select the notification type"
171
+ msgstr "Seleccione el tipo de notificación"
172
+
173
+ #: includes/admin/class-bnfw-notification.php:192
174
+ msgid "Admin"
175
+ msgstr ""
176
+
177
+ #: includes/admin/class-bnfw-notification.php:194
178
+ #: includes/admin/class-bnfw-notification.php:1302
179
+ msgid "New User Registration - For Admin"
180
+ msgstr "Nuevo usuario registrado - para Admin"
181
+
182
+ #: includes/admin/class-bnfw-notification.php:196
183
+ #: includes/admin/class-bnfw-notification.php:1269
184
+ msgid "User Lost Password - For Admin"
185
  msgstr "No recuerdo la clave - para Admin"
186
 
187
+ #: includes/admin/class-bnfw-notification.php:198
188
+ #: includes/admin/class-bnfw-notification.php:1272
189
+ msgid "Password Changed - For Admin"
190
+ msgstr "Contraseña cambiada: para administrador"
191
+
192
+ #: includes/admin/class-bnfw-notification.php:200
193
+ #: includes/admin/class-bnfw-notification.php:1275
194
+ msgid "User Email Changed - For Admin"
195
+ msgstr "Correo electrónico de usuario modificado: para administrador"
196
+
197
+ #: includes/admin/class-bnfw-notification.php:202
198
+ #: includes/admin/class-bnfw-notification.php:1308
199
+ msgid "User Role Changed - For Admin"
200
+ msgstr "Cambio de rol de usuario: para administrador"
201
+
202
+ #: includes/admin/class-bnfw-notification.php:204
203
+ #: includes/admin/class-bnfw-notification.php:1296
204
+ msgid "User Logged In - For Admin"
205
+ msgstr "Usuario conectado: para administrador"
206
+
207
+ #: includes/admin/class-bnfw-notification.php:206
208
+ #: includes/admin/class-bnfw-notification.php:1287
209
+ msgid "WordPress Core Automatic Background Updates"
210
+ msgstr ""
211
 
212
+ #: includes/admin/class-bnfw-notification.php:210
213
+ #: includes/admin/class-bnfw-notification.php:1344
214
+ msgid "Privacy - Confirm Action: Export Data Request - For Admin"
215
+ msgstr ""
216
 
217
+ #: includes/admin/class-bnfw-notification.php:214
218
+ #: includes/admin/class-bnfw-notification.php:1347
219
+ msgid "Privacy - Confirm Action: Erase Data Request - For Admin"
220
+ msgstr ""
221
 
222
+ #: includes/admin/class-bnfw-notification.php:222
223
+ msgid "Transactional"
224
+ msgstr ""
225
 
226
+ #: includes/admin/class-bnfw-notification.php:224
227
+ #: includes/admin/class-bnfw-notification.php:1290
228
+ msgid "New User Registration - For User"
229
+ msgstr "Nuevo usuario registrado - para Usuario"
230
 
231
+ #: includes/admin/class-bnfw-notification.php:226
232
+ #: includes/admin/class-bnfw-notification.php:1299
233
+ msgid "New User - Post-registration Email"
234
+ msgstr "Nuevo usuario: correo electrónico posterior al registro"
235
 
236
+ #: includes/admin/class-bnfw-notification.php:228
237
+ #: includes/admin/class-bnfw-notification.php:1266
238
+ msgid "User Lost Password - For User"
239
+ msgstr "Usuario contraseña perdida: para el usuario"
240
 
241
+ #: includes/admin/class-bnfw-notification.php:230
242
+ #: includes/admin/class-bnfw-notification.php:1278
243
+ msgid "Password Changed - For User"
244
+ msgstr "Contraseña cambiada: para el usuario"
245
 
246
+ #: includes/admin/class-bnfw-notification.php:232
247
+ #: includes/admin/class-bnfw-notification.php:1281
248
+ msgid "User Email Changed Confirmation - For User"
249
+ msgstr ""
250
+ "Confirmación de cambio de correo electrónico del usuario: para el usuario"
251
+
252
+ #: includes/admin/class-bnfw-notification.php:235
253
+ #: includes/admin/class-bnfw-notification.php:1284
254
+ msgid "User Email Changed - For User"
255
+ msgstr "Se cambió el correo electrónico del usuario: para el usuario"
256
+
257
+ #: includes/admin/class-bnfw-notification.php:237
258
+ #: includes/admin/class-bnfw-notification.php:1305
259
+ msgid "User Role Changed - For User"
260
+ msgstr "Cambio de rol de usuario: para el usuario"
261
+
262
+ #: includes/admin/class-bnfw-notification.php:239
263
+ #: includes/admin/class-bnfw-notification.php:1293
264
+ msgid "User Logged In - For User"
265
+ msgstr "Usuario conectado: para usuario"
266
+
267
+ #: includes/admin/class-bnfw-notification.php:241
268
+ #: includes/admin/class-bnfw-notification.php:375
269
+ #: includes/admin/class-bnfw-notification.php:1263
270
+ msgid "Comment Reply"
271
+ msgstr "Respuesta a comentario"
272
 
273
+ #: includes/admin/class-bnfw-notification.php:245
274
+ msgid "Privacy - Confirm Action: Export Data Request - For User"
275
+ msgstr ""
276
 
277
+ #: includes/admin/class-bnfw-notification.php:249
278
+ msgid "Privacy - Confirm Action: Erase Data Request - For User"
279
+ msgstr ""
280
 
281
+ #: includes/admin/class-bnfw-notification.php:253
282
+ #: includes/admin/class-bnfw-notification.php:1350
283
+ msgid "Privacy - Data Export - For User"
284
+ msgstr ""
285
+
286
+ #: includes/admin/class-bnfw-notification.php:257
287
+ #: includes/admin/class-bnfw-notification.php:1353
288
+ msgid "Privacy - Data Erased - For User"
289
+ msgstr ""
290
 
291
+ #: includes/admin/class-bnfw-notification.php:267
292
+ #: includes/admin/class-bnfw-notification.php:1311
293
  msgid "New Post Published"
294
  msgstr "Nuevo post publicado"
295
 
296
+ #: includes/admin/class-bnfw-notification.php:269
297
+ #: includes/admin/class-bnfw-notification.php:1314
298
+ msgid "Post Updated"
299
+ msgstr "Post actualizado"
 
 
 
 
300
 
301
+ #: includes/admin/class-bnfw-notification.php:271
302
+ #: includes/admin/class-bnfw-notification.php:1317
303
+ msgid "Post Pending Review"
304
+ msgstr "Post pendiente de reseña"
305
 
306
+ #: includes/admin/class-bnfw-notification.php:273
307
+ #: includes/admin/class-bnfw-notification.php:1320
308
+ msgid "New Private Post"
309
+ msgstr ""
310
 
311
+ #: includes/admin/class-bnfw-notification.php:275
312
+ #: includes/admin/class-bnfw-notification.php:1323
313
+ msgid "Post Scheduled"
314
+ msgstr "Post programado"
315
 
316
+ #: includes/admin/class-bnfw-notification.php:277
317
+ #: includes/admin/class-bnfw-notification.php:1326
318
+ msgid "Published Post Moved to Trash"
319
+ msgstr "La publicación publicada se movió a la papelera"
320
 
321
+ #: includes/admin/class-bnfw-notification.php:279
322
+ #: includes/admin/class-bnfw-notification.php:367
323
+ #: includes/admin/class-bnfw-notification.php:1248
324
+ msgid "New Comment"
325
+ msgstr "Nuevo comentario"
326
 
327
+ #: includes/admin/class-bnfw-notification.php:282
328
+ #: includes/admin/class-bnfw-notification.php:369
329
+ #: includes/admin/class-bnfw-notification.php:1254
330
+ #: includes/admin/class-bnfw-notification.php:1407
331
+ msgid "New Comment Awaiting Moderation"
332
+ msgstr "Nuevo comentario / Esperando moderación"
333
 
334
+ #: includes/admin/class-bnfw-notification.php:285
335
+ #: includes/admin/class-bnfw-notification.php:1251
336
+ msgid "Post - Comment Approved"
337
+ msgstr ""
338
 
339
+ #: includes/admin/class-bnfw-notification.php:288
340
+ #: includes/admin/class-bnfw-notification.php:1332
341
+ msgid "New Category"
342
+ msgstr "Nueva categoría"
343
 
344
+ #: includes/admin/class-bnfw-notification.php:290
345
+ #: includes/admin/class-bnfw-notification.php:1335
346
+ msgid "New Tag"
347
+ msgstr "Nueva etiqueta"
348
 
349
+ #: includes/admin/class-bnfw-notification.php:292
350
+ #: includes/admin/class-bnfw-notification.php:1257
351
+ msgid "New Trackback"
352
+ msgstr "Nuevo Trackback"
353
 
354
+ #: includes/admin/class-bnfw-notification.php:294
355
+ #: includes/admin/class-bnfw-notification.php:1260
356
+ msgid "New Pingback"
357
+ msgstr "Nuevo Pingback"
358
 
359
+ #: includes/admin/class-bnfw-notification.php:301
360
+ #: includes/admin/class-bnfw-notification.php:1329
361
+ msgid "New Page Published"
362
+ msgstr "Nueva página publicada"
363
 
364
+ #: includes/admin/class-bnfw-notification.php:303
365
+ msgid "Page Updated"
366
+ msgstr "Página actualizada"
367
 
368
+ #: includes/admin/class-bnfw-notification.php:305
369
  msgid "Page Pending Review"
370
  msgstr "Página pendiente de reseña"
371
 
372
+ #: includes/admin/class-bnfw-notification.php:307
373
+ msgid "New Private Page"
374
+ msgstr ""
375
+
376
+ #: includes/admin/class-bnfw-notification.php:309
377
  msgid "Page Scheduled"
378
  msgstr "Página programada"
379
 
380
+ #: includes/admin/class-bnfw-notification.php:311
381
+ msgid "Page - New Comment"
382
+ msgstr "Página - Nuevo comentario"
383
 
384
+ #: includes/admin/class-bnfw-notification.php:313
385
+ msgid "Page - New Comment Awaiting Moderation"
386
+ msgstr "Página: nuevo comentario pendiente de moderación"
387
+
388
+ #: includes/admin/class-bnfw-notification.php:316
389
+ #: includes/admin/class-bnfw-notification.php:1365
390
+ msgid "Page - Comment Approved"
391
+ msgstr "Página: comentario aprobado"
392
+
393
+ #: includes/admin/class-bnfw-notification.php:319
394
+ msgid "Page - Comment Reply"
395
+ msgstr "Página - Responder al comentario"
396
+
397
+ #: includes/admin/class-bnfw-notification.php:326
398
+ #: includes/admin/class-bnfw-notification.php:1356
399
+ msgid "New Media Published"
400
+ msgstr "Nuevos medios publicados"
401
+
402
+ #: includes/admin/class-bnfw-notification.php:328
403
+ #: includes/admin/class-bnfw-notification.php:1359
404
+ msgid "Media Updated"
405
+ msgstr "Medios actualizados"
406
+
407
+ #: includes/admin/class-bnfw-notification.php:330
408
+ #: includes/admin/class-bnfw-notification.php:1362
409
+ msgid "Media - New Comment"
410
+ msgstr "Medios - Nuevo comentario"
411
+
412
+ #: includes/admin/class-bnfw-notification.php:332
413
+ #: includes/admin/class-bnfw-notification.php:1368
414
+ msgid "Media - Comment Approved"
415
+ msgstr ""
416
 
417
+ #: includes/admin/class-bnfw-notification.php:335
418
+ #: includes/admin/class-bnfw-notification.php:1371
419
+ msgid "Media - New Comment Awaiting Moderation"
420
+ msgstr "Medios - Nuevo comentario pendiente de moderación"
421
 
422
+ #: includes/admin/class-bnfw-notification.php:337
423
+ #: includes/admin/class-bnfw-notification.php:1374
424
+ msgid "Media - Comment Reply"
425
+ msgstr "Medios - Responder al comentario"
426
 
427
+ #: includes/admin/class-bnfw-notification.php:355
428
+ msgid "Custom Post Type"
429
+ msgstr "Custom Post Type"
430
 
431
+ #: includes/admin/class-bnfw-notification.php:357
432
+ #: includes/admin/class-bnfw-notification.php:1389
433
+ msgid "New "
434
+ msgstr "Nuevo "
435
 
436
+ #: includes/admin/class-bnfw-notification.php:357
437
+ msgid " Published"
438
+ msgstr "Publicado"
439
 
440
+ #: includes/admin/class-bnfw-notification.php:359
441
+ msgid "Updated"
442
+ msgstr "Actualizado"
443
 
444
+ #: includes/admin/class-bnfw-notification.php:361
445
+ msgid "Pending Review"
446
+ msgstr "Reseña pendiente"
447
 
448
+ #: includes/admin/class-bnfw-notification.php:363
449
+ #: includes/admin/class-bnfw-notification.php:1401
450
+ msgid "New Private "
451
+ msgstr ""
452
+
453
+ #: includes/admin/class-bnfw-notification.php:365
454
  msgid "Scheduled"
455
  msgstr "Programado"
456
 
457
+ #: includes/admin/class-bnfw-notification.php:372
458
+ msgid "Comment Approved"
459
+ msgstr "Comentario aprobado"
460
 
461
+ #: includes/admin/class-bnfw-notification.php:394
462
+ msgid "Custom Taxonomy"
463
+ msgstr "Custom Taxonomy"
464
+
465
+ #: includes/admin/class-bnfw-notification.php:400
466
+ msgid "New"
467
+ msgstr "Nuevo"
468
+
469
+ #: includes/admin/class-bnfw-notification.php:419
470
+ msgid ""
471
+ "This notification doesn't support additional email fields due to a "
472
+ "limitation in WordPress."
473
+ msgstr ""
474
+ "Esta notificación no admite campos de correo electrónico adicionales debido "
475
+ "a una limitación en WordPress."
476
+
477
+ #: includes/admin/class-bnfw-notification.php:426
478
+ msgid "Email Formatting"
479
+ msgstr "Email Formatting"
480
+
481
+ #: includes/admin/class-bnfw-notification.php:427
482
+ msgid ""
483
+ "How do you want to format the sent email? HTML is recommended as it'll show "
484
+ "images and links correctly."
485
+ msgstr ""
486
+
487
+ #: includes/admin/class-bnfw-notification.php:448
488
+ msgid "Additional Email Fields"
489
+ msgstr "Campos de email adicionales"
490
+
491
+ #: includes/admin/class-bnfw-notification.php:449
492
+ msgid ""
493
+ "This should be fairly self explanatory but if you're unsure, tick this "
494
+ "checkbox and have a look at the available options. You can always untick it "
495
+ "again should you decide you don't need to use it."
496
+ msgstr ""
497
+
498
+ #: includes/admin/class-bnfw-notification.php:454
499
+ msgid "Set \"From\" Name & Email, Reply To, CC, BCC"
500
+ msgstr ""
501
+
502
+ #: includes/admin/class-bnfw-notification.php:461
503
+ msgid "From Name and Email"
504
+ msgstr "Nombre y email \"De\""
505
+
506
+ #: includes/admin/class-bnfw-notification.php:462
507
+ msgid ""
508
+ "If you want to send the email from your site name and email address instead "
509
+ "of the default \"WordPress\" from \"wordpress@domain.com\", this is where "
510
+ "you can do it."
511
+ msgstr ""
512
+
513
+ #: includes/admin/class-bnfw-notification.php:466
514
+ msgid "Site Name"
515
+ msgstr ""
516
+
517
+ #: includes/admin/class-bnfw-notification.php:468
518
+ msgid "Site Email"
519
+ msgstr ""
520
+
521
+ #: includes/admin/class-bnfw-notification.php:475
522
+ msgid "Reply To"
523
+ msgstr ""
524
+
525
+ #: includes/admin/class-bnfw-notification.php:476
526
+ msgid ""
527
+ "If you want any replies to your email notification to go to another person, "
528
+ "fill in this box with their name and email address."
529
+ msgstr ""
530
+
531
+ #: includes/admin/class-bnfw-notification.php:480
532
+ msgid "Name"
533
+ msgstr ""
534
+
535
+ #: includes/admin/class-bnfw-notification.php:482
536
+ msgid "Email"
537
+ msgstr "Correo electrónico"
538
+
539
+ #: includes/admin/class-bnfw-notification.php:488
540
+ msgid "CC"
541
+ msgstr "CC"
542
+
543
+ #: includes/admin/class-bnfw-notification.php:489
544
+ msgid "Publicly copy in any other users or user roles to this email."
545
+ msgstr ""
546
+
547
+ #: includes/admin/class-bnfw-notification.php:494
548
+ #: includes/admin/class-bnfw-notification.php:508
549
+ #: includes/admin/class-bnfw-notification.php:557
550
+ #: includes/admin/class-bnfw-notification.php:575
551
+ msgid "Select User Roles / Users"
552
+ msgstr "Seleccionar roles de usuario / usuarios"
553
+
554
+ #: includes/admin/class-bnfw-notification.php:502
555
+ msgid "BCC"
556
+ msgstr "BCC"
557
+
558
+ #: includes/admin/class-bnfw-notification.php:503
559
+ msgid "Privately copy in any other users or user roles to this email."
560
+ msgstr ""
561
+
562
+ #: includes/admin/class-bnfw-notification.php:518
563
+ msgid "Send to Author"
564
+ msgstr ""
565
+
566
+ #: includes/admin/class-bnfw-notification.php:519
567
+ msgid ""
568
+ "E.g. If you want a new post published notification to go to the post author, "
569
+ "tick this box."
570
+ msgstr ""
571
+
572
+ #: includes/admin/class-bnfw-notification.php:526
573
+ msgid "Send this notification to the Author"
574
+ msgstr "Envíe esta notificación al autor"
575
+
576
+ #: includes/admin/class-bnfw-notification.php:536
577
+ msgid ""
578
+ "E.g. If you're an editor and regularly update your posts, you might not want "
579
+ "to be emailed about this all the time. Ticking this box will prevent you "
580
+ "from receiving emails about your own changes."
581
+ msgstr ""
582
 
583
+ #: includes/admin/class-bnfw-notification.php:542
584
+ msgid "Do not send this Notification to the User that triggered it"
585
+ msgstr "No envíe esta notificación al usuario que la activó"
586
+
587
+ #: includes/admin/class-bnfw-notification.php:551
588
  msgid "Send To"
589
  msgstr "Enviar A"
590
 
591
+ #: includes/admin/class-bnfw-notification.php:552
592
+ msgid "Choose the users and/or user roles to send this email notification to."
 
593
  msgstr ""
 
 
594
 
595
+ #: includes/admin/class-bnfw-notification.php:565
596
+ msgid "Except For"
597
+ msgstr ""
598
 
599
+ #: includes/admin/class-bnfw-notification.php:568
600
+ msgid ""
601
+ "Choose the users and/or user roles that this notification should not be sent "
602
+ "to."
603
+ msgstr ""
604
 
605
+ #: includes/admin/class-bnfw-notification.php:593
606
+ msgid ""
607
+ "You have chosen to send this notification to over 200 users. Please check "
608
+ "the email sending rate limit at your host before sending."
609
+ msgstr ""
610
 
611
+ #: includes/admin/class-bnfw-notification.php:603
612
+ #: includes/admin/class-bnfw-notification.php:1129
613
  msgid "Subject"
614
  msgstr "Asunto"
615
 
616
+ #: includes/admin/class-bnfw-notification.php:604
617
+ msgid "Notification subject. You can use "
618
+ msgstr "Asunto de la notificación. Puedes usar"
619
+
620
+ #: includes/admin/class-bnfw-notification.php:604
621
+ #: includes/admin/class-bnfw-notification.php:618
622
+ msgid " here."
623
+ msgstr ""
624
+
625
+ #: includes/admin/class-bnfw-notification.php:617
626
+ msgid "Message Body"
627
+ msgstr "Cuerpo del mensaje"
628
+
629
+ #: includes/admin/class-bnfw-notification.php:618
630
+ msgid "Notification message. You can use "
631
+ msgstr "Mensaje de notificación. Puedes usar"
632
+
633
+ #: includes/admin/class-bnfw-notification.php:626
634
+ msgid "Need some more help?"
635
+ msgstr ""
636
+
637
+ #: includes/admin/class-bnfw-notification.php:636
638
+ msgid "Insert Default Content"
639
+ msgstr "Insertar contenido predeterminado"
640
+
641
+ #: includes/admin/class-bnfw-notification.php:640
642
+ msgid "Read Documentation"
643
+ msgstr ""
644
+
645
+ #: includes/admin/class-bnfw-notification.php:644
646
+ msgid "Find Shortcodes"
647
+ msgstr ""
648
+
649
+ #: includes/admin/class-bnfw-notification.php:655
650
+ msgid ""
651
+ "Stop additional paragraph and line break HTML from being inserted into my "
652
+ "notifications"
653
+ msgstr ""
654
 
655
+ #: includes/admin/class-bnfw-notification.php:710
656
+ msgid ""
657
+ "You must choose at least one User or User Role to send the notification to "
658
+ "before you can save"
659
+ msgstr ""
660
+
661
+ #: includes/admin/class-bnfw-notification.php:825
662
  msgid "Test Notification Sent."
663
  msgstr "Test de notificación enviado."
664
 
665
+ #: includes/admin/class-bnfw-notification.php:915
666
+ msgid "Notification saved."
667
+ msgstr "Notificación guardada."
668
+
669
+ #: includes/admin/class-bnfw-notification.php:934
670
+ #: includes/admin/class-bnfw-notification.php:992
671
+ #: includes/admin/class-bnfw-notification.php:994
672
+ msgid "Save"
673
+ msgstr "Guardar"
674
+
675
+ #: includes/admin/class-bnfw-notification.php:942
676
  msgid ""
677
+ "Use this to enable or disable notifications. If you want to disable a "
678
+ "default WordPress notification, just create it on the left, then disable it "
679
+ "here."
680
  msgstr ""
 
 
681
 
682
+ #: includes/admin/class-bnfw-notification.php:949
683
+ msgid "Notification Enabled"
684
+ msgstr "Notificación habilitada"
685
+
686
+ #: includes/admin/class-bnfw-notification.php:956
687
+ msgid "Notification Disabled"
688
+ msgstr "Notificación deshabilitado"
689
+
690
+ #: includes/admin/class-bnfw-notification.php:967
691
+ msgid "Send Me a Test Email"
692
+ msgstr "Enviarme un email de prueba"
693
+
694
+ #: includes/admin/class-bnfw-notification.php:969
695
  msgid ""
696
+ "This will send you (the currently logged in user) a notification so that you "
697
+ "can check for any issues with formatting – it’s doesn't mean that a "
698
+ "notification will send correctly in the future. You can read about how to "
699
+ "improve email delivery"
700
  msgstr ""
 
 
 
701
 
702
+ #: includes/admin/class-bnfw-notification.php:969
703
+ msgid "here"
704
+ msgstr ""
705
 
706
+ #: includes/admin/class-bnfw-notification.php:969
707
+ msgid ". Shortcodes will not be replaced with content."
708
+ msgstr ""
709
 
710
+ #: includes/admin/class-bnfw-notification.php:980
711
+ msgid "Delete Permanently"
712
+ msgstr "Borrar definitivamente"
713
+
714
+ #: includes/admin/class-bnfw-notification.php:982
715
+ msgid "Move to Trash"
716
+ msgstr "Enviar a la papelera"
717
 
718
+ #: includes/admin/class-bnfw-notification.php:1127
719
+ msgid "Notification Type"
720
+ msgstr "Tipo de notificación"
721
 
722
+ #: includes/admin/class-bnfw-notification.php:1128
723
+ msgid "Enabled?"
724
+ msgstr "Habilitado?"
725
+
726
+ #: includes/admin/class-bnfw-notification.php:1130
727
  msgid "User Roles / Users"
728
  msgstr "Roles de Usuario / Usuarios"
729
 
730
+ #: includes/admin/class-bnfw-notification.php:1131
731
+ msgid "Excluded User Roles / Users"
732
+ msgstr "Usuarios / roles de usuario excluidos"
733
+
734
+ #: includes/admin/class-bnfw-notification.php:1172
735
+ msgid ", Post Author"
736
+ msgstr ""
737
+
738
+ #: includes/admin/class-bnfw-notification.php:1338
739
+ msgid "Privacy – Confirm Action: Export Data Request – For User"
740
+ msgstr ""
741
+
742
+ #: includes/admin/class-bnfw-notification.php:1341
743
+ msgid "Privacy – Confirm Action: Erase Data Request – For User"
744
+ msgstr ""
745
+
746
+ #: includes/admin/class-bnfw-notification.php:1389
747
+ msgid "Published"
748
+ msgstr "Publicado"
749
+
750
+ #: includes/admin/class-bnfw-notification.php:1392
751
+ msgid "Updated "
752
+ msgstr "Actualizado "
753
+
754
+ #: includes/admin/class-bnfw-notification.php:1395
755
+ msgid " Pending Review"
756
+ msgstr " Reseña pendiente"
757
+
758
+ #: includes/admin/class-bnfw-notification.php:1398
759
+ msgid " Scheduled"
760
+ msgstr " Programado"
761
+
762
+ #: includes/admin/class-bnfw-notification.php:1404
763
+ msgid " Comment"
764
+ msgstr " Comentario"
765
+
766
+ #: includes/admin/class-bnfw-notification.php:1410
767
+ msgid " Comment Reply"
768
+ msgstr "Comentar Responder"
769
+
770
+ #: includes/admin/class-bnfw-notification.php:1413
771
+ msgid " Comment Approved"
772
+ msgstr "Comentario aprobado"
773
+
774
+ #: includes/admin/class-bnfw-notification.php:1418
775
+ msgid "New Term"
776
+ msgstr "Nuevo término"
777
+
778
+ #: includes/admin/class-bnfw-notification.php:1420
779
+ msgid "New Term in "
780
+ msgstr "Nuevo término en"
781
+
782
+ #: includes/admin/class-bnfw-notification.php:1440
783
+ msgid "Enable Notifications"
784
+ msgstr "Permitir notificaciones"
785
+
786
+ #: includes/admin/class-bnfw-notification.php:1441
787
+ msgid "Disable Notifications"
788
+ msgstr "Desactivar notificaciones"
789
+
790
+ #: includes/admin/class-bnfw-notification.php:1502
791
+ msgid "Enable Notification"
792
+ msgstr "Habilitar la notificación"
793
+
794
+ #: includes/admin/class-bnfw-notification.php:1510
795
+ msgid "Disable Notification"
796
+ msgstr "Desactivar notificación"
797
+
798
+ #: includes/admin/class-bnfw-notification.php:1568
799
+ msgid "Enabled 1 Notification."
800
+ msgstr "Habilitado 1 Notificación."
801
+
802
+ #: includes/admin/class-bnfw-notification.php:1572
803
+ msgid "Disabled 1 Notification."
804
+ msgstr "Notificación de discapacitados 1."
805
+
806
+ #: includes/admin/class-bnfw-notification.php:1578
807
+ #, php-format
808
+ msgid "Enabled %s Notification."
809
+ msgid_plural "Enabled %s Notifications."
810
+ msgstr[0] "Notificación %s habilitada."
811
+ msgstr[1] "Notificaciones %s habilitadas."
812
+
813
+ #: includes/admin/class-bnfw-notification.php:1588
814
+ #, php-format
815
+ msgid "Disabled %s Notification."
816
+ msgid_plural "Disabled %s Notifications."
817
+ msgstr[0] "Notificación %s desactivada."
818
+ msgstr[1] "Notificaciones %s desactivadas."
819
+
820
+ #: includes/admin/class-bnfw-notification.php:1602
821
+ msgid ""
822
+ "If you send out notifications with BNFW but don't receive them, you may need "
823
+ "to install an SMTP plugin to <a href=\"https://betternotificationsforwp.com/"
824
+ "documentation/getting-started/how-to-improve-email-delivery/\" target="
825
+ "\"_blank\">improve email deliverability</a>. I recommend using <a href="
826
+ "\"https://wordpress.org/plugins/post-smtp/\" target=\"_blank\">Post SMTP</a> "
827
+ "as it's easy to set-up or <a href=\"https://wordpress.org/plugins/email-log/"
828
+ "\" target=\"_blank\">Email Log</a> to just log and view emails that are sent."
829
+ msgstr ""
830
+
831
+ #: includes/engine/class-bnfw-engine.php:18
832
+ msgid "Test Email:"
833
+ msgstr "Email de prueba:"
834
+
835
+ #: includes/engine/class-bnfw-engine.php:19
836
+ msgid ""
837
+ "This is a test email. All shortcodes below will show in place but not be "
838
+ "replaced with content."
839
+ msgstr ""
840
+
841
+ #: includes/engine/class-bnfw-engine.php:1583
842
+ msgid "Error: Download link is not available please contact support"
843
+ msgstr ""
844
+
845
+ #: includes/helpers/ajax-helpers.php:34 includes/helpers/helpers.php:38
846
+ msgid "User Roles"
847
+ msgstr "Roles del usuario"
848
+
849
+ #: includes/helpers/ajax-helpers.php:57 includes/helpers/helpers.php:59
850
+ #: includes/helpers/helpers.php:64
851
+ msgid "Users"
852
+ msgstr ""
853
+
854
+ #: includes/helpers/helpers.php:103
855
+ msgid "Non WordPress Users"
856
+ msgstr ""
857
+
858
+ #: includes/import.php:69
859
+ msgid " for "
860
+ msgstr " para "
861
+
862
+ #: includes/import.php:69
863
+ msgid " (Auto Imported)"
864
+ msgstr " (auto importación)"
865
+
866
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:228
867
+ #, php-format
868
+ msgid ""
869
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
870
+ msgstr ""
871
+
872
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:236
873
+ #, php-format
874
+ msgid ""
875
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
876
+ "or %5$supdate now%6$s."
877
+ msgstr ""
878
+
879
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
880
+ msgid "You do not have permission to install plugin updates"
881
+ msgstr ""
882
+
883
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
884
+ msgid "Error"
885
+ msgstr ""
886
+
887
+ #: includes/license/class-bnfw-license-setting.php:18
888
+ #: includes/license/class-bnfw-license-setting.php:19
889
+ msgid "Add-on Licenses"
890
+ msgstr ""
891
+
892
+ #: includes/license/class-bnfw-license-setting.php:38
893
+ msgid "BNFW Add-on Licenses"
894
+ msgstr ""
895
+
896
+ #: includes/license/class-bnfw-license-setting.php:47
897
+ msgid "Save License"
898
+ msgstr ""
899
+
900
+ #: includes/license/class-bnfw-license-setting.php:55
901
+ msgid ""
902
+ "<br>You have no BNFW Premium Add-ons installed yet.<br>You can buy add-ons "
903
+ "from the <a href=\""
904
+ msgstr ""
905
+
906
+ #: includes/license/class-bnfw-license-setting.php:130
907
+ msgid "Deactivate License"
908
+ msgstr ""
909
+
910
+ #: includes/license/class-bnfw-license.php:140
911
+ #, php-format
912
+ msgid "%1$s License Key"
913
+ msgstr ""
914
+
915
+ #: includes/overrides.php:41 includes/overrides.php:135
916
+ #, php-format
917
+ msgid "New user registration on your site %s:"
918
+ msgstr "Nuevo usuario registrado en tu sitio %s:"
919
+
920
+ #: includes/overrides.php:42 includes/overrides.php:117
921
+ #: includes/overrides.php:136 includes/overrides.php:152
922
+ #, php-format
923
  msgid "Username: %s"
924
  msgstr "Nombre de Usuario: %s"
925
 
926
+ #: includes/overrides.php:43 includes/overrides.php:137
927
+ #, php-format
928
+ msgid "E-mail: %s"
929
+ msgstr "Email: %s"
930
 
931
+ #. translators: Password change notification email subject. %s: Site title
932
+ #: includes/overrides.php:48 includes/overrides.php:139
933
+ #, php-format
934
  msgid "[%s] New User Registration"
935
  msgstr "[%s] Registro de nuevo usuario"
936
 
937
+ #: includes/overrides.php:118
938
+ msgid "To set your password, visit the following address:"
939
+ msgstr ""
940
+
941
+ #: includes/overrides.php:123
942
+ #, php-format
943
+ msgid "[%s] Your username and password info"
944
+ msgstr "[%s] Tu nombre de usuario y contraseña"
945
+
946
+ #: includes/overrides.php:153
947
+ #, php-format
948
+ msgid "Password: %s"
949
+ msgstr "Clave: %s"
950
+
951
+ #: includes/overrides.php:156
952
+ #, php-format
953
  msgid "[%s] Your username and password"
954
  msgstr "[%s] Tu nombre de usuario y clave"
955
 
956
+ #. translators: %s: user name
957
+ #: includes/overrides.php:184
958
+ #, php-format
959
+ msgid "Password changed for user: %s"
960
+ msgstr "Contraseña cambiada para el usuario: %s"
961
+
962
+ #. translators: %s: site title
963
+ #: includes/overrides.php:189
964
+ #, php-format
965
+ msgid "[%s] Password Changed"
966
+ msgstr ""
967
+
968
+ #. Plugin Name of the plugin/theme
969
+ msgid "Better Notifications for WP"
970
+ msgstr "Better Notifications for WP"
971
+
972
+ #. Plugin URI of the plugin/theme
973
+ #, fuzzy
974
+ #| msgid "http://wordpress.org/plugins/bnfw/"
975
+ msgid "https://wordpress.org/plugins/bnfw/"
976
  msgstr "http://wordpress.org/plugins/bnfw/"
977
 
978
+ #. Description of the plugin/theme
979
+ msgid ""
980
+ "Supercharge your WordPress notifications using a WYSIWYG editor and "
981
+ "shortcodes. Default and new notifications available. Add more power with Add-"
982
+ "ons."
983
+ msgstr ""
984
+
985
+ #. Author of the plugin/theme
986
+ msgid "Made with Fuel"
987
+ msgstr "Hecho con Fuel"
988
+
989
+ #. Author URI of the plugin/theme
990
+ msgid "https://madewithfuel.com/"
991
+ msgstr ""
992
+
993
+ #~ msgid ""
994
+ #~ "Looking for help with shortcodes? Click here to see which ones you can "
995
+ #~ "use with the selected notification."
996
+ #~ msgstr ""
997
+ #~ "Buscando ayuda con shortcodes? Click aquí para ver cuales puedes usar con "
998
+ #~ "la notificación seleccionada."
999
+
1000
+ #~ msgid "New User - Welcome Email"
1001
+ #~ msgstr "Nuevo Usuario - Email de bienvenida"
1002
+
1003
+ #~ msgid "New User - Welcome email"
1004
+ #~ msgstr "Nuevo usuario - Email de bienvenida"
1005
+
1006
+ #~ msgid ""
1007
+ #~ "Send customisable HTML emails to your users for different WordPress "
1008
+ #~ "notifications."
1009
+ #~ msgstr ""
1010
+ #~ "Enviar emails HTML configurables a tus usuarios por distintas "
1011
+ #~ "notificaciones de WordPress."
1012
+
1013
+ #~ msgid "Show additional email fields"
1014
+ #~ msgstr "Mostrar campos de email adicionales"
1015
+
1016
+ #~ msgid "Update "
1017
+ #~ msgstr "Actualizar "
1018
+
1019
+ #~ msgid "https://betternotificationsforwp.com/"
1020
+ #~ msgstr "https://betternotificationsforwp.com/"
languages/bnfw-fr_FR.mo CHANGED
Binary file
languages/bnfw-fr_FR.po CHANGED
@@ -2,477 +2,1023 @@
2
  # This file is distributed under the same license as the Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-12 14:23+0100\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
- "X-Generator: Poedit 1.8.5\n"
11
  "Project-Id-Version: Stable (latest release)\n"
12
- "POT-Creation-Date: \n"
 
13
  "Last-Translator: \n"
14
  "Language-Team: \n"
15
  "Language: fr\n"
 
 
 
 
 
16
 
17
- #: includes/admin/class-bnfw-notification.php:171
18
- #: includes/admin/class-bnfw-notification.php:836
19
- msgid "User Role Changed"
20
- msgstr "Le rôle d'un utilisateur a changé"
21
-
22
- #: includes/overrides.php:113
23
- msgid "[%s] Your username and password"
24
- msgstr "[%s] Vos nom d'utilisateur et mot de passe"
25
-
26
- #: includes/tmp.php:7
27
- msgid "Show additional email fields"
28
- msgstr "Afficher des champs d’emails supplémentaires"
29
-
30
- #. Plugin Name of the plugin/theme
31
- msgid "Better Notifications for WP"
32
- msgstr "Better Notifications pour WordPress"
33
 
34
- #. Plugin URI of the plugin/theme
35
- msgid "http://wordpress.org/plugins/bnfw/"
36
- msgstr "http://wordpress.org/plugins/bnfw/"
 
37
 
38
- #. Description of the plugin/theme
39
- msgid "Send customisable emails to your users for different WordPress notifications."
40
- msgstr "Envoyez des emails personnalisés à vos utilisateurs pour différentes notifications."
41
 
42
- #. Author of the plugin/theme
43
- msgid "Made with Fuel"
44
- msgstr "Made with Fuel"
45
 
46
- #. Author URI of the plugin/theme
47
- msgid "https://betternotificationsforwp.com/"
48
- msgstr "https://betternotificationsforwp.com/"
49
 
50
- #: includes/overrides.php:80
51
- msgid "[%s] Your username and password info"
52
- msgstr "[%s] Votre identifiant et votre mot de passe"
53
 
54
- #: includes/overrides.php:110
55
- msgid "Password: %s"
56
- msgstr "Mot de passe: %s"
57
 
58
- #: includes/overrides.php:46 includes/overrides.php:96
59
- msgid "[%s] New User Registration"
60
- msgstr "[%s] Enregistrement d'un nouvel utilisateur"
61
 
62
- #: includes/overrides.php:75
63
- msgid "To set your password, visit the following address:"
64
- msgstr "Pour choisir votre mot de passe, rendez-vous à l'adresse suivante :"
 
 
65
 
66
- #: includes/overrides.php:43 includes/overrides.php:74
67
- #: includes/overrides.php:93 includes/overrides.php:109
68
- msgid "Username: %s"
69
- msgstr "Utilisateur : %s"
70
 
71
- #: includes/overrides.php:44 includes/overrides.php:94
72
- msgid "E-mail: %s"
73
- msgstr "Adresse email: %s"
74
 
75
- #: includes/license/class-bnfw-license-setting.php:18
76
- msgid "Addon Licenses"
77
- msgstr "Licences des extensions"
 
 
 
 
78
 
79
- #: includes/license/class-bnfw-license-setting.php:76
80
- msgid "Deactivate License"
81
- msgstr "Désactiver la license"
82
 
83
- #: includes/license/class-bnfw-license.php:96
84
- msgid "%1$s License Key"
85
- msgstr "%1$s clé de licence"
86
 
87
- #: includes/overrides.php:42 includes/overrides.php:92
88
- msgid "New user registration on your site %s:"
89
- msgstr "Enregistrement d'un nouvel utilisateur sur votre site %s"
90
 
91
- #: includes/import.php:60
92
- msgid " for "
93
- msgstr " pour "
94
 
95
- #: includes/import.php:60
96
- msgid " (Auto Imported)"
 
 
97
  msgstr ""
98
- " \n"
99
- "(Importé automatiquement)"
100
 
101
- #: includes/libraries/EDD_SL_Plugin_Updater.php:181
102
- msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
103
- msgstr "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a>."
 
104
 
105
- #: includes/libraries/EDD_SL_Plugin_Updater.php:188
106
- msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
107
- msgstr "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a> ou <a href=\"%4$s\">effectuer la mise à jour maintenant</a>."
 
108
 
109
- #: includes/libraries/EDD_SL_Plugin_Updater.php:326
110
- msgid "You do not have permission to install plugin updates"
111
- msgstr "Vous n’avez pas les droits pour installer des mises à jour d’extensions"
 
 
112
 
113
- #: includes/libraries/EDD_SL_Plugin_Updater.php:326
114
- msgid "Error"
115
- msgstr "Erreur"
116
 
117
- #: includes/helpers/ajax-helpers.php:28
118
- msgid "User Roles"
119
- msgstr "Rôles utilisateurs"
120
 
121
- #: includes/admin/class-bnfw-notification.php:722
122
- msgid "Notification Type"
123
- msgstr "Type de notification"
124
 
125
- #: includes/admin/class-bnfw-notification.php:723
126
- msgid "Enabled?"
127
- msgstr "Activé ?"
128
 
129
- #: includes/admin/class-bnfw-notification.php:725
130
- msgid "User Roles / Users"
131
- msgstr "Rôles de l'utilisateur / Utilisateurs"
132
 
133
- #: includes/admin/class-bnfw-notification.php:827
134
- msgid "User Registration - For User"
135
- msgstr "Enregistrement d'un nouvel utilisateur - pour l’utilisateur"
136
 
137
- #: includes/admin/class-bnfw-notification.php:833
138
- msgid "User Registration - For Admin"
139
- msgstr "Enregistrement d'un nouvel utilisateur - pour l’admin"
140
 
141
- #: includes/admin/class-bnfw-notification.php:870
142
- msgid "Updated "
143
- msgstr "Mis(e) a jour "
144
 
145
- #: includes/admin/class-bnfw-notification.php:873
146
- msgid " Pending Review"
147
- msgstr " En attente de relecture"
148
 
149
- #: includes/admin/class-bnfw-notification.php:876
150
- msgid " Scheduled"
151
- msgstr " Planifié"
152
 
153
- #: includes/admin/class-bnfw-notification.php:879
154
- msgid " Comment"
155
- msgstr " Commentaire"
156
 
157
- #: includes/admin/class-bnfw-notification.php:883
158
- msgid "New Term in "
159
- msgstr "Nouveau terme dans "
160
 
161
- #: includes/helpers/ajax-helpers.php:51
162
- msgid "Users"
163
- msgstr "Abonnés"
 
 
164
 
165
- #: includes/admin/class-bnfw-notification.php:640
166
- msgid "Move to Trash"
167
- msgstr "Déplacer dans la corbeille"
168
 
169
- #: includes/admin/class-bnfw-notification.php:620
170
- msgid "Disable Notification"
171
- msgstr "Désactiver les notifications"
172
 
173
- #: includes/admin/class-bnfw-notification.php:628
174
- msgid "Send Me a Test Email"
175
- msgstr "Envoyez-moi un email de test"
 
176
 
177
- #: includes/admin/class-bnfw-notification.php:638
178
- msgid "Delete Permanently"
179
- msgstr "Supprimer définitivement"
 
180
 
181
- #: includes/admin/class-bnfw-notification.php:364
182
- msgid "Shortcode Help"
183
- msgstr "Aide sur les Shortcodes"
 
184
 
185
- #: includes/admin/class-bnfw-notification.php:374
186
- msgid "Stop additional paragraph and line break HTML from being inserted into my notifications"
187
- msgstr "Éviter que des paragraphes additionnels et des retours à la ligne HTML soient insérés dans mes notifications"
 
188
 
189
- #: includes/admin/class-bnfw-notification.php:510
190
- msgid "Test Notification Sent."
191
- msgstr "Test de notification envoyé."
 
192
 
193
- #: includes/admin/class-bnfw-notification.php:591
194
- msgid "Notification saved."
195
- msgstr "Notification enregistrée."
 
196
 
197
- #: includes/admin/class-bnfw-notification.php:609
198
- #: includes/admin/class-bnfw-notification.php:648
199
- #: includes/admin/class-bnfw-notification.php:649
200
- msgid "Save"
201
- msgstr "Enregister"
202
 
203
- #: includes/admin/class-bnfw-notification.php:354
204
- msgid "Message Body"
205
- msgstr "Votre message"
 
206
 
207
- #: includes/admin/class-bnfw-notification.php:358
208
- msgid "Need some help?"
209
- msgstr "Besoin d’aide ?"
 
210
 
211
- #: includes/admin/class-bnfw-notification.php:361
212
- msgid "Documentation"
213
- msgstr "Consultez la documentation."
214
 
215
- #: includes/admin/class-bnfw-notification.php:228
216
- msgid "New"
217
- msgstr "Ajouter"
 
218
 
219
- #: includes/admin/class-bnfw-notification.php:246
220
- msgid "This notification doesn't support additional email fields."
221
- msgstr "Cette notification ne supporte pas les champs d'emails supplémentaires."
 
222
 
223
- #: includes/admin/class-bnfw-notification.php:253
224
- msgid "Email Formatting"
225
- msgstr "Formatage de l'email"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
- #: includes/admin/class-bnfw-notification.php:270 includes/tmp.php:3
228
- msgid "Additional Email Fields"
229
- msgstr "Champs d'email supplémentaires"
230
 
231
- #: includes/admin/class-bnfw-notification.php:274
232
- msgid "Set \"From\" Name & Email, CC, BCC"
233
- msgstr "Choisir le nom & l'adresse email dans l'entête \" From \"; ajouter des entêtes CC, BCC"
234
 
235
- #: includes/admin/class-bnfw-notification.php:280 includes/tmp.php:13
236
- msgid "From Name and Email"
237
- msgstr "Nom et adresse email"
 
238
 
239
- #: includes/admin/class-bnfw-notification.php:290 includes/tmp.php:23
240
- msgid "CC"
241
- msgstr "CC"
 
242
 
243
- #: includes/admin/class-bnfw-notification.php:302 includes/tmp.php:34
244
- msgid "BCC"
245
- msgstr "CCI"
 
246
 
247
- #: includes/admin/class-bnfw-notification.php:317
248
- msgid "Send this notification to the Author only"
249
- msgstr "Envoyer cette notification à l'auteur seulement"
 
250
 
251
- #: includes/admin/class-bnfw-notification.php:324
252
- msgid "Send To"
253
- msgstr "Envoyer à"
 
254
 
255
- #: includes/admin/class-bnfw-notification.php:338
256
- msgid "Disable this Notification for the User that triggered it"
257
- msgstr "Désactiver cette notification pour l'utilisateur qui l'a déclenchée"
 
258
 
259
- #: includes/admin/class-bnfw-notification.php:345
260
- #: includes/admin/class-bnfw-notification.php:724
261
- msgid "Subject"
262
- msgstr "Objet"
263
 
264
- #: includes/admin/class-bnfw-notification.php:207
265
- msgid "Scheduled"
266
- msgstr "Planifié"
 
267
 
268
- #: includes/admin/class-bnfw-notification.php:208
269
- #: includes/admin/class-bnfw-notification.php:809
 
270
  msgid "New Comment"
271
  msgstr "Nouveau Commentaire"
272
 
273
- #: includes/admin/class-bnfw-notification.php:223
274
- msgid "Custom Taxonomy"
275
- msgstr "Taxonomie personnalisée"
 
 
 
276
 
277
- #: includes/admin/class-bnfw-notification.php:180
278
- #: includes/admin/class-bnfw-notification.php:854
 
 
 
 
 
 
 
 
 
 
279
  msgid "New Tag"
280
  msgstr "Nouveau Tag"
281
 
282
- #: includes/admin/class-bnfw-notification.php:184
 
 
 
 
 
 
 
 
 
 
 
283
  msgid "New Page Published"
284
  msgstr "Nouvelle page publiée"
285
 
286
- #: includes/admin/class-bnfw-notification.php:185
287
  msgid "Page Updated"
288
  msgstr "Page mise à jour"
289
 
290
- #: includes/admin/class-bnfw-notification.php:186
291
  msgid "Page Pending Review"
292
  msgstr "Page en attente de relecture"
293
 
294
- #: includes/admin/class-bnfw-notification.php:187
 
 
 
 
295
  msgid "Page Scheduled"
296
  msgstr "Page planifiée"
297
 
298
- #: includes/admin/class-bnfw-notification.php:188
299
- #, fuzzy
300
  msgid "Page - New Comment"
301
- msgstr "Page - nouveau commentaire"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
 
303
- #: includes/admin/class-bnfw-notification.php:203
 
 
 
 
 
304
  msgid "Custom Post Type"
305
  msgstr "Type d'article personnalisé"
306
 
307
- #: includes/admin/class-bnfw-notification.php:204
308
- #: includes/admin/class-bnfw-notification.php:867
309
  msgid "New "
310
  msgstr "Nouveau"
311
 
312
- #: includes/admin/class-bnfw-notification.php:205
313
- msgid "Update "
314
- msgstr "Mettre à jour"
315
 
316
- #: includes/admin/class-bnfw-notification.php:206
 
 
 
 
317
  msgid "Pending Review"
318
  msgstr "En attente de relecture"
319
 
320
- #: includes/admin/class-bnfw-notification.php:50
321
- msgid "Add New Notification"
322
- msgstr "Ajouter une nouvelle notification"
 
323
 
324
- #: includes/admin/class-bnfw-notification.php:51
325
- msgid "Edit Notification"
326
- msgstr "Editer une notification"
327
 
328
- #: includes/admin/class-bnfw-notification.php:52
329
- msgid "New Notification"
330
- msgstr "Nouvelle notification"
331
 
332
- #: includes/admin/class-bnfw-notification.php:53
333
- msgid "View Notification"
334
- msgstr "Voir la notification"
335
 
336
- #: includes/admin/class-bnfw-notification.php:54
337
- msgid "Search Notifications"
338
- msgstr "Rechercher parmi les notifications"
339
 
340
- #: includes/admin/class-bnfw-notification.php:55
341
- msgid "No Notifications found"
342
- msgstr "Aucune notification trouvée"
 
 
 
 
343
 
344
- #: includes/admin/class-bnfw-notification.php:56
345
- msgid "No Notifications found in trash"
346
- msgstr "Aucune notification trouvée dans la corbeille"
347
 
348
- #: includes/admin/class-bnfw-notification.php:57
349
- msgid "All Notifications"
350
- msgstr "Toutes les notifications"
 
 
351
 
352
- #: includes/admin/class-bnfw-notification.php:128
353
- msgid "Save Notification"
354
- msgstr "Enregistrer la notification"
355
 
356
- #: includes/admin/class-bnfw-notification.php:156
357
- msgid "Notification For"
358
- msgstr "Recevoir une notification pour"
 
 
 
359
 
360
- #: includes/admin/class-bnfw-notification.php:161
361
- msgid "New Comment / Awaiting Moderation"
362
- msgstr "Nouveau commentaire / Modération en attente"
363
 
364
- #: includes/admin/class-bnfw-notification.php:162
365
- #: includes/admin/class-bnfw-notification.php:812
366
- msgid "New Trackback"
367
- msgstr "Nouveau rétrolien (trackback)"
368
 
369
- #: includes/admin/class-bnfw-notification.php:163
370
- #: includes/admin/class-bnfw-notification.php:815
371
- msgid "New Pingback"
372
- msgstr "Nouveau rétrolien (pingback)"
 
 
373
 
374
- #: includes/admin/class-bnfw-notification.php:164
375
- #: includes/admin/class-bnfw-notification.php:824
376
- msgid "Lost Password - For Admin"
377
- msgstr "Mot de passe perdu - pour admin"
378
 
379
- #: includes/admin/class-bnfw-notification.php:165
380
- msgid "New User Registration - For Admin"
381
- msgstr "Enregistrement d'un nouvel utilisateur - pour admin"
382
 
383
- #: includes/admin/class-bnfw-notification.php:168
384
- #: includes/admin/class-bnfw-notification.php:821
385
- msgid "Lost Password - For User"
386
- msgstr "Mot de passe perdu - pour l'utilisateur"
387
 
388
- #: includes/admin/class-bnfw-notification.php:169
389
- msgid "New User Registration - For User"
390
- msgstr "Enregistrement d'un nouvel utilisateur - pour l'utilisateur"
 
 
391
 
392
- #: includes/admin/class-bnfw-notification.php:170
393
- #: includes/admin/class-bnfw-notification.php:830
394
- msgid "New User - Welcome Email"
395
- msgstr "Nouvel utilisateur - message de bienvenue"
396
 
397
- #: includes/admin/class-bnfw-notification.php:172
398
- #: includes/admin/class-bnfw-notification.php:818
399
- msgid "Comment Reply"
400
- msgstr "Réponse à un commentaire"
401
 
402
- #: includes/admin/class-bnfw-notification.php:175
403
- #: includes/admin/class-bnfw-notification.php:839
404
- msgid "New Post Published"
405
- msgstr "Nouvel article publié"
406
 
407
- #: includes/admin/class-bnfw-notification.php:176
408
- #: includes/admin/class-bnfw-notification.php:842
409
- msgid "Post Updated"
410
- msgstr "Mise à jour d'un article"
411
 
412
- #: includes/admin/class-bnfw-notification.php:177
413
- #: includes/admin/class-bnfw-notification.php:845
414
- msgid "Post Pending Review"
415
- msgstr "Article en attente de relecture"
 
 
416
 
417
- #: includes/admin/class-bnfw-notification.php:178
418
- #: includes/admin/class-bnfw-notification.php:848
419
- msgid "Post Scheduled"
420
- msgstr "Article planifié"
421
 
422
- #: includes/admin/class-bnfw-notification.php:179
423
- #: includes/admin/class-bnfw-notification.php:851
424
- msgid "New Category"
425
- msgstr "Nouvelle catégorie"
426
 
427
- #: includes/admin/class-bnfw-notification.php:45
428
- #: includes/admin/class-bnfw-notification.php:48
429
- #: includes/admin/class-bnfw-notification.php:49
430
- msgid "Notifications"
431
- msgstr "Alertes"
432
 
433
- #: includes/admin/class-bnfw-notification.php:46
434
- msgid "Notification"
435
- msgstr "Note"
 
 
436
 
437
- #: includes/admin/class-bnfw-notification.php:47
438
- msgid "Add New"
439
- msgstr "Ajouter nouveau"
440
 
441
- #: includes/admin/bnfw-settings.php:38
442
- msgid "BNFW Settings"
443
- msgstr "Réglages BNFW"
 
 
 
444
 
445
- #: includes/admin/bnfw-settings.php:123
446
- msgid "Suppress SPAM comment notification"
447
- msgstr "Supprimer les notifications de commentaires SPAM"
448
 
449
- #: includes/admin/bnfw-settings.php:128
450
- msgid "Don't send notifications for comments marked as SPAM by Akismet"
451
- msgstr "Ne pas envoyer de notifications pour les commentaires marqués comme SPAM par Akismet"
452
 
453
- #: includes/admin/bnfw-settings.php:141
454
- msgid "Default Email Format"
455
- msgstr "Format par défaut des emails"
456
 
457
- #: includes/admin/bnfw-settings.php:146
458
- msgid "This will apply to all emails sent out via WordPress, even those from other plugins. For more details, please see the <a href=\"https://wordpress.org/plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
459
- msgstr "Cela s'appliquera à tous les emails envoyés via WordPress, même ceux d'autres plugins. Pour plus de détails, veuillez consulter la <a href=\"https://wordpress.org/plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
460
 
461
- #: includes/admin/bnfw-settings.php:189
462
- #: includes/admin/class-bnfw-notification.php:258
463
- msgid "HTML Formatting"
464
- msgstr "Recevoir en HTML"
 
465
 
466
- #: includes/admin/bnfw-settings.php:193
467
- #: includes/admin/class-bnfw-notification.php:263
468
- msgid "Plain Text"
469
- msgstr "Recevoir en Texte brut"
 
470
 
471
- #: includes/admin/bnfw-settings.php:14
472
- #: includes/admin/class-bnfw-notification.php:120
473
- msgid "Notification Settings"
474
- msgstr "Paramètres des notifications"
475
 
476
- #: includes/admin/bnfw-settings.php:15
477
- msgid "Settings"
478
- msgstr "Réglages"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
 
 
 
 
 
 
5
  "Project-Id-Version: Stable (latest release)\n"
6
+ "POT-Creation-Date: 2020-11-27 21:34+0800\n"
7
+ "PO-Revision-Date: 2020-11-28 00:03+0800\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: fr\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
+ "X-Generator: Poedit 2.2\n"
16
 
17
+ #: bnfw.php:283 includes/admin/bnfw-settings.php:15
18
+ msgid "Settings"
19
+ msgstr "Réglages"
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
+ #: includes/admin/bnfw-settings.php:14
22
+ #: includes/admin/class-bnfw-notification.php:129
23
+ msgid "Notification Settings"
24
+ msgstr "Paramètres des notifications"
25
 
26
+ #: includes/admin/bnfw-settings.php:38
27
+ msgid "BNFW Settings"
28
+ msgstr "Réglages BNFW"
29
 
30
+ #: includes/admin/bnfw-settings.php:46
31
+ msgid "Save Settings"
32
+ msgstr "Enregistrer les paramètres"
33
 
34
+ #: includes/admin/bnfw-settings.php:73
35
+ msgid "Documentation"
36
+ msgstr "Consultez la documentation."
37
 
38
+ #: includes/admin/bnfw-settings.php:80
39
+ msgid "Premium Add-ons"
40
+ msgstr ""
41
 
42
+ #: includes/admin/bnfw-settings.php:87
43
+ msgid "Priority Support"
44
+ msgstr ""
45
 
46
+ #: includes/admin/bnfw-settings.php:150
47
+ msgid "Suppress SPAM comment notification"
48
+ msgstr "Supprimer les notifications de commentaires SPAM"
49
 
50
+ #: includes/admin/bnfw-settings.php:150
51
+ msgid ""
52
+ "Comments that are correctly marked as SPAM by a 3rd party plugin (such as "
53
+ "Akismet) will not generate a notification if this is ticked."
54
+ msgstr ""
55
 
56
+ #: includes/admin/bnfw-settings.php:155
57
+ msgid "Don't send notifications for comments marked as SPAM"
58
+ msgstr ""
59
+ "N'envoyez pas de notifications pour les commentaires marqués comme SPAM"
60
 
61
+ #: includes/admin/bnfw-settings.php:167
62
+ msgid "Default Email Format"
63
+ msgstr "Format par défaut des emails"
64
 
65
+ #: includes/admin/bnfw-settings.php:167
66
+ msgid ""
67
+ "This will apply to all emails sent out via WordPress, even those from other "
68
+ "plugins. For more details, please see the "
69
+ msgstr ""
70
+ "Cela s'appliquera à tous les e-mails envoyés via WordPress, même ceux "
71
+ "d'autres plugins. Pour plus de détails, veuillez consulter le"
72
 
73
+ #: includes/admin/bnfw-settings.php:181
74
+ msgid "Enable Content Shortcodes?"
75
+ msgstr ""
76
 
77
+ #: includes/admin/bnfw-settings.php:181
78
+ msgid "Shortcodes in the post/page content are disabled by default."
79
+ msgstr ""
80
 
81
+ #: includes/admin/bnfw-settings.php:186
82
+ msgid "Enable shortcode output in the page/post content"
83
+ msgstr ""
84
 
85
+ #: includes/admin/bnfw-settings.php:198
86
+ msgid "Allow Usage Tracking?"
87
+ msgstr ""
88
 
89
+ #: includes/admin/bnfw-settings.php:203
90
+ msgid ""
91
+ "Allow Better Notifications for WP to anonymously track how this plugin is "
92
+ "used and help make the plugin better."
93
  msgstr ""
 
 
94
 
95
+ #: includes/admin/bnfw-settings.php:251
96
+ #: includes/admin/class-bnfw-notification.php:433
97
+ msgid "HTML Formatting"
98
+ msgstr "Recevoir en HTML"
99
 
100
+ #: includes/admin/bnfw-settings.php:256
101
+ #: includes/admin/class-bnfw-notification.php:439
102
+ msgid "Plain Text"
103
+ msgstr "Recevoir en Texte brut"
104
 
105
+ #: includes/admin/class-bnfw-notification.php:52
106
+ #: includes/admin/class-bnfw-notification.php:55
107
+ #: includes/admin/class-bnfw-notification.php:56
108
+ msgid "Notifications"
109
+ msgstr "Alertes"
110
 
111
+ #: includes/admin/class-bnfw-notification.php:53
112
+ msgid "Notification"
113
+ msgstr "Note"
114
 
115
+ #: includes/admin/class-bnfw-notification.php:54
116
+ msgid "Add New"
117
+ msgstr "Ajouter nouveau"
118
 
119
+ #: includes/admin/class-bnfw-notification.php:57
120
+ msgid "Add New Notification"
121
+ msgstr "Ajouter une nouvelle notification"
122
 
123
+ #: includes/admin/class-bnfw-notification.php:58
124
+ msgid "Edit Notification"
125
+ msgstr "Editer une notification"
126
 
127
+ #: includes/admin/class-bnfw-notification.php:59
128
+ msgid "New Notification"
129
+ msgstr "Nouvelle notification"
130
 
131
+ #: includes/admin/class-bnfw-notification.php:60
132
+ msgid "View Notification"
133
+ msgstr "Voir la notification"
134
 
135
+ #: includes/admin/class-bnfw-notification.php:61
136
+ msgid "Search Notifications"
137
+ msgstr "Rechercher parmi les notifications"
138
 
139
+ #: includes/admin/class-bnfw-notification.php:62
140
+ msgid "No Notifications found"
141
+ msgstr "Aucune notification trouvée"
142
 
143
+ #: includes/admin/class-bnfw-notification.php:63
144
+ msgid "No Notifications found in trash"
145
+ msgstr "Aucune notification trouvée dans la corbeille"
146
 
147
+ #: includes/admin/class-bnfw-notification.php:64
148
+ msgid "All Notifications"
149
+ msgstr "Toutes les notifications"
150
 
151
+ #: includes/admin/class-bnfw-notification.php:138
152
+ msgid "Save Notification"
153
+ msgstr "Enregistrer la notification"
154
 
155
+ #: includes/admin/class-bnfw-notification.php:186
156
+ msgid "Notification For"
157
+ msgstr "Recevoir une notification pour"
158
 
159
+ #: includes/admin/class-bnfw-notification.php:187
160
+ msgid ""
161
+ "E.g. If you select \"New Post Published\" from the list on the right, this "
162
+ "notification will be sent when a new post is published."
163
+ msgstr ""
164
 
165
+ #: includes/admin/class-bnfw-notification.php:191
166
+ msgid "Select the notification type"
167
+ msgstr "Sélectionnez le type de notification"
168
 
169
+ #: includes/admin/class-bnfw-notification.php:192
170
+ msgid "Admin"
171
+ msgstr ""
172
 
173
+ #: includes/admin/class-bnfw-notification.php:194
174
+ #: includes/admin/class-bnfw-notification.php:1302
175
+ msgid "New User Registration - For Admin"
176
+ msgstr "Enregistrement d'un nouvel utilisateur - pour admin"
177
 
178
+ #: includes/admin/class-bnfw-notification.php:196
179
+ #: includes/admin/class-bnfw-notification.php:1269
180
+ msgid "User Lost Password - For Admin"
181
+ msgstr "Mot de passe perdu par l'utilisateur - Pour l'administrateur"
182
 
183
+ #: includes/admin/class-bnfw-notification.php:198
184
+ #: includes/admin/class-bnfw-notification.php:1272
185
+ msgid "Password Changed - For Admin"
186
+ msgstr "Mot de passe modifié - Pour l'administrateur"
187
 
188
+ #: includes/admin/class-bnfw-notification.php:200
189
+ #: includes/admin/class-bnfw-notification.php:1275
190
+ msgid "User Email Changed - For Admin"
191
+ msgstr "Adresse e-mail de l'utilisateur modifiée - Pour l'administrateur"
192
 
193
+ #: includes/admin/class-bnfw-notification.php:202
194
+ #: includes/admin/class-bnfw-notification.php:1308
195
+ msgid "User Role Changed - For Admin"
196
+ msgstr "Rôle de l'utilisateur modifié - Pour l'administrateur"
197
 
198
+ #: includes/admin/class-bnfw-notification.php:204
199
+ #: includes/admin/class-bnfw-notification.php:1296
200
+ msgid "User Logged In - For Admin"
201
+ msgstr "Utilisateur connecté - Pour l'administrateur"
202
 
203
+ #: includes/admin/class-bnfw-notification.php:206
204
+ #: includes/admin/class-bnfw-notification.php:1287
205
+ msgid "WordPress Core Automatic Background Updates"
206
+ msgstr ""
 
207
 
208
+ #: includes/admin/class-bnfw-notification.php:210
209
+ #: includes/admin/class-bnfw-notification.php:1344
210
+ msgid "Privacy - Confirm Action: Export Data Request - For Admin"
211
+ msgstr ""
212
 
213
+ #: includes/admin/class-bnfw-notification.php:214
214
+ #: includes/admin/class-bnfw-notification.php:1347
215
+ msgid "Privacy - Confirm Action: Erase Data Request - For Admin"
216
+ msgstr ""
217
 
218
+ #: includes/admin/class-bnfw-notification.php:222
219
+ msgid "Transactional"
220
+ msgstr ""
221
 
222
+ #: includes/admin/class-bnfw-notification.php:224
223
+ #: includes/admin/class-bnfw-notification.php:1290
224
+ msgid "New User Registration - For User"
225
+ msgstr "Enregistrement d'un nouvel utilisateur - pour l'utilisateur"
226
 
227
+ #: includes/admin/class-bnfw-notification.php:226
228
+ #: includes/admin/class-bnfw-notification.php:1299
229
+ msgid "New User - Post-registration Email"
230
+ msgstr "Nouvel utilisateur - E-mail post-inscription"
231
 
232
+ #: includes/admin/class-bnfw-notification.php:228
233
+ #: includes/admin/class-bnfw-notification.php:1266
234
+ msgid "User Lost Password - For User"
235
+ msgstr "Mot de passe perdu par l'utilisateur - Pour l'utilisateur"
236
+
237
+ #: includes/admin/class-bnfw-notification.php:230
238
+ #: includes/admin/class-bnfw-notification.php:1278
239
+ msgid "Password Changed - For User"
240
+ msgstr "Mot de passe modifié - Pour l'utilisateur"
241
+
242
+ #: includes/admin/class-bnfw-notification.php:232
243
+ #: includes/admin/class-bnfw-notification.php:1281
244
+ msgid "User Email Changed Confirmation - For User"
245
+ msgstr ""
246
+ "Confirmation de modification de l'adresse e-mail de l'utilisateur - Pour "
247
+ "l'utilisateur"
248
+
249
+ #: includes/admin/class-bnfw-notification.php:235
250
+ #: includes/admin/class-bnfw-notification.php:1284
251
+ msgid "User Email Changed - For User"
252
+ msgstr "Adresse e-mail de l'utilisateur modifiée - Pour l'utilisateur"
253
+
254
+ #: includes/admin/class-bnfw-notification.php:237
255
+ #: includes/admin/class-bnfw-notification.php:1305
256
+ msgid "User Role Changed - For User"
257
+ msgstr "Rôle de l'utilisateur modifié - Pour l'utilisateur"
258
+
259
+ #: includes/admin/class-bnfw-notification.php:239
260
+ #: includes/admin/class-bnfw-notification.php:1293
261
+ msgid "User Logged In - For User"
262
+ msgstr "Utilisateur connecté - Pour l'utilisateur"
263
+
264
+ #: includes/admin/class-bnfw-notification.php:241
265
+ #: includes/admin/class-bnfw-notification.php:375
266
+ #: includes/admin/class-bnfw-notification.php:1263
267
+ msgid "Comment Reply"
268
+ msgstr "Réponse à un commentaire"
269
 
270
+ #: includes/admin/class-bnfw-notification.php:245
271
+ msgid "Privacy - Confirm Action: Export Data Request - For User"
272
+ msgstr ""
273
 
274
+ #: includes/admin/class-bnfw-notification.php:249
275
+ msgid "Privacy - Confirm Action: Erase Data Request - For User"
276
+ msgstr ""
277
 
278
+ #: includes/admin/class-bnfw-notification.php:253
279
+ #: includes/admin/class-bnfw-notification.php:1350
280
+ msgid "Privacy - Data Export - For User"
281
+ msgstr ""
282
 
283
+ #: includes/admin/class-bnfw-notification.php:257
284
+ #: includes/admin/class-bnfw-notification.php:1353
285
+ msgid "Privacy - Data Erased - For User"
286
+ msgstr ""
287
 
288
+ #: includes/admin/class-bnfw-notification.php:267
289
+ #: includes/admin/class-bnfw-notification.php:1311
290
+ msgid "New Post Published"
291
+ msgstr "Nouvel article publié"
292
 
293
+ #: includes/admin/class-bnfw-notification.php:269
294
+ #: includes/admin/class-bnfw-notification.php:1314
295
+ msgid "Post Updated"
296
+ msgstr "Mise à jour d'un article"
297
 
298
+ #: includes/admin/class-bnfw-notification.php:271
299
+ #: includes/admin/class-bnfw-notification.php:1317
300
+ msgid "Post Pending Review"
301
+ msgstr "Article en attente de relecture"
302
 
303
+ #: includes/admin/class-bnfw-notification.php:273
304
+ #: includes/admin/class-bnfw-notification.php:1320
305
+ msgid "New Private Post"
306
+ msgstr ""
307
 
308
+ #: includes/admin/class-bnfw-notification.php:275
309
+ #: includes/admin/class-bnfw-notification.php:1323
310
+ msgid "Post Scheduled"
311
+ msgstr "Article planifié"
312
 
313
+ #: includes/admin/class-bnfw-notification.php:277
314
+ #: includes/admin/class-bnfw-notification.php:1326
315
+ msgid "Published Post Moved to Trash"
316
+ msgstr "Message publié placé dans la corbeille"
317
 
318
+ #: includes/admin/class-bnfw-notification.php:279
319
+ #: includes/admin/class-bnfw-notification.php:367
320
+ #: includes/admin/class-bnfw-notification.php:1248
321
  msgid "New Comment"
322
  msgstr "Nouveau Commentaire"
323
 
324
+ #: includes/admin/class-bnfw-notification.php:282
325
+ #: includes/admin/class-bnfw-notification.php:369
326
+ #: includes/admin/class-bnfw-notification.php:1254
327
+ #: includes/admin/class-bnfw-notification.php:1407
328
+ msgid "New Comment Awaiting Moderation"
329
+ msgstr "Nouveau commentaire en attente de modération"
330
 
331
+ #: includes/admin/class-bnfw-notification.php:285
332
+ #: includes/admin/class-bnfw-notification.php:1251
333
+ msgid "Post - Comment Approved"
334
+ msgstr ""
335
+
336
+ #: includes/admin/class-bnfw-notification.php:288
337
+ #: includes/admin/class-bnfw-notification.php:1332
338
+ msgid "New Category"
339
+ msgstr "Nouvelle catégorie"
340
+
341
+ #: includes/admin/class-bnfw-notification.php:290
342
+ #: includes/admin/class-bnfw-notification.php:1335
343
  msgid "New Tag"
344
  msgstr "Nouveau Tag"
345
 
346
+ #: includes/admin/class-bnfw-notification.php:292
347
+ #: includes/admin/class-bnfw-notification.php:1257
348
+ msgid "New Trackback"
349
+ msgstr "Nouveau rétrolien (trackback)"
350
+
351
+ #: includes/admin/class-bnfw-notification.php:294
352
+ #: includes/admin/class-bnfw-notification.php:1260
353
+ msgid "New Pingback"
354
+ msgstr "Nouveau rétrolien (pingback)"
355
+
356
+ #: includes/admin/class-bnfw-notification.php:301
357
+ #: includes/admin/class-bnfw-notification.php:1329
358
  msgid "New Page Published"
359
  msgstr "Nouvelle page publiée"
360
 
361
+ #: includes/admin/class-bnfw-notification.php:303
362
  msgid "Page Updated"
363
  msgstr "Page mise à jour"
364
 
365
+ #: includes/admin/class-bnfw-notification.php:305
366
  msgid "Page Pending Review"
367
  msgstr "Page en attente de relecture"
368
 
369
+ #: includes/admin/class-bnfw-notification.php:307
370
+ msgid "New Private Page"
371
+ msgstr ""
372
+
373
+ #: includes/admin/class-bnfw-notification.php:309
374
  msgid "Page Scheduled"
375
  msgstr "Page planifiée"
376
 
377
+ #: includes/admin/class-bnfw-notification.php:311
 
378
  msgid "Page - New Comment"
379
+ msgstr "Page - Nouveau commentaire"
380
+
381
+ #: includes/admin/class-bnfw-notification.php:313
382
+ msgid "Page - New Comment Awaiting Moderation"
383
+ msgstr "Page - Nouveau commentaire en attente de modération"
384
+
385
+ #: includes/admin/class-bnfw-notification.php:316
386
+ #: includes/admin/class-bnfw-notification.php:1365
387
+ msgid "Page - Comment Approved"
388
+ msgstr "Page - Commentaire approuvé"
389
+
390
+ #: includes/admin/class-bnfw-notification.php:319
391
+ msgid "Page - Comment Reply"
392
+ msgstr "Page - Réponse au commentaire"
393
+
394
+ #: includes/admin/class-bnfw-notification.php:326
395
+ #: includes/admin/class-bnfw-notification.php:1356
396
+ msgid "New Media Published"
397
+ msgstr "Nouveaux médias publiés"
398
+
399
+ #: includes/admin/class-bnfw-notification.php:328
400
+ #: includes/admin/class-bnfw-notification.php:1359
401
+ msgid "Media Updated"
402
+ msgstr "Médias mis à jour"
403
+
404
+ #: includes/admin/class-bnfw-notification.php:330
405
+ #: includes/admin/class-bnfw-notification.php:1362
406
+ msgid "Media - New Comment"
407
+ msgstr "Médias - Nouveau commentaire"
408
+
409
+ #: includes/admin/class-bnfw-notification.php:332
410
+ #: includes/admin/class-bnfw-notification.php:1368
411
+ msgid "Media - Comment Approved"
412
+ msgstr ""
413
+
414
+ #: includes/admin/class-bnfw-notification.php:335
415
+ #: includes/admin/class-bnfw-notification.php:1371
416
+ msgid "Media - New Comment Awaiting Moderation"
417
+ msgstr "Médias - Nouveau commentaire en attente de modération"
418
 
419
+ #: includes/admin/class-bnfw-notification.php:337
420
+ #: includes/admin/class-bnfw-notification.php:1374
421
+ msgid "Media - Comment Reply"
422
+ msgstr "Médias - Réponse au commentaire"
423
+
424
+ #: includes/admin/class-bnfw-notification.php:355
425
  msgid "Custom Post Type"
426
  msgstr "Type d'article personnalisé"
427
 
428
+ #: includes/admin/class-bnfw-notification.php:357
429
+ #: includes/admin/class-bnfw-notification.php:1389
430
  msgid "New "
431
  msgstr "Nouveau"
432
 
433
+ #: includes/admin/class-bnfw-notification.php:357
434
+ msgid " Published"
435
+ msgstr "Publié"
436
 
437
+ #: includes/admin/class-bnfw-notification.php:359
438
+ msgid "Updated"
439
+ msgstr "Mis à jour"
440
+
441
+ #: includes/admin/class-bnfw-notification.php:361
442
  msgid "Pending Review"
443
  msgstr "En attente de relecture"
444
 
445
+ #: includes/admin/class-bnfw-notification.php:363
446
+ #: includes/admin/class-bnfw-notification.php:1401
447
+ msgid "New Private "
448
+ msgstr ""
449
 
450
+ #: includes/admin/class-bnfw-notification.php:365
451
+ msgid "Scheduled"
452
+ msgstr "Planifié"
453
 
454
+ #: includes/admin/class-bnfw-notification.php:372
455
+ msgid "Comment Approved"
456
+ msgstr "Commentaire approuvé"
457
 
458
+ #: includes/admin/class-bnfw-notification.php:394
459
+ msgid "Custom Taxonomy"
460
+ msgstr "Taxonomie personnalisée"
461
 
462
+ #: includes/admin/class-bnfw-notification.php:400
463
+ msgid "New"
464
+ msgstr "Ajouter"
465
 
466
+ #: includes/admin/class-bnfw-notification.php:419
467
+ msgid ""
468
+ "This notification doesn't support additional email fields due to a "
469
+ "limitation in WordPress."
470
+ msgstr ""
471
+ "Cette notification ne prend pas en charge les champs d'e-mail "
472
+ "supplémentaires en raison d'une limitation dans WordPress."
473
 
474
+ #: includes/admin/class-bnfw-notification.php:426
475
+ msgid "Email Formatting"
476
+ msgstr "Formatage de l'email"
477
 
478
+ #: includes/admin/class-bnfw-notification.php:427
479
+ msgid ""
480
+ "How do you want to format the sent email? HTML is recommended as it'll show "
481
+ "images and links correctly."
482
+ msgstr ""
483
 
484
+ #: includes/admin/class-bnfw-notification.php:448
485
+ msgid "Additional Email Fields"
486
+ msgstr "Champs d'email supplémentaires"
487
 
488
+ #: includes/admin/class-bnfw-notification.php:449
489
+ msgid ""
490
+ "This should be fairly self explanatory but if you're unsure, tick this "
491
+ "checkbox and have a look at the available options. You can always untick it "
492
+ "again should you decide you don't need to use it."
493
+ msgstr ""
494
 
495
+ #: includes/admin/class-bnfw-notification.php:454
496
+ msgid "Set \"From\" Name & Email, Reply To, CC, BCC"
497
+ msgstr "Définir le nom et l'e-mail «De», Répondre à, CC, Cci"
498
 
499
+ #: includes/admin/class-bnfw-notification.php:461
500
+ msgid "From Name and Email"
501
+ msgstr "Nom et adresse email"
 
502
 
503
+ #: includes/admin/class-bnfw-notification.php:462
504
+ msgid ""
505
+ "If you want to send the email from your site name and email address instead "
506
+ "of the default \"WordPress\" from \"wordpress@domain.com\", this is where "
507
+ "you can do it."
508
+ msgstr ""
509
 
510
+ #: includes/admin/class-bnfw-notification.php:466
511
+ msgid "Site Name"
512
+ msgstr ""
 
513
 
514
+ #: includes/admin/class-bnfw-notification.php:468
515
+ msgid "Site Email"
516
+ msgstr ""
517
 
518
+ #: includes/admin/class-bnfw-notification.php:475
519
+ msgid "Reply To"
520
+ msgstr ""
 
521
 
522
+ #: includes/admin/class-bnfw-notification.php:476
523
+ msgid ""
524
+ "If you want any replies to your email notification to go to another person, "
525
+ "fill in this box with their name and email address."
526
+ msgstr ""
527
 
528
+ #: includes/admin/class-bnfw-notification.php:480
529
+ msgid "Name"
530
+ msgstr ""
 
531
 
532
+ #: includes/admin/class-bnfw-notification.php:482
533
+ msgid "Email"
534
+ msgstr "Email"
 
535
 
536
+ #: includes/admin/class-bnfw-notification.php:488
537
+ msgid "CC"
538
+ msgstr "CC"
 
539
 
540
+ #: includes/admin/class-bnfw-notification.php:489
541
+ msgid "Publicly copy in any other users or user roles to this email."
542
+ msgstr ""
 
543
 
544
+ #: includes/admin/class-bnfw-notification.php:494
545
+ #: includes/admin/class-bnfw-notification.php:508
546
+ #: includes/admin/class-bnfw-notification.php:557
547
+ #: includes/admin/class-bnfw-notification.php:575
548
+ msgid "Select User Roles / Users"
549
+ msgstr "Sélectionnez les rôles utilisateur / utilisateurs"
550
 
551
+ #: includes/admin/class-bnfw-notification.php:502
552
+ msgid "BCC"
553
+ msgstr "CCI"
 
554
 
555
+ #: includes/admin/class-bnfw-notification.php:503
556
+ msgid "Privately copy in any other users or user roles to this email."
557
+ msgstr ""
 
558
 
559
+ #: includes/admin/class-bnfw-notification.php:518
560
+ msgid "Send to Author"
561
+ msgstr ""
 
 
562
 
563
+ #: includes/admin/class-bnfw-notification.php:519
564
+ msgid ""
565
+ "E.g. If you want a new post published notification to go to the post author, "
566
+ "tick this box."
567
+ msgstr ""
568
 
569
+ #: includes/admin/class-bnfw-notification.php:526
570
+ msgid "Send this notification to the Author"
571
+ msgstr "Envoyez cette notification à l'auteur"
572
 
573
+ #: includes/admin/class-bnfw-notification.php:536
574
+ msgid ""
575
+ "E.g. If you're an editor and regularly update your posts, you might not want "
576
+ "to be emailed about this all the time. Ticking this box will prevent you "
577
+ "from receiving emails about your own changes."
578
+ msgstr ""
579
 
580
+ #: includes/admin/class-bnfw-notification.php:542
581
+ msgid "Do not send this Notification to the User that triggered it"
582
+ msgstr "N'envoyez pas cette notification à l'utilisateur qui l'a déclenchée"
583
 
584
+ #: includes/admin/class-bnfw-notification.php:551
585
+ msgid "Send To"
586
+ msgstr "Envoyer à"
587
 
588
+ #: includes/admin/class-bnfw-notification.php:552
589
+ msgid "Choose the users and/or user roles to send this email notification to."
590
+ msgstr ""
591
 
592
+ #: includes/admin/class-bnfw-notification.php:565
593
+ msgid "Except For"
594
+ msgstr ""
595
 
596
+ #: includes/admin/class-bnfw-notification.php:568
597
+ msgid ""
598
+ "Choose the users and/or user roles that this notification should not be sent "
599
+ "to."
600
+ msgstr ""
601
 
602
+ #: includes/admin/class-bnfw-notification.php:593
603
+ msgid ""
604
+ "You have chosen to send this notification to over 200 users. Please check "
605
+ "the email sending rate limit at your host before sending."
606
+ msgstr ""
607
 
608
+ #: includes/admin/class-bnfw-notification.php:603
609
+ #: includes/admin/class-bnfw-notification.php:1129
610
+ msgid "Subject"
611
+ msgstr "Objet"
612
 
613
+ #: includes/admin/class-bnfw-notification.php:604
614
+ msgid "Notification subject. You can use "
615
+ msgstr "Objet de la notification. Vous pouvez utiliser"
616
+
617
+ #: includes/admin/class-bnfw-notification.php:604
618
+ #: includes/admin/class-bnfw-notification.php:618
619
+ msgid " here."
620
+ msgstr ""
621
+
622
+ #: includes/admin/class-bnfw-notification.php:617
623
+ msgid "Message Body"
624
+ msgstr "Votre message"
625
+
626
+ #: includes/admin/class-bnfw-notification.php:618
627
+ msgid "Notification message. You can use "
628
+ msgstr "Message de notification. Vous pouvez utiliser"
629
+
630
+ #: includes/admin/class-bnfw-notification.php:626
631
+ msgid "Need some more help?"
632
+ msgstr "Besoin d'aide supplémentaire?"
633
+
634
+ #: includes/admin/class-bnfw-notification.php:636
635
+ msgid "Insert Default Content"
636
+ msgstr "Insérer le contenu par défaut"
637
+
638
+ #: includes/admin/class-bnfw-notification.php:640
639
+ msgid "Read Documentation"
640
+ msgstr "Lire la documentation"
641
+
642
+ #: includes/admin/class-bnfw-notification.php:644
643
+ msgid "Find Shortcodes"
644
+ msgstr "Aide sur les Shortcodes"
645
+
646
+ #: includes/admin/class-bnfw-notification.php:655
647
+ msgid ""
648
+ "Stop additional paragraph and line break HTML from being inserted into my "
649
+ "notifications"
650
+ msgstr ""
651
+ "Éviter que des paragraphes additionnels et des retours à la ligne HTML "
652
+ "soient insérés dans mes notifications"
653
+
654
+ #: includes/admin/class-bnfw-notification.php:710
655
+ msgid ""
656
+ "You must choose at least one User or User Role to send the notification to "
657
+ "before you can save"
658
+ msgstr ""
659
+
660
+ #: includes/admin/class-bnfw-notification.php:825
661
+ msgid "Test Notification Sent."
662
+ msgstr "Test de notification envoyé."
663
+
664
+ #: includes/admin/class-bnfw-notification.php:915
665
+ msgid "Notification saved."
666
+ msgstr "Notification enregistrée."
667
+
668
+ #: includes/admin/class-bnfw-notification.php:934
669
+ #: includes/admin/class-bnfw-notification.php:992
670
+ #: includes/admin/class-bnfw-notification.php:994
671
+ msgid "Save"
672
+ msgstr "Enregister"
673
+
674
+ #: includes/admin/class-bnfw-notification.php:942
675
+ msgid ""
676
+ "Use this to enable or disable notifications. If you want to disable a "
677
+ "default WordPress notification, just create it on the left, then disable it "
678
+ "here."
679
+ msgstr ""
680
+
681
+ #: includes/admin/class-bnfw-notification.php:949
682
+ msgid "Notification Enabled"
683
+ msgstr "Notification activée"
684
+
685
+ #: includes/admin/class-bnfw-notification.php:956
686
+ msgid "Notification Disabled"
687
+ msgstr "Notification désactivée"
688
+
689
+ #: includes/admin/class-bnfw-notification.php:967
690
+ msgid "Send Me a Test Email"
691
+ msgstr "Envoyez-moi un email de test"
692
+
693
+ #: includes/admin/class-bnfw-notification.php:969
694
+ msgid ""
695
+ "This will send you (the currently logged in user) a notification so that you "
696
+ "can check for any issues with formatting – it’s doesn't mean that a "
697
+ "notification will send correctly in the future. You can read about how to "
698
+ "improve email delivery"
699
+ msgstr ""
700
+
701
+ #: includes/admin/class-bnfw-notification.php:969
702
+ msgid "here"
703
+ msgstr ""
704
+
705
+ #: includes/admin/class-bnfw-notification.php:969
706
+ msgid ". Shortcodes will not be replaced with content."
707
+ msgstr ""
708
+
709
+ #: includes/admin/class-bnfw-notification.php:980
710
+ msgid "Delete Permanently"
711
+ msgstr "Supprimer définitivement"
712
+
713
+ #: includes/admin/class-bnfw-notification.php:982
714
+ msgid "Move to Trash"
715
+ msgstr "Déplacer dans la corbeille"
716
+
717
+ #: includes/admin/class-bnfw-notification.php:1127
718
+ msgid "Notification Type"
719
+ msgstr "Type de notification"
720
+
721
+ #: includes/admin/class-bnfw-notification.php:1128
722
+ msgid "Enabled?"
723
+ msgstr "Activé ?"
724
+
725
+ #: includes/admin/class-bnfw-notification.php:1130
726
+ msgid "User Roles / Users"
727
+ msgstr "Rôles de l'utilisateur / Utilisateurs"
728
+
729
+ #: includes/admin/class-bnfw-notification.php:1131
730
+ msgid "Excluded User Roles / Users"
731
+ msgstr "Rôles d'utilisateur / utilisateurs exclus"
732
+
733
+ #: includes/admin/class-bnfw-notification.php:1172
734
+ msgid ", Post Author"
735
+ msgstr ""
736
+
737
+ #: includes/admin/class-bnfw-notification.php:1338
738
+ msgid "Privacy – Confirm Action: Export Data Request – For User"
739
+ msgstr ""
740
+
741
+ #: includes/admin/class-bnfw-notification.php:1341
742
+ msgid "Privacy – Confirm Action: Erase Data Request – For User"
743
+ msgstr ""
744
+
745
+ #: includes/admin/class-bnfw-notification.php:1389
746
+ msgid "Published"
747
+ msgstr "Publié"
748
+
749
+ #: includes/admin/class-bnfw-notification.php:1392
750
+ msgid "Updated "
751
+ msgstr "Mis(e) a jour "
752
+
753
+ #: includes/admin/class-bnfw-notification.php:1395
754
+ msgid " Pending Review"
755
+ msgstr " En attente de relecture"
756
+
757
+ #: includes/admin/class-bnfw-notification.php:1398
758
+ msgid " Scheduled"
759
+ msgstr " Planifié"
760
+
761
+ #: includes/admin/class-bnfw-notification.php:1404
762
+ msgid " Comment"
763
+ msgstr " Commentaire"
764
+
765
+ #: includes/admin/class-bnfw-notification.php:1410
766
+ msgid " Comment Reply"
767
+ msgstr "Commentaire Répondre"
768
+
769
+ #: includes/admin/class-bnfw-notification.php:1413
770
+ msgid " Comment Approved"
771
+ msgstr "Commentaire approuvé"
772
+
773
+ #: includes/admin/class-bnfw-notification.php:1418
774
+ msgid "New Term"
775
+ msgstr "Nouveau mandat"
776
+
777
+ #: includes/admin/class-bnfw-notification.php:1420
778
+ msgid "New Term in "
779
+ msgstr "Nouveau terme dans "
780
+
781
+ #: includes/admin/class-bnfw-notification.php:1440
782
+ msgid "Enable Notifications"
783
+ msgstr "Activer les notifications"
784
+
785
+ #: includes/admin/class-bnfw-notification.php:1441
786
+ msgid "Disable Notifications"
787
+ msgstr "Désactiver les notifications"
788
+
789
+ #: includes/admin/class-bnfw-notification.php:1502
790
+ msgid "Enable Notification"
791
+ msgstr "Activer la notification"
792
+
793
+ #: includes/admin/class-bnfw-notification.php:1510
794
+ msgid "Disable Notification"
795
+ msgstr "Désactiver les notifications"
796
+
797
+ #: includes/admin/class-bnfw-notification.php:1568
798
+ msgid "Enabled 1 Notification."
799
+ msgstr "Notification activée 1."
800
+
801
+ #: includes/admin/class-bnfw-notification.php:1572
802
+ msgid "Disabled 1 Notification."
803
+ msgstr "Désactivé 1 Notification."
804
+
805
+ #: includes/admin/class-bnfw-notification.php:1578
806
+ #, php-format
807
+ msgid "Enabled %s Notification."
808
+ msgid_plural "Enabled %s Notifications."
809
+ msgstr[0] "Notification% s activée."
810
+ msgstr[1] "Notifications% s activées."
811
+
812
+ #: includes/admin/class-bnfw-notification.php:1588
813
+ #, php-format
814
+ msgid "Disabled %s Notification."
815
+ msgid_plural "Disabled %s Notifications."
816
+ msgstr[0] "Notification% s désactivée."
817
+ msgstr[1] "Notifications% s désactivées."
818
+
819
+ #: includes/admin/class-bnfw-notification.php:1602
820
+ msgid ""
821
+ "If you send out notifications with BNFW but don't receive them, you may need "
822
+ "to install an SMTP plugin to <a href=\"https://betternotificationsforwp.com/"
823
+ "documentation/getting-started/how-to-improve-email-delivery/\" target="
824
+ "\"_blank\">improve email deliverability</a>. I recommend using <a href="
825
+ "\"https://wordpress.org/plugins/post-smtp/\" target=\"_blank\">Post SMTP</a> "
826
+ "as it's easy to set-up or <a href=\"https://wordpress.org/plugins/email-log/"
827
+ "\" target=\"_blank\">Email Log</a> to just log and view emails that are sent."
828
+ msgstr ""
829
+
830
+ #: includes/engine/class-bnfw-engine.php:18
831
+ msgid "Test Email:"
832
+ msgstr "Email de test:"
833
+
834
+ #: includes/engine/class-bnfw-engine.php:19
835
+ msgid ""
836
+ "This is a test email. All shortcodes below will show in place but not be "
837
+ "replaced with content."
838
+ msgstr ""
839
+
840
+ #: includes/engine/class-bnfw-engine.php:1583
841
+ msgid "Error: Download link is not available please contact support"
842
+ msgstr ""
843
+
844
+ #: includes/helpers/ajax-helpers.php:34 includes/helpers/helpers.php:38
845
+ msgid "User Roles"
846
+ msgstr "Rôles utilisateurs"
847
+
848
+ #: includes/helpers/ajax-helpers.php:57 includes/helpers/helpers.php:59
849
+ #: includes/helpers/helpers.php:64
850
+ msgid "Users"
851
+ msgstr "Abonnés"
852
+
853
+ #: includes/helpers/helpers.php:103
854
+ msgid "Non WordPress Users"
855
+ msgstr ""
856
+
857
+ #: includes/import.php:69
858
+ msgid " for "
859
+ msgstr " pour "
860
+
861
+ #: includes/import.php:69
862
+ msgid " (Auto Imported)"
863
+ msgstr ""
864
+ " \n"
865
+ "(Importé automatiquement)"
866
+
867
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:228
868
+ #, fuzzy, php-format
869
+ #| msgid ""
870
+ #| "There is a new version of %1$s available. <a target=\"_blank\" class="
871
+ #| "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
872
+ msgid ""
873
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
874
+ msgstr ""
875
+ "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
876
+ "\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a>."
877
+
878
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:236
879
+ #, fuzzy, php-format
880
+ #| msgid ""
881
+ #| "There is a new version of %1$s available. <a target=\"_blank\" class="
882
+ #| "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
883
+ #| "\">update now</a>."
884
+ msgid ""
885
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
886
+ "or %5$supdate now%6$s."
887
+ msgstr ""
888
+ "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
889
+ "\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a> ou <a "
890
+ "href=\"%4$s\">effectuer la mise à jour maintenant</a>."
891
+
892
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
893
+ msgid "You do not have permission to install plugin updates"
894
+ msgstr ""
895
+ "Vous n’avez pas les droits pour installer des mises à jour d’extensions"
896
+
897
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
898
+ msgid "Error"
899
+ msgstr "Erreur"
900
+
901
+ #: includes/license/class-bnfw-license-setting.php:18
902
+ #: includes/license/class-bnfw-license-setting.php:19
903
+ msgid "Add-on Licenses"
904
+ msgstr "Licences complémentaires"
905
+
906
+ #: includes/license/class-bnfw-license-setting.php:38
907
+ msgid "BNFW Add-on Licenses"
908
+ msgstr "Licences complémentaires BNFW"
909
+
910
+ #: includes/license/class-bnfw-license-setting.php:47
911
+ msgid "Save License"
912
+ msgstr "Enregistrer la licence"
913
+
914
+ #: includes/license/class-bnfw-license-setting.php:55
915
+ msgid ""
916
+ "<br>You have no BNFW Premium Add-ons installed yet.<br>You can buy add-ons "
917
+ "from the <a href=\""
918
+ msgstr ""
919
+
920
+ #: includes/license/class-bnfw-license-setting.php:130
921
+ msgid "Deactivate License"
922
+ msgstr "Désactiver la license"
923
+
924
+ #: includes/license/class-bnfw-license.php:140
925
+ #, php-format
926
+ msgid "%1$s License Key"
927
+ msgstr "%1$s clé de licence"
928
+
929
+ #: includes/overrides.php:41 includes/overrides.php:135
930
+ #, php-format
931
+ msgid "New user registration on your site %s:"
932
+ msgstr "Enregistrement d'un nouvel utilisateur sur votre site %s"
933
+
934
+ #: includes/overrides.php:42 includes/overrides.php:117
935
+ #: includes/overrides.php:136 includes/overrides.php:152
936
+ #, php-format
937
+ msgid "Username: %s"
938
+ msgstr "Utilisateur : %s"
939
+
940
+ #: includes/overrides.php:43 includes/overrides.php:137
941
+ #, php-format
942
+ msgid "E-mail: %s"
943
+ msgstr "Adresse email: %s"
944
+
945
+ #. translators: Password change notification email subject. %s: Site title
946
+ #: includes/overrides.php:48 includes/overrides.php:139
947
+ #, php-format
948
+ msgid "[%s] New User Registration"
949
+ msgstr "[%s] Enregistrement d'un nouvel utilisateur"
950
+
951
+ #: includes/overrides.php:118
952
+ msgid "To set your password, visit the following address:"
953
+ msgstr "Pour choisir votre mot de passe, rendez-vous à l'adresse suivante :"
954
+
955
+ #: includes/overrides.php:123
956
+ #, php-format
957
+ msgid "[%s] Your username and password info"
958
+ msgstr "[%s] Votre identifiant et votre mot de passe"
959
+
960
+ #: includes/overrides.php:153
961
+ #, php-format
962
+ msgid "Password: %s"
963
+ msgstr "Mot de passe: %s"
964
+
965
+ #: includes/overrides.php:156
966
+ #, php-format
967
+ msgid "[%s] Your username and password"
968
+ msgstr "[%s] Vos nom d'utilisateur et mot de passe"
969
+
970
+ #. translators: %s: user name
971
+ #: includes/overrides.php:184
972
+ #, php-format
973
+ msgid "Password changed for user: %s"
974
+ msgstr "Mot de passe modifié pour l'utilisateur: %s"
975
+
976
+ #. translators: %s: site title
977
+ #: includes/overrides.php:189
978
+ #, php-format
979
+ msgid "[%s] Password Changed"
980
+ msgstr ""
981
+
982
+ #. Plugin Name of the plugin/theme
983
+ msgid "Better Notifications for WP"
984
+ msgstr "Better Notifications pour WordPress"
985
+
986
+ #. Plugin URI of the plugin/theme
987
+ #, fuzzy
988
+ #| msgid "http://wordpress.org/plugins/bnfw/"
989
+ msgid "https://wordpress.org/plugins/bnfw/"
990
+ msgstr "http://wordpress.org/plugins/bnfw/"
991
+
992
+ #. Description of the plugin/theme
993
+ msgid ""
994
+ "Supercharge your WordPress notifications using a WYSIWYG editor and "
995
+ "shortcodes. Default and new notifications available. Add more power with Add-"
996
+ "ons."
997
+ msgstr ""
998
+
999
+ #. Author of the plugin/theme
1000
+ msgid "Made with Fuel"
1001
+ msgstr "Made with Fuel"
1002
+
1003
+ #. Author URI of the plugin/theme
1004
+ msgid "https://madewithfuel.com/"
1005
+ msgstr ""
1006
+
1007
+ #~ msgid "Show additional email fields"
1008
+ #~ msgstr "Afficher des champs d’emails supplémentaires"
1009
+
1010
+ #~ msgid ""
1011
+ #~ "Send customisable emails to your users for different WordPress "
1012
+ #~ "notifications."
1013
+ #~ msgstr ""
1014
+ #~ "Envoyez des emails personnalisés à vos utilisateurs pour différentes "
1015
+ #~ "notifications."
1016
+
1017
+ #~ msgid "https://betternotificationsforwp.com/"
1018
+ #~ msgstr "https://betternotificationsforwp.com/"
1019
+
1020
+ #~ msgid "Update "
1021
+ #~ msgstr "Mettre à jour"
1022
+
1023
+ #~ msgid "New User - Welcome Email"
1024
+ #~ msgstr "Nouvel utilisateur - message de bienvenue"
languages/bnfw-nl_NL.mo CHANGED
Binary file
languages/bnfw-nl_NL.po CHANGED
@@ -4,420 +4,976 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Better Notifications for WP 1.3.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
7
- "POT-Creation-Date: 2015-08-11 05:30:23+00:00\n"
 
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2018-08-01 09:57+0200\n"
12
- "Language-Team: \n"
13
- "X-Generator: Poedit 2.1.1\n"
14
- "Last-Translator: \n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "Language: nl_NL\n"
 
 
 
17
 
18
  #: includes/admin/bnfw-settings.php:14
19
- #: includes/admin/class-bnfw-notification.php:120
20
  msgid "Notification Settings"
21
  msgstr "Meldingen instellingen"
22
 
23
- #: includes/admin/bnfw-settings.php:15
24
- msgid "Settings"
25
- msgstr "Instellingen"
26
-
27
- #: includes/admin/bnfw-settings.php:36
28
  msgid "BNFW Settings"
29
  msgstr "BNFW instellingen"
30
 
31
- #: includes/admin/bnfw-settings.php:77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  msgid "Suppress SPAM comment notification"
33
  msgstr "SPAM bericht melding onderdrukken"
34
 
35
- #: includes/admin/bnfw-settings.php:82
36
- msgid "Don't send notifications for comments marked as SPAM by Akismet"
 
 
37
  msgstr ""
38
- "Verzend geen meldingen voor commentaren die als spam door Akismet worden "
39
- "gemerkt"
40
 
41
- #: includes/admin/bnfw-settings.php:95
 
 
 
 
42
  msgid "Default Email Format"
43
  msgstr "Standaard e-mail indeling"
44
 
45
- #: includes/admin/bnfw-settings.php:100
46
  msgid ""
47
  "This will apply to all emails sent out via WordPress, even those from other "
48
- "plugins. For more details, please see the <a href=\"https://wordpress.org/"
49
- "plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
 
 
 
 
 
 
 
 
 
50
  msgstr ""
51
- "Dit zal gelden voor alle e-mails verstuurd via WordPress, zelfs die van "
52
- "andere plugins. Voor meer details, zie de < a href = \"https://wordpress."
53
- "org/plugins/bnfw/faq/\" target = \"_blank\" > FAQ </a>."
54
 
55
- #: includes/admin/bnfw-settings.php:143
56
- #: includes/admin/class-bnfw-notification.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  msgid "HTML Formatting"
58
  msgstr "HTML-opmaak"
59
 
60
- #: includes/admin/bnfw-settings.php:147
61
- #: includes/admin/class-bnfw-notification.php:257
62
  msgid "Plain Text"
63
  msgstr "Platte tekst"
64
 
65
- #: includes/admin/class-bnfw-notification.php:45
66
- #: includes/admin/class-bnfw-notification.php:48
67
- #: includes/admin/class-bnfw-notification.php:49
68
  msgid "Notifications"
69
  msgstr "Meldingen"
70
 
71
- #: includes/admin/class-bnfw-notification.php:46
72
  msgid "Notification"
73
  msgstr "Melding"
74
 
75
- #: includes/admin/class-bnfw-notification.php:47
76
  msgid "Add New"
77
  msgstr "Nieuwe toevoegen"
78
 
79
- #: includes/admin/class-bnfw-notification.php:50
80
  msgid "Add New Notification"
81
  msgstr "Nieuwe melding toevoegen"
82
 
83
- #: includes/admin/class-bnfw-notification.php:51
84
  msgid "Edit Notification"
85
  msgstr "Bewerk melding"
86
 
87
- #: includes/admin/class-bnfw-notification.php:52
88
  msgid "New Notification"
89
  msgstr "Nieuwe melding"
90
 
91
- #: includes/admin/class-bnfw-notification.php:53
92
  msgid "View Notification"
93
  msgstr "Bekijk melding"
94
 
95
- #: includes/admin/class-bnfw-notification.php:54
96
  msgid "Search Notifications"
97
  msgstr "Zoek meldigen"
98
 
99
- #: includes/admin/class-bnfw-notification.php:55
100
  msgid "No Notifications found"
101
  msgstr "Geen meldingen gevonden"
102
 
103
- #: includes/admin/class-bnfw-notification.php:56
104
  msgid "No Notifications found in trash"
105
  msgstr "Geen meldingen gevonden in prullenmand"
106
 
107
- #: includes/admin/class-bnfw-notification.php:57
108
  msgid "All Notifications"
109
  msgstr "Alle meldingen"
110
 
111
- #: includes/admin/class-bnfw-notification.php:128
112
  msgid "Save Notification"
113
  msgstr "Melding opslaan"
114
 
115
- #: includes/admin/class-bnfw-notification.php:156
116
  msgid "Notification For"
117
  msgstr "Melding voor"
118
 
119
- #: includes/admin/class-bnfw-notification.php:161
120
- msgid "New Comment / Awaiting Moderation"
121
- msgstr "Nieuwe opmerking/in afwachting van beoordeling"
122
-
123
- #: includes/admin/class-bnfw-notification.php:162
124
- #: includes/admin/class-bnfw-notification.php:769
125
- msgid "New Trackback"
126
- msgstr "Nieuwe trackback op je bericht \"%s\""
127
 
128
- #: includes/admin/class-bnfw-notification.php:163
129
- #: includes/admin/class-bnfw-notification.php:772
130
- msgid "New Pingback"
131
- msgstr "Nieuwe pingback op bericht \"%s\""
132
 
133
- #: includes/admin/class-bnfw-notification.php:164
134
- #: includes/admin/class-bnfw-notification.php:781
135
- msgid "Lost Password - For Admin"
136
- msgstr "Wachtwoord kwijt"
137
 
138
- #: includes/admin/class-bnfw-notification.php:165
 
139
  msgid "New User Registration - For Admin"
140
  msgstr "[%s] Registratie nieuwe gebruiker"
141
 
142
- #: includes/admin/class-bnfw-notification.php:168
143
- #: includes/admin/class-bnfw-notification.php:778
144
- msgid "Lost Password - For User"
145
- msgstr "Wachtwoord kwijt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
 
147
- #: includes/admin/class-bnfw-notification.php:169
 
 
 
 
 
 
 
 
 
 
148
  msgid "New User Registration - For User"
149
  msgstr "Nieuwe gebruikersregistratie: %s"
150
 
151
- #: includes/admin/class-bnfw-notification.php:170
152
- msgid "New User - Welcome Email"
153
- msgstr "Verzend welkomstberichtl aan de nieuwe gebruiker."
154
-
155
- #: includes/admin/class-bnfw-notification.php:171
156
- #: includes/admin/class-bnfw-notification.php:775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  msgid "Comment Reply"
158
  msgstr "Deze reactie beantwoorden"
159
 
160
- #: includes/admin/class-bnfw-notification.php:174
161
- #: includes/admin/class-bnfw-notification.php:793
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  msgid "New Post Published"
163
  msgstr "Nieuw bericht gepubliceerd"
164
 
165
- #: includes/admin/class-bnfw-notification.php:175
166
- #: includes/admin/class-bnfw-notification.php:796
167
  msgid "Post Updated"
168
  msgstr "Bericht bijgewerkt."
169
 
170
- #: includes/admin/class-bnfw-notification.php:176
171
- #: includes/admin/class-bnfw-notification.php:799
172
  msgid "Post Pending Review"
173
  msgstr "Wachtend op review"
174
 
175
- #: includes/admin/class-bnfw-notification.php:177
176
- #: includes/admin/class-bnfw-notification.php:802
 
 
 
 
 
177
  msgid "Post Scheduled"
178
  msgstr "Bericht gepland"
179
 
180
- #: includes/admin/class-bnfw-notification.php:178
181
- #: includes/admin/class-bnfw-notification.php:805
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  msgid "New Category"
183
  msgstr "Nieuwe categorie toevoegen"
184
 
185
- #: includes/admin/class-bnfw-notification.php:179
186
- #: includes/admin/class-bnfw-notification.php:808
187
  msgid "New Tag"
188
  msgstr "Nieuwe tag toevoegen"
189
 
190
- #: includes/admin/class-bnfw-notification.php:182
 
 
 
 
 
 
 
 
 
 
 
191
  msgid "New Page Published"
192
  msgstr "Nieuwe pagina gepubliceerd"
193
 
194
- #: includes/admin/class-bnfw-notification.php:183
195
  msgid "Page Updated"
196
  msgstr "Pagina bijgewerkt."
197
 
198
- #: includes/admin/class-bnfw-notification.php:184
199
  msgid "Page Pending Review"
200
  msgstr "Pagina wacht op review"
201
 
202
- #: includes/admin/class-bnfw-notification.php:185
 
 
 
 
203
  msgid "Page Scheduled"
204
  msgstr "Pagina gepland "
205
 
206
- #: includes/admin/class-bnfw-notification.php:186
207
  msgid "Page - New Comment"
208
  msgstr "Nieuwe reactie toevoegen"
209
 
210
- #: includes/admin/class-bnfw-notification.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
  msgid "Custom Post Type"
212
  msgstr "Berichttype"
213
 
214
- #: includes/admin/class-bnfw-notification.php:201
215
- #: includes/admin/class-bnfw-notification.php:821
216
  msgid "New "
217
  msgstr "Nieuw"
218
 
219
- #: includes/admin/class-bnfw-notification.php:202
220
- msgid "Update "
221
- msgstr "Bijwerken"
222
 
223
- #: includes/admin/class-bnfw-notification.php:203
 
 
 
 
224
  msgid "Pending Review"
225
  msgstr "Wachtend op review"
226
 
227
- #: includes/admin/class-bnfw-notification.php:204
 
 
 
 
 
228
  msgid "Scheduled"
229
  msgstr "Gepland"
230
 
231
- #: includes/admin/class-bnfw-notification.php:205
232
- #: includes/admin/class-bnfw-notification.php:766
233
- msgid "New Comment"
234
- msgstr "Nieuwe reactie toevoegen"
235
 
236
- #: includes/admin/class-bnfw-notification.php:219
237
  msgid "Custom Taxonomy"
238
  msgstr "Taxonomie:"
239
 
240
- #: includes/admin/class-bnfw-notification.php:224
241
  msgid "New"
242
  msgstr "Nieuw"
243
 
244
- #: includes/admin/class-bnfw-notification.php:240
245
  msgid ""
246
- "This notification doesn't support additional email fields or shortcodes in "
247
- "the subject line."
248
  msgstr ""
249
- "Deze melding ondersteund geen additionele e-mailvelden of shortcodes in de "
250
- "regel voor \"onderwerp\""
251
 
252
- #: includes/admin/class-bnfw-notification.php:247
253
  msgid "Email Formatting"
254
  msgstr "Formattering"
255
 
256
- #: includes/admin/class-bnfw-notification.php:264 includes/tmp.php:3
 
 
 
 
 
 
257
  msgid "Additional Email Fields"
258
  msgstr "Additionele e-mailvelden"
259
 
260
- #: includes/admin/class-bnfw-notification.php:268 includes/tmp.php:7
261
- msgid "Show additional email fields"
262
- msgstr "Toon additionele e-mailvelden"
 
 
 
 
 
 
 
263
 
264
- #: includes/admin/class-bnfw-notification.php:274 includes/tmp.php:13
265
  msgid "From Name and Email"
266
  msgstr "Naam en e-mailadres zijn verplicht bij het plaatsen van een reactie"
267
 
268
- #: includes/admin/class-bnfw-notification.php:284 includes/tmp.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  msgid "CC"
270
  msgstr "CC:"
271
 
272
- #: includes/admin/class-bnfw-notification.php:296 includes/tmp.php:34
 
 
 
 
 
 
 
 
 
 
 
273
  msgid "BCC"
274
  msgstr "BCC:"
275
 
276
- #: includes/admin/class-bnfw-notification.php:311
277
- msgid "Send this notification to the Post Author only"
278
- msgstr "Verzend deze melding alleen naar de auteur van het bericht"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
 
280
- #: includes/admin/class-bnfw-notification.php:318
281
  msgid "Send To"
282
  msgstr ""
283
 
284
- #: includes/admin/class-bnfw-notification.php:332
285
- msgid "Disable this Notification for the User that triggered it"
 
 
 
 
286
  msgstr ""
287
 
288
- #: includes/admin/class-bnfw-notification.php:339
289
- #: includes/admin/class-bnfw-notification.php:692
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "Subject"
291
  msgstr ""
292
 
293
- #: includes/admin/class-bnfw-notification.php:348
 
 
 
 
 
 
 
 
 
294
  msgid "Message Body"
295
  msgstr ""
296
 
297
- #: includes/admin/class-bnfw-notification.php:352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  msgid ""
299
- "Looking for help with shortcodes? Click here to see which ones you can use "
300
- "with the selected notification."
301
  msgstr ""
302
 
303
- #: includes/admin/class-bnfw-notification.php:490
 
 
 
 
 
 
304
  msgid "Test Notification Sent."
305
  msgstr ""
306
 
307
- #: includes/admin/class-bnfw-notification.php:567
308
  msgid "Notification saved."
309
  msgstr ""
310
 
311
- #: includes/admin/class-bnfw-notification.php:585
312
- #: includes/admin/class-bnfw-notification.php:621
313
- #: includes/admin/class-bnfw-notification.php:622
314
  msgid "Save"
315
  msgstr ""
316
 
317
- #: includes/admin/class-bnfw-notification.php:595
318
- msgid "Disable Notification"
319
- msgstr "Uitschakelen melding"
 
 
 
 
 
 
 
320
 
321
- #: includes/admin/class-bnfw-notification.php:601
 
 
 
 
322
  msgid "Send Me a Test Email"
323
  msgstr "Stuur mij een test e-mail"
324
 
325
- #: includes/admin/class-bnfw-notification.php:611
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  msgid "Delete Permanently"
327
  msgstr "Permanent verwijderen"
328
 
329
- #: includes/admin/class-bnfw-notification.php:613
330
  msgid "Move to Trash"
331
  msgstr "In de prullenbak"
332
 
333
- #: includes/admin/class-bnfw-notification.php:690
334
  msgid "Notification Type"
335
  msgstr "Type melding"
336
 
337
- #: includes/admin/class-bnfw-notification.php:691
338
  msgid "Enabled?"
339
  msgstr "Actief?"
340
 
341
- #: includes/admin/class-bnfw-notification.php:693
342
  msgid "User Roles / Users"
343
  msgstr "Gebruikersrollen"
344
 
345
- #: includes/admin/class-bnfw-notification.php:784
346
- msgid "User Registration - For User"
347
- msgstr "[%s] Registratie nieuwe gebruiker"
348
 
349
- #: includes/admin/class-bnfw-notification.php:787
350
- msgid "New User - Welcome email"
351
- msgstr "Welkomst e-mail voor nieuwe gebruiker"
352
 
353
- #: includes/admin/class-bnfw-notification.php:790
354
- msgid "User Registration - For Admin"
355
- msgstr "Nieuwe gebruikersregistratie: %s"
356
 
357
- #: includes/admin/class-bnfw-notification.php:824
 
 
 
 
 
 
 
 
358
  msgid "Updated "
359
  msgstr "Bijgewerkt!"
360
 
361
- #: includes/admin/class-bnfw-notification.php:827
362
  msgid " Pending Review"
363
  msgstr "Wachtend op review"
364
 
365
- #: includes/admin/class-bnfw-notification.php:830
366
  msgid " Scheduled"
367
  msgstr "Gepland"
368
 
369
- #: includes/admin/class-bnfw-notification.php:833
370
  msgid " Comment"
371
  msgstr "Reactie"
372
 
373
- #: includes/admin/class-bnfw-notification.php:836
374
- msgid "New term in "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
  msgstr ""
376
 
377
- #: includes/import.php:60
378
  msgid " for "
379
  msgstr "voor"
380
 
381
- #: includes/import.php:60
382
  msgid " (Auto Imported)"
383
  msgstr "(Automatisch ge-importeert)"
384
 
385
- #: includes/overrides.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386
  msgid "New user registration on your site %s:"
387
  msgstr "Nieuwe gebruiker geregistreerd op de site %s:"
388
 
389
- #: includes/overrides.php:26 includes/overrides.php:42
 
 
390
  msgid "Username: %s"
391
  msgstr "Gebruikersnaam: %s"
392
 
393
- #: includes/overrides.php:27
 
394
  msgid "E-mail: %s"
395
  msgstr "E-mailadres: %s"
396
 
397
- #: includes/overrides.php:29
 
 
398
  msgid "[%s] New User Registration"
399
  msgstr "[%s] Registratie nieuwe gebruiker"
400
 
401
- #: includes/overrides.php:43
 
 
 
 
 
 
 
 
 
 
402
  msgid "Password: %s"
403
  msgstr "Wachtwoord: %s"
404
 
405
- #: includes/overrides.php:46
 
406
  msgid "[%s] Your username and password"
407
  msgstr "[%s] Je gebruikersnaam en wachtwoord"
408
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  #. Plugin Name of the plugin/theme
410
  msgid "Better Notifications for WP"
411
  msgstr ""
412
 
413
  #. Plugin URI of the plugin/theme
414
- msgid "http://wordpress.org/plugins/bnfw/"
415
  msgstr ""
416
 
417
  #. Description of the plugin/theme
418
  msgid ""
419
- "Send customisable HTML emails to your users for different WordPress "
420
- "notifications."
 
421
  msgstr ""
422
 
423
  #. Author of the plugin/theme
@@ -425,5 +981,17 @@ msgid "Made with Fuel"
425
  msgstr ""
426
 
427
  #. Author URI of the plugin/theme
428
- msgid "https://betternotificationsforwp.com/"
429
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
4
  msgstr ""
5
  "Project-Id-Version: Better Notifications for WP 1.3.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
7
+ "POT-Creation-Date: 2020-11-27 21:34+0800\n"
8
+ "PO-Revision-Date: 2020-11-28 00:03+0800\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: nl_NL\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.2\n"
 
 
 
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: bnfw.php:283 includes/admin/bnfw-settings.php:15
19
+ msgid "Settings"
20
+ msgstr "Instellingen"
21
 
22
  #: includes/admin/bnfw-settings.php:14
23
+ #: includes/admin/class-bnfw-notification.php:129
24
  msgid "Notification Settings"
25
  msgstr "Meldingen instellingen"
26
 
27
+ #: includes/admin/bnfw-settings.php:38
 
 
 
 
28
  msgid "BNFW Settings"
29
  msgstr "BNFW instellingen"
30
 
31
+ #: includes/admin/bnfw-settings.php:46
32
+ msgid "Save Settings"
33
+ msgstr "Instellingen opslaan"
34
+
35
+ #: includes/admin/bnfw-settings.php:73
36
+ msgid "Documentation"
37
+ msgstr ""
38
+
39
+ #: includes/admin/bnfw-settings.php:80
40
+ msgid "Premium Add-ons"
41
+ msgstr ""
42
+
43
+ #: includes/admin/bnfw-settings.php:87
44
+ msgid "Priority Support"
45
+ msgstr ""
46
+
47
+ #: includes/admin/bnfw-settings.php:150
48
  msgid "Suppress SPAM comment notification"
49
  msgstr "SPAM bericht melding onderdrukken"
50
 
51
+ #: includes/admin/bnfw-settings.php:150
52
+ msgid ""
53
+ "Comments that are correctly marked as SPAM by a 3rd party plugin (such as "
54
+ "Akismet) will not generate a notification if this is ticked."
55
  msgstr ""
 
 
56
 
57
+ #: includes/admin/bnfw-settings.php:155
58
+ msgid "Don't send notifications for comments marked as SPAM"
59
+ msgstr "Stuur geen meldingen voor opmerkingen die als SPAM zijn gemarkeerd"
60
+
61
+ #: includes/admin/bnfw-settings.php:167
62
  msgid "Default Email Format"
63
  msgstr "Standaard e-mail indeling"
64
 
65
+ #: includes/admin/bnfw-settings.php:167
66
  msgid ""
67
  "This will apply to all emails sent out via WordPress, even those from other "
68
+ "plugins. For more details, please see the "
69
+ msgstr ""
70
+ "Dit is van toepassing op alle e-mails die via WordPress worden verzonden, "
71
+ "zelfs die van andere plug-ins. Zie het"
72
+
73
+ #: includes/admin/bnfw-settings.php:181
74
+ msgid "Enable Content Shortcodes?"
75
+ msgstr ""
76
+
77
+ #: includes/admin/bnfw-settings.php:181
78
+ msgid "Shortcodes in the post/page content are disabled by default."
79
  msgstr ""
 
 
 
80
 
81
+ #: includes/admin/bnfw-settings.php:186
82
+ msgid "Enable shortcode output in the page/post content"
83
+ msgstr ""
84
+
85
+ #: includes/admin/bnfw-settings.php:198
86
+ msgid "Allow Usage Tracking?"
87
+ msgstr ""
88
+
89
+ #: includes/admin/bnfw-settings.php:203
90
+ msgid ""
91
+ "Allow Better Notifications for WP to anonymously track how this plugin is "
92
+ "used and help make the plugin better."
93
+ msgstr ""
94
+
95
+ #: includes/admin/bnfw-settings.php:251
96
+ #: includes/admin/class-bnfw-notification.php:433
97
  msgid "HTML Formatting"
98
  msgstr "HTML-opmaak"
99
 
100
+ #: includes/admin/bnfw-settings.php:256
101
+ #: includes/admin/class-bnfw-notification.php:439
102
  msgid "Plain Text"
103
  msgstr "Platte tekst"
104
 
105
+ #: includes/admin/class-bnfw-notification.php:52
106
+ #: includes/admin/class-bnfw-notification.php:55
107
+ #: includes/admin/class-bnfw-notification.php:56
108
  msgid "Notifications"
109
  msgstr "Meldingen"
110
 
111
+ #: includes/admin/class-bnfw-notification.php:53
112
  msgid "Notification"
113
  msgstr "Melding"
114
 
115
+ #: includes/admin/class-bnfw-notification.php:54
116
  msgid "Add New"
117
  msgstr "Nieuwe toevoegen"
118
 
119
+ #: includes/admin/class-bnfw-notification.php:57
120
  msgid "Add New Notification"
121
  msgstr "Nieuwe melding toevoegen"
122
 
123
+ #: includes/admin/class-bnfw-notification.php:58
124
  msgid "Edit Notification"
125
  msgstr "Bewerk melding"
126
 
127
+ #: includes/admin/class-bnfw-notification.php:59
128
  msgid "New Notification"
129
  msgstr "Nieuwe melding"
130
 
131
+ #: includes/admin/class-bnfw-notification.php:60
132
  msgid "View Notification"
133
  msgstr "Bekijk melding"
134
 
135
+ #: includes/admin/class-bnfw-notification.php:61
136
  msgid "Search Notifications"
137
  msgstr "Zoek meldigen"
138
 
139
+ #: includes/admin/class-bnfw-notification.php:62
140
  msgid "No Notifications found"
141
  msgstr "Geen meldingen gevonden"
142
 
143
+ #: includes/admin/class-bnfw-notification.php:63
144
  msgid "No Notifications found in trash"
145
  msgstr "Geen meldingen gevonden in prullenmand"
146
 
147
+ #: includes/admin/class-bnfw-notification.php:64
148
  msgid "All Notifications"
149
  msgstr "Alle meldingen"
150
 
151
+ #: includes/admin/class-bnfw-notification.php:138
152
  msgid "Save Notification"
153
  msgstr "Melding opslaan"
154
 
155
+ #: includes/admin/class-bnfw-notification.php:186
156
  msgid "Notification For"
157
  msgstr "Melding voor"
158
 
159
+ #: includes/admin/class-bnfw-notification.php:187
160
+ msgid ""
161
+ "E.g. If you select \"New Post Published\" from the list on the right, this "
162
+ "notification will be sent when a new post is published."
163
+ msgstr ""
 
 
 
164
 
165
+ #: includes/admin/class-bnfw-notification.php:191
166
+ msgid "Select the notification type"
167
+ msgstr "Selecteer het meldingstype"
 
168
 
169
+ #: includes/admin/class-bnfw-notification.php:192
170
+ msgid "Admin"
171
+ msgstr ""
 
172
 
173
+ #: includes/admin/class-bnfw-notification.php:194
174
+ #: includes/admin/class-bnfw-notification.php:1302
175
  msgid "New User Registration - For Admin"
176
  msgstr "[%s] Registratie nieuwe gebruiker"
177
 
178
+ #: includes/admin/class-bnfw-notification.php:196
179
+ #: includes/admin/class-bnfw-notification.php:1269
180
+ msgid "User Lost Password - For Admin"
181
+ msgstr "Gebruiker wachtwoord verloren - voor admin"
182
+
183
+ #: includes/admin/class-bnfw-notification.php:198
184
+ #: includes/admin/class-bnfw-notification.php:1272
185
+ msgid "Password Changed - For Admin"
186
+ msgstr "Wachtwoord gewijzigd - voor Admin"
187
+
188
+ #: includes/admin/class-bnfw-notification.php:200
189
+ #: includes/admin/class-bnfw-notification.php:1275
190
+ msgid "User Email Changed - For Admin"
191
+ msgstr "E-mailadres van gebruiker gewijzigd - voor admin"
192
+
193
+ #: includes/admin/class-bnfw-notification.php:202
194
+ #: includes/admin/class-bnfw-notification.php:1308
195
+ msgid "User Role Changed - For Admin"
196
+ msgstr "Gebruikersrol gewijzigd - voor Admin"
197
+
198
+ #: includes/admin/class-bnfw-notification.php:204
199
+ #: includes/admin/class-bnfw-notification.php:1296
200
+ msgid "User Logged In - For Admin"
201
+ msgstr "Gebruiker aangemeld - voor admin"
202
+
203
+ #: includes/admin/class-bnfw-notification.php:206
204
+ #: includes/admin/class-bnfw-notification.php:1287
205
+ msgid "WordPress Core Automatic Background Updates"
206
+ msgstr ""
207
+
208
+ #: includes/admin/class-bnfw-notification.php:210
209
+ #: includes/admin/class-bnfw-notification.php:1344
210
+ msgid "Privacy - Confirm Action: Export Data Request - For Admin"
211
+ msgstr ""
212
 
213
+ #: includes/admin/class-bnfw-notification.php:214
214
+ #: includes/admin/class-bnfw-notification.php:1347
215
+ msgid "Privacy - Confirm Action: Erase Data Request - For Admin"
216
+ msgstr ""
217
+
218
+ #: includes/admin/class-bnfw-notification.php:222
219
+ msgid "Transactional"
220
+ msgstr ""
221
+
222
+ #: includes/admin/class-bnfw-notification.php:224
223
+ #: includes/admin/class-bnfw-notification.php:1290
224
  msgid "New User Registration - For User"
225
  msgstr "Nieuwe gebruikersregistratie: %s"
226
 
227
+ #: includes/admin/class-bnfw-notification.php:226
228
+ #: includes/admin/class-bnfw-notification.php:1299
229
+ msgid "New User - Post-registration Email"
230
+ msgstr "Nieuwe gebruiker - E-mail na registratie"
231
+
232
+ #: includes/admin/class-bnfw-notification.php:228
233
+ #: includes/admin/class-bnfw-notification.php:1266
234
+ msgid "User Lost Password - For User"
235
+ msgstr "Wachtwoord verloren gebruiker - voor gebruiker"
236
+
237
+ #: includes/admin/class-bnfw-notification.php:230
238
+ #: includes/admin/class-bnfw-notification.php:1278
239
+ msgid "Password Changed - For User"
240
+ msgstr "Wachtwoord gewijzigd - voor gebruiker"
241
+
242
+ #: includes/admin/class-bnfw-notification.php:232
243
+ #: includes/admin/class-bnfw-notification.php:1281
244
+ msgid "User Email Changed Confirmation - For User"
245
+ msgstr "Bevestiging e-mail gebruiker gewijzigd - voor gebruiker"
246
+
247
+ #: includes/admin/class-bnfw-notification.php:235
248
+ #: includes/admin/class-bnfw-notification.php:1284
249
+ msgid "User Email Changed - For User"
250
+ msgstr "E-mailadres van gebruiker gewijzigd - voor gebruiker"
251
+
252
+ #: includes/admin/class-bnfw-notification.php:237
253
+ #: includes/admin/class-bnfw-notification.php:1305
254
+ msgid "User Role Changed - For User"
255
+ msgstr "Gebruikersrol gewijzigd - voor gebruiker"
256
+
257
+ #: includes/admin/class-bnfw-notification.php:239
258
+ #: includes/admin/class-bnfw-notification.php:1293
259
+ msgid "User Logged In - For User"
260
+ msgstr "Gebruiker aangemeld - voor gebruiker"
261
+
262
+ #: includes/admin/class-bnfw-notification.php:241
263
+ #: includes/admin/class-bnfw-notification.php:375
264
+ #: includes/admin/class-bnfw-notification.php:1263
265
  msgid "Comment Reply"
266
  msgstr "Deze reactie beantwoorden"
267
 
268
+ #: includes/admin/class-bnfw-notification.php:245
269
+ msgid "Privacy - Confirm Action: Export Data Request - For User"
270
+ msgstr ""
271
+
272
+ #: includes/admin/class-bnfw-notification.php:249
273
+ msgid "Privacy - Confirm Action: Erase Data Request - For User"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-bnfw-notification.php:253
277
+ #: includes/admin/class-bnfw-notification.php:1350
278
+ msgid "Privacy - Data Export - For User"
279
+ msgstr ""
280
+
281
+ #: includes/admin/class-bnfw-notification.php:257
282
+ #: includes/admin/class-bnfw-notification.php:1353
283
+ msgid "Privacy - Data Erased - For User"
284
+ msgstr ""
285
+
286
+ #: includes/admin/class-bnfw-notification.php:267
287
+ #: includes/admin/class-bnfw-notification.php:1311
288
  msgid "New Post Published"
289
  msgstr "Nieuw bericht gepubliceerd"
290
 
291
+ #: includes/admin/class-bnfw-notification.php:269
292
+ #: includes/admin/class-bnfw-notification.php:1314
293
  msgid "Post Updated"
294
  msgstr "Bericht bijgewerkt."
295
 
296
+ #: includes/admin/class-bnfw-notification.php:271
297
+ #: includes/admin/class-bnfw-notification.php:1317
298
  msgid "Post Pending Review"
299
  msgstr "Wachtend op review"
300
 
301
+ #: includes/admin/class-bnfw-notification.php:273
302
+ #: includes/admin/class-bnfw-notification.php:1320
303
+ msgid "New Private Post"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-bnfw-notification.php:275
307
+ #: includes/admin/class-bnfw-notification.php:1323
308
  msgid "Post Scheduled"
309
  msgstr "Bericht gepland"
310
 
311
+ #: includes/admin/class-bnfw-notification.php:277
312
+ #: includes/admin/class-bnfw-notification.php:1326
313
+ msgid "Published Post Moved to Trash"
314
+ msgstr "Gepubliceerde post naar prullenbak verplaatst"
315
+
316
+ #: includes/admin/class-bnfw-notification.php:279
317
+ #: includes/admin/class-bnfw-notification.php:367
318
+ #: includes/admin/class-bnfw-notification.php:1248
319
+ msgid "New Comment"
320
+ msgstr "Nieuwe reactie toevoegen"
321
+
322
+ #: includes/admin/class-bnfw-notification.php:282
323
+ #: includes/admin/class-bnfw-notification.php:369
324
+ #: includes/admin/class-bnfw-notification.php:1254
325
+ #: includes/admin/class-bnfw-notification.php:1407
326
+ msgid "New Comment Awaiting Moderation"
327
+ msgstr "Nieuwe reactie wacht op moderatie"
328
+
329
+ #: includes/admin/class-bnfw-notification.php:285
330
+ #: includes/admin/class-bnfw-notification.php:1251
331
+ msgid "Post - Comment Approved"
332
+ msgstr ""
333
+
334
+ #: includes/admin/class-bnfw-notification.php:288
335
+ #: includes/admin/class-bnfw-notification.php:1332
336
  msgid "New Category"
337
  msgstr "Nieuwe categorie toevoegen"
338
 
339
+ #: includes/admin/class-bnfw-notification.php:290
340
+ #: includes/admin/class-bnfw-notification.php:1335
341
  msgid "New Tag"
342
  msgstr "Nieuwe tag toevoegen"
343
 
344
+ #: includes/admin/class-bnfw-notification.php:292
345
+ #: includes/admin/class-bnfw-notification.php:1257
346
+ msgid "New Trackback"
347
+ msgstr "Nieuwe trackback op je bericht \"%s\""
348
+
349
+ #: includes/admin/class-bnfw-notification.php:294
350
+ #: includes/admin/class-bnfw-notification.php:1260
351
+ msgid "New Pingback"
352
+ msgstr "Nieuwe pingback op bericht \"%s\""
353
+
354
+ #: includes/admin/class-bnfw-notification.php:301
355
+ #: includes/admin/class-bnfw-notification.php:1329
356
  msgid "New Page Published"
357
  msgstr "Nieuwe pagina gepubliceerd"
358
 
359
+ #: includes/admin/class-bnfw-notification.php:303
360
  msgid "Page Updated"
361
  msgstr "Pagina bijgewerkt."
362
 
363
+ #: includes/admin/class-bnfw-notification.php:305
364
  msgid "Page Pending Review"
365
  msgstr "Pagina wacht op review"
366
 
367
+ #: includes/admin/class-bnfw-notification.php:307
368
+ msgid "New Private Page"
369
+ msgstr ""
370
+
371
+ #: includes/admin/class-bnfw-notification.php:309
372
  msgid "Page Scheduled"
373
  msgstr "Pagina gepland "
374
 
375
+ #: includes/admin/class-bnfw-notification.php:311
376
  msgid "Page - New Comment"
377
  msgstr "Nieuwe reactie toevoegen"
378
 
379
+ #: includes/admin/class-bnfw-notification.php:313
380
+ msgid "Page - New Comment Awaiting Moderation"
381
+ msgstr "Pagina - Nieuwe reactie wacht op moderatie"
382
+
383
+ #: includes/admin/class-bnfw-notification.php:316
384
+ #: includes/admin/class-bnfw-notification.php:1365
385
+ msgid "Page - Comment Approved"
386
+ msgstr "Pagina - Reactie goedgekeurd"
387
+
388
+ #: includes/admin/class-bnfw-notification.php:319
389
+ msgid "Page - Comment Reply"
390
+ msgstr "Pagina - Reactie Reageren"
391
+
392
+ #: includes/admin/class-bnfw-notification.php:326
393
+ #: includes/admin/class-bnfw-notification.php:1356
394
+ msgid "New Media Published"
395
+ msgstr "Nieuwe media gepubliceerd"
396
+
397
+ #: includes/admin/class-bnfw-notification.php:328
398
+ #: includes/admin/class-bnfw-notification.php:1359
399
+ msgid "Media Updated"
400
+ msgstr "Pagina bijgewerkt."
401
+
402
+ #: includes/admin/class-bnfw-notification.php:330
403
+ #: includes/admin/class-bnfw-notification.php:1362
404
+ msgid "Media - New Comment"
405
+ msgstr "Media - Nieuwe reactie"
406
+
407
+ #: includes/admin/class-bnfw-notification.php:332
408
+ #: includes/admin/class-bnfw-notification.php:1368
409
+ msgid "Media - Comment Approved"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-bnfw-notification.php:335
413
+ #: includes/admin/class-bnfw-notification.php:1371
414
+ msgid "Media - New Comment Awaiting Moderation"
415
+ msgstr "Media - Nieuwe reactie wacht op moderatie"
416
+
417
+ #: includes/admin/class-bnfw-notification.php:337
418
+ #: includes/admin/class-bnfw-notification.php:1374
419
+ msgid "Media - Comment Reply"
420
+ msgstr "Media - Reactie Reageren"
421
+
422
+ #: includes/admin/class-bnfw-notification.php:355
423
  msgid "Custom Post Type"
424
  msgstr "Berichttype"
425
 
426
+ #: includes/admin/class-bnfw-notification.php:357
427
+ #: includes/admin/class-bnfw-notification.php:1389
428
  msgid "New "
429
  msgstr "Nieuw"
430
 
431
+ #: includes/admin/class-bnfw-notification.php:357
432
+ msgid " Published"
433
+ msgstr "Gepubliceerd"
434
 
435
+ #: includes/admin/class-bnfw-notification.php:359
436
+ msgid "Updated"
437
+ msgstr "Bijgewerkt"
438
+
439
+ #: includes/admin/class-bnfw-notification.php:361
440
  msgid "Pending Review"
441
  msgstr "Wachtend op review"
442
 
443
+ #: includes/admin/class-bnfw-notification.php:363
444
+ #: includes/admin/class-bnfw-notification.php:1401
445
+ msgid "New Private "
446
+ msgstr ""
447
+
448
+ #: includes/admin/class-bnfw-notification.php:365
449
  msgid "Scheduled"
450
  msgstr "Gepland"
451
 
452
+ #: includes/admin/class-bnfw-notification.php:372
453
+ msgid "Comment Approved"
454
+ msgstr "Reactie goedgekeurd"
 
455
 
456
+ #: includes/admin/class-bnfw-notification.php:394
457
  msgid "Custom Taxonomy"
458
  msgstr "Taxonomie:"
459
 
460
+ #: includes/admin/class-bnfw-notification.php:400
461
  msgid "New"
462
  msgstr "Nieuw"
463
 
464
+ #: includes/admin/class-bnfw-notification.php:419
465
  msgid ""
466
+ "This notification doesn't support additional email fields due to a "
467
+ "limitation in WordPress."
468
  msgstr ""
469
+ "Deze melding ondersteunt geen extra e-mailvelden vanwege een beperking in "
470
+ "WordPress."
471
 
472
+ #: includes/admin/class-bnfw-notification.php:426
473
  msgid "Email Formatting"
474
  msgstr "Formattering"
475
 
476
+ #: includes/admin/class-bnfw-notification.php:427
477
+ msgid ""
478
+ "How do you want to format the sent email? HTML is recommended as it'll show "
479
+ "images and links correctly."
480
+ msgstr ""
481
+
482
+ #: includes/admin/class-bnfw-notification.php:448
483
  msgid "Additional Email Fields"
484
  msgstr "Additionele e-mailvelden"
485
 
486
+ #: includes/admin/class-bnfw-notification.php:449
487
+ msgid ""
488
+ "This should be fairly self explanatory but if you're unsure, tick this "
489
+ "checkbox and have a look at the available options. You can always untick it "
490
+ "again should you decide you don't need to use it."
491
+ msgstr ""
492
+
493
+ #: includes/admin/class-bnfw-notification.php:454
494
+ msgid "Set \"From\" Name & Email, Reply To, CC, BCC"
495
+ msgstr ""
496
 
497
+ #: includes/admin/class-bnfw-notification.php:461
498
  msgid "From Name and Email"
499
  msgstr "Naam en e-mailadres zijn verplicht bij het plaatsen van een reactie"
500
 
501
+ #: includes/admin/class-bnfw-notification.php:462
502
+ msgid ""
503
+ "If you want to send the email from your site name and email address instead "
504
+ "of the default \"WordPress\" from \"wordpress@domain.com\", this is where "
505
+ "you can do it."
506
+ msgstr ""
507
+
508
+ #: includes/admin/class-bnfw-notification.php:466
509
+ msgid "Site Name"
510
+ msgstr ""
511
+
512
+ #: includes/admin/class-bnfw-notification.php:468
513
+ msgid "Site Email"
514
+ msgstr ""
515
+
516
+ #: includes/admin/class-bnfw-notification.php:475
517
+ msgid "Reply To"
518
+ msgstr ""
519
+
520
+ #: includes/admin/class-bnfw-notification.php:476
521
+ msgid ""
522
+ "If you want any replies to your email notification to go to another person, "
523
+ "fill in this box with their name and email address."
524
+ msgstr ""
525
+
526
+ #: includes/admin/class-bnfw-notification.php:480
527
+ msgid "Name"
528
+ msgstr ""
529
+
530
+ #: includes/admin/class-bnfw-notification.php:482
531
+ msgid "Email"
532
+ msgstr "E-mail"
533
+
534
+ #: includes/admin/class-bnfw-notification.php:488
535
  msgid "CC"
536
  msgstr "CC:"
537
 
538
+ #: includes/admin/class-bnfw-notification.php:489
539
+ msgid "Publicly copy in any other users or user roles to this email."
540
+ msgstr ""
541
+
542
+ #: includes/admin/class-bnfw-notification.php:494
543
+ #: includes/admin/class-bnfw-notification.php:508
544
+ #: includes/admin/class-bnfw-notification.php:557
545
+ #: includes/admin/class-bnfw-notification.php:575
546
+ msgid "Select User Roles / Users"
547
+ msgstr "Selecteer Gebruikersrollen / gebruikers"
548
+
549
+ #: includes/admin/class-bnfw-notification.php:502
550
  msgid "BCC"
551
  msgstr "BCC:"
552
 
553
+ #: includes/admin/class-bnfw-notification.php:503
554
+ msgid "Privately copy in any other users or user roles to this email."
555
+ msgstr ""
556
+
557
+ #: includes/admin/class-bnfw-notification.php:518
558
+ msgid "Send to Author"
559
+ msgstr ""
560
+
561
+ #: includes/admin/class-bnfw-notification.php:519
562
+ msgid ""
563
+ "E.g. If you want a new post published notification to go to the post author, "
564
+ "tick this box."
565
+ msgstr ""
566
+
567
+ #: includes/admin/class-bnfw-notification.php:526
568
+ msgid "Send this notification to the Author"
569
+ msgstr "Stuur deze melding naar de auteur"
570
+
571
+ #: includes/admin/class-bnfw-notification.php:536
572
+ msgid ""
573
+ "E.g. If you're an editor and regularly update your posts, you might not want "
574
+ "to be emailed about this all the time. Ticking this box will prevent you "
575
+ "from receiving emails about your own changes."
576
+ msgstr ""
577
+
578
+ #: includes/admin/class-bnfw-notification.php:542
579
+ msgid "Do not send this Notification to the User that triggered it"
580
+ msgstr ""
581
+ "Stuur deze kennisgeving niet naar de gebruiker die deze heeft geactiveerd"
582
 
583
+ #: includes/admin/class-bnfw-notification.php:551
584
  msgid "Send To"
585
  msgstr ""
586
 
587
+ #: includes/admin/class-bnfw-notification.php:552
588
+ msgid "Choose the users and/or user roles to send this email notification to."
589
+ msgstr ""
590
+
591
+ #: includes/admin/class-bnfw-notification.php:565
592
+ msgid "Except For"
593
  msgstr ""
594
 
595
+ #: includes/admin/class-bnfw-notification.php:568
596
+ msgid ""
597
+ "Choose the users and/or user roles that this notification should not be sent "
598
+ "to."
599
+ msgstr ""
600
+
601
+ #: includes/admin/class-bnfw-notification.php:593
602
+ msgid ""
603
+ "You have chosen to send this notification to over 200 users. Please check "
604
+ "the email sending rate limit at your host before sending."
605
+ msgstr ""
606
+
607
+ #: includes/admin/class-bnfw-notification.php:603
608
+ #: includes/admin/class-bnfw-notification.php:1129
609
  msgid "Subject"
610
  msgstr ""
611
 
612
+ #: includes/admin/class-bnfw-notification.php:604
613
+ msgid "Notification subject. You can use "
614
+ msgstr "Onderwerp van melding. Je kunt gebruiken"
615
+
616
+ #: includes/admin/class-bnfw-notification.php:604
617
+ #: includes/admin/class-bnfw-notification.php:618
618
+ msgid " here."
619
+ msgstr ""
620
+
621
+ #: includes/admin/class-bnfw-notification.php:617
622
  msgid "Message Body"
623
  msgstr ""
624
 
625
+ #: includes/admin/class-bnfw-notification.php:618
626
+ msgid "Notification message. You can use "
627
+ msgstr "Meldingsbericht. Je kunt gebruiken"
628
+
629
+ #: includes/admin/class-bnfw-notification.php:626
630
+ msgid "Need some more help?"
631
+ msgstr ""
632
+
633
+ #: includes/admin/class-bnfw-notification.php:636
634
+ msgid "Insert Default Content"
635
+ msgstr "Voeg standaardinhoud in"
636
+
637
+ #: includes/admin/class-bnfw-notification.php:640
638
+ msgid "Read Documentation"
639
+ msgstr ""
640
+
641
+ #: includes/admin/class-bnfw-notification.php:644
642
+ msgid "Find Shortcodes"
643
+ msgstr ""
644
+
645
+ #: includes/admin/class-bnfw-notification.php:655
646
  msgid ""
647
+ "Stop additional paragraph and line break HTML from being inserted into my "
648
+ "notifications"
649
  msgstr ""
650
 
651
+ #: includes/admin/class-bnfw-notification.php:710
652
+ msgid ""
653
+ "You must choose at least one User or User Role to send the notification to "
654
+ "before you can save"
655
+ msgstr ""
656
+
657
+ #: includes/admin/class-bnfw-notification.php:825
658
  msgid "Test Notification Sent."
659
  msgstr ""
660
 
661
+ #: includes/admin/class-bnfw-notification.php:915
662
  msgid "Notification saved."
663
  msgstr ""
664
 
665
+ #: includes/admin/class-bnfw-notification.php:934
666
+ #: includes/admin/class-bnfw-notification.php:992
667
+ #: includes/admin/class-bnfw-notification.php:994
668
  msgid "Save"
669
  msgstr ""
670
 
671
+ #: includes/admin/class-bnfw-notification.php:942
672
+ msgid ""
673
+ "Use this to enable or disable notifications. If you want to disable a "
674
+ "default WordPress notification, just create it on the left, then disable it "
675
+ "here."
676
+ msgstr ""
677
+
678
+ #: includes/admin/class-bnfw-notification.php:949
679
+ msgid "Notification Enabled"
680
+ msgstr "Melding ingeschakeld"
681
 
682
+ #: includes/admin/class-bnfw-notification.php:956
683
+ msgid "Notification Disabled"
684
+ msgstr "Melding uitgeschakeld"
685
+
686
+ #: includes/admin/class-bnfw-notification.php:967
687
  msgid "Send Me a Test Email"
688
  msgstr "Stuur mij een test e-mail"
689
 
690
+ #: includes/admin/class-bnfw-notification.php:969
691
+ msgid ""
692
+ "This will send you (the currently logged in user) a notification so that you "
693
+ "can check for any issues with formatting – it’s doesn't mean that a "
694
+ "notification will send correctly in the future. You can read about how to "
695
+ "improve email delivery"
696
+ msgstr ""
697
+
698
+ #: includes/admin/class-bnfw-notification.php:969
699
+ msgid "here"
700
+ msgstr ""
701
+
702
+ #: includes/admin/class-bnfw-notification.php:969
703
+ msgid ". Shortcodes will not be replaced with content."
704
+ msgstr ""
705
+
706
+ #: includes/admin/class-bnfw-notification.php:980
707
  msgid "Delete Permanently"
708
  msgstr "Permanent verwijderen"
709
 
710
+ #: includes/admin/class-bnfw-notification.php:982
711
  msgid "Move to Trash"
712
  msgstr "In de prullenbak"
713
 
714
+ #: includes/admin/class-bnfw-notification.php:1127
715
  msgid "Notification Type"
716
  msgstr "Type melding"
717
 
718
+ #: includes/admin/class-bnfw-notification.php:1128
719
  msgid "Enabled?"
720
  msgstr "Actief?"
721
 
722
+ #: includes/admin/class-bnfw-notification.php:1130
723
  msgid "User Roles / Users"
724
  msgstr "Gebruikersrollen"
725
 
726
+ #: includes/admin/class-bnfw-notification.php:1131
727
+ msgid "Excluded User Roles / Users"
728
+ msgstr "Uitgesloten gebruikersrollen / gebruikers"
729
 
730
+ #: includes/admin/class-bnfw-notification.php:1172
731
+ msgid ", Post Author"
732
+ msgstr ""
733
 
734
+ #: includes/admin/class-bnfw-notification.php:1338
735
+ msgid "Privacy Confirm Action: Export Data Request – For User"
736
+ msgstr ""
737
 
738
+ #: includes/admin/class-bnfw-notification.php:1341
739
+ msgid "Privacy – Confirm Action: Erase Data Request – For User"
740
+ msgstr ""
741
+
742
+ #: includes/admin/class-bnfw-notification.php:1389
743
+ msgid "Published"
744
+ msgstr "Gepubliceerd"
745
+
746
+ #: includes/admin/class-bnfw-notification.php:1392
747
  msgid "Updated "
748
  msgstr "Bijgewerkt!"
749
 
750
+ #: includes/admin/class-bnfw-notification.php:1395
751
  msgid " Pending Review"
752
  msgstr "Wachtend op review"
753
 
754
+ #: includes/admin/class-bnfw-notification.php:1398
755
  msgid " Scheduled"
756
  msgstr "Gepland"
757
 
758
+ #: includes/admin/class-bnfw-notification.php:1404
759
  msgid " Comment"
760
  msgstr "Reactie"
761
 
762
+ #: includes/admin/class-bnfw-notification.php:1410
763
+ msgid " Comment Reply"
764
+ msgstr "Reageer Reageer"
765
+
766
+ #: includes/admin/class-bnfw-notification.php:1413
767
+ msgid " Comment Approved"
768
+ msgstr "Reactie goedgekeurd"
769
+
770
+ #: includes/admin/class-bnfw-notification.php:1418
771
+ msgid "New Term"
772
+ msgstr "Nieuwe term"
773
+
774
+ #: includes/admin/class-bnfw-notification.php:1420
775
+ msgid "New Term in "
776
+ msgstr ""
777
+
778
+ #: includes/admin/class-bnfw-notification.php:1440
779
+ msgid "Enable Notifications"
780
+ msgstr "Notificaties aanzetten"
781
+
782
+ #: includes/admin/class-bnfw-notification.php:1441
783
+ msgid "Disable Notifications"
784
+ msgstr "Meldingen uitschakelen"
785
+
786
+ #: includes/admin/class-bnfw-notification.php:1502
787
+ msgid "Enable Notification"
788
+ msgstr "Melding inschakelen"
789
+
790
+ #: includes/admin/class-bnfw-notification.php:1510
791
+ msgid "Disable Notification"
792
+ msgstr "Uitschakelen melding"
793
+
794
+ #: includes/admin/class-bnfw-notification.php:1568
795
+ msgid "Enabled 1 Notification."
796
+ msgstr "Ingeschakeld 1 Melding."
797
+
798
+ #: includes/admin/class-bnfw-notification.php:1572
799
+ msgid "Disabled 1 Notification."
800
+ msgstr "Uitgeschakeld 1 Melding."
801
+
802
+ #: includes/admin/class-bnfw-notification.php:1578
803
+ #, php-format
804
+ msgid "Enabled %s Notification."
805
+ msgid_plural "Enabled %s Notifications."
806
+ msgstr[0] "%s melding ingeschakeld."
807
+ msgstr[1] "%s meldingen ingeschakeld."
808
+
809
+ #: includes/admin/class-bnfw-notification.php:1588
810
+ #, php-format
811
+ msgid "Disabled %s Notification."
812
+ msgid_plural "Disabled %s Notifications."
813
+ msgstr[0] "%s melding uitgeschakeld."
814
+ msgstr[1] "%s meldingen uitgeschakeld."
815
+
816
+ #: includes/admin/class-bnfw-notification.php:1602
817
+ msgid ""
818
+ "If you send out notifications with BNFW but don't receive them, you may need "
819
+ "to install an SMTP plugin to <a href=\"https://betternotificationsforwp.com/"
820
+ "documentation/getting-started/how-to-improve-email-delivery/\" target="
821
+ "\"_blank\">improve email deliverability</a>. I recommend using <a href="
822
+ "\"https://wordpress.org/plugins/post-smtp/\" target=\"_blank\">Post SMTP</a> "
823
+ "as it's easy to set-up or <a href=\"https://wordpress.org/plugins/email-log/"
824
+ "\" target=\"_blank\">Email Log</a> to just log and view emails that are sent."
825
+ msgstr ""
826
+
827
+ #: includes/engine/class-bnfw-engine.php:18
828
+ msgid "Test Email:"
829
+ msgstr "Test e-mail:"
830
+
831
+ #: includes/engine/class-bnfw-engine.php:19
832
+ msgid ""
833
+ "This is a test email. All shortcodes below will show in place but not be "
834
+ "replaced with content."
835
+ msgstr ""
836
+
837
+ #: includes/engine/class-bnfw-engine.php:1583
838
+ msgid "Error: Download link is not available please contact support"
839
+ msgstr ""
840
+
841
+ #: includes/helpers/ajax-helpers.php:34 includes/helpers/helpers.php:38
842
+ msgid "User Roles"
843
+ msgstr "Gebruikersrollen"
844
+
845
+ #: includes/helpers/ajax-helpers.php:57 includes/helpers/helpers.php:59
846
+ #: includes/helpers/helpers.php:64
847
+ msgid "Users"
848
+ msgstr ""
849
+
850
+ #: includes/helpers/helpers.php:103
851
+ msgid "Non WordPress Users"
852
  msgstr ""
853
 
854
+ #: includes/import.php:69
855
  msgid " for "
856
  msgstr "voor"
857
 
858
+ #: includes/import.php:69
859
  msgid " (Auto Imported)"
860
  msgstr "(Automatisch ge-importeert)"
861
 
862
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:228
863
+ #, php-format
864
+ msgid ""
865
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
866
+ msgstr ""
867
+
868
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:236
869
+ #, php-format
870
+ msgid ""
871
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
872
+ "or %5$supdate now%6$s."
873
+ msgstr ""
874
+
875
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
876
+ msgid "You do not have permission to install plugin updates"
877
+ msgstr ""
878
+
879
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
880
+ msgid "Error"
881
+ msgstr ""
882
+
883
+ #: includes/license/class-bnfw-license-setting.php:18
884
+ #: includes/license/class-bnfw-license-setting.php:19
885
+ msgid "Add-on Licenses"
886
+ msgstr ""
887
+
888
+ #: includes/license/class-bnfw-license-setting.php:38
889
+ msgid "BNFW Add-on Licenses"
890
+ msgstr ""
891
+
892
+ #: includes/license/class-bnfw-license-setting.php:47
893
+ msgid "Save License"
894
+ msgstr ""
895
+
896
+ #: includes/license/class-bnfw-license-setting.php:55
897
+ msgid ""
898
+ "<br>You have no BNFW Premium Add-ons installed yet.<br>You can buy add-ons "
899
+ "from the <a href=\""
900
+ msgstr ""
901
+
902
+ #: includes/license/class-bnfw-license-setting.php:130
903
+ msgid "Deactivate License"
904
+ msgstr ""
905
+
906
+ #: includes/license/class-bnfw-license.php:140
907
+ #, php-format
908
+ msgid "%1$s License Key"
909
+ msgstr ""
910
+
911
+ #: includes/overrides.php:41 includes/overrides.php:135
912
+ #, php-format
913
  msgid "New user registration on your site %s:"
914
  msgstr "Nieuwe gebruiker geregistreerd op de site %s:"
915
 
916
+ #: includes/overrides.php:42 includes/overrides.php:117
917
+ #: includes/overrides.php:136 includes/overrides.php:152
918
+ #, php-format
919
  msgid "Username: %s"
920
  msgstr "Gebruikersnaam: %s"
921
 
922
+ #: includes/overrides.php:43 includes/overrides.php:137
923
+ #, php-format
924
  msgid "E-mail: %s"
925
  msgstr "E-mailadres: %s"
926
 
927
+ #. translators: Password change notification email subject. %s: Site title
928
+ #: includes/overrides.php:48 includes/overrides.php:139
929
+ #, php-format
930
  msgid "[%s] New User Registration"
931
  msgstr "[%s] Registratie nieuwe gebruiker"
932
 
933
+ #: includes/overrides.php:118
934
+ msgid "To set your password, visit the following address:"
935
+ msgstr ""
936
+
937
+ #: includes/overrides.php:123
938
+ #, php-format
939
+ msgid "[%s] Your username and password info"
940
+ msgstr "[%s] Uw gebruikersnaam en wachtwoordinformatie"
941
+
942
+ #: includes/overrides.php:153
943
+ #, php-format
944
  msgid "Password: %s"
945
  msgstr "Wachtwoord: %s"
946
 
947
+ #: includes/overrides.php:156
948
+ #, php-format
949
  msgid "[%s] Your username and password"
950
  msgstr "[%s] Je gebruikersnaam en wachtwoord"
951
 
952
+ #. translators: %s: user name
953
+ #: includes/overrides.php:184
954
+ #, php-format
955
+ msgid "Password changed for user: %s"
956
+ msgstr "Wachtwoord gewijzigd voor gebruiker: %s"
957
+
958
+ #. translators: %s: site title
959
+ #: includes/overrides.php:189
960
+ #, php-format
961
+ msgid "[%s] Password Changed"
962
+ msgstr ""
963
+
964
  #. Plugin Name of the plugin/theme
965
  msgid "Better Notifications for WP"
966
  msgstr ""
967
 
968
  #. Plugin URI of the plugin/theme
969
+ msgid "https://wordpress.org/plugins/bnfw/"
970
  msgstr ""
971
 
972
  #. Description of the plugin/theme
973
  msgid ""
974
+ "Supercharge your WordPress notifications using a WYSIWYG editor and "
975
+ "shortcodes. Default and new notifications available. Add more power with Add-"
976
+ "ons."
977
  msgstr ""
978
 
979
  #. Author of the plugin/theme
981
  msgstr ""
982
 
983
  #. Author URI of the plugin/theme
984
+ msgid "https://madewithfuel.com/"
985
  msgstr ""
986
+
987
+ #~ msgid "New User - Welcome Email"
988
+ #~ msgstr "Verzend welkomstberichtl aan de nieuwe gebruiker."
989
+
990
+ #~ msgid "Update "
991
+ #~ msgstr "Bijwerken"
992
+
993
+ #~ msgid "Show additional email fields"
994
+ #~ msgstr "Toon additionele e-mailvelden"
995
+
996
+ #~ msgid "New User - Welcome email"
997
+ #~ msgstr "Welkomst e-mail voor nieuwe gebruiker"
languages/bnfw-pt_BR.mo CHANGED
Binary file
languages/bnfw-pt_BR.po CHANGED
@@ -4,402 +4,1012 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Better Notifications for WP 1.3.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
7
- "POT-Creation-Date: 2015-08-24 17:09-0300\n"
 
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-08-28 16:52-0300\n"
12
- "Last-Translator: Glayton Caixeta <contato@caixeta.com>\n"
13
- "Language-Team: \n"
14
- "X-Generator: Poedit 1.8.2\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
- "Language: pt_BR\n"
17
-
18
- #: includes/admin/bnfw-settings.php:14 includes/admin/class-bnfw-notification.php:120
19
- msgid "Notification Settings"
20
- msgstr "Configurações de notificações"
21
 
22
- #: includes/admin/bnfw-settings.php:15
23
  msgid "Settings"
24
  msgstr "Configurações"
25
 
26
- #: includes/admin/bnfw-settings.php:36
 
 
 
 
 
27
  msgid "BNFW Settings"
28
  msgstr "Configurações do BNFW"
29
 
30
- #: includes/admin/bnfw-settings.php:77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  msgid "Suppress SPAM comment notification"
32
  msgstr "Esconder comentário e notificação de SPAM"
33
 
34
- #: includes/admin/bnfw-settings.php:82
35
- msgid "Don't send notifications for comments marked as SPAM by Akismet"
36
- msgstr "Não enviar notificações e comentários marcados como SPAM pelo Akismet"
 
 
 
 
 
 
37
 
38
- #: includes/admin/bnfw-settings.php:95
39
  msgid "Default Email Format"
40
  msgstr "Formato padrão de email"
41
 
42
- #: includes/admin/bnfw-settings.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  msgid ""
44
- "This will apply to all emails sent out via WordPress, even those from other plugins. For more "
45
- "details, please see the <a href=\"https://wordpress.org/plugins/bnfw/faq/\" target=\"_blank"
46
- "\">FAQ</a>."
47
  msgstr ""
48
- "Isso se aplica a todos os emails enviados através do WordPress, aplica-se a todos os outros "
49
- "plugins. Para mais detalhes, consulte o <a href=\"https://wordpress.org/plugins/bnfw/faq/\" "
50
- "target=\"_blank\">FAQ</a>."
51
 
52
- #: includes/admin/bnfw-settings.php:143 includes/admin/class-bnfw-notification.php:252
 
53
  msgid "HTML Formatting"
54
  msgstr "Formatação HTML"
55
 
56
- #: includes/admin/bnfw-settings.php:147 includes/admin/class-bnfw-notification.php:257
 
57
  msgid "Plain Text"
58
  msgstr "Texto simples"
59
 
60
- #: includes/admin/class-bnfw-notification.php:45 includes/admin/class-bnfw-notification.php:48
61
- #: includes/admin/class-bnfw-notification.php:49
 
62
  msgid "Notifications"
63
  msgstr "Notificações"
64
 
65
- #: includes/admin/class-bnfw-notification.php:46
66
  msgid "Notification"
67
  msgstr "Notificação"
68
 
69
- #: includes/admin/class-bnfw-notification.php:47
70
  msgid "Add New"
71
  msgstr "Adicionar nova"
72
 
73
- #: includes/admin/class-bnfw-notification.php:50
74
  msgid "Add New Notification"
75
  msgstr "Adicionar nova notificação"
76
 
77
- #: includes/admin/class-bnfw-notification.php:51
78
  msgid "Edit Notification"
79
  msgstr "Editar notificação"
80
 
81
- #: includes/admin/class-bnfw-notification.php:52
82
  msgid "New Notification"
83
  msgstr "Nova notificação"
84
 
85
- #: includes/admin/class-bnfw-notification.php:53
86
  msgid "View Notification"
87
  msgstr "Ver notificação"
88
 
89
- #: includes/admin/class-bnfw-notification.php:54
90
  msgid "Search Notifications"
91
  msgstr "Pesquisar notificação"
92
 
93
- #: includes/admin/class-bnfw-notification.php:55
94
  msgid "No Notifications found"
95
  msgstr "Nenhuma notificação"
96
 
97
- #: includes/admin/class-bnfw-notification.php:56
98
  msgid "No Notifications found in trash"
99
  msgstr "Nenhuma notificação na lixeira"
100
 
101
- #: includes/admin/class-bnfw-notification.php:57
102
  msgid "All Notifications"
103
  msgstr "Todas notificações"
104
 
105
- #: includes/admin/class-bnfw-notification.php:128
106
  msgid "Save Notification"
107
  msgstr "Salvar notificação"
108
 
109
- #: includes/admin/class-bnfw-notification.php:156
110
  msgid "Notification For"
111
  msgstr "Notificação para"
112
 
113
- #: includes/admin/class-bnfw-notification.php:161
114
- msgid "New Comment / Awaiting Moderation"
115
- msgstr "Novo comentário / Aguarda moderação"
116
-
117
- #: includes/admin/class-bnfw-notification.php:162 includes/admin/class-bnfw-notification.php:769
118
- msgid "New Trackback"
119
- msgstr "Novo Trackback"
120
 
121
- #: includes/admin/class-bnfw-notification.php:163 includes/admin/class-bnfw-notification.php:772
122
- msgid "New Pingback"
123
- msgstr "Novo Pingback"
124
 
125
- #: includes/admin/class-bnfw-notification.php:164 includes/admin/class-bnfw-notification.php:781
126
- msgid "Lost Password - For Admin"
127
- msgstr "Esqueceu a senha - Para administração"
128
 
129
- #: includes/admin/class-bnfw-notification.php:165
 
130
  msgid "New User Registration - For Admin"
131
  msgstr "Novo registro de usuário - Para administração"
132
 
133
- #: includes/admin/class-bnfw-notification.php:168 includes/admin/class-bnfw-notification.php:778
134
- msgid "Lost Password - For User"
135
- msgstr "Esqueceu a senha - Por usuário"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
 
137
- #: includes/admin/class-bnfw-notification.php:169
 
 
 
 
 
138
  msgid "New User Registration - For User"
139
  msgstr "Novo Registro de Usuário - Por Usuário"
140
 
141
- #: includes/admin/class-bnfw-notification.php:170
142
- msgid "New User - Welcome Email"
143
- msgstr "Novo Usuário - Email de boas vindas"
144
-
145
- #: includes/admin/class-bnfw-notification.php:171 includes/admin/class-bnfw-notification.php:775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  msgid "Comment Reply"
147
  msgstr "Responder comentário"
148
 
149
- #: includes/admin/class-bnfw-notification.php:174 includes/admin/class-bnfw-notification.php:793
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  msgid "New Post Published"
151
  msgstr "Novo post publicado"
152
 
153
- #: includes/admin/class-bnfw-notification.php:175 includes/admin/class-bnfw-notification.php:796
 
154
  msgid "Post Updated"
155
  msgstr "Post atualizado"
156
 
157
- #: includes/admin/class-bnfw-notification.php:176 includes/admin/class-bnfw-notification.php:799
 
158
  msgid "Post Pending Review"
159
  msgstr "Post pendente para revisão"
160
 
161
- #: includes/admin/class-bnfw-notification.php:177 includes/admin/class-bnfw-notification.php:802
 
 
 
 
 
 
162
  msgid "Post Scheduled"
163
  msgstr "Programar post"
164
 
165
- #: includes/admin/class-bnfw-notification.php:178 includes/admin/class-bnfw-notification.php:805
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "New Category"
167
  msgstr "Nova categoria"
168
 
169
- #: includes/admin/class-bnfw-notification.php:179 includes/admin/class-bnfw-notification.php:808
 
170
  msgid "New Tag"
171
  msgstr "Nova tag"
172
 
173
- #: includes/admin/class-bnfw-notification.php:182
 
 
 
 
 
 
 
 
 
 
 
174
  msgid "New Page Published"
175
  msgstr "Nova página publicada"
176
 
177
- #: includes/admin/class-bnfw-notification.php:183
178
  msgid "Page Updated"
179
  msgstr "Página atualizada"
180
 
181
- #: includes/admin/class-bnfw-notification.php:184
182
  msgid "Page Pending Review"
183
  msgstr "Página aguardando revisão"
184
 
185
- #: includes/admin/class-bnfw-notification.php:185
 
 
 
 
186
  msgid "Page Scheduled"
187
  msgstr "Programar página"
188
 
189
- #: includes/admin/class-bnfw-notification.php:186
190
  msgid "Page - New Comment"
191
  msgstr "Página - Novo Comentário"
192
 
193
- #: includes/admin/class-bnfw-notification.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  msgid "Custom Post Type"
195
  msgstr "Tipo de post customizado"
196
 
197
- #: includes/admin/class-bnfw-notification.php:201 includes/admin/class-bnfw-notification.php:821
 
198
  msgid "New "
199
  msgstr "Novo"
200
 
201
- #: includes/admin/class-bnfw-notification.php:202
202
- msgid "Update "
203
- msgstr "Atualizar"
 
 
 
 
204
 
205
- #: includes/admin/class-bnfw-notification.php:203
206
  msgid "Pending Review"
207
  msgstr "Revisão pendente"
208
 
209
- #: includes/admin/class-bnfw-notification.php:204
 
 
 
 
 
210
  msgid "Scheduled"
211
  msgstr "Programado"
212
 
213
- #: includes/admin/class-bnfw-notification.php:205 includes/admin/class-bnfw-notification.php:766
214
- msgid "New Comment"
215
- msgstr "Novo comentário"
216
 
217
- #: includes/admin/class-bnfw-notification.php:219
218
  msgid "Custom Taxonomy"
219
  msgstr "Taxonomia customizada"
220
 
221
- #: includes/admin/class-bnfw-notification.php:224
222
  msgid "New"
223
  msgstr "Novo"
224
 
225
- #: includes/admin/class-bnfw-notification.php:240
226
- msgid "This notification doesn't support additional email fields or shortcodes in the subject line."
 
 
227
  msgstr ""
228
- "Esta notificação não suporta campos de email adicionais ou códigos de acesso na linha de assunto."
 
229
 
230
- #: includes/admin/class-bnfw-notification.php:247
231
  msgid "Email Formatting"
232
  msgstr "Formatar email"
233
 
234
- #: includes/admin/class-bnfw-notification.php:264 includes/tmp.php:3
 
 
 
 
 
 
235
  msgid "Additional Email Fields"
236
  msgstr "Campos adicionais do email"
237
 
238
- #: includes/admin/class-bnfw-notification.php:268 includes/tmp.php:7
239
- msgid "Show additional email fields"
240
- msgstr "Mostrar campos adicionais do email"
 
 
 
 
 
 
 
241
 
242
- #: includes/admin/class-bnfw-notification.php:274 includes/tmp.php:13
243
  msgid "From Name and Email"
244
  msgstr "Nome do remetente do email"
245
 
246
- #: includes/admin/class-bnfw-notification.php:284 includes/tmp.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid "CC"
248
  msgstr "CC"
249
 
250
- #: includes/admin/class-bnfw-notification.php:296 includes/tmp.php:34
 
 
 
 
 
 
 
 
 
 
 
251
  msgid "BCC"
252
  msgstr "CCO"
253
 
254
- #: includes/admin/class-bnfw-notification.php:311
255
- msgid "Send this notification to the Post Author only"
256
- msgstr "Enviar esta notificação com post único do autor"
257
 
258
- #: includes/admin/class-bnfw-notification.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Send To"
260
  msgstr "Enviar para"
261
 
262
- #: includes/admin/class-bnfw-notification.php:332
263
- msgid "Disable this Notification for the User that triggered it"
264
- msgstr "Desativar essa notificação para o usuário que desencadeou"
 
 
 
 
 
 
 
 
 
 
265
 
266
- #: includes/admin/class-bnfw-notification.php:339 includes/admin/class-bnfw-notification.php:692
 
 
 
 
 
 
 
267
  msgid "Subject"
268
  msgstr "Assunto"
269
 
270
- #: includes/admin/class-bnfw-notification.php:348
 
 
 
 
 
 
 
 
 
271
  msgid "Message Body"
272
  msgstr "Corpo da mensagem"
273
 
274
- #: includes/admin/class-bnfw-notification.php:352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
275
  msgid ""
276
- "Looking for help with shortcodes? Click here to see which ones you can use with the selected "
277
- "notification."
278
  msgstr ""
279
- "Precisando de ajuda com códigos de acesso? Clique aqui para ver qual deles você pode usar com a "
280
- "notificação selecionada."
281
 
282
- #: includes/admin/class-bnfw-notification.php:490
283
  msgid "Test Notification Sent."
284
  msgstr "Teste de envio da notificação."
285
 
286
- #: includes/admin/class-bnfw-notification.php:567
287
  msgid "Notification saved."
288
  msgstr "Notificação salva."
289
 
290
- #: includes/admin/class-bnfw-notification.php:585 includes/admin/class-bnfw-notification.php:621
291
- #: includes/admin/class-bnfw-notification.php:622
 
292
  msgid "Save"
293
  msgstr "Salvar"
294
 
295
- #: includes/admin/class-bnfw-notification.php:595
296
- msgid "Disable Notification"
297
- msgstr "Desabilitar notificação"
 
 
 
298
 
299
- #: includes/admin/class-bnfw-notification.php:601
 
 
 
 
 
 
 
 
300
  msgid "Send Me a Test Email"
301
  msgstr "Envie-me um email de teste"
302
 
303
- #: includes/admin/class-bnfw-notification.php:611
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  msgid "Delete Permanently"
305
  msgstr "Excluir permanente"
306
 
307
- #: includes/admin/class-bnfw-notification.php:613
308
  msgid "Move to Trash"
309
  msgstr "Enviar para lixeira"
310
 
311
- #: includes/admin/class-bnfw-notification.php:690
312
  msgid "Notification Type"
313
  msgstr "Tipo de notificação"
314
 
315
- #: includes/admin/class-bnfw-notification.php:691
316
  msgid "Enabled?"
317
  msgstr "Ativado?"
318
 
319
- #: includes/admin/class-bnfw-notification.php:693
320
  msgid "User Roles / Users"
321
  msgstr "Funções de usuário / Usuários"
322
 
323
- #: includes/admin/class-bnfw-notification.php:784
324
- msgid "User Registration - For User"
325
- msgstr "Registro do usuário - Por usuário"
326
 
327
- #: includes/admin/class-bnfw-notification.php:787
328
- msgid "New User - Welcome email"
329
- msgstr "Novo usuário - Email de boas vindas"
330
 
331
- #: includes/admin/class-bnfw-notification.php:790
332
- msgid "User Registration - For Admin"
333
- msgstr "Registro de usuário - Para administração"
334
 
335
- #: includes/admin/class-bnfw-notification.php:824
 
 
 
 
 
 
 
 
336
  msgid "Updated "
337
  msgstr "Atualizar"
338
 
339
- #: includes/admin/class-bnfw-notification.php:827
340
  msgid " Pending Review"
341
  msgstr "Revisão pendente"
342
 
343
- #: includes/admin/class-bnfw-notification.php:830
344
  msgid " Scheduled"
345
  msgstr "Programado"
346
 
347
- #: includes/admin/class-bnfw-notification.php:833
348
  msgid " Comment"
349
  msgstr "Comentário"
350
 
351
- #: includes/admin/class-bnfw-notification.php:836
352
- msgid "New term in "
353
- msgstr "Novo prazo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
 
355
- #: includes/import.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  msgid " for "
357
  msgstr "para"
358
 
359
- #: includes/import.php:60
360
  msgid " (Auto Imported)"
361
  msgstr "(Importado automático)"
362
 
363
- #: includes/overrides.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  msgid "New user registration on your site %s:"
365
  msgstr "Novo registro de usuário em seu site %s:"
366
 
367
- #: includes/overrides.php:26 includes/overrides.php:42
 
 
368
  msgid "Username: %s"
369
  msgstr "Usuário: %s"
370
 
371
- #: includes/overrides.php:27
 
372
  msgid "E-mail: %s"
373
  msgstr "Email: %s"
374
 
375
- #: includes/overrides.php:29
 
 
376
  msgid "[%s] New User Registration"
377
  msgstr "[%s] Novo Registro de Usuário"
378
 
379
- #: includes/overrides.php:43
 
 
 
 
 
 
 
 
 
 
380
  msgid "Password: %s"
381
  msgstr "Senha: %s"
382
 
383
- #: includes/overrides.php:46
 
384
  msgid "[%s] Your username and password"
385
  msgstr "[%s] O seu nome de usuário e senha"
386
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  #. Plugin Name of the plugin/theme
388
  msgid "Better Notifications for WP"
389
  msgstr "Melhores notificações para WordPress"
390
 
391
  #. Plugin URI of the plugin/theme
392
- msgid "http://wordpress.org/plugins/bnfw/"
 
 
393
  msgstr "http://wordpress.org/plugins/bnfw/"
394
 
395
  #. Description of the plugin/theme
396
- msgid "Send customisable HTML emails to your users for different WordPress notifications."
397
- msgstr "Enviar emails HTML com notificações personalizáveis para usuários diferentes do WordPress."
 
 
 
398
 
399
  #. Author of the plugin/theme
400
  msgid "Made with Fuel"
401
  msgstr "Made with Fuel"
402
 
403
  #. Author URI of the plugin/theme
404
- msgid "https://betternotificationsforwp.com/"
405
- msgstr "https://betternotificationsforwp.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  msgstr ""
5
  "Project-Id-Version: Better Notifications for WP 1.3.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
7
+ "POT-Creation-Date: 2020-11-27 21:34+0800\n"
8
+ "PO-Revision-Date: 2020-11-28 00:04+0800\n"
9
+ "Last-Translator: Glayton Caixeta <contato@caixeta.com>\n"
10
+ "Language-Team: \n"
11
+ "Language: pt_BR\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.2\n"
 
 
 
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 
 
 
 
17
 
18
+ #: bnfw.php:283 includes/admin/bnfw-settings.php:15
19
  msgid "Settings"
20
  msgstr "Configurações"
21
 
22
+ #: includes/admin/bnfw-settings.php:14
23
+ #: includes/admin/class-bnfw-notification.php:129
24
+ msgid "Notification Settings"
25
+ msgstr "Configurações de notificações"
26
+
27
+ #: includes/admin/bnfw-settings.php:38
28
  msgid "BNFW Settings"
29
  msgstr "Configurações do BNFW"
30
 
31
+ #: includes/admin/bnfw-settings.php:46
32
+ msgid "Save Settings"
33
+ msgstr "Salvar configurações"
34
+
35
+ #: includes/admin/bnfw-settings.php:73
36
+ msgid "Documentation"
37
+ msgstr ""
38
+
39
+ #: includes/admin/bnfw-settings.php:80
40
+ msgid "Premium Add-ons"
41
+ msgstr ""
42
+
43
+ #: includes/admin/bnfw-settings.php:87
44
+ msgid "Priority Support"
45
+ msgstr ""
46
+
47
+ #: includes/admin/bnfw-settings.php:150
48
  msgid "Suppress SPAM comment notification"
49
  msgstr "Esconder comentário e notificação de SPAM"
50
 
51
+ #: includes/admin/bnfw-settings.php:150
52
+ msgid ""
53
+ "Comments that are correctly marked as SPAM by a 3rd party plugin (such as "
54
+ "Akismet) will not generate a notification if this is ticked."
55
+ msgstr ""
56
+
57
+ #: includes/admin/bnfw-settings.php:155
58
+ msgid "Don't send notifications for comments marked as SPAM"
59
+ msgstr "Não envie notificações para comentários marcados como SPAM"
60
 
61
+ #: includes/admin/bnfw-settings.php:167
62
  msgid "Default Email Format"
63
  msgstr "Formato padrão de email"
64
 
65
+ #: includes/admin/bnfw-settings.php:167
66
+ msgid ""
67
+ "This will apply to all emails sent out via WordPress, even those from other "
68
+ "plugins. For more details, please see the "
69
+ msgstr ""
70
+ "Isso se aplica a todos os e-mails enviados via WordPress, mesmo aqueles de "
71
+ "outros plug-ins. Para obter mais detalhes, consulte o"
72
+
73
+ #: includes/admin/bnfw-settings.php:181
74
+ msgid "Enable Content Shortcodes?"
75
+ msgstr ""
76
+
77
+ #: includes/admin/bnfw-settings.php:181
78
+ msgid "Shortcodes in the post/page content are disabled by default."
79
+ msgstr ""
80
+
81
+ #: includes/admin/bnfw-settings.php:186
82
+ msgid "Enable shortcode output in the page/post content"
83
+ msgstr ""
84
+
85
+ #: includes/admin/bnfw-settings.php:198
86
+ msgid "Allow Usage Tracking?"
87
+ msgstr ""
88
+
89
+ #: includes/admin/bnfw-settings.php:203
90
  msgid ""
91
+ "Allow Better Notifications for WP to anonymously track how this plugin is "
92
+ "used and help make the plugin better."
 
93
  msgstr ""
 
 
 
94
 
95
+ #: includes/admin/bnfw-settings.php:251
96
+ #: includes/admin/class-bnfw-notification.php:433
97
  msgid "HTML Formatting"
98
  msgstr "Formatação HTML"
99
 
100
+ #: includes/admin/bnfw-settings.php:256
101
+ #: includes/admin/class-bnfw-notification.php:439
102
  msgid "Plain Text"
103
  msgstr "Texto simples"
104
 
105
+ #: includes/admin/class-bnfw-notification.php:52
106
+ #: includes/admin/class-bnfw-notification.php:55
107
+ #: includes/admin/class-bnfw-notification.php:56
108
  msgid "Notifications"
109
  msgstr "Notificações"
110
 
111
+ #: includes/admin/class-bnfw-notification.php:53
112
  msgid "Notification"
113
  msgstr "Notificação"
114
 
115
+ #: includes/admin/class-bnfw-notification.php:54
116
  msgid "Add New"
117
  msgstr "Adicionar nova"
118
 
119
+ #: includes/admin/class-bnfw-notification.php:57
120
  msgid "Add New Notification"
121
  msgstr "Adicionar nova notificação"
122
 
123
+ #: includes/admin/class-bnfw-notification.php:58
124
  msgid "Edit Notification"
125
  msgstr "Editar notificação"
126
 
127
+ #: includes/admin/class-bnfw-notification.php:59
128
  msgid "New Notification"
129
  msgstr "Nova notificação"
130
 
131
+ #: includes/admin/class-bnfw-notification.php:60
132
  msgid "View Notification"
133
  msgstr "Ver notificação"
134
 
135
+ #: includes/admin/class-bnfw-notification.php:61
136
  msgid "Search Notifications"
137
  msgstr "Pesquisar notificação"
138
 
139
+ #: includes/admin/class-bnfw-notification.php:62
140
  msgid "No Notifications found"
141
  msgstr "Nenhuma notificação"
142
 
143
+ #: includes/admin/class-bnfw-notification.php:63
144
  msgid "No Notifications found in trash"
145
  msgstr "Nenhuma notificação na lixeira"
146
 
147
+ #: includes/admin/class-bnfw-notification.php:64
148
  msgid "All Notifications"
149
  msgstr "Todas notificações"
150
 
151
+ #: includes/admin/class-bnfw-notification.php:138
152
  msgid "Save Notification"
153
  msgstr "Salvar notificação"
154
 
155
+ #: includes/admin/class-bnfw-notification.php:186
156
  msgid "Notification For"
157
  msgstr "Notificação para"
158
 
159
+ #: includes/admin/class-bnfw-notification.php:187
160
+ msgid ""
161
+ "E.g. If you select \"New Post Published\" from the list on the right, this "
162
+ "notification will be sent when a new post is published."
163
+ msgstr ""
 
 
164
 
165
+ #: includes/admin/class-bnfw-notification.php:191
166
+ msgid "Select the notification type"
167
+ msgstr "Selecione o tipo de notificação"
168
 
169
+ #: includes/admin/class-bnfw-notification.php:192
170
+ msgid "Admin"
171
+ msgstr ""
172
 
173
+ #: includes/admin/class-bnfw-notification.php:194
174
+ #: includes/admin/class-bnfw-notification.php:1302
175
  msgid "New User Registration - For Admin"
176
  msgstr "Novo registro de usuário - Para administração"
177
 
178
+ #: includes/admin/class-bnfw-notification.php:196
179
+ #: includes/admin/class-bnfw-notification.php:1269
180
+ msgid "User Lost Password - For Admin"
181
+ msgstr "Senha perdida pelo usuário - para administrador"
182
+
183
+ #: includes/admin/class-bnfw-notification.php:198
184
+ #: includes/admin/class-bnfw-notification.php:1272
185
+ msgid "Password Changed - For Admin"
186
+ msgstr "Senha alterada - para administrador"
187
+
188
+ #: includes/admin/class-bnfw-notification.php:200
189
+ #: includes/admin/class-bnfw-notification.php:1275
190
+ msgid "User Email Changed - For Admin"
191
+ msgstr "E-mail do usuário alterado - para administrador"
192
+
193
+ #: includes/admin/class-bnfw-notification.php:202
194
+ #: includes/admin/class-bnfw-notification.php:1308
195
+ msgid "User Role Changed - For Admin"
196
+ msgstr "Registro de usuário - Para administração"
197
+
198
+ #: includes/admin/class-bnfw-notification.php:204
199
+ #: includes/admin/class-bnfw-notification.php:1296
200
+ msgid "User Logged In - For Admin"
201
+ msgstr "Usuário conectado - para administrador"
202
+
203
+ #: includes/admin/class-bnfw-notification.php:206
204
+ #: includes/admin/class-bnfw-notification.php:1287
205
+ msgid "WordPress Core Automatic Background Updates"
206
+ msgstr ""
207
+
208
+ #: includes/admin/class-bnfw-notification.php:210
209
+ #: includes/admin/class-bnfw-notification.php:1344
210
+ msgid "Privacy - Confirm Action: Export Data Request - For Admin"
211
+ msgstr ""
212
+
213
+ #: includes/admin/class-bnfw-notification.php:214
214
+ #: includes/admin/class-bnfw-notification.php:1347
215
+ msgid "Privacy - Confirm Action: Erase Data Request - For Admin"
216
+ msgstr ""
217
 
218
+ #: includes/admin/class-bnfw-notification.php:222
219
+ msgid "Transactional"
220
+ msgstr ""
221
+
222
+ #: includes/admin/class-bnfw-notification.php:224
223
+ #: includes/admin/class-bnfw-notification.php:1290
224
  msgid "New User Registration - For User"
225
  msgstr "Novo Registro de Usuário - Por Usuário"
226
 
227
+ #: includes/admin/class-bnfw-notification.php:226
228
+ #: includes/admin/class-bnfw-notification.php:1299
229
+ msgid "New User - Post-registration Email"
230
+ msgstr "Novo usuário - E-mail de pós-registro"
231
+
232
+ #: includes/admin/class-bnfw-notification.php:228
233
+ #: includes/admin/class-bnfw-notification.php:1266
234
+ msgid "User Lost Password - For User"
235
+ msgstr "Senha perdida pelo usuário - Para o usuário"
236
+
237
+ #: includes/admin/class-bnfw-notification.php:230
238
+ #: includes/admin/class-bnfw-notification.php:1278
239
+ msgid "Password Changed - For User"
240
+ msgstr "Senha alterada - para o usuário"
241
+
242
+ #: includes/admin/class-bnfw-notification.php:232
243
+ #: includes/admin/class-bnfw-notification.php:1281
244
+ msgid "User Email Changed Confirmation - For User"
245
+ msgstr "Confirmação de alteração de e-mail do usuário - Para o usuário"
246
+
247
+ #: includes/admin/class-bnfw-notification.php:235
248
+ #: includes/admin/class-bnfw-notification.php:1284
249
+ msgid "User Email Changed - For User"
250
+ msgstr "Email do usuário alterado - Para o usuário"
251
+
252
+ #: includes/admin/class-bnfw-notification.php:237
253
+ #: includes/admin/class-bnfw-notification.php:1305
254
+ msgid "User Role Changed - For User"
255
+ msgstr "Função do usuário alterada - para o usuário"
256
+
257
+ #: includes/admin/class-bnfw-notification.php:239
258
+ #: includes/admin/class-bnfw-notification.php:1293
259
+ msgid "User Logged In - For User"
260
+ msgstr "Usuário conectado - Para o usuário"
261
+
262
+ #: includes/admin/class-bnfw-notification.php:241
263
+ #: includes/admin/class-bnfw-notification.php:375
264
+ #: includes/admin/class-bnfw-notification.php:1263
265
  msgid "Comment Reply"
266
  msgstr "Responder comentário"
267
 
268
+ #: includes/admin/class-bnfw-notification.php:245
269
+ msgid "Privacy - Confirm Action: Export Data Request - For User"
270
+ msgstr ""
271
+
272
+ #: includes/admin/class-bnfw-notification.php:249
273
+ msgid "Privacy - Confirm Action: Erase Data Request - For User"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-bnfw-notification.php:253
277
+ #: includes/admin/class-bnfw-notification.php:1350
278
+ msgid "Privacy - Data Export - For User"
279
+ msgstr ""
280
+
281
+ #: includes/admin/class-bnfw-notification.php:257
282
+ #: includes/admin/class-bnfw-notification.php:1353
283
+ msgid "Privacy - Data Erased - For User"
284
+ msgstr ""
285
+
286
+ #: includes/admin/class-bnfw-notification.php:267
287
+ #: includes/admin/class-bnfw-notification.php:1311
288
  msgid "New Post Published"
289
  msgstr "Novo post publicado"
290
 
291
+ #: includes/admin/class-bnfw-notification.php:269
292
+ #: includes/admin/class-bnfw-notification.php:1314
293
  msgid "Post Updated"
294
  msgstr "Post atualizado"
295
 
296
+ #: includes/admin/class-bnfw-notification.php:271
297
+ #: includes/admin/class-bnfw-notification.php:1317
298
  msgid "Post Pending Review"
299
  msgstr "Post pendente para revisão"
300
 
301
+ #: includes/admin/class-bnfw-notification.php:273
302
+ #: includes/admin/class-bnfw-notification.php:1320
303
+ msgid "New Private Post"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-bnfw-notification.php:275
307
+ #: includes/admin/class-bnfw-notification.php:1323
308
  msgid "Post Scheduled"
309
  msgstr "Programar post"
310
 
311
+ #: includes/admin/class-bnfw-notification.php:277
312
+ #: includes/admin/class-bnfw-notification.php:1326
313
+ msgid "Published Post Moved to Trash"
314
+ msgstr "Postagem publicada movida para a lixeira"
315
+
316
+ #: includes/admin/class-bnfw-notification.php:279
317
+ #: includes/admin/class-bnfw-notification.php:367
318
+ #: includes/admin/class-bnfw-notification.php:1248
319
+ msgid "New Comment"
320
+ msgstr "Novo comentário"
321
+
322
+ #: includes/admin/class-bnfw-notification.php:282
323
+ #: includes/admin/class-bnfw-notification.php:369
324
+ #: includes/admin/class-bnfw-notification.php:1254
325
+ #: includes/admin/class-bnfw-notification.php:1407
326
+ msgid "New Comment Awaiting Moderation"
327
+ msgstr "Novo comentário aguardando moderação"
328
+
329
+ #: includes/admin/class-bnfw-notification.php:285
330
+ #: includes/admin/class-bnfw-notification.php:1251
331
+ msgid "Post - Comment Approved"
332
+ msgstr ""
333
+
334
+ #: includes/admin/class-bnfw-notification.php:288
335
+ #: includes/admin/class-bnfw-notification.php:1332
336
  msgid "New Category"
337
  msgstr "Nova categoria"
338
 
339
+ #: includes/admin/class-bnfw-notification.php:290
340
+ #: includes/admin/class-bnfw-notification.php:1335
341
  msgid "New Tag"
342
  msgstr "Nova tag"
343
 
344
+ #: includes/admin/class-bnfw-notification.php:292
345
+ #: includes/admin/class-bnfw-notification.php:1257
346
+ msgid "New Trackback"
347
+ msgstr "Novo Trackback"
348
+
349
+ #: includes/admin/class-bnfw-notification.php:294
350
+ #: includes/admin/class-bnfw-notification.php:1260
351
+ msgid "New Pingback"
352
+ msgstr "Novo Pingback"
353
+
354
+ #: includes/admin/class-bnfw-notification.php:301
355
+ #: includes/admin/class-bnfw-notification.php:1329
356
  msgid "New Page Published"
357
  msgstr "Nova página publicada"
358
 
359
+ #: includes/admin/class-bnfw-notification.php:303
360
  msgid "Page Updated"
361
  msgstr "Página atualizada"
362
 
363
+ #: includes/admin/class-bnfw-notification.php:305
364
  msgid "Page Pending Review"
365
  msgstr "Página aguardando revisão"
366
 
367
+ #: includes/admin/class-bnfw-notification.php:307
368
+ msgid "New Private Page"
369
+ msgstr ""
370
+
371
+ #: includes/admin/class-bnfw-notification.php:309
372
  msgid "Page Scheduled"
373
  msgstr "Programar página"
374
 
375
+ #: includes/admin/class-bnfw-notification.php:311
376
  msgid "Page - New Comment"
377
  msgstr "Página - Novo Comentário"
378
 
379
+ #: includes/admin/class-bnfw-notification.php:313
380
+ msgid "Page - New Comment Awaiting Moderation"
381
+ msgstr "Página - Novo comentário aguardando moderação"
382
+
383
+ #: includes/admin/class-bnfw-notification.php:316
384
+ #: includes/admin/class-bnfw-notification.php:1365
385
+ msgid "Page - Comment Approved"
386
+ msgstr "Página - Comentário aprovado"
387
+
388
+ #: includes/admin/class-bnfw-notification.php:319
389
+ msgid "Page - Comment Reply"
390
+ msgstr "Página - Resposta a Comentário"
391
+
392
+ #: includes/admin/class-bnfw-notification.php:326
393
+ #: includes/admin/class-bnfw-notification.php:1356
394
+ msgid "New Media Published"
395
+ msgstr "Nova mídia publicada"
396
+
397
+ #: includes/admin/class-bnfw-notification.php:328
398
+ #: includes/admin/class-bnfw-notification.php:1359
399
+ msgid "Media Updated"
400
+ msgstr "Mídia atualizada"
401
+
402
+ #: includes/admin/class-bnfw-notification.php:330
403
+ #: includes/admin/class-bnfw-notification.php:1362
404
+ msgid "Media - New Comment"
405
+ msgstr "Mídia - Novo Comentário"
406
+
407
+ #: includes/admin/class-bnfw-notification.php:332
408
+ #: includes/admin/class-bnfw-notification.php:1368
409
+ msgid "Media - Comment Approved"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-bnfw-notification.php:335
413
+ #: includes/admin/class-bnfw-notification.php:1371
414
+ msgid "Media - New Comment Awaiting Moderation"
415
+ msgstr "Mídia - Novo comentário aguardando moderação"
416
+
417
+ #: includes/admin/class-bnfw-notification.php:337
418
+ #: includes/admin/class-bnfw-notification.php:1374
419
+ msgid "Media - Comment Reply"
420
+ msgstr "Mídia - Resposta a Comentário"
421
+
422
+ #: includes/admin/class-bnfw-notification.php:355
423
  msgid "Custom Post Type"
424
  msgstr "Tipo de post customizado"
425
 
426
+ #: includes/admin/class-bnfw-notification.php:357
427
+ #: includes/admin/class-bnfw-notification.php:1389
428
  msgid "New "
429
  msgstr "Novo"
430
 
431
+ #: includes/admin/class-bnfw-notification.php:357
432
+ msgid " Published"
433
+ msgstr "Publicados"
434
+
435
+ #: includes/admin/class-bnfw-notification.php:359
436
+ msgid "Updated"
437
+ msgstr "Atualizado"
438
 
439
+ #: includes/admin/class-bnfw-notification.php:361
440
  msgid "Pending Review"
441
  msgstr "Revisão pendente"
442
 
443
+ #: includes/admin/class-bnfw-notification.php:363
444
+ #: includes/admin/class-bnfw-notification.php:1401
445
+ msgid "New Private "
446
+ msgstr ""
447
+
448
+ #: includes/admin/class-bnfw-notification.php:365
449
  msgid "Scheduled"
450
  msgstr "Programado"
451
 
452
+ #: includes/admin/class-bnfw-notification.php:372
453
+ msgid "Comment Approved"
454
+ msgstr "Comentário aprovado"
455
 
456
+ #: includes/admin/class-bnfw-notification.php:394
457
  msgid "Custom Taxonomy"
458
  msgstr "Taxonomia customizada"
459
 
460
+ #: includes/admin/class-bnfw-notification.php:400
461
  msgid "New"
462
  msgstr "Novo"
463
 
464
+ #: includes/admin/class-bnfw-notification.php:419
465
+ msgid ""
466
+ "This notification doesn't support additional email fields due to a "
467
+ "limitation in WordPress."
468
  msgstr ""
469
+ "Esta notificação não oferece suporte a campos de e-mail adicionais devido a "
470
+ "uma limitação do WordPress."
471
 
472
+ #: includes/admin/class-bnfw-notification.php:426
473
  msgid "Email Formatting"
474
  msgstr "Formatar email"
475
 
476
+ #: includes/admin/class-bnfw-notification.php:427
477
+ msgid ""
478
+ "How do you want to format the sent email? HTML is recommended as it'll show "
479
+ "images and links correctly."
480
+ msgstr ""
481
+
482
+ #: includes/admin/class-bnfw-notification.php:448
483
  msgid "Additional Email Fields"
484
  msgstr "Campos adicionais do email"
485
 
486
+ #: includes/admin/class-bnfw-notification.php:449
487
+ msgid ""
488
+ "This should be fairly self explanatory but if you're unsure, tick this "
489
+ "checkbox and have a look at the available options. You can always untick it "
490
+ "again should you decide you don't need to use it."
491
+ msgstr ""
492
+
493
+ #: includes/admin/class-bnfw-notification.php:454
494
+ msgid "Set \"From\" Name & Email, Reply To, CC, BCC"
495
+ msgstr ""
496
 
497
+ #: includes/admin/class-bnfw-notification.php:461
498
  msgid "From Name and Email"
499
  msgstr "Nome do remetente do email"
500
 
501
+ #: includes/admin/class-bnfw-notification.php:462
502
+ msgid ""
503
+ "If you want to send the email from your site name and email address instead "
504
+ "of the default \"WordPress\" from \"wordpress@domain.com\", this is where "
505
+ "you can do it."
506
+ msgstr ""
507
+
508
+ #: includes/admin/class-bnfw-notification.php:466
509
+ msgid "Site Name"
510
+ msgstr ""
511
+
512
+ #: includes/admin/class-bnfw-notification.php:468
513
+ msgid "Site Email"
514
+ msgstr ""
515
+
516
+ #: includes/admin/class-bnfw-notification.php:475
517
+ msgid "Reply To"
518
+ msgstr ""
519
+
520
+ #: includes/admin/class-bnfw-notification.php:476
521
+ msgid ""
522
+ "If you want any replies to your email notification to go to another person, "
523
+ "fill in this box with their name and email address."
524
+ msgstr ""
525
+
526
+ #: includes/admin/class-bnfw-notification.php:480
527
+ msgid "Name"
528
+ msgstr ""
529
+
530
+ #: includes/admin/class-bnfw-notification.php:482
531
+ msgid "Email"
532
+ msgstr "O email"
533
+
534
+ #: includes/admin/class-bnfw-notification.php:488
535
  msgid "CC"
536
  msgstr "CC"
537
 
538
+ #: includes/admin/class-bnfw-notification.php:489
539
+ msgid "Publicly copy in any other users or user roles to this email."
540
+ msgstr ""
541
+
542
+ #: includes/admin/class-bnfw-notification.php:494
543
+ #: includes/admin/class-bnfw-notification.php:508
544
+ #: includes/admin/class-bnfw-notification.php:557
545
+ #: includes/admin/class-bnfw-notification.php:575
546
+ msgid "Select User Roles / Users"
547
+ msgstr "Selecione Funções de usuário / usuários"
548
+
549
+ #: includes/admin/class-bnfw-notification.php:502
550
  msgid "BCC"
551
  msgstr "CCO"
552
 
553
+ #: includes/admin/class-bnfw-notification.php:503
554
+ msgid "Privately copy in any other users or user roles to this email."
555
+ msgstr ""
556
 
557
+ #: includes/admin/class-bnfw-notification.php:518
558
+ msgid "Send to Author"
559
+ msgstr ""
560
+
561
+ #: includes/admin/class-bnfw-notification.php:519
562
+ msgid ""
563
+ "E.g. If you want a new post published notification to go to the post author, "
564
+ "tick this box."
565
+ msgstr ""
566
+
567
+ #: includes/admin/class-bnfw-notification.php:526
568
+ msgid "Send this notification to the Author"
569
+ msgstr "Envie esta notificação ao autor"
570
+
571
+ #: includes/admin/class-bnfw-notification.php:536
572
+ msgid ""
573
+ "E.g. If you're an editor and regularly update your posts, you might not want "
574
+ "to be emailed about this all the time. Ticking this box will prevent you "
575
+ "from receiving emails about your own changes."
576
+ msgstr ""
577
+
578
+ #: includes/admin/class-bnfw-notification.php:542
579
+ msgid "Do not send this Notification to the User that triggered it"
580
+ msgstr "Não envie esta notificação ao usuário que a acionou"
581
+
582
+ #: includes/admin/class-bnfw-notification.php:551
583
  msgid "Send To"
584
  msgstr "Enviar para"
585
 
586
+ #: includes/admin/class-bnfw-notification.php:552
587
+ msgid "Choose the users and/or user roles to send this email notification to."
588
+ msgstr ""
589
+
590
+ #: includes/admin/class-bnfw-notification.php:565
591
+ msgid "Except For"
592
+ msgstr ""
593
+
594
+ #: includes/admin/class-bnfw-notification.php:568
595
+ msgid ""
596
+ "Choose the users and/or user roles that this notification should not be sent "
597
+ "to."
598
+ msgstr ""
599
 
600
+ #: includes/admin/class-bnfw-notification.php:593
601
+ msgid ""
602
+ "You have chosen to send this notification to over 200 users. Please check "
603
+ "the email sending rate limit at your host before sending."
604
+ msgstr ""
605
+
606
+ #: includes/admin/class-bnfw-notification.php:603
607
+ #: includes/admin/class-bnfw-notification.php:1129
608
  msgid "Subject"
609
  msgstr "Assunto"
610
 
611
+ #: includes/admin/class-bnfw-notification.php:604
612
+ msgid "Notification subject. You can use "
613
+ msgstr "Assunto da notificação. Você pode usar"
614
+
615
+ #: includes/admin/class-bnfw-notification.php:604
616
+ #: includes/admin/class-bnfw-notification.php:618
617
+ msgid " here."
618
+ msgstr ""
619
+
620
+ #: includes/admin/class-bnfw-notification.php:617
621
  msgid "Message Body"
622
  msgstr "Corpo da mensagem"
623
 
624
+ #: includes/admin/class-bnfw-notification.php:618
625
+ msgid "Notification message. You can use "
626
+ msgstr "Mensagem de notificação. Você pode usar"
627
+
628
+ #: includes/admin/class-bnfw-notification.php:626
629
+ msgid "Need some more help?"
630
+ msgstr ""
631
+
632
+ #: includes/admin/class-bnfw-notification.php:636
633
+ msgid "Insert Default Content"
634
+ msgstr "Inserir conteúdo padrão"
635
+
636
+ #: includes/admin/class-bnfw-notification.php:640
637
+ msgid "Read Documentation"
638
+ msgstr ""
639
+
640
+ #: includes/admin/class-bnfw-notification.php:644
641
+ msgid "Find Shortcodes"
642
+ msgstr ""
643
+
644
+ #: includes/admin/class-bnfw-notification.php:655
645
+ msgid ""
646
+ "Stop additional paragraph and line break HTML from being inserted into my "
647
+ "notifications"
648
+ msgstr ""
649
+
650
+ #: includes/admin/class-bnfw-notification.php:710
651
  msgid ""
652
+ "You must choose at least one User or User Role to send the notification to "
653
+ "before you can save"
654
  msgstr ""
 
 
655
 
656
+ #: includes/admin/class-bnfw-notification.php:825
657
  msgid "Test Notification Sent."
658
  msgstr "Teste de envio da notificação."
659
 
660
+ #: includes/admin/class-bnfw-notification.php:915
661
  msgid "Notification saved."
662
  msgstr "Notificação salva."
663
 
664
+ #: includes/admin/class-bnfw-notification.php:934
665
+ #: includes/admin/class-bnfw-notification.php:992
666
+ #: includes/admin/class-bnfw-notification.php:994
667
  msgid "Save"
668
  msgstr "Salvar"
669
 
670
+ #: includes/admin/class-bnfw-notification.php:942
671
+ msgid ""
672
+ "Use this to enable or disable notifications. If you want to disable a "
673
+ "default WordPress notification, just create it on the left, then disable it "
674
+ "here."
675
+ msgstr ""
676
 
677
+ #: includes/admin/class-bnfw-notification.php:949
678
+ msgid "Notification Enabled"
679
+ msgstr "Notificação habilitada"
680
+
681
+ #: includes/admin/class-bnfw-notification.php:956
682
+ msgid "Notification Disabled"
683
+ msgstr "Notificação Desativada"
684
+
685
+ #: includes/admin/class-bnfw-notification.php:967
686
  msgid "Send Me a Test Email"
687
  msgstr "Envie-me um email de teste"
688
 
689
+ #: includes/admin/class-bnfw-notification.php:969
690
+ msgid ""
691
+ "This will send you (the currently logged in user) a notification so that you "
692
+ "can check for any issues with formatting – it’s doesn't mean that a "
693
+ "notification will send correctly in the future. You can read about how to "
694
+ "improve email delivery"
695
+ msgstr ""
696
+
697
+ #: includes/admin/class-bnfw-notification.php:969
698
+ msgid "here"
699
+ msgstr ""
700
+
701
+ #: includes/admin/class-bnfw-notification.php:969
702
+ msgid ". Shortcodes will not be replaced with content."
703
+ msgstr ""
704
+
705
+ #: includes/admin/class-bnfw-notification.php:980
706
  msgid "Delete Permanently"
707
  msgstr "Excluir permanente"
708
 
709
+ #: includes/admin/class-bnfw-notification.php:982
710
  msgid "Move to Trash"
711
  msgstr "Enviar para lixeira"
712
 
713
+ #: includes/admin/class-bnfw-notification.php:1127
714
  msgid "Notification Type"
715
  msgstr "Tipo de notificação"
716
 
717
+ #: includes/admin/class-bnfw-notification.php:1128
718
  msgid "Enabled?"
719
  msgstr "Ativado?"
720
 
721
+ #: includes/admin/class-bnfw-notification.php:1130
722
  msgid "User Roles / Users"
723
  msgstr "Funções de usuário / Usuários"
724
 
725
+ #: includes/admin/class-bnfw-notification.php:1131
726
+ msgid "Excluded User Roles / Users"
727
+ msgstr "Funções de usuário / usuários excluídos"
728
 
729
+ #: includes/admin/class-bnfw-notification.php:1172
730
+ msgid ", Post Author"
731
+ msgstr ""
732
 
733
+ #: includes/admin/class-bnfw-notification.php:1338
734
+ msgid "Privacy Confirm Action: Export Data Request – For User"
735
+ msgstr ""
736
 
737
+ #: includes/admin/class-bnfw-notification.php:1341
738
+ msgid "Privacy – Confirm Action: Erase Data Request – For User"
739
+ msgstr ""
740
+
741
+ #: includes/admin/class-bnfw-notification.php:1389
742
+ msgid "Published"
743
+ msgstr "Publicados"
744
+
745
+ #: includes/admin/class-bnfw-notification.php:1392
746
  msgid "Updated "
747
  msgstr "Atualizar"
748
 
749
+ #: includes/admin/class-bnfw-notification.php:1395
750
  msgid " Pending Review"
751
  msgstr "Revisão pendente"
752
 
753
+ #: includes/admin/class-bnfw-notification.php:1398
754
  msgid " Scheduled"
755
  msgstr "Programado"
756
 
757
+ #: includes/admin/class-bnfw-notification.php:1404
758
  msgid " Comment"
759
  msgstr "Comentário"
760
 
761
+ #: includes/admin/class-bnfw-notification.php:1410
762
+ msgid " Comment Reply"
763
+ msgstr "Comentário Responder"
764
+
765
+ #: includes/admin/class-bnfw-notification.php:1413
766
+ msgid " Comment Approved"
767
+ msgstr "Comentário aprovado"
768
+
769
+ #: includes/admin/class-bnfw-notification.php:1418
770
+ msgid "New Term"
771
+ msgstr "Novo termo"
772
+
773
+ #: includes/admin/class-bnfw-notification.php:1420
774
+ msgid "New Term in "
775
+ msgstr "Novo termo em"
776
+
777
+ #: includes/admin/class-bnfw-notification.php:1440
778
+ msgid "Enable Notifications"
779
+ msgstr "Ativar notificações"
780
+
781
+ #: includes/admin/class-bnfw-notification.php:1441
782
+ msgid "Disable Notifications"
783
+ msgstr "Desativar as notificações"
784
+
785
+ #: includes/admin/class-bnfw-notification.php:1502
786
+ msgid "Enable Notification"
787
+ msgstr "Desabilitar notificação"
788
+
789
+ #: includes/admin/class-bnfw-notification.php:1510
790
+ msgid "Disable Notification"
791
+ msgstr "Desabilitar notificação"
792
+
793
+ #: includes/admin/class-bnfw-notification.php:1568
794
+ msgid "Enabled 1 Notification."
795
+ msgstr "Ativado 1 notificação."
796
+
797
+ #: includes/admin/class-bnfw-notification.php:1572
798
+ msgid "Disabled 1 Notification."
799
+ msgstr "Desativado 1 notificação."
800
+
801
+ #: includes/admin/class-bnfw-notification.php:1578
802
+ #, php-format
803
+ msgid "Enabled %s Notification."
804
+ msgid_plural "Enabled %s Notifications."
805
+ msgstr[0] "Notificação%s habilitada."
806
+ msgstr[1] "Ativou%s Notificações."
807
+
808
+ #: includes/admin/class-bnfw-notification.php:1588
809
+ #, php-format
810
+ msgid "Disabled %s Notification."
811
+ msgid_plural "Disabled %s Notifications."
812
+ msgstr[0] "Notificação%s desativada."
813
+ msgstr[1] "Notificações de%s desativadas."
814
+
815
+ #: includes/admin/class-bnfw-notification.php:1602
816
+ msgid ""
817
+ "If you send out notifications with BNFW but don't receive them, you may need "
818
+ "to install an SMTP plugin to <a href=\"https://betternotificationsforwp.com/"
819
+ "documentation/getting-started/how-to-improve-email-delivery/\" target="
820
+ "\"_blank\">improve email deliverability</a>. I recommend using <a href="
821
+ "\"https://wordpress.org/plugins/post-smtp/\" target=\"_blank\">Post SMTP</a> "
822
+ "as it's easy to set-up or <a href=\"https://wordpress.org/plugins/email-log/"
823
+ "\" target=\"_blank\">Email Log</a> to just log and view emails that are sent."
824
+ msgstr ""
825
+
826
+ #: includes/engine/class-bnfw-engine.php:18
827
+ msgid "Test Email:"
828
+ msgstr "Email de teste:"
829
 
830
+ #: includes/engine/class-bnfw-engine.php:19
831
+ msgid ""
832
+ "This is a test email. All shortcodes below will show in place but not be "
833
+ "replaced with content."
834
+ msgstr ""
835
+
836
+ #: includes/engine/class-bnfw-engine.php:1583
837
+ msgid "Error: Download link is not available please contact support"
838
+ msgstr ""
839
+
840
+ #: includes/helpers/ajax-helpers.php:34 includes/helpers/helpers.php:38
841
+ msgid "User Roles"
842
+ msgstr "Funções do usuário"
843
+
844
+ #: includes/helpers/ajax-helpers.php:57 includes/helpers/helpers.php:59
845
+ #: includes/helpers/helpers.php:64
846
+ msgid "Users"
847
+ msgstr ""
848
+
849
+ #: includes/helpers/helpers.php:103
850
+ msgid "Non WordPress Users"
851
+ msgstr ""
852
+
853
+ #: includes/import.php:69
854
  msgid " for "
855
  msgstr "para"
856
 
857
+ #: includes/import.php:69
858
  msgid " (Auto Imported)"
859
  msgstr "(Importado automático)"
860
 
861
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:228
862
+ #, php-format
863
+ msgid ""
864
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
865
+ msgstr ""
866
+
867
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:236
868
+ #, php-format
869
+ msgid ""
870
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
871
+ "or %5$supdate now%6$s."
872
+ msgstr ""
873
+
874
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
875
+ msgid "You do not have permission to install plugin updates"
876
+ msgstr ""
877
+
878
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
879
+ msgid "Error"
880
+ msgstr ""
881
+
882
+ #: includes/license/class-bnfw-license-setting.php:18
883
+ #: includes/license/class-bnfw-license-setting.php:19
884
+ msgid "Add-on Licenses"
885
+ msgstr ""
886
+
887
+ #: includes/license/class-bnfw-license-setting.php:38
888
+ msgid "BNFW Add-on Licenses"
889
+ msgstr ""
890
+
891
+ #: includes/license/class-bnfw-license-setting.php:47
892
+ msgid "Save License"
893
+ msgstr ""
894
+
895
+ #: includes/license/class-bnfw-license-setting.php:55
896
+ msgid ""
897
+ "<br>You have no BNFW Premium Add-ons installed yet.<br>You can buy add-ons "
898
+ "from the <a href=\""
899
+ msgstr ""
900
+
901
+ #: includes/license/class-bnfw-license-setting.php:130
902
+ msgid "Deactivate License"
903
+ msgstr ""
904
+
905
+ #: includes/license/class-bnfw-license.php:140
906
+ #, php-format
907
+ msgid "%1$s License Key"
908
+ msgstr ""
909
+
910
+ #: includes/overrides.php:41 includes/overrides.php:135
911
+ #, php-format
912
  msgid "New user registration on your site %s:"
913
  msgstr "Novo registro de usuário em seu site %s:"
914
 
915
+ #: includes/overrides.php:42 includes/overrides.php:117
916
+ #: includes/overrides.php:136 includes/overrides.php:152
917
+ #, php-format
918
  msgid "Username: %s"
919
  msgstr "Usuário: %s"
920
 
921
+ #: includes/overrides.php:43 includes/overrides.php:137
922
+ #, php-format
923
  msgid "E-mail: %s"
924
  msgstr "Email: %s"
925
 
926
+ #. translators: Password change notification email subject. %s: Site title
927
+ #: includes/overrides.php:48 includes/overrides.php:139
928
+ #, php-format
929
  msgid "[%s] New User Registration"
930
  msgstr "[%s] Novo Registro de Usuário"
931
 
932
+ #: includes/overrides.php:118
933
+ msgid "To set your password, visit the following address:"
934
+ msgstr ""
935
+
936
+ #: includes/overrides.php:123
937
+ #, php-format
938
+ msgid "[%s] Your username and password info"
939
+ msgstr "[%s] Informações do seu nome de usuário e senha"
940
+
941
+ #: includes/overrides.php:153
942
+ #, php-format
943
  msgid "Password: %s"
944
  msgstr "Senha: %s"
945
 
946
+ #: includes/overrides.php:156
947
+ #, php-format
948
  msgid "[%s] Your username and password"
949
  msgstr "[%s] O seu nome de usuário e senha"
950
 
951
+ #. translators: %s: user name
952
+ #: includes/overrides.php:184
953
+ #, php-format
954
+ msgid "Password changed for user: %s"
955
+ msgstr "Senha alterada para o usuário:%s"
956
+
957
+ #. translators: %s: site title
958
+ #: includes/overrides.php:189
959
+ #, php-format
960
+ msgid "[%s] Password Changed"
961
+ msgstr ""
962
+
963
  #. Plugin Name of the plugin/theme
964
  msgid "Better Notifications for WP"
965
  msgstr "Melhores notificações para WordPress"
966
 
967
  #. Plugin URI of the plugin/theme
968
+ #, fuzzy
969
+ #| msgid "http://wordpress.org/plugins/bnfw/"
970
+ msgid "https://wordpress.org/plugins/bnfw/"
971
  msgstr "http://wordpress.org/plugins/bnfw/"
972
 
973
  #. Description of the plugin/theme
974
+ msgid ""
975
+ "Supercharge your WordPress notifications using a WYSIWYG editor and "
976
+ "shortcodes. Default and new notifications available. Add more power with Add-"
977
+ "ons."
978
+ msgstr ""
979
 
980
  #. Author of the plugin/theme
981
  msgid "Made with Fuel"
982
  msgstr "Made with Fuel"
983
 
984
  #. Author URI of the plugin/theme
985
+ msgid "https://madewithfuel.com/"
986
+ msgstr ""
987
+
988
+ #~ msgid "New User - Welcome Email"
989
+ #~ msgstr "Novo Usuário - Email de boas vindas"
990
+
991
+ #~ msgid "Update "
992
+ #~ msgstr "Atualizar"
993
+
994
+ #~ msgid "Show additional email fields"
995
+ #~ msgstr "Mostrar campos adicionais do email"
996
+
997
+ #~ msgid ""
998
+ #~ "Looking for help with shortcodes? Click here to see which ones you can "
999
+ #~ "use with the selected notification."
1000
+ #~ msgstr ""
1001
+ #~ "Precisando de ajuda com códigos de acesso? Clique aqui para ver qual "
1002
+ #~ "deles você pode usar com a notificação selecionada."
1003
+
1004
+ #~ msgid "New User - Welcome email"
1005
+ #~ msgstr "Novo usuário - Email de boas vindas"
1006
+
1007
+ #~ msgid ""
1008
+ #~ "Send customisable HTML emails to your users for different WordPress "
1009
+ #~ "notifications."
1010
+ #~ msgstr ""
1011
+ #~ "Enviar emails HTML com notificações personalizáveis para usuários "
1012
+ #~ "diferentes do WordPress."
1013
+
1014
+ #~ msgid "https://betternotificationsforwp.com/"
1015
+ #~ msgstr "https://betternotificationsforwp.com/"
languages/bnfw.pot CHANGED
@@ -1,413 +1,980 @@
1
- # Copyright (C) 2015 Better Notifications for WP
2
- # This file is distributed under the same license as the Better Notifications for WP package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Better Notifications for WP 1.3.3\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bnfw\n"
7
- "POT-Creation-Date: 2015-08-11 05:30:23+00:00\n"
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
 
 
 
 
 
 
 
14
 
15
  #: includes/admin/bnfw-settings.php:14
16
- #: includes/admin/class-bnfw-notification.php:120
17
  msgid "Notification Settings"
18
  msgstr ""
19
 
20
- #: includes/admin/bnfw-settings.php:15
21
- msgid "Settings"
22
  msgstr ""
23
 
24
- #: includes/admin/bnfw-settings.php:36
25
- msgid "BNFW Settings"
 
 
 
 
 
 
 
 
26
  msgstr ""
27
 
28
- #: includes/admin/bnfw-settings.php:77
 
 
 
 
29
  msgid "Suppress SPAM comment notification"
30
  msgstr ""
31
 
32
- #: includes/admin/bnfw-settings.php:82
33
- msgid "Don't send notifications for comments marked as SPAM by Akismet"
 
 
 
 
 
 
34
  msgstr ""
35
 
36
- #: includes/admin/bnfw-settings.php:95
37
  msgid "Default Email Format"
38
  msgstr ""
39
 
40
- #: includes/admin/bnfw-settings.php:100
41
  msgid ""
42
  "This will apply to all emails sent out via WordPress, even those from other "
43
- "plugins. For more details, please see the <a href=\"https://wordpress.org/"
44
- "plugins/bnfw/faq/\" target=\"_blank\">FAQ</a>."
 
 
 
 
 
 
 
45
  msgstr ""
46
 
47
- #: includes/admin/bnfw-settings.php:143
48
- #: includes/admin/class-bnfw-notification.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  msgid "HTML Formatting"
50
  msgstr ""
51
 
52
- #: includes/admin/bnfw-settings.php:147
53
- #: includes/admin/class-bnfw-notification.php:257
54
  msgid "Plain Text"
55
  msgstr ""
56
 
57
- #: includes/admin/class-bnfw-notification.php:45
58
- #: includes/admin/class-bnfw-notification.php:48
59
- #: includes/admin/class-bnfw-notification.php:49
60
  msgid "Notifications"
61
  msgstr ""
62
 
63
- #: includes/admin/class-bnfw-notification.php:46
64
  msgid "Notification"
65
  msgstr ""
66
 
67
- #: includes/admin/class-bnfw-notification.php:47
68
  msgid "Add New"
69
  msgstr ""
70
 
71
- #: includes/admin/class-bnfw-notification.php:50
72
  msgid "Add New Notification"
73
  msgstr ""
74
 
75
- #: includes/admin/class-bnfw-notification.php:51
76
  msgid "Edit Notification"
77
  msgstr ""
78
 
79
- #: includes/admin/class-bnfw-notification.php:52
80
  msgid "New Notification"
81
  msgstr ""
82
 
83
- #: includes/admin/class-bnfw-notification.php:53
84
  msgid "View Notification"
85
  msgstr ""
86
 
87
- #: includes/admin/class-bnfw-notification.php:54
88
  msgid "Search Notifications"
89
  msgstr ""
90
 
91
- #: includes/admin/class-bnfw-notification.php:55
92
  msgid "No Notifications found"
93
  msgstr ""
94
 
95
- #: includes/admin/class-bnfw-notification.php:56
96
  msgid "No Notifications found in trash"
97
  msgstr ""
98
 
99
- #: includes/admin/class-bnfw-notification.php:57
100
  msgid "All Notifications"
101
  msgstr ""
102
 
103
- #: includes/admin/class-bnfw-notification.php:128
104
  msgid "Save Notification"
105
  msgstr ""
106
 
107
- #: includes/admin/class-bnfw-notification.php:156
108
  msgid "Notification For"
109
  msgstr ""
110
 
111
- #: includes/admin/class-bnfw-notification.php:161
112
- msgid "New Comment / Awaiting Moderation"
 
 
113
  msgstr ""
114
 
115
- #: includes/admin/class-bnfw-notification.php:162
116
- #: includes/admin/class-bnfw-notification.php:769
117
- msgid "New Trackback"
118
  msgstr ""
119
 
120
- #: includes/admin/class-bnfw-notification.php:163
121
- #: includes/admin/class-bnfw-notification.php:772
122
- msgid "New Pingback"
123
  msgstr ""
124
 
125
- #: includes/admin/class-bnfw-notification.php:164
126
- #: includes/admin/class-bnfw-notification.php:781
127
- msgid "Lost Password - For Admin"
128
  msgstr ""
129
 
130
- #: includes/admin/class-bnfw-notification.php:165
131
- msgid "New User Registration - For Admin"
 
 
 
 
 
 
132
  msgstr ""
133
 
134
- #: includes/admin/class-bnfw-notification.php:168
135
- #: includes/admin/class-bnfw-notification.php:778
136
- msgid "Lost Password - For User"
 
 
 
 
 
137
  msgstr ""
138
 
139
- #: includes/admin/class-bnfw-notification.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  msgid "New User Registration - For User"
141
  msgstr ""
142
 
143
- #: includes/admin/class-bnfw-notification.php:170
144
- msgid "New User - Welcome Email"
 
145
  msgstr ""
146
 
147
- #: includes/admin/class-bnfw-notification.php:171
148
- #: includes/admin/class-bnfw-notification.php:775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  msgid "Comment Reply"
150
  msgstr ""
151
 
152
- #: includes/admin/class-bnfw-notification.php:174
153
- #: includes/admin/class-bnfw-notification.php:793
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  msgid "New Post Published"
155
  msgstr ""
156
 
157
- #: includes/admin/class-bnfw-notification.php:175
158
- #: includes/admin/class-bnfw-notification.php:796
159
  msgid "Post Updated"
160
  msgstr ""
161
 
162
- #: includes/admin/class-bnfw-notification.php:176
163
- #: includes/admin/class-bnfw-notification.php:799
164
  msgid "Post Pending Review"
165
  msgstr ""
166
 
167
- #: includes/admin/class-bnfw-notification.php:177
168
- #: includes/admin/class-bnfw-notification.php:802
 
 
 
 
 
169
  msgid "Post Scheduled"
170
  msgstr ""
171
 
172
- #: includes/admin/class-bnfw-notification.php:178
173
- #: includes/admin/class-bnfw-notification.php:805
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  msgid "New Category"
175
  msgstr ""
176
 
177
- #: includes/admin/class-bnfw-notification.php:179
178
- #: includes/admin/class-bnfw-notification.php:808
179
  msgid "New Tag"
180
  msgstr ""
181
 
182
- #: includes/admin/class-bnfw-notification.php:182
 
 
 
 
 
 
 
 
 
 
 
183
  msgid "New Page Published"
184
  msgstr ""
185
 
186
- #: includes/admin/class-bnfw-notification.php:183
187
  msgid "Page Updated"
188
  msgstr ""
189
 
190
- #: includes/admin/class-bnfw-notification.php:184
191
  msgid "Page Pending Review"
192
  msgstr ""
193
 
194
- #: includes/admin/class-bnfw-notification.php:185
 
 
 
 
195
  msgid "Page Scheduled"
196
  msgstr ""
197
 
198
- #: includes/admin/class-bnfw-notification.php:186
199
  msgid "Page - New Comment"
200
  msgstr ""
201
 
202
- #: includes/admin/class-bnfw-notification.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  msgid "Custom Post Type"
204
  msgstr ""
205
 
206
- #: includes/admin/class-bnfw-notification.php:201
207
- #: includes/admin/class-bnfw-notification.php:821
208
  msgid "New "
209
  msgstr ""
210
 
211
- #: includes/admin/class-bnfw-notification.php:202
212
- msgid "Update "
 
 
 
 
213
  msgstr ""
214
 
215
- #: includes/admin/class-bnfw-notification.php:203
216
  msgid "Pending Review"
217
  msgstr ""
218
 
219
- #: includes/admin/class-bnfw-notification.php:204
 
 
 
 
 
220
  msgid "Scheduled"
221
  msgstr ""
222
 
223
- #: includes/admin/class-bnfw-notification.php:205
224
- #: includes/admin/class-bnfw-notification.php:766
225
- msgid "New Comment"
226
  msgstr ""
227
 
228
- #: includes/admin/class-bnfw-notification.php:219
229
  msgid "Custom Taxonomy"
230
  msgstr ""
231
 
232
- #: includes/admin/class-bnfw-notification.php:224
233
  msgid "New"
234
  msgstr ""
235
 
236
- #: includes/admin/class-bnfw-notification.php:240
237
  msgid ""
238
- "This notification doesn't support additional email fields or shortcodes in "
239
- "the subject line."
240
  msgstr ""
241
 
242
- #: includes/admin/class-bnfw-notification.php:247
243
  msgid "Email Formatting"
244
  msgstr ""
245
 
246
- #: includes/admin/class-bnfw-notification.php:264 includes/tmp.php:3
 
 
 
 
 
 
247
  msgid "Additional Email Fields"
248
  msgstr ""
249
 
250
- #: includes/admin/class-bnfw-notification.php:268 includes/tmp.php:7
251
- msgid "Show additional email fields"
 
 
 
 
 
 
 
252
  msgstr ""
253
 
254
- #: includes/admin/class-bnfw-notification.php:274 includes/tmp.php:13
255
  msgid "From Name and Email"
256
  msgstr ""
257
 
258
- #: includes/admin/class-bnfw-notification.php:284 includes/tmp.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "CC"
260
  msgstr ""
261
 
262
- #: includes/admin/class-bnfw-notification.php:296 includes/tmp.php:34
 
 
 
 
 
 
 
 
 
 
 
263
  msgid "BCC"
264
  msgstr ""
265
 
266
- #: includes/admin/class-bnfw-notification.php:311
267
- msgid "Send this notification to the Post Author only"
268
  msgstr ""
269
 
270
- #: includes/admin/class-bnfw-notification.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  msgid "Send To"
272
  msgstr ""
273
 
274
- #: includes/admin/class-bnfw-notification.php:332
275
- msgid "Disable this Notification for the User that triggered it"
 
 
 
 
 
 
 
 
 
 
276
  msgstr ""
277
 
278
- #: includes/admin/class-bnfw-notification.php:339
279
- #: includes/admin/class-bnfw-notification.php:692
 
 
 
 
 
 
280
  msgid "Subject"
281
  msgstr ""
282
 
283
- #: includes/admin/class-bnfw-notification.php:348
 
 
 
 
 
 
 
 
 
284
  msgid "Message Body"
285
  msgstr ""
286
 
287
- #: includes/admin/class-bnfw-notification.php:352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  msgid ""
289
- "Looking for help with shortcodes? Click here to see which ones you can use "
290
- "with the selected notification."
291
  msgstr ""
292
 
293
- #: includes/admin/class-bnfw-notification.php:490
 
 
 
 
 
 
294
  msgid "Test Notification Sent."
295
  msgstr ""
296
 
297
- #: includes/admin/class-bnfw-notification.php:567
298
  msgid "Notification saved."
299
  msgstr ""
300
 
301
- #: includes/admin/class-bnfw-notification.php:585
302
- #: includes/admin/class-bnfw-notification.php:621
303
- #: includes/admin/class-bnfw-notification.php:622
304
  msgid "Save"
305
  msgstr ""
306
 
307
- #: includes/admin/class-bnfw-notification.php:595
308
- msgid "Disable Notification"
 
 
 
309
  msgstr ""
310
 
311
- #: includes/admin/class-bnfw-notification.php:601
 
 
 
 
 
 
 
 
312
  msgid "Send Me a Test Email"
313
  msgstr ""
314
 
315
- #: includes/admin/class-bnfw-notification.php:611
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  msgid "Delete Permanently"
317
  msgstr ""
318
 
319
- #: includes/admin/class-bnfw-notification.php:613
320
  msgid "Move to Trash"
321
  msgstr ""
322
 
323
- #: includes/admin/class-bnfw-notification.php:690
324
  msgid "Notification Type"
325
  msgstr ""
326
 
327
- #: includes/admin/class-bnfw-notification.php:691
328
  msgid "Enabled?"
329
  msgstr ""
330
 
331
- #: includes/admin/class-bnfw-notification.php:693
332
  msgid "User Roles / Users"
333
  msgstr ""
334
 
335
- #: includes/admin/class-bnfw-notification.php:784
336
- msgid "User Registration - For User"
 
 
 
 
337
  msgstr ""
338
 
339
- #: includes/admin/class-bnfw-notification.php:787
340
- msgid "New User - Welcome email"
341
  msgstr ""
342
 
343
- #: includes/admin/class-bnfw-notification.php:790
344
- msgid "User Registration - For Admin"
345
  msgstr ""
346
 
347
- #: includes/admin/class-bnfw-notification.php:824
 
 
 
 
348
  msgid "Updated "
349
  msgstr ""
350
 
351
- #: includes/admin/class-bnfw-notification.php:827
352
  msgid " Pending Review"
353
  msgstr ""
354
 
355
- #: includes/admin/class-bnfw-notification.php:830
356
  msgid " Scheduled"
357
  msgstr ""
358
 
359
- #: includes/admin/class-bnfw-notification.php:833
360
  msgid " Comment"
361
  msgstr ""
362
 
363
- #: includes/admin/class-bnfw-notification.php:836
364
- msgid "New term in "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
  msgstr ""
366
 
367
- #: includes/import.php:60
 
 
 
 
 
 
 
 
 
368
  msgid " for "
369
  msgstr ""
370
 
371
- #: includes/import.php:60
372
  msgid " (Auto Imported)"
373
  msgstr ""
374
 
375
- #: includes/overrides.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
  msgid "New user registration on your site %s:"
377
  msgstr ""
378
 
379
- #: includes/overrides.php:26 includes/overrides.php:42
 
 
380
  msgid "Username: %s"
381
  msgstr ""
382
 
383
- #: includes/overrides.php:27
 
384
  msgid "E-mail: %s"
385
  msgstr ""
386
 
387
- #: includes/overrides.php:29
 
 
388
  msgid "[%s] New User Registration"
389
  msgstr ""
390
 
391
- #: includes/overrides.php:43
 
 
 
 
 
 
 
 
 
 
392
  msgid "Password: %s"
393
  msgstr ""
394
 
395
- #: includes/overrides.php:46
 
396
  msgid "[%s] Your username and password"
397
  msgstr ""
398
 
 
 
 
 
 
 
 
 
 
 
 
 
399
  #. Plugin Name of the plugin/theme
400
  msgid "Better Notifications for WP"
401
  msgstr ""
402
 
403
  #. Plugin URI of the plugin/theme
404
- msgid "http://wordpress.org/plugins/bnfw/"
405
  msgstr ""
406
 
407
  #. Description of the plugin/theme
408
  msgid ""
409
- "Send customisable HTML emails to your users for different WordPress "
410
- "notifications."
 
411
  msgstr ""
412
 
413
  #. Author of the plugin/theme
@@ -415,5 +982,5 @@ msgid "Made with Fuel"
415
  msgstr ""
416
 
417
  #. Author URI of the plugin/theme
418
- msgid "https://betternotificationsforwp.com/"
419
  msgstr ""
1
+ #, fuzzy
 
2
  msgid ""
3
  msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: Better Notifications for WP\n"
6
+ "POT-Creation-Date: 2020-11-27 21:34+0800\n"
7
+ "PO-Revision-Date: 2020-11-27 21:32+0800\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: bnfw.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ #: bnfw.php:283 includes/admin/bnfw-settings.php:15
25
+ msgid "Settings"
26
+ msgstr ""
27
 
28
  #: includes/admin/bnfw-settings.php:14
29
+ #: includes/admin/class-bnfw-notification.php:129
30
  msgid "Notification Settings"
31
  msgstr ""
32
 
33
+ #: includes/admin/bnfw-settings.php:38
34
+ msgid "BNFW Settings"
35
  msgstr ""
36
 
37
+ #: includes/admin/bnfw-settings.php:46
38
+ msgid "Save Settings"
39
+ msgstr ""
40
+
41
+ #: includes/admin/bnfw-settings.php:73
42
+ msgid "Documentation"
43
+ msgstr ""
44
+
45
+ #: includes/admin/bnfw-settings.php:80
46
+ msgid "Premium Add-ons"
47
  msgstr ""
48
 
49
+ #: includes/admin/bnfw-settings.php:87
50
+ msgid "Priority Support"
51
+ msgstr ""
52
+
53
+ #: includes/admin/bnfw-settings.php:150
54
  msgid "Suppress SPAM comment notification"
55
  msgstr ""
56
 
57
+ #: includes/admin/bnfw-settings.php:150
58
+ msgid ""
59
+ "Comments that are correctly marked as SPAM by a 3rd party plugin (such as "
60
+ "Akismet) will not generate a notification if this is ticked."
61
+ msgstr ""
62
+
63
+ #: includes/admin/bnfw-settings.php:155
64
+ msgid "Don't send notifications for comments marked as SPAM"
65
  msgstr ""
66
 
67
+ #: includes/admin/bnfw-settings.php:167
68
  msgid "Default Email Format"
69
  msgstr ""
70
 
71
+ #: includes/admin/bnfw-settings.php:167
72
  msgid ""
73
  "This will apply to all emails sent out via WordPress, even those from other "
74
+ "plugins. For more details, please see the "
75
+ msgstr ""
76
+
77
+ #: includes/admin/bnfw-settings.php:181
78
+ msgid "Enable Content Shortcodes?"
79
+ msgstr ""
80
+
81
+ #: includes/admin/bnfw-settings.php:181
82
+ msgid "Shortcodes in the post/page content are disabled by default."
83
  msgstr ""
84
 
85
+ #: includes/admin/bnfw-settings.php:186
86
+ msgid "Enable shortcode output in the page/post content"
87
+ msgstr ""
88
+
89
+ #: includes/admin/bnfw-settings.php:198
90
+ msgid "Allow Usage Tracking?"
91
+ msgstr ""
92
+
93
+ #: includes/admin/bnfw-settings.php:203
94
+ msgid ""
95
+ "Allow Better Notifications for WP to anonymously track how this plugin is "
96
+ "used and help make the plugin better."
97
+ msgstr ""
98
+
99
+ #: includes/admin/bnfw-settings.php:251
100
+ #: includes/admin/class-bnfw-notification.php:433
101
  msgid "HTML Formatting"
102
  msgstr ""
103
 
104
+ #: includes/admin/bnfw-settings.php:256
105
+ #: includes/admin/class-bnfw-notification.php:439
106
  msgid "Plain Text"
107
  msgstr ""
108
 
109
+ #: includes/admin/class-bnfw-notification.php:52
110
+ #: includes/admin/class-bnfw-notification.php:55
111
+ #: includes/admin/class-bnfw-notification.php:56
112
  msgid "Notifications"
113
  msgstr ""
114
 
115
+ #: includes/admin/class-bnfw-notification.php:53
116
  msgid "Notification"
117
  msgstr ""
118
 
119
+ #: includes/admin/class-bnfw-notification.php:54
120
  msgid "Add New"
121
  msgstr ""
122
 
123
+ #: includes/admin/class-bnfw-notification.php:57
124
  msgid "Add New Notification"
125
  msgstr ""
126
 
127
+ #: includes/admin/class-bnfw-notification.php:58
128
  msgid "Edit Notification"
129
  msgstr ""
130
 
131
+ #: includes/admin/class-bnfw-notification.php:59
132
  msgid "New Notification"
133
  msgstr ""
134
 
135
+ #: includes/admin/class-bnfw-notification.php:60
136
  msgid "View Notification"
137
  msgstr ""
138
 
139
+ #: includes/admin/class-bnfw-notification.php:61
140
  msgid "Search Notifications"
141
  msgstr ""
142
 
143
+ #: includes/admin/class-bnfw-notification.php:62
144
  msgid "No Notifications found"
145
  msgstr ""
146
 
147
+ #: includes/admin/class-bnfw-notification.php:63
148
  msgid "No Notifications found in trash"
149
  msgstr ""
150
 
151
+ #: includes/admin/class-bnfw-notification.php:64
152
  msgid "All Notifications"
153
  msgstr ""
154
 
155
+ #: includes/admin/class-bnfw-notification.php:138
156
  msgid "Save Notification"
157
  msgstr ""
158
 
159
+ #: includes/admin/class-bnfw-notification.php:186
160
  msgid "Notification For"
161
  msgstr ""
162
 
163
+ #: includes/admin/class-bnfw-notification.php:187
164
+ msgid ""
165
+ "E.g. If you select \"New Post Published\" from the list on the right, this "
166
+ "notification will be sent when a new post is published."
167
  msgstr ""
168
 
169
+ #: includes/admin/class-bnfw-notification.php:191
170
+ msgid "Select the notification type"
 
171
  msgstr ""
172
 
173
+ #: includes/admin/class-bnfw-notification.php:192
174
+ msgid "Admin"
 
175
  msgstr ""
176
 
177
+ #: includes/admin/class-bnfw-notification.php:194
178
+ #: includes/admin/class-bnfw-notification.php:1302
179
+ msgid "New User Registration - For Admin"
180
  msgstr ""
181
 
182
+ #: includes/admin/class-bnfw-notification.php:196
183
+ #: includes/admin/class-bnfw-notification.php:1269
184
+ msgid "User Lost Password - For Admin"
185
+ msgstr ""
186
+
187
+ #: includes/admin/class-bnfw-notification.php:198
188
+ #: includes/admin/class-bnfw-notification.php:1272
189
+ msgid "Password Changed - For Admin"
190
  msgstr ""
191
 
192
+ #: includes/admin/class-bnfw-notification.php:200
193
+ #: includes/admin/class-bnfw-notification.php:1275
194
+ msgid "User Email Changed - For Admin"
195
+ msgstr ""
196
+
197
+ #: includes/admin/class-bnfw-notification.php:202
198
+ #: includes/admin/class-bnfw-notification.php:1308
199
+ msgid "User Role Changed - For Admin"
200
  msgstr ""
201
 
202
+ #: includes/admin/class-bnfw-notification.php:204
203
+ #: includes/admin/class-bnfw-notification.php:1296
204
+ msgid "User Logged In - For Admin"
205
+ msgstr ""
206
+
207
+ #: includes/admin/class-bnfw-notification.php:206
208
+ #: includes/admin/class-bnfw-notification.php:1287
209
+ msgid "WordPress Core Automatic Background Updates"
210
+ msgstr ""
211
+
212
+ #: includes/admin/class-bnfw-notification.php:210
213
+ #: includes/admin/class-bnfw-notification.php:1344
214
+ msgid "Privacy - Confirm Action: Export Data Request - For Admin"
215
+ msgstr ""
216
+
217
+ #: includes/admin/class-bnfw-notification.php:214
218
+ #: includes/admin/class-bnfw-notification.php:1347
219
+ msgid "Privacy - Confirm Action: Erase Data Request - For Admin"
220
+ msgstr ""
221
+
222
+ #: includes/admin/class-bnfw-notification.php:222
223
+ msgid "Transactional"
224
+ msgstr ""
225
+
226
+ #: includes/admin/class-bnfw-notification.php:224
227
+ #: includes/admin/class-bnfw-notification.php:1290
228
  msgid "New User Registration - For User"
229
  msgstr ""
230
 
231
+ #: includes/admin/class-bnfw-notification.php:226
232
+ #: includes/admin/class-bnfw-notification.php:1299
233
+ msgid "New User - Post-registration Email"
234
  msgstr ""
235
 
236
+ #: includes/admin/class-bnfw-notification.php:228
237
+ #: includes/admin/class-bnfw-notification.php:1266
238
+ msgid "User Lost Password - For User"
239
+ msgstr ""
240
+
241
+ #: includes/admin/class-bnfw-notification.php:230
242
+ #: includes/admin/class-bnfw-notification.php:1278
243
+ msgid "Password Changed - For User"
244
+ msgstr ""
245
+
246
+ #: includes/admin/class-bnfw-notification.php:232
247
+ #: includes/admin/class-bnfw-notification.php:1281
248
+ msgid "User Email Changed Confirmation - For User"
249
+ msgstr ""
250
+
251
+ #: includes/admin/class-bnfw-notification.php:235
252
+ #: includes/admin/class-bnfw-notification.php:1284
253
+ msgid "User Email Changed - For User"
254
+ msgstr ""
255
+
256
+ #: includes/admin/class-bnfw-notification.php:237
257
+ #: includes/admin/class-bnfw-notification.php:1305
258
+ msgid "User Role Changed - For User"
259
+ msgstr ""
260
+
261
+ #: includes/admin/class-bnfw-notification.php:239
262
+ #: includes/admin/class-bnfw-notification.php:1293
263
+ msgid "User Logged In - For User"
264
+ msgstr ""
265
+
266
+ #: includes/admin/class-bnfw-notification.php:241
267
+ #: includes/admin/class-bnfw-notification.php:375
268
+ #: includes/admin/class-bnfw-notification.php:1263
269
  msgid "Comment Reply"
270
  msgstr ""
271
 
272
+ #: includes/admin/class-bnfw-notification.php:245
273
+ msgid "Privacy - Confirm Action: Export Data Request - For User"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-bnfw-notification.php:249
277
+ msgid "Privacy - Confirm Action: Erase Data Request - For User"
278
+ msgstr ""
279
+
280
+ #: includes/admin/class-bnfw-notification.php:253
281
+ #: includes/admin/class-bnfw-notification.php:1350
282
+ msgid "Privacy - Data Export - For User"
283
+ msgstr ""
284
+
285
+ #: includes/admin/class-bnfw-notification.php:257
286
+ #: includes/admin/class-bnfw-notification.php:1353
287
+ msgid "Privacy - Data Erased - For User"
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-bnfw-notification.php:267
291
+ #: includes/admin/class-bnfw-notification.php:1311
292
  msgid "New Post Published"
293
  msgstr ""
294
 
295
+ #: includes/admin/class-bnfw-notification.php:269
296
+ #: includes/admin/class-bnfw-notification.php:1314
297
  msgid "Post Updated"
298
  msgstr ""
299
 
300
+ #: includes/admin/class-bnfw-notification.php:271
301
+ #: includes/admin/class-bnfw-notification.php:1317
302
  msgid "Post Pending Review"
303
  msgstr ""
304
 
305
+ #: includes/admin/class-bnfw-notification.php:273
306
+ #: includes/admin/class-bnfw-notification.php:1320
307
+ msgid "New Private Post"
308
+ msgstr ""
309
+
310
+ #: includes/admin/class-bnfw-notification.php:275
311
+ #: includes/admin/class-bnfw-notification.php:1323
312
  msgid "Post Scheduled"
313
  msgstr ""
314
 
315
+ #: includes/admin/class-bnfw-notification.php:277
316
+ #: includes/admin/class-bnfw-notification.php:1326
317
+ msgid "Published Post Moved to Trash"
318
+ msgstr ""
319
+
320
+ #: includes/admin/class-bnfw-notification.php:279
321
+ #: includes/admin/class-bnfw-notification.php:367
322
+ #: includes/admin/class-bnfw-notification.php:1248
323
+ msgid "New Comment"
324
+ msgstr ""
325
+
326
+ #: includes/admin/class-bnfw-notification.php:282
327
+ #: includes/admin/class-bnfw-notification.php:369
328
+ #: includes/admin/class-bnfw-notification.php:1254
329
+ #: includes/admin/class-bnfw-notification.php:1407
330
+ msgid "New Comment Awaiting Moderation"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-bnfw-notification.php:285
334
+ #: includes/admin/class-bnfw-notification.php:1251
335
+ msgid "Post - Comment Approved"
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-bnfw-notification.php:288
339
+ #: includes/admin/class-bnfw-notification.php:1332
340
  msgid "New Category"
341
  msgstr ""
342
 
343
+ #: includes/admin/class-bnfw-notification.php:290
344
+ #: includes/admin/class-bnfw-notification.php:1335
345
  msgid "New Tag"
346
  msgstr ""
347
 
348
+ #: includes/admin/class-bnfw-notification.php:292
349
+ #: includes/admin/class-bnfw-notification.php:1257
350
+ msgid "New Trackback"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-bnfw-notification.php:294
354
+ #: includes/admin/class-bnfw-notification.php:1260
355
+ msgid "New Pingback"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-bnfw-notification.php:301
359
+ #: includes/admin/class-bnfw-notification.php:1329
360
  msgid "New Page Published"
361
  msgstr ""
362
 
363
+ #: includes/admin/class-bnfw-notification.php:303
364
  msgid "Page Updated"
365
  msgstr ""
366
 
367
+ #: includes/admin/class-bnfw-notification.php:305
368
  msgid "Page Pending Review"
369
  msgstr ""
370
 
371
+ #: includes/admin/class-bnfw-notification.php:307
372
+ msgid "New Private Page"
373
+ msgstr ""
374
+
375
+ #: includes/admin/class-bnfw-notification.php:309
376
  msgid "Page Scheduled"
377
  msgstr ""
378
 
379
+ #: includes/admin/class-bnfw-notification.php:311
380
  msgid "Page - New Comment"
381
  msgstr ""
382
 
383
+ #: includes/admin/class-bnfw-notification.php:313
384
+ msgid "Page - New Comment Awaiting Moderation"
385
+ msgstr ""
386
+
387
+ #: includes/admin/class-bnfw-notification.php:316
388
+ #: includes/admin/class-bnfw-notification.php:1365
389
+ msgid "Page - Comment Approved"
390
+ msgstr ""
391
+
392
+ #: includes/admin/class-bnfw-notification.php:319
393
+ msgid "Page - Comment Reply"
394
+ msgstr ""
395
+
396
+ #: includes/admin/class-bnfw-notification.php:326
397
+ #: includes/admin/class-bnfw-notification.php:1356
398
+ msgid "New Media Published"
399
+ msgstr ""
400
+
401
+ #: includes/admin/class-bnfw-notification.php:328
402
+ #: includes/admin/class-bnfw-notification.php:1359
403
+ msgid "Media Updated"
404
+ msgstr ""
405
+
406
+ #: includes/admin/class-bnfw-notification.php:330
407
+ #: includes/admin/class-bnfw-notification.php:1362
408
+ msgid "Media - New Comment"
409
+ msgstr ""
410
+
411
+ #: includes/admin/class-bnfw-notification.php:332
412
+ #: includes/admin/class-bnfw-notification.php:1368
413
+ msgid "Media - Comment Approved"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-bnfw-notification.php:335
417
+ #: includes/admin/class-bnfw-notification.php:1371
418
+ msgid "Media - New Comment Awaiting Moderation"
419
+ msgstr ""
420
+
421
+ #: includes/admin/class-bnfw-notification.php:337
422
+ #: includes/admin/class-bnfw-notification.php:1374
423
+ msgid "Media - Comment Reply"
424
+ msgstr ""
425
+
426
+ #: includes/admin/class-bnfw-notification.php:355
427
  msgid "Custom Post Type"
428
  msgstr ""
429
 
430
+ #: includes/admin/class-bnfw-notification.php:357
431
+ #: includes/admin/class-bnfw-notification.php:1389
432
  msgid "New "
433
  msgstr ""
434
 
435
+ #: includes/admin/class-bnfw-notification.php:357
436
+ msgid " Published"
437
+ msgstr ""
438
+
439
+ #: includes/admin/class-bnfw-notification.php:359
440
+ msgid "Updated"
441
  msgstr ""
442
 
443
+ #: includes/admin/class-bnfw-notification.php:361
444
  msgid "Pending Review"
445
  msgstr ""
446
 
447
+ #: includes/admin/class-bnfw-notification.php:363
448
+ #: includes/admin/class-bnfw-notification.php:1401
449
+ msgid "New Private "
450
+ msgstr ""
451
+
452
+ #: includes/admin/class-bnfw-notification.php:365
453
  msgid "Scheduled"
454
  msgstr ""
455
 
456
+ #: includes/admin/class-bnfw-notification.php:372
457
+ msgid "Comment Approved"
 
458
  msgstr ""
459
 
460
+ #: includes/admin/class-bnfw-notification.php:394
461
  msgid "Custom Taxonomy"
462
  msgstr ""
463
 
464
+ #: includes/admin/class-bnfw-notification.php:400
465
  msgid "New"
466
  msgstr ""
467
 
468
+ #: includes/admin/class-bnfw-notification.php:419
469
  msgid ""
470
+ "This notification doesn't support additional email fields due to a "
471
+ "limitation in WordPress."
472
  msgstr ""
473
 
474
+ #: includes/admin/class-bnfw-notification.php:426
475
  msgid "Email Formatting"
476
  msgstr ""
477
 
478
+ #: includes/admin/class-bnfw-notification.php:427
479
+ msgid ""
480
+ "How do you want to format the sent email? HTML is recommended as it'll show "
481
+ "images and links correctly."
482
+ msgstr ""
483
+
484
+ #: includes/admin/class-bnfw-notification.php:448
485
  msgid "Additional Email Fields"
486
  msgstr ""
487
 
488
+ #: includes/admin/class-bnfw-notification.php:449
489
+ msgid ""
490
+ "This should be fairly self explanatory but if you're unsure, tick this "
491
+ "checkbox and have a look at the available options. You can always untick it "
492
+ "again should you decide you don't need to use it."
493
+ msgstr ""
494
+
495
+ #: includes/admin/class-bnfw-notification.php:454
496
+ msgid "Set \"From\" Name & Email, Reply To, CC, BCC"
497
  msgstr ""
498
 
499
+ #: includes/admin/class-bnfw-notification.php:461
500
  msgid "From Name and Email"
501
  msgstr ""
502
 
503
+ #: includes/admin/class-bnfw-notification.php:462
504
+ msgid ""
505
+ "If you want to send the email from your site name and email address instead "
506
+ "of the default \"WordPress\" from \"wordpress@domain.com\", this is where "
507
+ "you can do it."
508
+ msgstr ""
509
+
510
+ #: includes/admin/class-bnfw-notification.php:466
511
+ msgid "Site Name"
512
+ msgstr ""
513
+
514
+ #: includes/admin/class-bnfw-notification.php:468
515
+ msgid "Site Email"
516
+ msgstr ""
517
+
518
+ #: includes/admin/class-bnfw-notification.php:475
519
+ msgid "Reply To"
520
+ msgstr ""
521
+
522
+ #: includes/admin/class-bnfw-notification.php:476
523
+ msgid ""
524
+ "If you want any replies to your email notification to go to another person, "
525
+ "fill in this box with their name and email address."
526
+ msgstr ""
527
+
528
+ #: includes/admin/class-bnfw-notification.php:480
529
+ msgid "Name"
530
+ msgstr ""
531
+
532
+ #: includes/admin/class-bnfw-notification.php:482
533
+ msgid "Email"
534
+ msgstr ""
535
+
536
+ #: includes/admin/class-bnfw-notification.php:488
537
  msgid "CC"
538
  msgstr ""
539
 
540
+ #: includes/admin/class-bnfw-notification.php:489
541
+ msgid "Publicly copy in any other users or user roles to this email."
542
+ msgstr ""
543
+
544
+ #: includes/admin/class-bnfw-notification.php:494
545
+ #: includes/admin/class-bnfw-notification.php:508
546
+ #: includes/admin/class-bnfw-notification.php:557
547
+ #: includes/admin/class-bnfw-notification.php:575
548
+ msgid "Select User Roles / Users"
549
+ msgstr ""
550
+
551
+ #: includes/admin/class-bnfw-notification.php:502
552
  msgid "BCC"
553
  msgstr ""
554
 
555
+ #: includes/admin/class-bnfw-notification.php:503
556
+ msgid "Privately copy in any other users or user roles to this email."
557
  msgstr ""
558
 
559
+ #: includes/admin/class-bnfw-notification.php:518
560
+ msgid "Send to Author"
561
+ msgstr ""
562
+
563
+ #: includes/admin/class-bnfw-notification.php:519
564
+ msgid ""
565
+ "E.g. If you want a new post published notification to go to the post author, "
566
+ "tick this box."
567
+ msgstr ""
568
+
569
+ #: includes/admin/class-bnfw-notification.php:526
570
+ msgid "Send this notification to the Author"
571
+ msgstr ""
572
+
573
+ #: includes/admin/class-bnfw-notification.php:536
574
+ msgid ""
575
+ "E.g. If you're an editor and regularly update your posts, you might not want "
576
+ "to be emailed about this all the time. Ticking this box will prevent you "
577
+ "from receiving emails about your own changes."
578
+ msgstr ""
579
+
580
+ #: includes/admin/class-bnfw-notification.php:542
581
+ msgid "Do not send this Notification to the User that triggered it"
582
+ msgstr ""
583
+
584
+ #: includes/admin/class-bnfw-notification.php:551
585
  msgid "Send To"
586
  msgstr ""
587
 
588
+ #: includes/admin/class-bnfw-notification.php:552
589
+ msgid "Choose the users and/or user roles to send this email notification to."
590
+ msgstr ""
591
+
592
+ #: includes/admin/class-bnfw-notification.php:565
593
+ msgid "Except For"
594
+ msgstr ""
595
+
596
+ #: includes/admin/class-bnfw-notification.php:568
597
+ msgid ""
598
+ "Choose the users and/or user roles that this notification should not be sent "
599
+ "to."
600
  msgstr ""
601
 
602
+ #: includes/admin/class-bnfw-notification.php:593
603
+ msgid ""
604
+ "You have chosen to send this notification to over 200 users. Please check "
605
+ "the email sending rate limit at your host before sending."
606
+ msgstr ""
607
+
608
+ #: includes/admin/class-bnfw-notification.php:603
609
+ #: includes/admin/class-bnfw-notification.php:1129
610
  msgid "Subject"
611
  msgstr ""
612
 
613
+ #: includes/admin/class-bnfw-notification.php:604
614
+ msgid "Notification subject. You can use "
615
+ msgstr ""
616
+
617
+ #: includes/admin/class-bnfw-notification.php:604
618
+ #: includes/admin/class-bnfw-notification.php:618
619
+ msgid " here."
620
+ msgstr ""
621
+
622
+ #: includes/admin/class-bnfw-notification.php:617
623
  msgid "Message Body"
624
  msgstr ""
625
 
626
+ #: includes/admin/class-bnfw-notification.php:618
627
+ msgid "Notification message. You can use "
628
+ msgstr ""
629
+
630
+ #: includes/admin/class-bnfw-notification.php:626
631
+ msgid "Need some more help?"
632
+ msgstr ""
633
+
634
+ #: includes/admin/class-bnfw-notification.php:636
635
+ msgid "Insert Default Content"
636
+ msgstr ""
637
+
638
+ #: includes/admin/class-bnfw-notification.php:640
639
+ msgid "Read Documentation"
640
+ msgstr ""
641
+
642
+ #: includes/admin/class-bnfw-notification.php:644
643
+ msgid "Find Shortcodes"
644
+ msgstr ""
645
+
646
+ #: includes/admin/class-bnfw-notification.php:655
647
  msgid ""
648
+ "Stop additional paragraph and line break HTML from being inserted into my "
649
+ "notifications"
650
  msgstr ""
651
 
652
+ #: includes/admin/class-bnfw-notification.php:710
653
+ msgid ""
654
+ "You must choose at least one User or User Role to send the notification to "
655
+ "before you can save"
656
+ msgstr ""
657
+
658
+ #: includes/admin/class-bnfw-notification.php:825
659
  msgid "Test Notification Sent."
660
  msgstr ""
661
 
662
+ #: includes/admin/class-bnfw-notification.php:915
663
  msgid "Notification saved."
664
  msgstr ""
665
 
666
+ #: includes/admin/class-bnfw-notification.php:934
667
+ #: includes/admin/class-bnfw-notification.php:992
668
+ #: includes/admin/class-bnfw-notification.php:994
669
  msgid "Save"
670
  msgstr ""
671
 
672
+ #: includes/admin/class-bnfw-notification.php:942
673
+ msgid ""
674
+ "Use this to enable or disable notifications. If you want to disable a "
675
+ "default WordPress notification, just create it on the left, then disable it "
676
+ "here."
677
  msgstr ""
678
 
679
+ #: includes/admin/class-bnfw-notification.php:949
680
+ msgid "Notification Enabled"
681
+ msgstr ""
682
+
683
+ #: includes/admin/class-bnfw-notification.php:956
684
+ msgid "Notification Disabled"
685
+ msgstr ""
686
+
687
+ #: includes/admin/class-bnfw-notification.php:967
688
  msgid "Send Me a Test Email"
689
  msgstr ""
690
 
691
+ #: includes/admin/class-bnfw-notification.php:969
692
+ msgid ""
693
+ "This will send you (the currently logged in user) a notification so that you "
694
+ "can check for any issues with formatting – it’s doesn't mean that a "
695
+ "notification will send correctly in the future. You can read about how to "
696
+ "improve email delivery"
697
+ msgstr ""
698
+
699
+ #: includes/admin/class-bnfw-notification.php:969
700
+ msgid "here"
701
+ msgstr ""
702
+
703
+ #: includes/admin/class-bnfw-notification.php:969
704
+ msgid ". Shortcodes will not be replaced with content."
705
+ msgstr ""
706
+
707
+ #: includes/admin/class-bnfw-notification.php:980
708
  msgid "Delete Permanently"
709
  msgstr ""
710
 
711
+ #: includes/admin/class-bnfw-notification.php:982
712
  msgid "Move to Trash"
713
  msgstr ""
714
 
715
+ #: includes/admin/class-bnfw-notification.php:1127
716
  msgid "Notification Type"
717
  msgstr ""
718
 
719
+ #: includes/admin/class-bnfw-notification.php:1128
720
  msgid "Enabled?"
721
  msgstr ""
722
 
723
+ #: includes/admin/class-bnfw-notification.php:1130
724
  msgid "User Roles / Users"
725
  msgstr ""
726
 
727
+ #: includes/admin/class-bnfw-notification.php:1131
728
+ msgid "Excluded User Roles / Users"
729
+ msgstr ""
730
+
731
+ #: includes/admin/class-bnfw-notification.php:1172
732
+ msgid ", Post Author"
733
  msgstr ""
734
 
735
+ #: includes/admin/class-bnfw-notification.php:1338
736
+ msgid "Privacy Confirm Action: Export Data Request – For User"
737
  msgstr ""
738
 
739
+ #: includes/admin/class-bnfw-notification.php:1341
740
+ msgid "Privacy Confirm Action: Erase Data Request – For User"
741
  msgstr ""
742
 
743
+ #: includes/admin/class-bnfw-notification.php:1389
744
+ msgid "Published"
745
+ msgstr ""
746
+
747
+ #: includes/admin/class-bnfw-notification.php:1392
748
  msgid "Updated "
749
  msgstr ""
750
 
751
+ #: includes/admin/class-bnfw-notification.php:1395
752
  msgid " Pending Review"
753
  msgstr ""
754
 
755
+ #: includes/admin/class-bnfw-notification.php:1398
756
  msgid " Scheduled"
757
  msgstr ""
758
 
759
+ #: includes/admin/class-bnfw-notification.php:1404
760
  msgid " Comment"
761
  msgstr ""
762
 
763
+ #: includes/admin/class-bnfw-notification.php:1410
764
+ msgid " Comment Reply"
765
+ msgstr ""
766
+
767
+ #: includes/admin/class-bnfw-notification.php:1413
768
+ msgid " Comment Approved"
769
+ msgstr ""
770
+
771
+ #: includes/admin/class-bnfw-notification.php:1418
772
+ msgid "New Term"
773
+ msgstr ""
774
+
775
+ #: includes/admin/class-bnfw-notification.php:1420
776
+ msgid "New Term in "
777
+ msgstr ""
778
+
779
+ #: includes/admin/class-bnfw-notification.php:1440
780
+ msgid "Enable Notifications"
781
+ msgstr ""
782
+
783
+ #: includes/admin/class-bnfw-notification.php:1441
784
+ msgid "Disable Notifications"
785
+ msgstr ""
786
+
787
+ #: includes/admin/class-bnfw-notification.php:1502
788
+ msgid "Enable Notification"
789
+ msgstr ""
790
+
791
+ #: includes/admin/class-bnfw-notification.php:1510
792
+ msgid "Disable Notification"
793
+ msgstr ""
794
+
795
+ #: includes/admin/class-bnfw-notification.php:1568
796
+ msgid "Enabled 1 Notification."
797
+ msgstr ""
798
+
799
+ #: includes/admin/class-bnfw-notification.php:1572
800
+ msgid "Disabled 1 Notification."
801
+ msgstr ""
802
+
803
+ #: includes/admin/class-bnfw-notification.php:1578
804
+ #, php-format
805
+ msgid "Enabled %s Notification."
806
+ msgid_plural "Enabled %s Notifications."
807
+ msgstr[0] ""
808
+ msgstr[1] ""
809
+
810
+ #: includes/admin/class-bnfw-notification.php:1588
811
+ #, php-format
812
+ msgid "Disabled %s Notification."
813
+ msgid_plural "Disabled %s Notifications."
814
+ msgstr[0] ""
815
+ msgstr[1] ""
816
+
817
+ #: includes/admin/class-bnfw-notification.php:1602
818
+ msgid ""
819
+ "If you send out notifications with BNFW but don't receive them, you may need "
820
+ "to install an SMTP plugin to <a href=\"https://betternotificationsforwp.com/"
821
+ "documentation/getting-started/how-to-improve-email-delivery/\" target="
822
+ "\"_blank\">improve email deliverability</a>. I recommend using <a href="
823
+ "\"https://wordpress.org/plugins/post-smtp/\" target=\"_blank\">Post SMTP</a> "
824
+ "as it's easy to set-up or <a href=\"https://wordpress.org/plugins/email-log/"
825
+ "\" target=\"_blank\">Email Log</a> to just log and view emails that are sent."
826
+ msgstr ""
827
+
828
+ #: includes/engine/class-bnfw-engine.php:18
829
+ msgid "Test Email:"
830
+ msgstr ""
831
+
832
+ #: includes/engine/class-bnfw-engine.php:19
833
+ msgid ""
834
+ "This is a test email. All shortcodes below will show in place but not be "
835
+ "replaced with content."
836
+ msgstr ""
837
+
838
+ #: includes/engine/class-bnfw-engine.php:1583
839
+ msgid "Error: Download link is not available please contact support"
840
+ msgstr ""
841
+
842
+ #: includes/helpers/ajax-helpers.php:34 includes/helpers/helpers.php:38
843
+ msgid "User Roles"
844
  msgstr ""
845
 
846
+ #: includes/helpers/ajax-helpers.php:57 includes/helpers/helpers.php:59
847
+ #: includes/helpers/helpers.php:64
848
+ msgid "Users"
849
+ msgstr ""
850
+
851
+ #: includes/helpers/helpers.php:103
852
+ msgid "Non WordPress Users"
853
+ msgstr ""
854
+
855
+ #: includes/import.php:69
856
  msgid " for "
857
  msgstr ""
858
 
859
+ #: includes/import.php:69
860
  msgid " (Auto Imported)"
861
  msgstr ""
862
 
863
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:228
864
+ #, php-format
865
+ msgid ""
866
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
867
+ msgstr ""
868
+
869
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:236
870
+ #, php-format
871
+ msgid ""
872
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
873
+ "or %5$supdate now%6$s."
874
+ msgstr ""
875
+
876
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
877
+ msgid "You do not have permission to install plugin updates"
878
+ msgstr ""
879
+
880
+ #: includes/libraries/EDD_SL_Plugin_Updater.php:474
881
+ msgid "Error"
882
+ msgstr ""
883
+
884
+ #: includes/license/class-bnfw-license-setting.php:18
885
+ #: includes/license/class-bnfw-license-setting.php:19
886
+ msgid "Add-on Licenses"
887
+ msgstr ""
888
+
889
+ #: includes/license/class-bnfw-license-setting.php:38
890
+ msgid "BNFW Add-on Licenses"
891
+ msgstr ""
892
+
893
+ #: includes/license/class-bnfw-license-setting.php:47
894
+ msgid "Save License"
895
+ msgstr ""
896
+
897
+ #: includes/license/class-bnfw-license-setting.php:55
898
+ msgid ""
899
+ "<br>You have no BNFW Premium Add-ons installed yet.<br>You can buy add-ons "
900
+ "from the <a href=\""
901
+ msgstr ""
902
+
903
+ #: includes/license/class-bnfw-license-setting.php:130
904
+ msgid "Deactivate License"
905
+ msgstr ""
906
+
907
+ #: includes/license/class-bnfw-license.php:140
908
+ #, php-format
909
+ msgid "%1$s License Key"
910
+ msgstr ""
911
+
912
+ #: includes/overrides.php:41 includes/overrides.php:135
913
+ #, php-format
914
  msgid "New user registration on your site %s:"
915
  msgstr ""
916
 
917
+ #: includes/overrides.php:42 includes/overrides.php:117
918
+ #: includes/overrides.php:136 includes/overrides.php:152
919
+ #, php-format
920
  msgid "Username: %s"
921
  msgstr ""
922
 
923
+ #: includes/overrides.php:43 includes/overrides.php:137
924
+ #, php-format
925
  msgid "E-mail: %s"
926
  msgstr ""
927
 
928
+ #. translators: Password change notification email subject. %s: Site title
929
+ #: includes/overrides.php:48 includes/overrides.php:139
930
+ #, php-format
931
  msgid "[%s] New User Registration"
932
  msgstr ""
933
 
934
+ #: includes/overrides.php:118
935
+ msgid "To set your password, visit the following address:"
936
+ msgstr ""
937
+
938
+ #: includes/overrides.php:123
939
+ #, php-format
940
+ msgid "[%s] Your username and password info"
941
+ msgstr ""
942
+
943
+ #: includes/overrides.php:153
944
+ #, php-format
945
  msgid "Password: %s"
946
  msgstr ""
947
 
948
+ #: includes/overrides.php:156
949
+ #, php-format
950
  msgid "[%s] Your username and password"
951
  msgstr ""
952
 
953
+ #. translators: %s: user name
954
+ #: includes/overrides.php:184
955
+ #, php-format
956
+ msgid "Password changed for user: %s"
957
+ msgstr ""
958
+
959
+ #. translators: %s: site title
960
+ #: includes/overrides.php:189
961
+ #, php-format
962
+ msgid "[%s] Password Changed"
963
+ msgstr ""
964
+
965
  #. Plugin Name of the plugin/theme
966
  msgid "Better Notifications for WP"
967
  msgstr ""
968
 
969
  #. Plugin URI of the plugin/theme
970
+ msgid "https://wordpress.org/plugins/bnfw/"
971
  msgstr ""
972
 
973
  #. Description of the plugin/theme
974
  msgid ""
975
+ "Supercharge your WordPress notifications using a WYSIWYG editor and "
976
+ "shortcodes. Default and new notifications available. Add more power with Add-"
977
+ "ons."
978
  msgstr ""
979
 
980
  #. Author of the plugin/theme
982
  msgstr ""
983
 
984
  #. Author URI of the plugin/theme
985
+ msgid "https://madewithfuel.com/"
986
  msgstr ""